X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fshare.php;h=fb4495019e47db1941a2fe10e358f2e05259ff39;hb=80a4e6263fd53f83a710d2a2e6c57baae38cb14b;hp=29d31f6b51ea547862a719810fc2015f71d700f7;hpb=a3edbf7e5d0d89e99c2249cf30657b1fbc57982a;p=friendica.git diff --git a/mod/share.php b/mod/share.php index 29d31f6b51..fb4495019e 100644 --- a/mod/share.php +++ b/mod/share.php @@ -1,30 +1,57 @@ argc > 1) ? intval($a->argv[1]) : 0); - if((! $post_id) || (! local_user())) + + if (!$post_id || !local_user()) { killme(); + } - $r = q("SELECT item.*, contact.network FROM `item` - left join contact on `item`.`contact-id` = `contact`.`id` - WHERE `item`.`id` = %d AND `item`.`uid` = %d LIMIT 1", + $fields = ['private', 'body', 'author-name', 'author-link', 'author-avatar', + 'guid', 'created', 'plink', 'title']; + $item = Item::selectFirst($fields, ['id' => $post_id]); - intval($post_id), - intval(local_user()) - ); - if(! count($r) || ($r[0]['private'] == 1)) + if (!DBM::is_result($item) || $item['private'] == 1) { killme(); + } + + if (strpos($item['body'], "[/share]") !== false) { + $pos = strpos($item['body'], "[share"); + $o = substr($item['body'], $pos); + } else { + $o = share_header($item['author-name'], $item['author-link'], $item['author-avatar'], $item['guid'], $item['created'], $item['plink']); - $o = ''; + if ($item['title']) { + $o .= '[b]'.$item['title'].'[/b]'."\n"; + } - $o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n"; - if($r[0]['title']) - $o .= '[b]' . $r[0]['title'] . '[/b]' . "\n"; - $o .= $r[0]['body'] . "\n"; + $o .= $item['body']; + $o .= "[/share]"; + } echo $o; - killme(); + killme(); +} + +/// @TODO Rewrite to handle over whole record array +function share_header($author, $profile, $avatar, $guid, $posted, $link) { + $header = "[share author='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $author). + "' profile='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $profile). + "' avatar='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $avatar); + + if ($guid) { + $header .= "' guid='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $guid); + } + + if ($posted) { + $header .= "' posted='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $posted); + } + + $header .= "' link='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $link)."']"; + + return $header; }