Merge pull request #1061 from annando/issue-9692
Twitter Issue 9692: Only append Twitter profile links as mentions
This commit is contained in:
commit
7ce00592a2
|
@ -557,7 +557,7 @@ function twitter_post_hook(App $a, array &$b)
|
||||||
}
|
}
|
||||||
|
|
||||||
$condition = ['uri' => $b["thr-parent"], 'uid' => $b["uid"]];
|
$condition = ['uri' => $b["thr-parent"], 'uid' => $b["uid"]];
|
||||||
$orig_post = Item::selectFirst([], $condition);
|
$orig_post = Item::selectFirst(['author-nick', 'author-network'], $condition);
|
||||||
if (!DBA::isResult($orig_post)) {
|
if (!DBA::isResult($orig_post)) {
|
||||||
Logger::warning('No parent found', ['thr-parent' => $b["thr-parent"]]);
|
Logger::warning('No parent found', ['thr-parent' => $b["thr-parent"]]);
|
||||||
return;
|
return;
|
||||||
|
@ -565,15 +565,15 @@ function twitter_post_hook(App $a, array &$b)
|
||||||
$iscomment = true;
|
$iscomment = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($orig_post['author-network'] == Protocol::TWITTER) {
|
||||||
$nicknameplain = preg_replace("=https?://twitter.com/(.*)=ism", "$1", $orig_post["author-link"]);
|
$nickname = "@[url=" . $orig_post["author-link"] . "]" . $orig_post["author-nick"] . "[/url]";
|
||||||
$nickname = "@[url=" . $orig_post["author-link"] . "]" . $nicknameplain . "[/url]";
|
$nicknameplain = "@" . $orig_post["author-nick"];
|
||||||
$nicknameplain = "@" . $nicknameplain;
|
|
||||||
|
|
||||||
Logger::info('Comparing', ['nickname' => $nickname, 'nicknameplain' => $nicknameplain, 'body' => $b["body"]]);
|
Logger::info('Comparing', ['nickname' => $nickname, 'nicknameplain' => $nicknameplain, 'body' => $b["body"]]);
|
||||||
if ((strpos($b["body"], $nickname) === false) && (strpos($b["body"], $nicknameplain) === false)) {
|
if ((strpos($b["body"], $nickname) === false) && (strpos($b["body"], $nicknameplain) === false)) {
|
||||||
$b["body"] = $nickname . " " . $b["body"];
|
$b["body"] = $nickname . " " . $b["body"];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Logger::debug('Parent found', ['parent' => $orig_post]);
|
Logger::debug('Parent found', ['parent' => $orig_post]);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user