IEventsService.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright 2018, Maxence Lange <maxence@artificial-owl.com>
  5. *
  6. * @author Maxence Lange <maxence@artificial-owl.com>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  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
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OCP\Dashboard\Service;
  25. use OCP\Dashboard\IDashboardManager;
  26. /**
  27. * Interface IEventsService
  28. *
  29. * The Service is provided by the Dashboard app. The method in this interface
  30. * are used by the IDashboardManager when creating push event.
  31. *
  32. * @since 15.0.0
  33. *
  34. * @package OCP\Dashboard\Service
  35. */
  36. interface IEventsService {
  37. /**
  38. * Create an event for a widget and an array of users.
  39. *
  40. * @see IDashboardManager::createUsersEvent
  41. *
  42. * @since 15.0.0
  43. *
  44. * @param string $widgetId
  45. * @param array $users
  46. * @param array $payload
  47. * @param string $uniqueId
  48. */
  49. public function createUsersEvent(string $widgetId, array $users, array $payload, string $uniqueId);
  50. /**
  51. * Create an event for a widget and an array of groups.
  52. *
  53. * @see IDashboardManager::createGroupsEvent
  54. *
  55. * @since 15.0.0
  56. *
  57. * @param string $widgetId
  58. * @param array $groups
  59. * @param array $payload
  60. * @param string $uniqueId
  61. */
  62. public function createGroupsEvent(string $widgetId, array $groups, array $payload, string $uniqueId);
  63. /**
  64. * Create a global event for all users that use a specific widget.
  65. *
  66. * @see IDashboardManager::createGlobalEvent
  67. *
  68. * @since 15.0.0
  69. *
  70. * @param string $widgetId
  71. * @param array $payload
  72. * @param string $uniqueId
  73. */
  74. public function createGlobalEvent(string $widgetId, array $payload, string $uniqueId);
  75. }