X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fshare.php;h=f0a2170b5e90b683c9d2b2b080181e96f9f05d5d;hb=f826ce70ceb9f810a16b70d3d77b9ba2c8d9097d;hp=f2e016708fef321a74937e3c8c9be93e5ba87401;hpb=b9e4b9f2747deb5cdd7d7f68e200496e0c3162aa;p=friendica.git diff --git a/mod/share.php b/mod/share.php index f2e016708f..f0a2170b5e 100644 --- a/mod/share.php +++ b/mod/share.php @@ -1,58 +1,51 @@ 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", +/** + * @copyright Copyright (C) 2010-2022, the Friendica project + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + +use Friendica\App; +use Friendica\Content\Text\BBCode; +use Friendica\Core\System; +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 || !DI::userSession()->getLocalUserId()) { + System::exit(); + } - intval($post_id), - intval(local_user()) - ); - if(! dbm::is_result($r) || ($r[0]['private'] == 1)) - killme(); + $fields = ['private', 'body', 'uri']; + $item = Post::selectFirst($fields, ['id' => $post_id]); - 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_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']); + if (!DBA::isResult($item) || $item['private'] == Item::PRIVATE) { + System::exit(); + } - if($r[0]['title']) - $o .= '[b]'.$r[0]['title'].'[/b]'."\n"; - $o .= $r[0]['body']; - $o.= "[/share]"; - } + $shared = DI::contentItem()->getSharedPost($item, ['uri']); + if (!empty($shared) && empty($shared['comment'])) { + $content = '[share]' . $shared['post']['uri'] . '[/share]'; } else { - $o = ''; - - $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 .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : ''); + $content = '[share]' . $item['uri'] . '[/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; + System::httpExit($content); }