ManagerEvent.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Lukas Reschke <lukas@statuscode.ch>
  8. *
  9. * @license AGPL-3.0
  10. *
  11. * This code is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License, version 3,
  13. * as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License, version 3,
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>
  22. *
  23. */
  24. namespace OCP\App;
  25. use OCP\EventDispatcher\Event;
  26. /**
  27. * Class ManagerEvent
  28. *
  29. * @since 9.0.0
  30. */
  31. class ManagerEvent extends Event {
  32. /**
  33. * @since 9.0.0
  34. * @deprecated 22.0.0
  35. */
  36. public const EVENT_APP_ENABLE = 'OCP\App\IAppManager::enableApp';
  37. /**
  38. * @since 9.0.0
  39. * @deprecated 22.0.0
  40. */
  41. public const EVENT_APP_ENABLE_FOR_GROUPS = 'OCP\App\IAppManager::enableAppForGroups';
  42. /**
  43. * @since 9.0.0
  44. * @deprecated 22.0.0
  45. */
  46. public const EVENT_APP_DISABLE = 'OCP\App\IAppManager::disableApp';
  47. /**
  48. * @since 9.1.0
  49. * @deprecated 22.0.0
  50. */
  51. public const EVENT_APP_UPDATE = 'OCP\App\IAppManager::updateApp';
  52. /** @var string */
  53. protected $event;
  54. /** @var string */
  55. protected $appID;
  56. /** @var \OCP\IGroup[]|null */
  57. protected $groups;
  58. /**
  59. * DispatcherEvent constructor.
  60. *
  61. * @param string $event
  62. * @param $appID
  63. * @param \OCP\IGroup[]|null $groups
  64. * @since 9.0.0
  65. */
  66. public function __construct($event, $appID, array $groups = null) {
  67. $this->event = $event;
  68. $this->appID = $appID;
  69. $this->groups = $groups;
  70. }
  71. /**
  72. * @return string
  73. * @since 9.0.0
  74. */
  75. public function getEvent() {
  76. return $this->event;
  77. }
  78. /**
  79. * @return string
  80. * @since 9.0.0
  81. */
  82. public function getAppID() {
  83. return $this->appID;
  84. }
  85. /**
  86. * returns the group Ids
  87. * @return string[]
  88. * @since 9.0.0
  89. */
  90. public function getGroups() {
  91. return array_map(function ($group) {
  92. /** @var \OCP\IGroup $group */
  93. return $group->getGID();
  94. }, $this->groups);
  95. }
  96. }