$itemid]); if (!DBM::is_result($message)) { return; } // Clean up all tags dba::delete('term', ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_HASHTAG, TERM_MENTION]]); 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) { $tags['#' . strtolower($match)] = ''; } } $pattern = '/\W([\#@])\[url\=(.*?)\](.*?)\[\/url\]/ism'; if (preg_match_all($pattern, $data, $matches, PREG_SET_ORDER)) { foreach ($matches as $match) { $tags[$match[1] . strtolower(trim($match[3], ',.:;[]/\"?!'))] = $match[2]; } } 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; dba::update('term', ['global' => true], ['otype' => TERM_OBJ_POST, 'guid' => $message['guid']]); } else { $global = dba::exists('term', ['uid' => 0, 'otype' => TERM_OBJ_POST, 'guid' => $message['guid']]); } dba::insert('term', [ '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']) { dba::update('item', ['mention' => true], ['id' => $itemid]); dba::update('thread', ['mention' => true], ['iid' => $message['parent']]); } } } } } /** * @param integer $itemid item id * @return void */ public static function insertFromFileFieldByItemId($itemid) { $message = dba::selectFirst('item', ['uid', 'deleted', 'file'], ['id' => $itemid]); if (!DBM::is_result($message)) { return; } // Clean up all tags dba::delete('term', ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_FILE, TERM_CATEGORY]]); if ($message["deleted"]) { return; } if (preg_match_all("/\[(.*?)\]/ism", $message["file"], $files)) { foreach ($files[1] as $file) { dba::insert('term', [ 'uid' => $message["uid"], 'oid' => $itemid, 'otype' => TERM_OBJ_POST, 'type' => TERM_FILE, 'term' => $file ]); } } if (preg_match_all("/\<(.*?)\>/ism", $message["file"], $files)) { foreach ($files[1] as $file) { dba::insert('term', [ 'uid' => $message["uid"], 'oid' => $itemid, 'otype' => TERM_OBJ_POST, 'type' => TERM_CATEGORY, 'term' => $file ]); } } } /** * 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="; $taglist = dba::select( 'term', ['type', 'term', 'url'], ["`otype` = ? AND `oid` = ? AND `type` IN (?, ?)", TERM_OBJ_POST, $item['id'], TERM_HASHTAG, TERM_MENTION], ['order' => ['tid']] ); while ($tag = dba::fetch($taglist)) { if ($tag["url"] == "") { $tag["url"] = $searchpath . strtolower($tag["term"]); } $orig_tag = $tag["url"]; $tag["url"] = Contact::magicLink($item['author-link'], $tag['url']); 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['tags'][] = $prefix . "" . $tag["term"] . ""; } dba::close($taglist); return $return; } }