0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-15 16:55:23 +00:00
nextcloud_server/lib/public/Notification/INotification.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

334 lines
8.4 KiB
PHP
Raw Normal View History

2015-08-31 10:24:37 +00:00
<?php
declare(strict_types=1);
2015-08-31 10:24:37 +00:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2015-08-31 10:24:37 +00:00
*/
namespace OCP\Notification;
2015-08-31 10:24:37 +00:00
/**
* Interface INotification
*
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
interface INotification {
/**
* @param string $app
* @return $this
* @throws InvalidValueException if the app id is invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setApp(string $app): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getApp(): string;
2015-08-31 10:24:37 +00:00
/**
* @param string $user
* @return $this
* @throws InvalidValueException if the user id is invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setUser(string $user): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getUser(): string;
2015-08-31 10:24:37 +00:00
/**
* @param \DateTime $dateTime
2015-08-31 10:24:37 +00:00
* @return $this
* @throws InvalidValueException if the $dateTime is invalid
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setDateTime(\DateTime $dateTime): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return \DateTime
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getDateTime(): \DateTime;
2015-08-31 10:24:37 +00:00
/**
* @param string $type
* @param string $id
2015-08-31 10:24:37 +00:00
* @return $this
* @throws InvalidValueException if the object type or id is invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setObject(string $type, string $id): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getObjectType(): string;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getObjectId(): string;
2015-08-31 10:24:37 +00:00
/**
* @param string $subject
* @param array $parameters
* @return $this
* @throws InvalidValueException if the subject or parameters are invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setSubject(string $subject, array $parameters = []): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getSubject(): string;
2015-08-31 10:24:37 +00:00
/**
* @return array
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getSubjectParameters(): array;
2015-08-31 10:24:37 +00:00
/**
* Set a parsed subject
*
* HTML is not allowed in the parsed subject and will be escaped
* automatically by the clients. You can use the RichObjectString system
* provided by the Nextcloud server to highlight important parameters via
* the setRichSubject method.
*
* See https://github.com/nextcloud/server/issues/1706 for more information.
*
2015-08-31 10:24:37 +00:00
* @param string $subject
* @return $this
* @throws InvalidValueException if the subject is invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setParsedSubject(string $subject): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getParsedSubject(): string;
2015-08-31 10:24:37 +00:00
/**
* Set a RichObjectString subject
*
* HTML is not allowed in the rich subject and will be escaped automatically
* by the clients, but you can use the RichObjectString system provided by
* the Nextcloud server to highlight important parameters.
*
* See https://github.com/nextcloud/server/issues/1706 for more information.
*
* @param string $subject
* @param array<string, array<string, string>> $parameters
* @return $this
* @throws InvalidValueException if the subject or parameters are invalid
* @since 11.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
*/
public function setRichSubject(string $subject, array $parameters = []): INotification;
/**
* @return string
* @since 11.0.0
*/
public function getRichSubject(): string;
/**
* @return array[]
* @since 11.0.0
*/
public function getRichSubjectParameters(): array;
2015-08-31 10:24:37 +00:00
/**
* @param string $message
* @param array $parameters
* @return $this
* @throws InvalidValueException if the message or parameters are invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setMessage(string $message, array $parameters = []): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getMessage(): string;
2015-08-31 10:24:37 +00:00
/**
* @return array
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getMessageParameters(): array;
2015-08-31 10:24:37 +00:00
/**
* Set a parsed message
*
* HTML is not allowed in the parsed message and will be escaped
* automatically by the clients. You can use the RichObjectString system
* provided by the Nextcloud server to highlight important parameters via
* the setRichMessage method.
*
* See https://github.com/nextcloud/server/issues/1706 for more information.
*
2015-08-31 10:24:37 +00:00
* @param string $message
* @return $this
* @throws InvalidValueException if the message is invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setParsedMessage(string $message): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getParsedMessage(): string;
2015-08-31 10:24:37 +00:00
/**
* Set a RichObjectString message
*
* HTML is not allowed in the rich message and will be escaped automatically
* by the clients, but you can use the RichObjectString system provided by
* the Nextcloud server to highlight important parameters.
*
* See https://github.com/nextcloud/server/issues/1706 for more information.
*
* @param string $message
* @param array<string, array<string, string>> $parameters
* @return $this
* @throws InvalidValueException if the message or parameters are invalid
* @since 11.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
*/
public function setRichMessage(string $message, array $parameters = []): INotification;
/**
* @return string
* @since 11.0.0
*/
public function getRichMessage(): string;
/**
* @return array[]
* @since 11.0.0
*/
public function getRichMessageParameters(): array;
2015-08-31 10:24:37 +00:00
/**
* @param string $link
* @return $this
* @throws InvalidValueException if the link is invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function setLink(string $link): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return string
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getLink(): string;
2015-08-31 10:24:37 +00:00
/**
* Set the absolute url for the icon (should be colored black or not have a color)
*
* It's automatically color inverted by clients when needed
*
* @param string $icon
* @return $this
* @throws InvalidValueException if the icon is invalid
* @since 11.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
*/
public function setIcon(string $icon): INotification;
/**
* Get the absolute url for the icon (should be colored black or not have a color)
*
* It's automatically color inverted by clients when needed
*
* @return string
* @since 11.0.0
*/
public function getIcon(): string;
/**
* @return $this
* @throws InvalidValueException if the app is not allowed to send priority notifications
* @since 31.0.0
*/
public function setPriorityNotification(bool $priorityNotification): INotification;
/**
* @since 31.0.0
*/
public function isPriorityNotification(): bool;
2015-08-31 10:24:37 +00:00
/**
* @return IAction
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function createAction(): IAction;
2015-08-31 10:24:37 +00:00
/**
* @param IAction $action
* @return $this
* @throws InvalidValueException if the action is invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function addAction(IAction $action): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return IAction[]
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getActions(): array;
2015-08-31 10:24:37 +00:00
/**
* @param IAction $action
* @return $this
* @throws InvalidValueException if the action is invalid
2016-01-22 09:51:36 +00:00
* @since 9.0.0
* @since 30.0.0 throws {@see InvalidValueException} instead of \InvalidArgumentException
2015-08-31 10:24:37 +00:00
*/
public function addParsedAction(IAction $action): INotification;
2015-08-31 10:24:37 +00:00
/**
* @return IAction[]
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function getParsedActions(): array;
2015-08-31 10:24:37 +00:00
/**
* @return bool
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function isValid(): bool;
2015-08-31 10:24:37 +00:00
/**
* @return bool
2016-01-22 09:51:36 +00:00
* @since 9.0.0
2015-08-31 10:24:37 +00:00
*/
public function isValidParsed(): bool;
2015-08-31 10:24:37 +00:00
}