Store mentioned contacts in another way

This commit is contained in:
Michael 2020-04-18 14:41:26 +00:00
parent 539a5c5da1
commit 5d34a90d67
2 changed files with 43 additions and 24 deletions

View File

@ -23,7 +23,7 @@ namespace Friendica\Model;
use Friendica\Core\Logger; use Friendica\Core\Logger;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Content\Text\BBCode; use Friendica\Model\Contact;
/** /**
* Class Tag * Class Tag
@ -69,28 +69,45 @@ class Tag
return; return;
} }
$fields = ['name' => substr($name, 0, 96), 'type' => $type]; if (in_array($type, [Tag::MENTION, Tag::EXCLUSIVE_MENTION, Tag::IMPLICIT_MENTION])) {
if (empty($url)) {
// No mention without a contact url
return;
}
if (!empty($url) && ($url != $name)) { Logger::info('Get ID for contact', ['url' => $url]);
$fields['url'] = strtolower($url);
}
$tag = DBA::selectFirst('tag', ['id'], $fields); $cid = Contact::getIdForURL($url, 0, true);
if (!DBA::isResult($tag)) { if (empty($cid)) {
DBA::insert('tag', $fields, true); Logger::error('No contact found', ['url' => $url]);
$tagid = DBA::lastInsertId(); return;
}
$tagid = 0;
} else { } else {
$tagid = $tag['id']; $fields = ['name' => substr($name, 0, 96)];
if (!empty($url) && ($url != $name)) {
$fields['url'] = strtolower($url);
}
$tag = DBA::selectFirst('tag', ['id'], $fields);
if (!DBA::isResult($tag)) {
DBA::insert('tag', $fields, true);
$tagid = DBA::lastInsertId();
} else {
$tagid = $tag['id'];
}
if (empty($tagid)) {
Logger::error('No tag id created', $fields);
return;
}
$cid = 0;
} }
if (empty($tagid)) { DBA::insert('post-tag', ['uri-id' => $uriid, 'type' => $type, 'tid' => $tagid, 'cid' => $cid], true);
Logger::error('No tag id created', $fields);
return;
}
DBA::insert('post-tag', ['uri-id' => $uriid, 'tid' => $tagid], true); Logger::info('Stored tag/mention', ['uri-id' => $uriid, 'tag-id' => $tagid, 'contact-id' => $cid]);
Logger::info('Stored tag/mention', ['uri-id' => $uriid, 'tag-id' => $tagid, 'tag' => $fields]);
} }
/** /**
@ -127,7 +144,7 @@ class Tag
*/ */
public static function storeFromBody(int $uriid, string $body, string $tags = '#@!') public static function storeFromBody(int $uriid, string $body, string $tags = '#@!')
{ {
if (!preg_match_all("/([" . $tags . "])\[url\=([^\[\]]*)\](.*?)\[\/url\]/ism", $body, $result, PREG_SET_ORDER)) { if (!preg_match_all("/([" . $tags . "])\[url\=([^\[\]]*)\]([^\[\]]*)\[\/url\]/ism", $body, $result, PREG_SET_ORDER)) {
return; return;
} }

View File

@ -1296,24 +1296,26 @@ return [
"comment" => "tags and mentions", "comment" => "tags and mentions",
"fields" => [ "fields" => [
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""], "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
"type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
"name" => ["type" => "varchar(96)", "not null" => "1", "default" => "", "comment" => ""], "name" => ["type" => "varchar(96)", "not null" => "1", "default" => "", "comment" => ""],
"url" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""] "url" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""]
], ],
"indexes" => [ "indexes" => [
"PRIMARY" => ["id"], "PRIMARY" => ["id"],
"type_name_url" => ["UNIQUE", "type", "name", "url"] "type_name_url" => ["UNIQUE", "name", "url"]
] ]
], ],
"post-tag" => [ "post-tag" => [
"comment" => "post relation to tags", "comment" => "post relation to tags",
"fields" => [ "fields" => [
"tid" => ["type" => "int unsigned", "not null" => "1", "relation" => ["tag" => "id"], "primary" => "1", "comment" => ""],
"uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "relation" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"], "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "relation" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
"type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
"tid" => ["type" => "int unsigned", "not null" => "1", "relation" => ["tag" => "id"], "primary" => "1", "comment" => ""],
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "relation" => ["contact" => "id"], "comment" => "Contact id of the mentioned public contact"],
], ],
"indexes" => [ "indexes" => [
"PRIMARY" => ["tid", "uri-id"], "PRIMARY" => ["uri-id", "type", "tid", "cid"],
"uri-id" => ["uri-id"] "uri-id" => ["tid"],
"cid" => ["tid"]
] ]
], ],
"thread" => [ "thread" => [