]> source.dussan.org Git - nextcloud-server.git/commitdiff
Move Reference class to public namespace
authorJulius Härtl <jus@bitgrid.net>
Mon, 26 Sep 2022 08:04:28 +0000 (10:04 +0200)
committerJulius Härtl <jus@bitgrid.net>
Mon, 26 Sep 2022 08:04:28 +0000 (10:04 +0200)
Signed-off-by: Julius Härtl <jus@bitgrid.net>
lib/composer/composer/autoload_classmap.php
lib/composer/composer/autoload_static.php
lib/private/Collaboration/Reference/File/FileReferenceProvider.php
lib/private/Collaboration/Reference/LinkReferenceProvider.php
lib/private/Collaboration/Reference/Reference.php [deleted file]
lib/private/Collaboration/Reference/ReferenceManager.php
lib/public/Collaboration/Reference/Reference.php [new file with mode: 0644]

index 9041b7ff2776ac554d4812e4f87bf262f77e49df..441acc6e74eec80f7474f2e7b5a886ea045260fe 100644 (file)
@@ -145,6 +145,7 @@ return array(
     'OCP\\Collaboration\\Reference\\IReference' => $baseDir . '/lib/public/Collaboration/Reference/IReference.php',
     'OCP\\Collaboration\\Reference\\IReferenceManager' => $baseDir . '/lib/public/Collaboration/Reference/IReferenceManager.php',
     'OCP\\Collaboration\\Reference\\IReferenceProvider' => $baseDir . '/lib/public/Collaboration/Reference/IReferenceProvider.php',
+    'OCP\\Collaboration\\Reference\\Reference' => $baseDir . '/lib/public/Collaboration/Reference/Reference.php',
     'OCP\\Collaboration\\Reference\\RenderReferenceEvent' => $baseDir . '/lib/public/Collaboration/Reference/RenderReferenceEvent.php',
     'OCP\\Collaboration\\Resources\\CollectionException' => $baseDir . '/lib/public/Collaboration/Resources/CollectionException.php',
     'OCP\\Collaboration\\Resources\\ICollection' => $baseDir . '/lib/public/Collaboration/Resources/ICollection.php',
@@ -835,7 +836,6 @@ return array(
     'OC\\Collaboration\\Reference\\File\\FileReferenceEventListener' => $baseDir . '/lib/private/Collaboration/Reference/File/FileReferenceEventListener.php',
     'OC\\Collaboration\\Reference\\File\\FileReferenceProvider' => $baseDir . '/lib/private/Collaboration/Reference/File/FileReferenceProvider.php',
     'OC\\Collaboration\\Reference\\LinkReferenceProvider' => $baseDir . '/lib/private/Collaboration/Reference/LinkReferenceProvider.php',
-    'OC\\Collaboration\\Reference\\Reference' => $baseDir . '/lib/private/Collaboration/Reference/Reference.php',
     'OC\\Collaboration\\Reference\\ReferenceManager' => $baseDir . '/lib/private/Collaboration/Reference/ReferenceManager.php',
     'OC\\Collaboration\\Resources\\Collection' => $baseDir . '/lib/private/Collaboration/Resources/Collection.php',
     'OC\\Collaboration\\Resources\\Listener' => $baseDir . '/lib/private/Collaboration/Resources/Listener.php',
index 7c5d5c2728e153ff03fba46dfed00191aa302d17..39ce9db1dcc4b14499051cd1a5697b0a3f29d2a9 100644 (file)
@@ -178,6 +178,7 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
         'OCP\\Collaboration\\Reference\\IReference' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/IReference.php',
         'OCP\\Collaboration\\Reference\\IReferenceManager' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/IReferenceManager.php',
         'OCP\\Collaboration\\Reference\\IReferenceProvider' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/IReferenceProvider.php',
+        'OCP\\Collaboration\\Reference\\Reference' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/Reference.php',
         'OCP\\Collaboration\\Reference\\RenderReferenceEvent' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/RenderReferenceEvent.php',
         'OCP\\Collaboration\\Resources\\CollectionException' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/CollectionException.php',
         'OCP\\Collaboration\\Resources\\ICollection' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/ICollection.php',
@@ -868,7 +869,6 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
         'OC\\Collaboration\\Reference\\File\\FileReferenceEventListener' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/File/FileReferenceEventListener.php',
         'OC\\Collaboration\\Reference\\File\\FileReferenceProvider' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/File/FileReferenceProvider.php',
         'OC\\Collaboration\\Reference\\LinkReferenceProvider' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/LinkReferenceProvider.php',
-        'OC\\Collaboration\\Reference\\Reference' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/Reference.php',
         'OC\\Collaboration\\Reference\\ReferenceManager' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/ReferenceManager.php',
         'OC\\Collaboration\\Resources\\Collection' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Resources/Collection.php',
         'OC\\Collaboration\\Resources\\Listener' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Resources/Listener.php',
index 39cdb62b09ad06b8c479e9223f3ec615645d5aab..9109cbf73774e6883a4bcae27cf5d59f0241e17a 100644 (file)
@@ -24,10 +24,10 @@ declare(strict_types=1);
 
 namespace OC\Collaboration\Reference\File;
 
-use OC\Collaboration\Reference\Reference;
 use OC\User\NoUserException;
 use OCP\Collaboration\Reference\IReference;
 use OCP\Collaboration\Reference\IReferenceProvider;
+use OCP\Collaboration\Reference\Reference;
 use OCP\Files\InvalidPathException;
 use OCP\Files\IRootFolder;
 use OCP\Files\Node;
index 36fbdd0b168215e226680d946cb52834d78fe6fc..5597df1ca978d176d96714d281fd7dc6efdd2afa 100644 (file)
@@ -32,6 +32,7 @@ use OC\Security\RateLimiting\Limiter;
 use OC\SystemConfig;
 use OCP\Collaboration\Reference\IReference;
 use OCP\Collaboration\Reference\IReferenceProvider;
+use OCP\Collaboration\Reference\Reference;
 use OCP\Files\AppData\IAppDataFactory;
 use OCP\Files\NotFoundException;
 use OCP\Http\Client\IClientService;
diff --git a/lib/private/Collaboration/Reference/Reference.php b/lib/private/Collaboration/Reference/Reference.php
deleted file mode 100644 (file)
index 22dc577..0000000
+++ /dev/null
@@ -1,163 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-/**
- * @copyright Copyright (c) 2022 Julius Härtl <jus@bitgrid.net>
- *
- * @author Julius Härtl <jus@bitgrid.net>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * 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
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-namespace OC\Collaboration\Reference;
-
-use OCP\Collaboration\Reference\IReference;
-
-class Reference implements IReference {
-       private string $reference;
-
-       private bool $accessible = true;
-
-       private ?string $title = null;
-       private ?string $description = null;
-       private ?string $imageUrl = null;
-       private ?string $contentType = null;
-       private ?string $url = null;
-
-       private ?string $richObjectType = null;
-       private ?array $richObject = null;
-
-       public function __construct(string $reference) {
-               $this->reference = $reference;
-       }
-
-       public function getId(): string {
-               return $this->reference;
-       }
-
-       public function setAccessible(bool $accessible): void {
-               $this->accessible = $accessible;
-       }
-
-       public function getAccessible(): bool {
-               return $this->accessible;
-       }
-
-       public function setTitle(string $title): void {
-               $this->title = $title;
-       }
-
-       public function getTitle(): string {
-               return $this->title ?? $this->reference;
-       }
-
-       public function setDescription(?string $description): void {
-               $this->description = $description;
-       }
-
-       public function getDescription(): ?string {
-               return $this->description;
-       }
-
-       public function setImageUrl(?string $imageUrl): void {
-               $this->imageUrl = $imageUrl;
-       }
-
-       public function getImageUrl(): ?string {
-               return $this->imageUrl;
-       }
-
-       public function setImageContentType(?string $contentType): void {
-               $this->contentType = $contentType;
-       }
-
-       public function getImageContentType(): ?string {
-               return $this->contentType;
-       }
-
-       public function setUrl(?string $url): void {
-               $this->url = $url;
-       }
-
-       public function getUrl(): ?string {
-               return $this->url;
-       }
-
-       public function setRichObject(string $type, ?array $richObject): void {
-               $this->richObjectType = $type;
-               $this->richObject = $richObject;
-       }
-
-       public function getRichObjectType(): string {
-               if ($this->richObjectType === null) {
-                       return 'open-graph';
-               }
-               return $this->richObjectType;
-       }
-
-       public function getRichObject(): array {
-               if ($this->richObject === null) {
-                       return $this->getOpenGraphObject();
-               }
-               return $this->richObject;
-       }
-
-       public function getOpenGraphObject(): array {
-               return [
-                       'id' => $this->getId(),
-                       'name' => $this->getTitle(),
-                       'description' => $this->getDescription(),
-                       'thumb' => $this->getImageUrl(),
-                       'link' => $this->getUrl()
-               ];
-       }
-
-       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(),
-               ];
-       }
-
-       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;
-       }
-
-       public function jsonSerialize() {
-               return [
-                       'richObjectType' => $this->getRichObjectType(),
-                       'richObject' => $this->getRichObject(),
-                       'openGraphObject' => $this->getOpenGraphObject(),
-                       'accessible' => $this->accessible
-               ];
-       }
-}
index 304d693804f522bf18dcf6091e3d3d506924a98c..a11d92fe2a9ff350617839a94ffe22084acee95e 100644 (file)
@@ -29,6 +29,7 @@ use OC\Collaboration\Reference\File\FileReferenceProvider;
 use OCP\Collaboration\Reference\IReference;
 use OCP\Collaboration\Reference\IReferenceManager;
 use OCP\Collaboration\Reference\IReferenceProvider;
+use OCP\Collaboration\Reference\Reference;
 use OCP\ICache;
 use OCP\ICacheFactory;
 use OCP\IURLGenerator;
diff --git a/lib/public/Collaboration/Reference/Reference.php b/lib/public/Collaboration/Reference/Reference.php
new file mode 100644 (file)
index 0000000..59619bd
--- /dev/null
@@ -0,0 +1,161 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright Copyright (c) 2022 Julius Härtl <jus@bitgrid.net>
+ *
+ * @author Julius Härtl <jus@bitgrid.net>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+namespace OCP\Collaboration\Reference;
+
+class Reference implements IReference {
+       private string $reference;
+
+       private bool $accessible = true;
+
+       private ?string $title = null;
+       private ?string $description = null;
+       private ?string $imageUrl = null;
+       private ?string $contentType = null;
+       private ?string $url = null;
+
+       private ?string $richObjectType = null;
+       private ?array $richObject = null;
+
+       public function __construct(string $reference) {
+               $this->reference = $reference;
+       }
+
+       public function getId(): string {
+               return $this->reference;
+       }
+
+       public function setAccessible(bool $accessible): void {
+               $this->accessible = $accessible;
+       }
+
+       public function getAccessible(): bool {
+               return $this->accessible;
+       }
+
+       public function setTitle(string $title): void {
+               $this->title = $title;
+       }
+
+       public function getTitle(): string {
+               return $this->title ?? $this->reference;
+       }
+
+       public function setDescription(?string $description): void {
+               $this->description = $description;
+       }
+
+       public function getDescription(): ?string {
+               return $this->description;
+       }
+
+       public function setImageUrl(?string $imageUrl): void {
+               $this->imageUrl = $imageUrl;
+       }
+
+       public function getImageUrl(): ?string {
+               return $this->imageUrl;
+       }
+
+       public function setImageContentType(?string $contentType): void {
+               $this->contentType = $contentType;
+       }
+
+       public function getImageContentType(): ?string {
+               return $this->contentType;
+       }
+
+       public function setUrl(?string $url): void {
+               $this->url = $url;
+       }
+
+       public function getUrl(): ?string {
+               return $this->url;
+       }
+
+       public function setRichObject(string $type, ?array $richObject): void {
+               $this->richObjectType = $type;
+               $this->richObject = $richObject;
+       }
+
+       public function getRichObjectType(): string {
+               if ($this->richObjectType === null) {
+                       return 'open-graph';
+               }
+               return $this->richObjectType;
+       }
+
+       public function getRichObject(): array {
+               if ($this->richObject === null) {
+                       return $this->getOpenGraphObject();
+               }
+               return $this->richObject;
+       }
+
+       public function getOpenGraphObject(): array {
+               return [
+                       'id' => $this->getId(),
+                       'name' => $this->getTitle(),
+                       'description' => $this->getDescription(),
+                       'thumb' => $this->getImageUrl(),
+                       'link' => $this->getUrl()
+               ];
+       }
+
+       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(),
+               ];
+       }
+
+       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;
+       }
+
+       public function jsonSerialize() {
+               return [
+                       'richObjectType' => $this->getRichObjectType(),
+                       'richObject' => $this->getRichObject(),
+                       'openGraphObject' => $this->getOpenGraphObject(),
+                       'accessible' => $this->accessible
+               ];
+       }
+}