You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

325 lines
7.8 KiB

3 years ago
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2016, ownCloud, Inc.
  5. *
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Roeland Jago Douma <roeland@famdouma.nl>
  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\Notification;
  25. /**
  26. * Interface INotification
  27. *
  28. * @since 9.0.0
  29. */
  30. interface INotification {
  31. /**
  32. * @param string $app
  33. * @return $this
  34. * @throws \InvalidArgumentException if the app id is invalid
  35. * @since 9.0.0
  36. */
  37. public function setApp(string $app): INotification;
  38. /**
  39. * @return string
  40. * @since 9.0.0
  41. */
  42. public function getApp(): string;
  43. /**
  44. * @param string $user
  45. * @return $this
  46. * @throws \InvalidArgumentException if the user id is invalid
  47. * @since 9.0.0
  48. */
  49. public function setUser(string $user): INotification;
  50. /**
  51. * @return string
  52. * @since 9.0.0
  53. */
  54. public function getUser(): string;
  55. /**
  56. * @param \DateTime $dateTime
  57. * @return $this
  58. * @throws \InvalidArgumentException if the $dateTime is invalid
  59. * @since 9.0.0
  60. */
  61. public function setDateTime(\DateTime $dateTime): INotification;
  62. /**
  63. * @return \DateTime
  64. * @since 9.0.0
  65. */
  66. public function getDateTime(): \DateTime;
  67. /**
  68. * @param string $type
  69. * @param string $id
  70. * @return $this
  71. * @throws \InvalidArgumentException if the object type or id is invalid
  72. * @since 9.0.0
  73. */
  74. public function setObject(string $type, string $id): INotification;
  75. /**
  76. * @return string
  77. * @since 9.0.0
  78. */
  79. public function getObjectType(): string;
  80. /**
  81. * @return string
  82. * @since 9.0.0
  83. */
  84. public function getObjectId(): string;
  85. /**
  86. * @param string $subject
  87. * @param array $parameters
  88. * @return $this
  89. * @throws \InvalidArgumentException if the subject or parameters are invalid
  90. * @since 9.0.0
  91. */
  92. public function setSubject(string $subject, array $parameters = []): INotification;
  93. /**
  94. * @return string
  95. * @since 9.0.0
  96. */
  97. public function getSubject(): string;
  98. /**
  99. * @return array
  100. * @since 9.0.0
  101. */
  102. public function getSubjectParameters(): array;
  103. /**
  104. * Set a parsed subject
  105. *
  106. * HTML is not allowed in the parsed subject and will be escaped
  107. * automatically by the clients. You can use the RichObjectString system
  108. * provided by the Nextcloud server to highlight important parameters via
  109. * the setRichSubject method, but make sure, that a plain text message is
  110. * always set via setParsedSubject, to support clients which can not handle
  111. * rich strings.
  112. *
  113. * See https://github.com/nextcloud/server/issues/1706 for more information.
  114. *
  115. * @param string $subject
  116. * @return $this
  117. * @throws \InvalidArgumentException if the subject is invalid
  118. * @since 9.0.0
  119. */
  120. public function setParsedSubject(string $subject): INotification;
  121. /**
  122. * @return string
  123. * @since 9.0.0
  124. */
  125. public function getParsedSubject(): string;
  126. /**
  127. * Set a RichObjectString subject
  128. *
  129. * HTML is not allowed in the rich subject and will be escaped automatically
  130. * by the clients, but you can use the RichObjectString system provided by
  131. * the Nextcloud server to highlight important parameters.
  132. * Also make sure, that a plain text subject is always set via
  133. * setParsedSubject, to support clients which can not handle rich strings.
  134. *
  135. * See https://github.com/nextcloud/server/issues/1706 for more information.
  136. *
  137. * @param string $subject
  138. * @param array $parameters
  139. * @return $this
  140. * @throws \InvalidArgumentException if the subject or parameters are invalid
  141. * @since 11.0.0
  142. */
  143. public function setRichSubject(string $subject, array $parameters = []): INotification;
  144. /**
  145. * @return string
  146. * @since 11.0.0
  147. */
  148. public function getRichSubject(): string;
  149. /**
  150. * @return array[]
  151. * @since 11.0.0
  152. */
  153. public function getRichSubjectParameters(): array;
  154. /**
  155. * @param string $message
  156. * @param array $parameters
  157. * @return $this
  158. * @throws \InvalidArgumentException if the message or parameters are invalid
  159. * @since 9.0.0
  160. */
  161. public function setMessage(string $message, array $parameters = []): INotification;
  162. /**
  163. * @return string
  164. * @since 9.0.0
  165. */
  166. public function getMessage(): string;
  167. /**
  168. * @return array
  169. * @since 9.0.0
  170. */
  171. public function getMessageParameters(): array;
  172. /**
  173. * Set a parsed message
  174. *
  175. * HTML is not allowed in the parsed message and will be escaped
  176. * automatically by the clients. You can use the RichObjectString system
  177. * provided by the Nextcloud server to highlight important parameters via
  178. * the setRichMessage method, but make sure, that a plain text message is
  179. * always set via setParsedMessage, to support clients which can not handle
  180. * rich strings.
  181. *
  182. * See https://github.com/nextcloud/server/issues/1706 for more information.
  183. *
  184. * @param string $message
  185. * @return $this
  186. * @throws \InvalidArgumentException if the message is invalid
  187. * @since 9.0.0
  188. */
  189. public function setParsedMessage(string $message): INotification;
  190. /**
  191. * @return string
  192. * @since 9.0.0
  193. */
  194. public function getParsedMessage(): string;
  195. /**
  196. * Set a RichObjectString message
  197. *
  198. * HTML is not allowed in the rich message and will be escaped automatically
  199. * by the clients, but you can use the RichObjectString system provided by
  200. * the Nextcloud server to highlight important parameters.
  201. * Also make sure, that a plain text message is always set via
  202. * setParsedMessage, to support clients which can not handle rich strings.
  203. *
  204. * See https://github.com/nextcloud/server/issues/1706 for more information.
  205. *
  206. * @param string $message
  207. * @param array $parameters
  208. * @return $this
  209. * @throws \InvalidArgumentException if the message or parameters are invalid
  210. * @since 11.0.0
  211. */
  212. public function setRichMessage(string $message, array $parameters = []): INotification;
  213. /**
  214. * @return string
  215. * @since 11.0.0
  216. */
  217. public function getRichMessage(): string;
  218. /**
  219. * @return array[]
  220. * @since 11.0.0
  221. */
  222. public function getRichMessageParameters(): array;
  223. /**
  224. * @param string $link
  225. * @return $this
  226. * @throws \InvalidArgumentException if the link is invalid
  227. * @since 9.0.0
  228. */
  229. public function setLink(string $link): INotification;
  230. /**
  231. * @return string
  232. * @since 9.0.0
  233. */
  234. public function getLink(): string;
  235. /**
  236. * @param string $icon
  237. * @return $this
  238. * @throws \InvalidArgumentException if the icon is invalid
  239. * @since 11.0.0
  240. */
  241. public function setIcon(string $icon): INotification;
  242. /**
  243. * @return string
  244. * @since 11.0.0
  245. */
  246. public function getIcon(): string;
  247. /**
  248. * @return IAction
  249. * @since 9.0.0
  250. */
  251. public function createAction(): IAction;
  252. /**
  253. * @param IAction $action
  254. * @return $this
  255. * @throws \InvalidArgumentException if the action is invalid
  256. * @since 9.0.0
  257. */
  258. public function addAction(IAction $action): INotification;
  259. /**
  260. * @return IAction[]
  261. * @since 9.0.0
  262. */
  263. public function getActions(): array;
  264. /**
  265. * @param IAction $action
  266. * @return $this
  267. * @throws \InvalidArgumentException if the action is invalid
  268. * @since 9.0.0
  269. */
  270. public function addParsedAction(IAction $action): INotification;
  271. /**
  272. * @return IAction[]
  273. * @since 9.0.0
  274. */
  275. public function getParsedActions(): array;
  276. /**
  277. * @return bool
  278. * @since 9.0.0
  279. */
  280. public function isValid(): bool;
  281. /**
  282. * @return bool
  283. * @since 9.0.0
  284. */
  285. public function isValidParsed(): bool;
  286. }