X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fshare.php;h=571fe1e4d695f4fc5ff6d174c7dccf7cf23e4ae1;hb=660a3cd2471c1cb3ee1e505608124125cbc3b620;hp=e9127b647d4a9d321d3d2f3c2e019f37d33e5415;hpb=6b8585d48d67d109102e33a32311d76a45762667;p=friendica.git diff --git a/mod/share.php b/mod/share.php index e9127b647d..571fe1e4d6 100644 --- a/mod/share.php +++ b/mod/share.php @@ -1,48 +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); + + if (!$post_id || !local_user()) { + exit(); + } -require_once('include/bbcode.php'); - -function share_init(&$a) { - - $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0); - if((! $post_id) || (! local_user())) - killme(); - - $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", - - intval($post_id), - intval(local_user()) - ); - if(! count($r) || ($r[0]['private'] == 1)) - killme(); - - if (!intval(get_config('system','old_share'))) { - if (strpos($r[0]['body'], "[/share]") !== false) { - $pos = strpos($r[0]['body'], "[share"); - $o = substr($r[0]['body'], $pos); - } else { - $o = "[share author='".str_replace("'", "'",$r[0]['author-name']). - "' profile='".$r[0]['author-link']. - "' avatar='".$r[0]['author-avatar']. - "' link='".$r[0]['plink']. - "' posted='".$r[0]['created']."']\n"; - if($r[0]['title']) - $o .= '[b]'.$r[0]['title'].'[/b]'."\n"; - $o .= $r[0]['body']; - $o.= "[/share]"; - } + $fields = ['private', 'body', 'author-name', 'author-link', 'author-avatar', + 'guid', 'created', 'plink', 'title']; + $item = Post::selectFirst($fields, ['id' => $post_id]); + + if (!DBA::isResult($item) || $item['private'] == Item::PRIVATE) { + exit(); + } + + if (strpos($item['body'], "[/share]") !== false) { + $pos = strpos($item['body'], "[share"); + $o = substr($item['body'], $pos); } else { - $o = ''; + $o = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']); - $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" ; + if ($item['title']) { + $o .= '[h3]'.$item['title'].'[/h3]'."\n"; + } - $o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : ''); + $o .= $item['body']; + $o .= "[/share]"; } + echo $o; - killme(); + exit(); }