123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCP\Collaboration\Reference;
- /**
- * @since 25.0.0
- * @psalm-type OpenGraphObject = array{id: string, name: string, description: ?string, thumb: ?string, link: string}
- */
- class Reference implements IReference {
- protected string $reference;
- protected bool $accessible = true;
- protected ?string $title = null;
- protected ?string $description = null;
- protected ?string $imageUrl = null;
- protected ?string $contentType = null;
- protected ?string $url = null;
- protected ?string $richObjectType = null;
- protected ?array $richObject = null;
- /**
- * @since 25.0.0
- */
- public function __construct(string $reference) {
- $this->reference = $reference;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function getId(): string {
- return $this->reference;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function setAccessible(bool $accessible): void {
- $this->accessible = $accessible;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function getAccessible(): bool {
- return $this->accessible;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function setTitle(string $title): void {
- $this->title = $title;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function getTitle(): string {
- return $this->title ?? $this->reference;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function setDescription(?string $description): void {
- $this->description = $description;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function getDescription(): ?string {
- return $this->description;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function setImageUrl(?string $imageUrl): void {
- $this->imageUrl = $imageUrl;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function getImageUrl(): ?string {
- return $this->imageUrl;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function setImageContentType(?string $contentType): void {
- $this->contentType = $contentType;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function getImageContentType(): ?string {
- return $this->contentType;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function setUrl(?string $url): void {
- $this->url = $url;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function getUrl(): string {
- return $this->url ?? $this->reference;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function setRichObject(string $type, ?array $richObject): void {
- $this->richObjectType = $type;
- $this->richObject = $richObject;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- */
- public function getRichObjectType(): string {
- if ($this->richObjectType === null) {
- return 'open-graph';
- }
- return $this->richObjectType;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- * @return array<string, mixed>
- */
- public function getRichObject(): array {
- if ($this->richObject === null) {
- return $this->getOpenGraphObject();
- }
- return $this->richObject;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- * @return OpenGraphObject
- */
- public function getOpenGraphObject(): array {
- return [
- 'id' => $this->getId(),
- 'name' => $this->getTitle(),
- 'description' => $this->getDescription(),
- 'thumb' => $this->getImageUrl(),
- 'link' => $this->getUrl()
- ];
- }
- /**
- * @param IReference $reference
- * @return array
- * @since 25.0.0
- */
- public static function toCache(IReference $reference): array {
- return [
- 'id' => $reference->getId(),
- 'title' => $reference->getTitle(),
- 'imageUrl' => $reference->getImageUrl(),
- 'imageContentType' => $reference->getImageContentType(),
- 'description' => $reference->getDescription(),
- 'link' => $reference->getUrl(),
- 'accessible' => $reference->getAccessible(),
- 'richObjectType' => $reference->getRichObjectType(),
- 'richObject' => $reference->getRichObject(),
- ];
- }
- /**
- * @param array $cache
- * @return IReference
- * @since 25.0.0
- */
- public static function fromCache(array $cache): IReference {
- $reference = new Reference($cache['id']);
- $reference->setTitle($cache['title']);
- $reference->setDescription($cache['description']);
- $reference->setImageUrl($cache['imageUrl']);
- $reference->setImageContentType($cache['imageContentType']);
- $reference->setUrl($cache['link']);
- $reference->setRichObject($cache['richObjectType'], $cache['richObject']);
- $reference->setAccessible($cache['accessible']);
- return $reference;
- }
- /**
- * @inheritdoc
- * @since 25.0.0
- * @return array{richObjectType: string, richObject: array<string, mixed>, openGraphObject: OpenGraphObject, accessible: bool}
- */
- public function jsonSerialize(): array {
- return [
- 'richObjectType' => $this->getRichObjectType(),
- 'richObject' => $this->getRichObject(),
- 'openGraphObject' => $this->getOpenGraphObject(),
- 'accessible' => $this->accessible
- ];
- }
- }
|