X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fshare.php;h=571fe1e4d695f4fc5ff6d174c7dccf7cf23e4ae1;hb=eb035771f118e1f289f2ebbbb8a474aa2765c81e;hp=7ddca0f30be8256df542c7c909d500caf51e9f6e;hpb=8f253f6c1288534c50fac34f05afb1a2c07c9335;p=friendica.git diff --git a/mod/share.php b/mod/share.php index 7ddca0f30b..571fe1e4d6 100644 --- a/mod/share.php +++ b/mod/share.php @@ -1,51 +1,60 @@ . + * + */ use Friendica\App; +use Friendica\Content\Text\BBCode; +use Friendica\Database\DBA; +use Friendica\DI; +use Friendica\Model\Item; +use Friendica\Model\Post; function share_init(App $a) { + $post_id = ((DI::args()->getArgc() > 1) ? intval(DI::args()->getArgv()[1]) : 0); - $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0); - if((! $post_id) || (! local_user())) - killme(); + if (!$post_id || !local_user()) { + exit(); + } - $r = q("SELECT item.*, contact.network FROM `item` - inner 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 = Post::selectFirst($fields, ['id' => $post_id]); - intval($post_id), - intval(local_user()) - ); - if(! dbm::is_result($r) || ($r[0]['private'] == 1)) - killme(); + if (!DBA::isResult($item) || $item['private'] == Item::PRIVATE) { + exit(); + } - if (strpos($r[0]['body'], "[/share]") !== false) { - $pos = strpos($r[0]['body'], "[share"); - $o = substr($r[0]['body'], $pos); + if (strpos($item['body'], "[/share]") !== false) { + $pos = strpos($item['body'], "[share"); + $o = substr($item['body'], $pos); } else { - $o = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']); + $o = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']); + + if ($item['title']) { + $o .= '[h3]'.$item['title'].'[/h3]'."\n"; + } - if($r[0]['title']) - $o .= '[b]'.$r[0]['title'].'[/b]'."\n"; - $o .= $r[0]['body']; - $o.= "[/share]"; + $o .= $item['body']; + $o .= "[/share]"; } echo $o; - killme(); -} - -function share_header($author, $profile, $avatar, $guid, $posted, $link) { - $header = "[share author='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$author). - "' profile='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$profile). - "' avatar='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$avatar); - - if ($guid) - $header .= "' guid='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$guid); - - if ($posted) - $header .= "' posted='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$posted); - - $header .= "' link='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$link)."']"; - - return $header; + exit(); }