]> git.mxchange.org Git - friendica.git/blob - src/Model/ItemURI.php
Fill "last-item" with an empty date when bo date had been provided
[friendica.git] / src / Model / ItemURI.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\DBA;
25
26 class ItemURI
27 {
28         /**
29          * Insert an item-uri record and return its id
30          *
31          * @param array $fields Item-uri fields
32          *
33          * @return integer item-uri id
34          * @throws \Exception
35          */
36         public static function insert($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, true);
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          *
64          * @return integer item-uri id
65          * @throws \Exception
66          */
67         public static function getIdByURI($uri)
68         {
69                 // If the URI gets too long we only take the first parts and hope for best
70                 $uri = substr($uri, 0, 255);
71
72                 $itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
73
74                 if (!DBA::isResult($itemuri)) {
75                         return self::insert(['uri' => $uri]);
76                 }
77
78                 return $itemuri['id'];
79         }
80 }