]> git.mxchange.org Git - friendica.git/blob - src/Model/ItemURI.php
Changes:
[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          * @return int|null item-uri id
34          * @throws \Exception
35          */
36         public static function insert(array $fields)
37         {
38                 // If the URI gets too long we only take the first parts and hope for best
39                 $uri = substr($fields['uri'], 0, 255);
40
41                 if (!DBA::exists('item-uri', ['uri' => $uri])) {
42                         DBA::insert('item-uri', $fields, Database::INSERT_UPDATE);
43                 }
44
45                 $itemuri = DBA::selectFirst('item-uri', ['id', 'guid'], ['uri' => $uri]);
46
47                 if (!DBA::isResult($itemuri)) {
48                         // This shouldn't happen
49                         return null;
50                 }
51
52                 if (empty($itemuri['guid']) && !empty($fields['guid'])) {
53                         DBA::update('item-uri', ['guid' => $fields['guid']], ['id' => $itemuri['id']]);
54                 }
55
56                 return $itemuri['id'];
57         }
58
59         /**
60          * Searched for an id of a given uri. Adds it, if not existing yet.
61          *
62          * @param string $uri
63          * @return integer item-uri id
64          * @throws \Exception
65          */
66         public static function getIdByURI(string $uri): int
67         {
68                 // If the URI gets too long we only take the first parts and hope for best
69                 $uri = substr($uri, 0, 255);
70
71                 $itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
72
73                 if (!DBA::isResult($itemuri)) {
74                         return self::insert(['uri' => $uri]);
75                 }
76
77                 return $itemuri['id'];
78         }
79         /**
80          * Searched for an id of a given guid.
81          *
82          * @param string $guid
83          * @return integer item-uri id
84          * @throws \Exception
85          */
86         public static function getIdByGUID(string $guid): int
87         {
88                 // If the GUID gets too long we only take the first parts and hope for best
89                 $guid = substr($guid, 0, 255);
90
91                 $itemuri = DBA::selectFirst('item-uri', ['id'], ['guid' => $guid]);
92
93                 if (!DBA::isResult($itemuri)) {
94                         return 0;
95                 }
96
97                 return $itemuri['id'];
98         }
99 }