]> git.mxchange.org Git - friendica.git/blob - src/Model/ItemURI.php
Use central function to fetch the global directory
[friendica.git] / src / Model / ItemURI.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Model;
23
24 use Friendica\Database\Database;
25 use Friendica\Database\DBA;
26
27 class ItemURI
28 {
29         /**
30          * Insert an item-uri record and return its id
31          *
32          * @param array $fields Item-uri fields
33          *
34          * @return int|null item-uri id
35          * @throws \Exception
36          */
37         public static function insert(array $fields)
38         {
39                 // If the URI gets too long we only take the first parts and hope for best
40                 $uri = substr($fields['uri'], 0, 255);
41
42                 if (!DBA::exists('item-uri', ['uri' => $uri])) {
43                         DBA::insert('item-uri', $fields, Database::INSERT_UPDATE);
44                 }
45
46                 $itemuri = DBA::selectFirst('item-uri', ['id', 'guid'], ['uri' => $uri]);
47
48                 if (!DBA::isResult($itemuri)) {
49                         // This shouldn't happen
50                         return null;
51                 }
52
53                 if (empty($itemuri['guid']) && !empty($fields['guid'])) {
54                         DBA::update('item-uri', ['guid' => $fields['guid']], ['id' => $itemuri['id']]);
55                 }
56
57                 return $itemuri['id'];
58         }
59
60         /**
61          * Searched for an id of a given uri. Adds it, if not existing yet.
62          *
63          * @param string $uri
64          *
65          * @return integer item-uri id
66          * @throws \Exception
67          */
68         public static function getIdByURI($uri)
69         {
70                 // If the URI gets too long we only take the first parts and hope for best
71                 $uri = substr($uri, 0, 255);
72
73                 $itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
74
75                 if (!DBA::isResult($itemuri)) {
76                         return self::insert(['uri' => $uri]);
77                 }
78
79                 return $itemuri['id'];
80         }
81         /**
82          * Searched for an id of a given guid.
83          *
84          * @param string $guid
85          *
86          * @return integer item-uri id
87          * @throws \Exception
88          */
89         public static function getIdByGUID($guid)
90         {
91                 // If the GUID gets too long we only take the first parts and hope for best
92                 $guid = substr($guid, 0, 255);
93
94                 $itemuri = DBA::selectFirst('item-uri', ['id'], ['guid' => $guid]);
95
96                 if (!DBA::isResult($itemuri)) {
97                         return 0;
98                 }
99
100                 return $itemuri['id'];
101         }
102 }