2020-04-15 12:37:09 -04: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;
|
|
|
|
|
2020-04-19 12:33:06 -04:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2020-04-15 12:37:09 -04:00
|
|
|
use Friendica\Core\Logger;
|
2020-04-19 12:33:06 -04:00
|
|
|
use Friendica\Core\System;
|
2020-04-15 12:37:09 -04:00
|
|
|
use Friendica\Database\DBA;
|
2020-04-18 12:00:06 -04:00
|
|
|
use Friendica\Util\Strings;
|
2020-04-15 12:37:09 -04: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 00:20:06 -04:00
|
|
|
const UNKNOWN = 0;
|
|
|
|
const HASHTAG = 1;
|
|
|
|
const MENTION = 2;
|
|
|
|
const CATEGORY = 3;
|
|
|
|
const FILE = 5;
|
2020-04-15 12:37:09 -04:00
|
|
|
/**
|
|
|
|
* An implicit mention is a mention in a comment body that is redundant with the threading information.
|
|
|
|
*/
|
2020-04-16 00:20:06 -04:00
|
|
|
const IMPLICIT_MENTION = 8;
|
2020-04-15 12:37:09 -04:00
|
|
|
/**
|
|
|
|
* An exclusive mention transfers the ownership of the post to the target account, usually a forum.
|
|
|
|
*/
|
2020-04-16 00:20:06 -04:00
|
|
|
const EXCLUSIVE_MENTION = 9;
|
2020-04-15 12:37:09 -04:00
|
|
|
|
2020-04-16 00:20:06 -04:00
|
|
|
const TAG_CHARACTER = [
|
|
|
|
self::HASHTAG => '#',
|
|
|
|
self::MENTION => '@',
|
|
|
|
self::IMPLICIT_MENTION => '%',
|
|
|
|
self::EXCLUSIVE_MENTION => '!',
|
|
|
|
];
|
2020-04-15 12:37:09 -04:00
|
|
|
|
2020-04-17 03:58:54 -04:00
|
|
|
/**
|
|
|
|
* Store tag/mention elements
|
|
|
|
*
|
|
|
|
* @param integer $uriid
|
|
|
|
* @param integer $type
|
2020-04-20 05:47:26 -04:00
|
|
|
* @param string $name
|
|
|
|
* @param string $url
|
|
|
|
* @param boolean $probing
|
2020-04-17 03:58:54 -04:00
|
|
|
*/
|
2020-04-20 05:47:26 -04:00
|
|
|
public static function store(int $uriid, int $type, string $name, string $url = '', $probing = true)
|
2020-04-17 02:35:20 -04:00
|
|
|
{
|
|
|
|
$name = trim($name, "\x00..\x20\xFF#!@");
|
|
|
|
if (empty($name)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-18 12:00:06 -04:00
|
|
|
$cid = 0;
|
|
|
|
$tagid = 0;
|
|
|
|
|
2020-04-18 10:41:26 -04: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 02:35:20 -04:00
|
|
|
|
2020-04-20 05:47:26 -04:00
|
|
|
if (!$probing) {
|
|
|
|
$condition = ['nurl' => Strings::normaliseLink($url), 'uid' => 0, 'deleted' => false];
|
|
|
|
$contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
|
|
|
|
if (DBA::isResult($contact)) {
|
|
|
|
$cid = $contact['id'];
|
|
|
|
Logger::info('Got id for contact url', ['cid' => $cid, 'url' => $url]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($cid)) {
|
|
|
|
$ssl_url = str_replace('http://', 'https://', $url);
|
|
|
|
$condition = ['`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`', $url, Strings::normaliseLink($url), $ssl_url, 0];
|
|
|
|
$contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
|
|
|
|
if (DBA::isResult($contact)) {
|
|
|
|
$cid = $contact['id'];
|
|
|
|
Logger::info('Got id for contact alias', ['cid' => $cid, 'url' => $url]);
|
|
|
|
}
|
|
|
|
}
|
2020-04-18 12:00:06 -04:00
|
|
|
} else {
|
2020-04-20 05:47:26 -04:00
|
|
|
$cid = Contact::getIdForURL($url, 0, true);
|
|
|
|
Logger::info('Got id by probing', ['cid' => $cid, 'url' => $url]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($cid)) {
|
2020-04-18 12:00:06 -04:00
|
|
|
// 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
|
2020-04-20 05:47:26 -04:00
|
|
|
Logger::info('Contact not found, updating tag', ['url' => $url, 'name' => $name]);
|
2020-04-18 12:00:06 -04:00
|
|
|
DBA::update('tag', ['name' => substr($name, 0, 96)], ['url' => $url]);
|
2020-04-18 10:41:26 -04:00
|
|
|
}
|
2020-04-18 12:00:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($cid)) {
|
2020-04-18 16:46:41 -04:00
|
|
|
$fields = ['name' => substr($name, 0, 96), 'url' => ''];
|
2020-04-17 02:35:20 -04:00
|
|
|
|
2020-04-19 03:24:36 -04:00
|
|
|
if (($type != Tag::HASHTAG) && !empty($url) && ($url != $name)) {
|
2020-04-18 10:41:26 -04:00
|
|
|
$fields['url'] = strtolower($url);
|
|
|
|
}
|
2020-04-20 05:47:26 -04:00
|
|
|
|
2020-04-18 10:41:26 -04:00
|
|
|
$tag = DBA::selectFirst('tag', ['id'], $fields);
|
|
|
|
if (!DBA::isResult($tag)) {
|
|
|
|
DBA::insert('tag', $fields, true);
|
|
|
|
$tagid = DBA::lastInsertId();
|
|
|
|
} else {
|
|
|
|
$tagid = $tag['id'];
|
|
|
|
}
|
2020-04-20 05:47:26 -04:00
|
|
|
|
2020-04-18 10:41:26 -04:00
|
|
|
if (empty($tagid)) {
|
|
|
|
Logger::error('No tag id created', $fields);
|
|
|
|
return;
|
|
|
|
}
|
2020-04-17 02:35:20 -04:00
|
|
|
}
|
|
|
|
|
2020-04-20 01:43:13 -04:00
|
|
|
$fields = ['uri-id' => $uriid, 'type' => $type, 'tid' => $tagid, 'cid' => $cid];
|
|
|
|
|
|
|
|
if (in_array($type, [Tag::MENTION, Tag::EXCLUSIVE_MENTION, Tag::IMPLICIT_MENTION])) {
|
|
|
|
$condition = $fields;
|
|
|
|
$condition['type'] = [Tag::MENTION, Tag::EXCLUSIVE_MENTION, Tag::IMPLICIT_MENTION];
|
|
|
|
if (DBA::exists('post-tag', $condition)) {
|
|
|
|
Logger::info('Tag already exists', $fields);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DBA::insert('post-tag', $fields, true);
|
2020-04-17 02:35:20 -04:00
|
|
|
|
2020-04-20 05:47:26 -04:00
|
|
|
Logger::info('Stored tag/mention', ['uri-id' => $uriid, 'tag-id' => $tagid, 'contact-id' => $cid, 'name' => $name, 'type' => $type, 'callstack' => System::callstack(8)]);
|
2020-04-17 02:35:20 -04:00
|
|
|
}
|
|
|
|
|
2020-04-17 03:58:54 -04:00
|
|
|
/**
|
|
|
|
* Store tag/mention elements
|
|
|
|
*
|
|
|
|
* @param integer $uriid
|
|
|
|
* @param string $hash
|
|
|
|
* @param string $name
|
|
|
|
* @param string $url
|
2020-04-20 05:47:26 -04:00
|
|
|
* @param boolean $probing
|
2020-04-17 03:58:54 -04:00
|
|
|
*/
|
2020-04-20 05:47:26 -04:00
|
|
|
public static function storeByHash(int $uriid, string $hash, string $name, string $url = '', $probing = true)
|
2020-04-17 02:35:20 -04:00
|
|
|
{
|
2020-04-18 17:01:43 -04:00
|
|
|
$type = self::getTypeForHash($hash);
|
|
|
|
if ($type == self::UNKNOWN) {
|
2020-04-17 02:35:20 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-20 05:47:26 -04:00
|
|
|
self::store($uriid, $type, $name, $url, $probing);
|
2020-04-17 02:35:20 -04:00
|
|
|
}
|
|
|
|
|
2020-04-15 12:37:09 -04:00
|
|
|
/**
|
2020-04-18 06:05:30 -04:00
|
|
|
* Store tags and mentions from the body
|
|
|
|
*
|
2020-04-20 05:47:26 -04:00
|
|
|
* @param integer $uriid URI-Id
|
|
|
|
* @param string $body Body of the post
|
|
|
|
* @param string $tags Accepted tags
|
|
|
|
* @param boolean $probing Perform a probing for contacts, adding them if needed
|
2020-04-15 12:37:09 -04:00
|
|
|
*/
|
2020-04-20 05:47:26 -04:00
|
|
|
public static function storeFromBody(int $uriid, string $body, string $tags = null, $probing = true)
|
2020-04-15 12:37:09 -04:00
|
|
|
{
|
2020-04-18 12:14:38 -04:00
|
|
|
if (is_null($tags)) {
|
|
|
|
$tags = self::TAG_CHARACTER[self::HASHTAG] . self::TAG_CHARACTER[self::MENTION] . self::TAG_CHARACTER[self::EXCLUSIVE_MENTION];
|
|
|
|
}
|
|
|
|
|
2020-04-19 12:33:06 -04:00
|
|
|
Logger::info('Check for tags', ['uri-id' => $uriid, 'hash' => $tags, 'callstack' => System::callstack()]);
|
|
|
|
|
2020-04-18 10:41:26 -04:00
|
|
|
if (!preg_match_all("/([" . $tags . "])\[url\=([^\[\]]*)\]([^\[\]]*)\[\/url\]/ism", $body, $result, PREG_SET_ORDER)) {
|
2020-04-15 12:37:09 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-19 12:33:06 -04:00
|
|
|
Logger::info('Found tags', ['uri-id' => $uriid, 'hash' => $tags, 'result' => $result]);
|
|
|
|
|
2020-04-18 06:05:30 -04:00
|
|
|
foreach ($result as $tag) {
|
2020-04-20 05:47:26 -04:00
|
|
|
self::storeByHash($uriid, $tag[1], $tag[3], $tag[2], $probing);
|
2020-04-15 12:37:09 -04:00
|
|
|
}
|
|
|
|
}
|
2020-04-18 16:46:41 -04:00
|
|
|
|
2020-04-19 12:33:06 -04:00
|
|
|
/**
|
|
|
|
* Store raw tags (not encapsulated in links) from the body
|
|
|
|
* This function is needed in the intermediate phase.
|
|
|
|
* Later we can call item::setHashtags in advance to have all tags converted.
|
|
|
|
*
|
|
|
|
* @param integer $uriid URI-Id
|
|
|
|
* @param string $body Body of the post
|
|
|
|
*/
|
|
|
|
public static function storeRawTagsFromBody(int $uriid, string $body)
|
|
|
|
{
|
|
|
|
Logger::info('Check for tags', ['uri-id' => $uriid, 'callstack' => System::callstack()]);
|
|
|
|
|
|
|
|
$result = BBCode::getTags($body);
|
|
|
|
if (empty($result)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger::info('Found tags', ['uri-id' => $uriid, 'result' => $result]);
|
|
|
|
|
|
|
|
foreach ($result as $tag) {
|
|
|
|
if (substr($tag, 0, 1) != self::TAG_CHARACTER[self::HASHTAG]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
self::storeByHash($uriid, substr($tag, 0, 1), substr($tag, 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-18 16:46:41 -04:00
|
|
|
/**
|
|
|
|
* Remove tag/mention
|
|
|
|
*
|
|
|
|
* @param integer $uriid
|
|
|
|
* @param integer $type
|
|
|
|
* @param string $name
|
|
|
|
* @param string $url
|
|
|
|
*/
|
|
|
|
public static function remove(int $uriid, int $type, string $name, string $url = '')
|
|
|
|
{
|
2020-04-24 07:04:50 -04:00
|
|
|
$condition = ['uri-id' => $uriid, 'type' => $type, 'url' => $url];
|
|
|
|
if ($type == self::HASHTAG) {
|
|
|
|
$condition['name'] = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tag = DBA::selectFirst('tag-view', ['tid', 'cid'], $condition);
|
2020-04-18 16:46:41 -04:00
|
|
|
if (!DBA::isResult($tag)) {
|
|
|
|
return;
|
|
|
|
}
|
2020-04-24 07:04:50 -04:00
|
|
|
|
|
|
|
Logger::info('Removing tag/mention', ['uri-id' => $uriid, 'tid' => $tag['tid'], 'name' => $name, 'url' => $url, 'callstack' => System::callstack(8)]);
|
|
|
|
DBA::delete('post-tag', ['uri-id' => $uriid, 'type' => $type, 'tid' => $tag['tid'], 'cid' => $tag['cid']]);
|
2020-04-18 16:46:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove tag/mention
|
|
|
|
*
|
|
|
|
* @param integer $uriid
|
|
|
|
* @param string $hash
|
|
|
|
* @param string $name
|
|
|
|
* @param string $url
|
|
|
|
*/
|
|
|
|
public static function removeByHash(int $uriid, string $hash, string $name, string $url = '')
|
2020-04-18 17:01:43 -04:00
|
|
|
{
|
|
|
|
$type = self::getTypeForHash($hash);
|
|
|
|
if ($type == self::UNKNOWN) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self::remove($uriid, $type, $name, $url);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the type for the given hash
|
|
|
|
*
|
|
|
|
* @param string $hash
|
|
|
|
* @return integer type
|
|
|
|
*/
|
|
|
|
private static function getTypeForHash(string $hash)
|
2020-04-18 16:46:41 -04:00
|
|
|
{
|
|
|
|
if ($hash == self::TAG_CHARACTER[self::MENTION]) {
|
2020-04-18 17:01:43 -04:00
|
|
|
return self::MENTION;
|
2020-04-18 16:46:41 -04:00
|
|
|
} elseif ($hash == self::TAG_CHARACTER[self::EXCLUSIVE_MENTION]) {
|
2020-04-18 17:01:43 -04:00
|
|
|
return self::EXCLUSIVE_MENTION;
|
2020-04-18 16:46:41 -04:00
|
|
|
} elseif ($hash == self::TAG_CHARACTER[self::IMPLICIT_MENTION]) {
|
2020-04-18 17:01:43 -04:00
|
|
|
return self::IMPLICIT_MENTION;
|
2020-04-18 16:46:41 -04:00
|
|
|
} elseif ($hash == self::TAG_CHARACTER[self::HASHTAG]) {
|
2020-04-18 17:01:43 -04:00
|
|
|
return self::HASHTAG;
|
2020-04-18 16:46:41 -04:00
|
|
|
} else {
|
2020-04-18 17:01:43 -04:00
|
|
|
return self::UNKNOWN;
|
2020-04-18 16:46:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-04-15 12:37:09 -04:00
|
|
|
}
|