2018-08-05 07:09:59 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-08-05 07:09:59 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2020-11-19 14:34:48 -05:00
|
|
|
use Friendica\Database\Database;
|
2018-08-05 07:09:59 -04:00
|
|
|
use Friendica\Database\DBA;
|
|
|
|
|
2019-12-15 17:28:01 -05:00
|
|
|
class ItemURI
|
2018-08-05 07:09:59 -04:00
|
|
|
{
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Insert an item-uri record and return its id
|
2018-08-05 07:09:59 -04:00
|
|
|
*
|
|
|
|
* @param array $fields Item-uri fields
|
2020-12-13 13:42:08 -05:00
|
|
|
* @return int|null item-uri id
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-08-05 07:09:59 -04:00
|
|
|
*/
|
2020-12-13 13:42:08 -05:00
|
|
|
public static function insert(array $fields)
|
2018-08-05 07:09:59 -04:00
|
|
|
{
|
2018-12-02 09:49:28 -05:00
|
|
|
// If the URI gets too long we only take the first parts and hope for best
|
|
|
|
$uri = substr($fields['uri'], 0, 255);
|
|
|
|
|
|
|
|
if (!DBA::exists('item-uri', ['uri' => $uri])) {
|
2020-11-19 14:34:48 -05:00
|
|
|
DBA::insert('item-uri', $fields, Database::INSERT_UPDATE);
|
2018-08-05 07:09:59 -04:00
|
|
|
}
|
|
|
|
|
2020-04-19 04:34:20 -04:00
|
|
|
$itemuri = DBA::selectFirst('item-uri', ['id', 'guid'], ['uri' => $uri]);
|
2018-08-05 07:09:59 -04:00
|
|
|
|
|
|
|
if (!DBA::isResult($itemuri)) {
|
|
|
|
// This shouldn't happen
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-04-19 04:34:20 -04:00
|
|
|
if (empty($itemuri['guid']) && !empty($fields['guid'])) {
|
|
|
|
DBA::update('item-uri', ['guid' => $fields['guid']], ['id' => $itemuri['id']]);
|
|
|
|
}
|
|
|
|
|
2018-08-05 07:09:59 -04:00
|
|
|
return $itemuri['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Searched for an id of a given uri. Adds it, if not existing yet.
|
2018-08-05 07:09:59 -04:00
|
|
|
*
|
|
|
|
* @param string $uri
|
2022-08-07 15:24:50 -04:00
|
|
|
* @param bool $insert
|
|
|
|
*
|
2018-08-05 07:09:59 -04:00
|
|
|
* @return integer item-uri id
|
2022-08-07 15:24:50 -04:00
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-08-05 07:09:59 -04:00
|
|
|
*/
|
2022-08-07 15:24:50 -04:00
|
|
|
public static function getIdByURI(string $uri, bool $insert = true): int
|
2018-08-05 07:09:59 -04:00
|
|
|
{
|
2022-06-18 12:30:03 -04:00
|
|
|
if (empty($uri)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-02 09:49:28 -05:00
|
|
|
// If the URI gets too long we only take the first parts and hope for best
|
|
|
|
$uri = substr($uri, 0, 255);
|
|
|
|
|
2018-08-05 07:09:59 -04:00
|
|
|
$itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
|
|
|
|
|
2022-08-07 15:24:50 -04:00
|
|
|
if (!DBA::isResult($itemuri) && $insert) {
|
2018-08-05 07:09:59 -04:00
|
|
|
return self::insert(['uri' => $uri]);
|
|
|
|
}
|
|
|
|
|
2022-08-07 15:24:50 -04:00
|
|
|
return $itemuri['id'] ?? 0;
|
2021-04-26 02:50:12 -04:00
|
|
|
}
|
2022-08-07 15:24:50 -04:00
|
|
|
|
2021-04-26 02:50:12 -04:00
|
|
|
/**
|
|
|
|
* Searched for an id of a given guid.
|
|
|
|
*
|
|
|
|
* @param string $guid
|
|
|
|
* @return integer item-uri id
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-06-18 11:52:34 -04:00
|
|
|
public static function getIdByGUID(string $guid): int
|
2021-04-26 02:50:12 -04:00
|
|
|
{
|
|
|
|
// If the GUID gets too long we only take the first parts and hope for best
|
|
|
|
$guid = substr($guid, 0, 255);
|
|
|
|
|
|
|
|
$itemuri = DBA::selectFirst('item-uri', ['id'], ['guid' => $guid]);
|
|
|
|
|
|
|
|
if (!DBA::isResult($itemuri)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-05 07:09:59 -04:00
|
|
|
return $itemuri['id'];
|
|
|
|
}
|
|
|
|
}
|