123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
- *
- * @author Joas Schilling <coding@schilljs.com>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- /**
- * Public interface of ownCloud for apps to use.
- * Activity/IEvent interface
- */
- // use OCP namespace for all classes that are considered public.
- // This means that they should be used by apps instead of the internal ownCloud classes
- namespace OCP\Activity;
- /**
- * Interface IEvent
- *
- * @package OCP\Activity
- * @since 8.2.0
- */
- interface IEvent {
- /**
- * Set the app of the activity
- *
- * @param string $app
- * @return IEvent
- * @throws \InvalidArgumentException if the app id is invalid
- * @since 8.2.0
- */
- public function setApp($app);
- /**
- * Set the type of the activity
- *
- * @param string $type
- * @return IEvent
- * @throws \InvalidArgumentException if the type is invalid
- * @since 8.2.0
- */
- public function setType($type);
- /**
- * Set the affected user of the activity
- *
- * @param string $user
- * @return IEvent
- * @throws \InvalidArgumentException if the affected user is invalid
- * @since 8.2.0
- */
- public function setAffectedUser($user);
- /**
- * Set the author of the activity
- *
- * @param string $author
- * @return IEvent
- * @throws \InvalidArgumentException if the author is invalid
- * @since 8.2.0
- */
- public function setAuthor($author);
- /**
- * Set the author of the activity
- *
- * @param int $timestamp
- * @return IEvent
- * @throws \InvalidArgumentException if the timestamp is invalid
- * @since 8.2.0
- */
- public function setTimestamp($timestamp);
- /**
- * Set the subject of the activity
- *
- * @param string $subject
- * @param array $parameters
- * @return IEvent
- * @throws \InvalidArgumentException if the subject or parameters are invalid
- * @since 8.2.0
- */
- public function setSubject($subject, array $parameters = []);
- /**
- * @param string $subject
- * @return $this
- * @throws \InvalidArgumentException if the subject is invalid
- * @since 11.0.0
- */
- public function setParsedSubject($subject);
- /**
- * @return string
- * @since 11.0.0
- */
- public function getParsedSubject();
- /**
- * @param string $subject
- * @param array $parameters
- * @return $this
- * @throws \InvalidArgumentException if the subject or parameters are invalid
- * @since 11.0.0
- */
- public function setRichSubject($subject, array $parameters = []);
- /**
- * @return string
- * @since 11.0.0
- */
- public function getRichSubject();
- /**
- * @return array[]
- * @since 11.0.0
- */
- public function getRichSubjectParameters();
- /**
- * Set the message of the activity
- *
- * @param string $message
- * @param array $parameters
- * @return IEvent
- * @throws \InvalidArgumentException if the message or parameters are invalid
- * @since 8.2.0
- */
- public function setMessage($message, array $parameters = []);
- /**
- * @param string $message
- * @return $this
- * @throws \InvalidArgumentException if the message is invalid
- * @since 11.0.0
- */
- public function setParsedMessage($message);
- /**
- * @return string
- * @since 11.0.0
- */
- public function getParsedMessage();
- /**
- * @param string $message
- * @param array $parameters
- * @return $this
- * @throws \InvalidArgumentException if the message or parameters are invalid
- * @since 11.0.0
- */
- public function setRichMessage($message, array $parameters = []);
- /**
- * @return string
- * @since 11.0.0
- */
- public function getRichMessage();
- /**
- * @return array[]
- * @since 11.0.0
- */
- public function getRichMessageParameters();
- /**
- * Set the object of the activity
- *
- * @param string $objectType
- * @param int $objectId
- * @param string $objectName
- * @return IEvent
- * @throws \InvalidArgumentException if the object is invalid
- * @since 8.2.0
- */
- public function setObject($objectType, $objectId, $objectName = '');
- /**
- * Set the link of the activity
- *
- * @param string $link
- * @return IEvent
- * @throws \InvalidArgumentException if the link is invalid
- * @since 8.2.0
- */
- public function setLink($link);
- /**
- * @return string
- * @since 8.2.0
- */
- public function getApp();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getType();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getAffectedUser();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getAuthor();
- /**
- * @return int
- * @since 8.2.0
- */
- public function getTimestamp();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getSubject();
- /**
- * @return array
- * @since 8.2.0
- */
- public function getSubjectParameters();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getMessage();
- /**
- * @return array
- * @since 8.2.0
- */
- public function getMessageParameters();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getObjectType();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getObjectId();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getObjectName();
- /**
- * @return string
- * @since 8.2.0
- */
- public function getLink();
- /**
- * @param string $icon
- * @return $this
- * @throws \InvalidArgumentException if the icon is invalid
- * @since 11.0.0
- */
- public function setIcon($icon);
- /**
- * @return string
- * @since 11.0.0
- */
- public function getIcon();
- /**
- * @param IEvent $child
- * @since 11.0.0
- */
- public function setChildEvent(IEvent $child);
- /**
- * @return IEvent|null
- * @since 11.0.0
- */
- public function getChildEvent();
- /**
- * @return bool
- * @since 11.0.0
- */
- public function isValid();
- /**
- * @return bool
- * @since 11.0.0
- */
- public function isValidParsed();
- }
|