Store the tag type for the post targets
This commit is contained in:
parent
1c0c787d1c
commit
060597f619
8 changed files with 96 additions and 24 deletions
|
@ -29,6 +29,7 @@ use Friendica\Core\System;
|
|||
use Friendica\Database\Database;
|
||||
use Friendica\Database\DBA;
|
||||
use Friendica\DI;
|
||||
use Friendica\Protocol\ActivityPub;
|
||||
use Friendica\Util\DateTimeFormat;
|
||||
use Friendica\Util\Strings;
|
||||
|
||||
|
@ -57,6 +58,9 @@ class Tag
|
|||
const BTO = 12;
|
||||
const BCC = 13;
|
||||
|
||||
const ACCOUNT = 1;
|
||||
const COLLECTION = 2;
|
||||
|
||||
const TAG_CHARACTER = [
|
||||
self::HASHTAG => '#',
|
||||
self::MENTION => '@',
|
||||
|
@ -71,8 +75,9 @@ class Tag
|
|||
* @param integer $type
|
||||
* @param string $name
|
||||
* @param string $url
|
||||
* @param integer $target
|
||||
*/
|
||||
public static function store(int $uriid, int $type, string $name, string $url = '')
|
||||
public static function store(int $uriid, int $type, string $name, string $url = '', int $target = null)
|
||||
{
|
||||
if ($type == self::HASHTAG) {
|
||||
// Trim Unicode non-word characters
|
||||
|
@ -108,11 +113,14 @@ class Tag
|
|||
Logger::debug('Got id for contact', ['cid' => $cid, 'url' => $url]);
|
||||
|
||||
if (empty($cid)) {
|
||||
// The contact wasn't found in the system (most likely some dead account)
|
||||
// We ensure that we only store a single entry by overwriting the previous name
|
||||
Logger::info('URL is not a known contact, updating tag', ['url' => $url, 'name' => $name]);
|
||||
if (!DBA::exists('tag', ['name' => substr($name, 0, 96), 'url' => $url])) {
|
||||
DBA::update('tag', ['name' => substr($name, 0, 96)], ['url' => $url]);
|
||||
$tag = DBA::selectFirst('tag', ['name', 'type'], ['url' => $url]);
|
||||
if (!empty($tag)) {
|
||||
if ($tag['name'] != substr($name, 0, 96)) {
|
||||
DBA::update('tag', ['name' => substr($name, 0, 96)], ['url' => $url]);
|
||||
}
|
||||
if (!empty($target) && ($tag['type'] != $target)) {
|
||||
DBA::update('tag', ['type' => $target], ['url' => $url]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -126,7 +134,7 @@ class Tag
|
|||
}
|
||||
}
|
||||
|
||||
$tagid = self::getID($name, $url);
|
||||
$tagid = self::getID($name, $url, $target);
|
||||
if (empty($tagid)) {
|
||||
return;
|
||||
}
|
||||
|
@ -148,17 +156,66 @@ class Tag
|
|||
Logger::info('Stored tag/mention', ['uri-id' => $uriid, 'tag-id' => $tagid, 'contact-id' => $cid, 'name' => $name, 'type' => $type, 'callstack' => System::callstack(8)]);
|
||||
}
|
||||
|
||||
public static function getTargetType(string $url)
|
||||
{
|
||||
if (empty($url)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$tag = DBA::selectFirst('tag', ['url', 'type'], ['url' => $url]);
|
||||
if (!empty($tag['type'])) {
|
||||
Logger::debug('Found existing type', ['type' => $tag['type'], 'url' => $url]);
|
||||
return $tag['type'];
|
||||
}
|
||||
|
||||
$target = null;
|
||||
|
||||
if ($url == ActivityPub::PUBLIC_COLLECTION) {
|
||||
$target = Tag::COLLECTION;
|
||||
Logger::debug('Public collection', ['url' => $url]);
|
||||
} else {
|
||||
if (DBA::exists('apcontact', ['followers' => $url])) {
|
||||
$target = Tag::COLLECTION;
|
||||
Logger::debug('Found collection via existing apcontact', ['url' => $url]);
|
||||
} elseif (Contact::getIdForURL($url, 0)) {
|
||||
$target = Tag::ACCOUNT;
|
||||
Logger::debug('URL is an account', ['url' => $url]);
|
||||
} else {
|
||||
$content = ActivityPub::fetchContent($url);
|
||||
if (!empty($content['type']) && ($content['type'] == 'OrderedCollection')) {
|
||||
$target = Tag::COLLECTION;
|
||||
Logger::debug('URL is an ordered collection', ['url' => $url]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($target) && !empty($tag['url']) && empty($tag['type'])) {
|
||||
DBA::update('tag', ['type' => $target], ['url' => $url]);
|
||||
}
|
||||
|
||||
if (empty($target)) {
|
||||
Logger::debug('No type could be detected', ['url' => $url]);
|
||||
}
|
||||
|
||||
return $target;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a tag id for a given tag name and url
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $url
|
||||
* @param int $type
|
||||
* @return void
|
||||
*/
|
||||
public static function getID(string $name, string $url = '')
|
||||
public static function getID(string $name, string $url = '', int $type = null)
|
||||
{
|
||||
$fields = ['name' => substr($name, 0, 96), 'url' => $url];
|
||||
|
||||
if (!empty($type)) {
|
||||
$fields['type'] = $type;
|
||||
}
|
||||
|
||||
$tag = DBA::selectFirst('tag', ['id'], $fields);
|
||||
if (DBA::isResult($tag)) {
|
||||
return $tag['id'];
|
||||
|
@ -373,7 +430,7 @@ class Tag
|
|||
public static function getByURIId(int $uri_id, array $type = [self::HASHTAG, self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION])
|
||||
{
|
||||
$condition = ['uri-id' => $uri_id, 'type' => $type];
|
||||
return DBA::selectToArray('tag-view', ['type', 'name', 'url'], $condition);
|
||||
return DBA::selectToArray('tag-view', ['type', 'name', 'url', 'tag-type'], $condition);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue