API: use `diaspora::is_reshare()`

This commit is contained in:
fabrixxm 2016-07-15 12:22:35 +02:00
parent 43699646d6
commit d68c09e428
1 changed files with 5 additions and 12 deletions

View File

@ -3034,26 +3034,19 @@
function api_share_as_retweet(&$item) {
$body = trim($item["body"]);
// Skip if it isn't a pure repeated messages
// Does it start with a share?
if (strpos($body, "[share") > 0)
return false;
// Does it end with a share?
if (strlen($body) > (strrpos($body, "[/share]") + 8))
if (diaspora::is_reshare($body, false)===false) {
return false;
}
$attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
// Skip if there is no shared message in there
// we already checked this in diaspora::is_reshare()
// but better one more than one less...
if ($body == $attributes)
return false;
// NOTE: we could check te guid="" attribute and then try to load original post
// from database given the guid: we can see the original post via web under
// /display/<guid>, but all the logic to fetch an item from db based on guid
// looks like is in display_init() and would need a big refractor to be usable here.
// so, we build the original item starting from the reshare.
// build the fake reshared item
$reshared_item = $item;
$author = "";