2020-04-15 16:37:09 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Model;
|
|
|
|
|
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Database\DBA;
|
2020-04-18 14:41:26 +00:00
|
|
|
use Friendica\Model\Contact;
|
2020-04-15 16:37:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Tag
|
|
|
|
*
|
|
|
|
* This Model class handles tag table interactions.
|
|
|
|
* This tables stores relevant tags related to posts, like hashtags and mentions.
|
|
|
|
*/
|
|
|
|
class Tag
|
|
|
|
{
|
2020-04-16 04:20:06 +00:00
|
|
|
const UNKNOWN = 0;
|
|
|
|
const HASHTAG = 1;
|
|
|
|
const MENTION = 2;
|
|
|
|
const CATEGORY = 3;
|
|
|
|
const FILE = 5;
|
2020-04-15 16:37:09 +00:00
|
|
|
/**
|
|
|
|
* An implicit mention is a mention in a comment body that is redundant with the threading information.
|
|
|
|
*/
|
2020-04-16 04:20:06 +00:00
|
|
|
const IMPLICIT_MENTION = 8;
|
2020-04-15 16:37:09 +00:00
|
|
|
/**
|
|
|
|
* An exclusive mention transfers the ownership of the post to the target account, usually a forum.
|
|
|
|
*/
|
2020-04-16 04:20:06 +00:00
|
|
|
const EXCLUSIVE_MENTION = 9;
|
2020-04-15 16:37:09 +00:00
|
|
|
|
2020-04-16 04:20:06 +00:00
|
|
|
const TAG_CHARACTER = [
|
|
|
|
self::HASHTAG => '#',
|
|
|
|
self::MENTION => '@',
|
|
|
|
self::IMPLICIT_MENTION => '%',
|
|
|
|
self::EXCLUSIVE_MENTION => '!',
|
|
|
|
];
|
2020-04-15 16:37:09 +00:00
|
|
|
|
2020-04-17 07:58:54 +00:00
|
|
|
/**
|
|
|
|
* Store tag/mention elements
|
|
|
|
*
|
|
|
|
* @param integer $uriid
|
|
|
|
* @param integer $type
|
|
|
|
* @param string $name
|
|
|
|
* @param string $url
|
|
|
|
*/
|
2020-04-17 06:35:20 +00:00
|
|
|
public static function store(int $uriid, int $type, string $name, string $url = '')
|
|
|
|
{
|
|
|
|
$name = trim($name, "\x00..\x20\xFF#!@");
|
|
|
|
if (empty($name)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-18 14:41:26 +00:00
|
|
|
if (in_array($type, [Tag::MENTION, Tag::EXCLUSIVE_MENTION, Tag::IMPLICIT_MENTION])) {
|
|
|
|
if (empty($url)) {
|
|
|
|
// No mention without a contact url
|
|
|
|
return;
|
|
|
|
}
|
2020-04-17 06:35:20 +00:00
|
|
|
|
2020-04-18 14:41:26 +00:00
|
|
|
Logger::info('Get ID for contact', ['url' => $url]);
|
2020-04-17 06:35:20 +00:00
|
|
|
|
2020-04-18 14:41:26 +00:00
|
|
|
$cid = Contact::getIdForURL($url, 0, true);
|
|
|
|
if (empty($cid)) {
|
|
|
|
Logger::error('No contact found', ['url' => $url]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$tagid = 0;
|
2020-04-17 06:35:20 +00:00
|
|
|
} else {
|
2020-04-18 14:41:26 +00:00
|
|
|
$fields = ['name' => substr($name, 0, 96)];
|
2020-04-17 06:35:20 +00:00
|
|
|
|
2020-04-18 14:41:26 +00:00
|
|
|
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;
|
2020-04-17 06:35:20 +00:00
|
|
|
}
|
|
|
|
|
2020-04-18 14:41:26 +00:00
|
|
|
DBA::insert('post-tag', ['uri-id' => $uriid, 'type' => $type, 'tid' => $tagid, 'cid' => $cid], true);
|
2020-04-17 06:35:20 +00:00
|
|
|
|
2020-04-18 14:41:26 +00:00
|
|
|
Logger::info('Stored tag/mention', ['uri-id' => $uriid, 'tag-id' => $tagid, 'contact-id' => $cid]);
|
2020-04-17 06:35:20 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 07:58:54 +00:00
|
|
|
/**
|
|
|
|
* Store tag/mention elements
|
|
|
|
*
|
|
|
|
* @param integer $uriid
|
|
|
|
* @param string $hash
|
|
|
|
* @param string $name
|
|
|
|
* @param string $url
|
|
|
|
*/
|
2020-04-17 06:35:20 +00:00
|
|
|
public static function storeByHash(int $uriid, string $hash, string $name, string $url = '')
|
|
|
|
{
|
|
|
|
if ($hash == self::TAG_CHARACTER[self::MENTION]) {
|
|
|
|
$type = self::MENTION;
|
|
|
|
} elseif ($hash == self::TAG_CHARACTER[self::EXCLUSIVE_MENTION]) {
|
|
|
|
$type = self::EXCLUSIVE_MENTION;
|
|
|
|
} elseif ($hash == self::TAG_CHARACTER[self::IMPLICIT_MENTION]) {
|
|
|
|
$type = self::IMPLICIT_MENTION;
|
|
|
|
} elseif ($hash == self::TAG_CHARACTER[self::HASHTAG]) {
|
|
|
|
$type = self::HASHTAG;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self::store($uriid, $type, $name, $url);
|
|
|
|
}
|
|
|
|
|
2020-04-15 16:37:09 +00:00
|
|
|
/**
|
2020-04-18 10:05:30 +00:00
|
|
|
* Store tags and mentions from the body
|
|
|
|
*
|
|
|
|
* @param integer $uriid URI-Id
|
|
|
|
* @param string $body Body of the post
|
|
|
|
* @param string $tags Accepted tags
|
2020-04-15 16:37:09 +00:00
|
|
|
*/
|
2020-04-18 10:05:30 +00:00
|
|
|
public static function storeFromBody(int $uriid, string $body, string $tags = '#@!')
|
2020-04-15 16:37:09 +00:00
|
|
|
{
|
2020-04-18 14:41:26 +00:00
|
|
|
if (!preg_match_all("/([" . $tags . "])\[url\=([^\[\]]*)\]([^\[\]]*)\[\/url\]/ism", $body, $result, PREG_SET_ORDER)) {
|
2020-04-15 16:37:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-18 10:05:30 +00:00
|
|
|
foreach ($result as $tag) {
|
|
|
|
self::storeByHash($uriid, $tag[1], $tag[3], $tag[2]);
|
2020-04-15 16:37:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|