2018-01-10 17:46:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Model/Term
|
|
|
|
*/
|
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2018-02-04 05:49:48 +01:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-10 18:05:20 +01:00
|
|
|
|
2018-02-04 05:49:48 +01:00
|
|
|
require_once 'boot.php';
|
2018-04-14 23:54:16 +02:00
|
|
|
require_once 'include/conversation.php';
|
2018-02-04 05:49:48 +01:00
|
|
|
require_once 'include/dba.php';
|
2018-01-10 18:51:51 +01:00
|
|
|
|
2018-01-10 17:46:05 +01:00
|
|
|
class Term
|
|
|
|
{
|
2018-06-30 15:54:01 +02:00
|
|
|
public static function tagTextFromItemId($itemid)
|
|
|
|
{
|
|
|
|
$tag_text = '';
|
|
|
|
$condition = ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_HASHTAG, TERM_MENTION]];
|
2018-07-20 14:19:26 +02:00
|
|
|
$tags = DBA::select('term', [], $condition);
|
|
|
|
while ($tag = DBA::fetch($tags)) {
|
2018-06-30 15:54:01 +02:00
|
|
|
if ($tag_text != '') {
|
|
|
|
$tag_text .= ',';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($tag['type'] == 1) {
|
|
|
|
$tag_text .= '#';
|
|
|
|
} else {
|
|
|
|
$tag_text .= '@';
|
|
|
|
}
|
|
|
|
$tag_text .= '[url=' . $tag['url'] . ']' . $tag['term'] . '[/url]';
|
|
|
|
}
|
|
|
|
return $tag_text;
|
|
|
|
}
|
|
|
|
|
2018-06-30 23:15:24 +02:00
|
|
|
public static function fileTextFromItemId($itemid)
|
|
|
|
{
|
|
|
|
$file_text = '';
|
|
|
|
$condition = ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_FILE, TERM_CATEGORY]];
|
2018-07-20 14:19:26 +02:00
|
|
|
$tags = DBA::select('term', [], $condition);
|
|
|
|
while ($tag = DBA::fetch($tags)) {
|
2018-07-01 09:57:59 +02:00
|
|
|
if ($tag['type'] == TERM_CATEGORY) {
|
|
|
|
$file_text .= '<' . $tag['term'] . '>';
|
|
|
|
} else {
|
|
|
|
$file_text .= '[' . $tag['term'] . ']';
|
|
|
|
}
|
2018-06-30 23:15:24 +02:00
|
|
|
}
|
|
|
|
return $file_text;
|
|
|
|
}
|
|
|
|
|
2018-06-30 17:21:32 +02:00
|
|
|
public static function insertFromTagFieldByItemId($itemid, $tags)
|
2018-02-04 05:49:48 +01:00
|
|
|
{
|
|
|
|
$profile_base = System::baseUrl();
|
|
|
|
$profile_data = parse_url($profile_base);
|
|
|
|
$profile_path = defaults($profile_data, 'path', '');
|
|
|
|
$profile_base_friendica = $profile_data['host'] . $profile_path . '/profile/';
|
|
|
|
$profile_base_diaspora = $profile_data['host'] . $profile_path . '/u/';
|
|
|
|
|
2018-06-30 17:21:32 +02:00
|
|
|
$fields = ['guid', 'uid', 'id', 'edited', 'deleted', 'created', 'received', 'title', 'body', 'parent'];
|
2018-06-28 05:31:10 +02:00
|
|
|
$message = Item::selectFirst($fields, ['id' => $itemid]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($message)) {
|
2018-02-04 05:49:48 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-30 17:21:32 +02:00
|
|
|
$message['tag'] = $tags;
|
|
|
|
|
2018-02-04 05:49:48 +01:00
|
|
|
// Clean up all tags
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::delete('term', ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_HASHTAG, TERM_MENTION]]);
|
2018-02-04 05:49:48 +01:00
|
|
|
|
|
|
|
if ($message['deleted']) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$taglist = explode(',', $message['tag']);
|
|
|
|
|
|
|
|
$tags_string = '';
|
|
|
|
foreach ($taglist as $tag) {
|
|
|
|
if ((substr(trim($tag), 0, 1) == '#') || (substr(trim($tag), 0, 1) == '@')) {
|
|
|
|
$tags_string .= ' ' . trim($tag);
|
|
|
|
} else {
|
|
|
|
$tags_string .= ' #' . trim($tag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = ' ' . $message['title'] . ' ' . $message['body'] . ' ' . $tags_string . ' ';
|
|
|
|
|
|
|
|
// ignore anything in a code block
|
|
|
|
$data = preg_replace('/\[code\](.*?)\[\/code\]/sm', '', $data);
|
|
|
|
|
|
|
|
$tags = [];
|
|
|
|
|
|
|
|
$pattern = '/\W\#([^\[].*?)[\s\'".,:;\?!\[\]\/]/ism';
|
|
|
|
if (preg_match_all($pattern, $data, $matches)) {
|
|
|
|
foreach ($matches[1] as $match) {
|
2018-06-30 15:54:01 +02:00
|
|
|
$tags['#' . $match] = '';
|
2018-02-04 05:49:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$pattern = '/\W([\#@])\[url\=(.*?)\](.*?)\[\/url\]/ism';
|
|
|
|
if (preg_match_all($pattern, $data, $matches, PREG_SET_ORDER)) {
|
|
|
|
foreach ($matches as $match) {
|
2018-06-30 15:54:01 +02:00
|
|
|
$tags[$match[1] . trim($match[3], ',.:;[]/\"?!')] = $match[2];
|
2018-02-04 05:49:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($tags as $tag => $link) {
|
|
|
|
if (substr(trim($tag), 0, 1) == '#') {
|
|
|
|
// try to ignore #039 or #1 or anything like that
|
|
|
|
if (ctype_digit(substr(trim($tag), 1))) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// try to ignore html hex escapes, e.g. #x2317
|
|
|
|
if ((substr(trim($tag), 1, 1) == 'x' || substr(trim($tag), 1, 1) == 'X') && ctype_digit(substr(trim($tag), 2))) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$type = TERM_HASHTAG;
|
|
|
|
$term = substr($tag, 1);
|
|
|
|
} elseif (substr(trim($tag), 0, 1) == '@') {
|
|
|
|
$type = TERM_MENTION;
|
|
|
|
$term = substr($tag, 1);
|
|
|
|
} else { // This shouldn't happen
|
|
|
|
$type = TERM_HASHTAG;
|
|
|
|
$term = $tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($message['uid'] == 0) {
|
|
|
|
$global = true;
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::update('term', ['global' => true], ['otype' => TERM_OBJ_POST, 'guid' => $message['guid']]);
|
2018-02-04 05:49:48 +01:00
|
|
|
} else {
|
2018-07-20 14:19:26 +02:00
|
|
|
$global = DBA::exists('term', ['uid' => 0, 'otype' => TERM_OBJ_POST, 'guid' => $message['guid']]);
|
2018-02-04 05:49:48 +01:00
|
|
|
}
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::insert('term', [
|
2018-02-04 05:49:48 +01:00
|
|
|
'uid' => $message['uid'],
|
|
|
|
'oid' => $itemid,
|
|
|
|
'otype' => TERM_OBJ_POST,
|
|
|
|
'type' => $type,
|
|
|
|
'term' => $term,
|
|
|
|
'url' => $link,
|
|
|
|
'guid' => $message['guid'],
|
|
|
|
'created' => $message['created'],
|
|
|
|
'received' => $message['received'],
|
|
|
|
'global' => $global
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Search for mentions
|
|
|
|
if ((substr($tag, 0, 1) == '@') && (strpos($link, $profile_base_friendica) || strpos($link, $profile_base_diaspora))) {
|
|
|
|
$users = q("SELECT `uid` FROM `contact` WHERE self AND (`url` = '%s' OR `nurl` = '%s')", $link, $link);
|
|
|
|
foreach ($users AS $user) {
|
|
|
|
if ($user['uid'] == $message['uid']) {
|
2018-06-23 12:32:53 +02:00
|
|
|
/// @todo This function is called frim Item::update - so we mustn't call that function here
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::update('item', ['mention' => true], ['id' => $itemid]);
|
|
|
|
DBA::update('thread', ['mention' => true], ['iid' => $message['parent']]);
|
2018-02-04 05:49:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-10 17:46:05 +01:00
|
|
|
/**
|
|
|
|
* @param integer $itemid item id
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-06-30 23:15:24 +02:00
|
|
|
public static function insertFromFileFieldByItemId($itemid, $files)
|
2018-01-10 17:46:05 +01:00
|
|
|
{
|
2018-06-30 23:15:24 +02:00
|
|
|
$message = Item::selectFirst(['uid', 'deleted'], ['id' => $itemid]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($message)) {
|
2018-01-10 17:46:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean up all tags
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::delete('term', ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_FILE, TERM_CATEGORY]]);
|
2018-01-10 17:46:05 +01:00
|
|
|
|
2018-01-10 19:04:00 +01:00
|
|
|
if ($message["deleted"]) {
|
2018-01-10 17:46:05 +01:00
|
|
|
return;
|
2018-01-10 19:04:00 +01:00
|
|
|
}
|
2018-01-10 17:46:05 +01:00
|
|
|
|
2018-06-30 23:15:24 +02:00
|
|
|
$message['file'] = $files;
|
|
|
|
|
2018-01-10 17:46:05 +01:00
|
|
|
if (preg_match_all("/\[(.*?)\]/ism", $message["file"], $files)) {
|
|
|
|
foreach ($files[1] as $file) {
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::insert('term', [
|
2018-01-10 19:04:00 +01:00
|
|
|
'uid' => $message["uid"],
|
|
|
|
'oid' => $itemid,
|
|
|
|
'otype' => TERM_OBJ_POST,
|
|
|
|
'type' => TERM_FILE,
|
|
|
|
'term' => $file
|
|
|
|
]);
|
2018-01-10 17:46:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match_all("/\<(.*?)\>/ism", $message["file"], $files)) {
|
|
|
|
foreach ($files[1] as $file) {
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::insert('term', [
|
2018-01-10 19:04:00 +01:00
|
|
|
'uid' => $message["uid"],
|
|
|
|
'oid' => $itemid,
|
|
|
|
'otype' => TERM_OBJ_POST,
|
|
|
|
'type' => TERM_CATEGORY,
|
|
|
|
'term' => $file
|
|
|
|
]);
|
2018-01-10 17:46:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-14 23:54:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sorts an item's tags into mentions, hashtags and other tags. Generate personalized URLs by user and modify the
|
|
|
|
* provided item's body with them.
|
|
|
|
*
|
|
|
|
* @param array $item
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function populateTagsFromItem(&$item)
|
|
|
|
{
|
|
|
|
$return = [
|
|
|
|
'tags' => [],
|
|
|
|
'hashtags' => [],
|
|
|
|
'mentions' => [],
|
|
|
|
];
|
|
|
|
|
|
|
|
$searchpath = System::baseUrl() . "/search?tag=";
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$taglist = DBA::select(
|
2018-04-14 23:54:16 +02:00
|
|
|
'term',
|
|
|
|
['type', 'term', 'url'],
|
|
|
|
["`otype` = ? AND `oid` = ? AND `type` IN (?, ?)", TERM_OBJ_POST, $item['id'], TERM_HASHTAG, TERM_MENTION],
|
|
|
|
['order' => ['tid']]
|
|
|
|
);
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
while ($tag = DBA::fetch($taglist)) {
|
2018-04-14 23:54:16 +02:00
|
|
|
if ($tag["url"] == "") {
|
2018-06-30 15:54:01 +02:00
|
|
|
$tag["url"] = $searchpath . $tag["term"];
|
2018-04-14 23:54:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$orig_tag = $tag["url"];
|
|
|
|
|
2018-07-02 07:41:55 +02:00
|
|
|
$author = ['uid' => 0, 'id' => $item['author-id'],
|
|
|
|
'network' => $item['author-network'], 'url' => $item['author-link']];
|
|
|
|
$tag["url"] = Contact::magicLinkByContact($author, $tag['url']);
|
2018-04-14 23:54:16 +02:00
|
|
|
|
|
|
|
if ($tag["type"] == TERM_HASHTAG) {
|
|
|
|
if ($orig_tag != $tag["url"]) {
|
|
|
|
$item['body'] = str_replace($orig_tag, $tag["url"], $item['body']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$return['hashtags'][] = "#<a href=\"" . $tag["url"] . "\" target=\"_blank\">" . $tag["term"] . "</a>";
|
|
|
|
$prefix = "#";
|
|
|
|
} elseif ($tag["type"] == TERM_MENTION) {
|
|
|
|
$return['mentions'][] = "@<a href=\"" . $tag["url"] . "\" target=\"_blank\">" . $tag["term"] . "</a>";
|
|
|
|
$prefix = "@";
|
|
|
|
}
|
|
|
|
|
|
|
|
$return['tags'][] = $prefix . "<a href=\"" . $tag["url"] . "\" target=\"_blank\">" . $tag["term"] . "</a>";
|
|
|
|
}
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::close($taglist);
|
2018-04-14 23:54:16 +02:00
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
2018-01-10 18:51:51 +01:00
|
|
|
}
|