X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FTerm.php;h=7f494fc4afb84c7ef7fac6ef08cfa4cde5f796f3;hb=f6092ebebb8d84fbaed57e8fd500328d7022c0f3;hp=262312532995c1b1b2753fc0c5dcc311e7ef0a20;hpb=834422d52f0b34fb088f79ac2704c3d514802d8e;p=friendica.git diff --git a/src/Model/Term.php b/src/Model/Term.php index 2623125329..7f494fc4af 100644 --- a/src/Model/Term.php +++ b/src/Model/Term.php @@ -7,10 +7,6 @@ namespace Friendica\Model; use Friendica\Core\System; use Friendica\Database\DBA; -require_once 'boot.php'; -require_once 'include/conversation.php'; -require_once 'include/dba.php'; - class Term { public static function tagTextFromItemId($itemid) @@ -33,9 +29,9 @@ class Term return $tag_text; } - public static function tagArrayFromItemId($itemid) + public static function tagArrayFromItemId($itemid, $type = [TERM_HASHTAG, TERM_MENTION]) { - $condition = ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_HASHTAG, TERM_MENTION]]; + $condition = ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => $type]; $tags = DBA::select('term', ['type', 'term', 'url'], $condition); if (!DBA::isResult($tags)) { return []; @@ -76,7 +72,7 @@ class Term $message['tag'] = $tags; // Clean up all tags - DBA::delete('term', ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_HASHTAG, TERM_MENTION]]); + self::deleteByItemId($itemid); if ($message['deleted']) { return; @@ -86,7 +82,7 @@ class Term $tags_string = ''; foreach ($taglist as $tag) { - if ((substr(trim($tag), 0, 1) == '#') || (substr(trim($tag), 0, 1) == '@')) { + if ((substr(trim($tag), 0, 1) == '#') || (substr(trim($tag), 0, 1) == '@') || (substr(trim($tag), 0, 1) == '!')) { $tags_string .= ' ' . trim($tag); } else { $tags_string .= ' #' . trim($tag); @@ -107,9 +103,21 @@ class Term } } - $pattern = '/\W([\#@])\[url\=(.*?)\](.*?)\[\/url\]/ism'; + $pattern = '/\W([\#@!])\[url\=(.*?)\](.*?)\[\/url\]/ism'; if (preg_match_all($pattern, $data, $matches, PREG_SET_ORDER)) { foreach ($matches as $match) { + + if (($match[1] == '@') || ($match[1] == '!')) { + $contact = Contact::getDetailsByURL($match[2], 0); + if (!empty($contact['addr'])) { + $match[3] = $contact['addr']; + } + + if (!empty($contact['url'])) { + $match[2] = $contact['url']; + } + } + $tags[$match[1] . trim($match[3], ',.:;[]/\"?!')] = $match[2]; } } @@ -128,12 +136,24 @@ class Term $type = TERM_HASHTAG; $term = substr($tag, 1); - } elseif (substr(trim($tag), 0, 1) == '@') { + $link = ''; + } elseif ((substr(trim($tag), 0, 1) == '@') || (substr(trim($tag), 0, 1) == '!')) { $type = TERM_MENTION; - $term = substr($tag, 1); + + $contact = Contact::getDetailsByURL($link, 0); + if (!empty($contact['name'])) { + $term = $contact['name']; + } else { + $term = substr($tag, 1); + } } else { // This shouldn't happen $type = TERM_HASHTAG; $term = $tag; + $link = ''; + } + + if (DBA::exists('term', ['uid' => $message['uid'], 'otype' => TERM_OBJ_POST, 'oid' => $itemid, 'term' => $term])) { + continue; } if ($message['uid'] == 0) { @@ -157,7 +177,7 @@ class Term ]); // Search for mentions - if ((substr($tag, 0, 1) == '@') && (strpos($link, $profile_base_friendica) || strpos($link, $profile_base_diaspora))) { + if (((substr($tag, 0, 1) == '@') || (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']) { @@ -240,32 +260,48 @@ class Term ); while ($tag = DBA::fetch($taglist)) { - if ($tag["url"] == "") { - $tag["url"] = $searchpath . $tag["term"]; + if ($tag['url'] == '') { + $tag['url'] = $searchpath . rawurlencode($tag['term']); } - $orig_tag = $tag["url"]; + $orig_tag = $tag['url']; $author = ['uid' => 0, 'id' => $item['author-id'], 'network' => $item['author-network'], 'url' => $item['author-link']]; - $tag["url"] = Contact::magicLinkByContact($author, $tag['url']); + $tag['url'] = Contact::magicLinkByContact($author, $tag['url']); - if ($tag["type"] == TERM_HASHTAG) { - if ($orig_tag != $tag["url"]) { - $item['body'] = str_replace($orig_tag, $tag["url"], $item['body']); + if ($tag['type'] == TERM_HASHTAG) { + if ($orig_tag != $tag['url']) { + $item['body'] = str_replace($orig_tag, $tag['url'], $item['body']); } - $return['hashtags'][] = "#" . $tag["term"] . ""; - $prefix = "#"; - } elseif ($tag["type"] == TERM_MENTION) { - $return['mentions'][] = "@" . $tag["term"] . ""; - $prefix = "@"; + $return['hashtags'][] = '#' . $tag['term'] . ''; + $prefix = '#'; + } elseif ($tag['type'] == TERM_MENTION) { + $return['mentions'][] = '@' . $tag['term'] . ''; + $prefix = '@'; } - $return['tags'][] = $prefix . "" . $tag["term"] . ""; + $return['tags'][] = $prefix . '' . $tag['term'] . ''; } DBA::close($taglist); return $return; } + + /** + * Delete all tags from an item + * @param int itemid - choose from which item the tags will be removed + * @param array type - items type. default is [TERM_HASHTAG, TERM_MENTION] + */ + public static function deleteByItemId($itemid, $type = [TERM_HASHTAG, TERM_MENTION]) + { + if (empty($itemid)) { + return; + } + + // Clean up all tags + DBA::delete('term', ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => $type]); + + } }