123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <?php
- declare(strict_types=1);
- namespace OC\FullTextSearch\Model;
- use JsonSerializable;
- use OCP\FullTextSearch\Model\IDocumentAccess;
- final class DocumentAccess implements IDocumentAccess, JsonSerializable {
- private string $ownerId;
- private string $viewerId = '';
- private array $users = [];
- private array $groups = [];
- private array $circles = [];
- private array $links = [];
-
- public function __construct(string $ownerId = '') {
- $this->setOwnerId($ownerId);
- }
-
- public function setOwnerId(string $ownerId): IDocumentAccess {
- $this->ownerId = $ownerId;
- return $this;
- }
-
- public function getOwnerId(): string {
- return $this->ownerId;
- }
-
- public function setViewerId(string $viewerId): IDocumentAccess {
- $this->viewerId = $viewerId;
- return $this;
- }
-
- public function getViewerId(): string {
- return $this->viewerId;
- }
-
- public function setUsers(array $users): IDocumentAccess {
- $this->users = $users;
- return $this;
- }
-
- public function addUser(string $user): IDocumentAccess {
- $this->users[] = $user;
- return $this;
- }
-
- public function addUsers($users): IDocumentAccess {
- $this->users = array_merge($this->users, $users);
- return $this;
- }
-
- public function getUsers(): array {
- return $this->users;
- }
-
- public function setGroups(array $groups): IDocumentAccess {
- $this->groups = $groups;
- return $this;
- }
-
- public function addGroup(string $group): IDocumentAccess {
- $this->groups[] = $group;
- return $this;
- }
-
- public function addGroups(array $groups): IDocumentAccess {
- $this->groups = array_merge($this->groups, $groups);
- return $this;
- }
-
- public function getGroups(): array {
- return $this->groups;
- }
-
- public function setCircles(array $circles): IDocumentAccess {
- $this->circles = $circles;
- return $this;
- }
-
- public function addCircle(string $circle): IDocumentAccess {
- $this->circles[] = $circle;
- return $this;
- }
-
- public function addCircles(array $circles): IDocumentAccess {
- $this->circles = array_merge($this->circles, $circles);
- return $this;
- }
-
- public function getCircles(): array {
- return $this->circles;
- }
-
- public function setLinks(array $links): IDocumentAccess {
- $this->links = $links;
- return $this;
- }
-
- public function getLinks(): array {
- return $this->links;
- }
-
- public function jsonSerialize(): array {
- return [
- 'ownerId' => $this->getOwnerId(),
- 'viewerId' => $this->getViewerId(),
- 'users' => $this->getUsers(),
- 'groups' => $this->getGroups(),
- 'circles' => $this->getCircles(),
- 'links' => $this->getLinks()
- ];
- }
- }
|