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