Use data from contact and gcontact prior to probe_url

This commit is contained in:
Michael Vogel 2016-04-25 21:35:42 +02:00 committed by Roland Haeder
parent 6065fca243
commit 33436132a0
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 13 additions and 1 deletions

View File

@ -1095,7 +1095,19 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag, $netwo
// Checking for the alias that is used for OStatus
$pattern = "/@\[url\=(.*?)\](.*?)\[\/url\]/ism";
if (preg_match($pattern, $tag, $matches)) {
$data = probe_url($matches[1]);
$r = q("SELECT `alias`, `name` FROM `contact` WHERE `nurl` = '%s' AND `alias` != '' AND `uid` = 0",
normalise_link($matches[1]));
if (!$r)
$r = q("SELECT `alias`, `name` FROM `gcontact` WHERE `nurl` = '%s' AND `alias` != ''",
normalise_link($matches[1]));
if ($r)
$data = $r[0];
else {
$data = probe_url($matches[1]);
logger("probe_url ".$matches[1]);
}
if ($data["alias"] != "") {
$newtag = '@[url='.$data["alias"].']'.$data["name"].'[/url]';
if(!stristr($str_tags,$newtag)) {