]> git.mxchange.org Git - friendica.git/blobdiff - mod/share.php
Replace "notice" calls
[friendica.git] / mod / share.php
index 8392cad8dff78cc10bcfc189dde5acaa706189da..de0159df78a83a980a9ed7dc668f6037e09f2d8f 100644 (file)
@@ -21,7 +21,6 @@
 
 use Friendica\App;
 use Friendica\Content\Text\BBCode;
-use Friendica\Core\Protocol;
 use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\DI;
@@ -35,30 +34,18 @@ function share_init(App $a) {
                System::exit();
        }
 
-       $fields = ['private', 'body', 'author-name', 'author-link', 'author-avatar',
-               'guid', 'created', 'plink', 'uri', 'title', 'network'];
+       $fields = ['private', 'body', 'uri'];
        $item = Post::selectFirst($fields, ['id' => $post_id]);
 
        if (!DBA::isResult($item) || $item['private'] == Item::PRIVATE) {
                System::exit();
        }
 
-       if (strpos($item['body'], "[/share]") !== false) {
-               $pos = strpos($item['body'], "[share");
-               $o = substr($item['body'], $pos);
-       } elseif (in_array($item['network'], Protocol::FEDERATED)) {
-               $o = "[share]" . $item['uri'] . "[/share]";
+       $shared = BBCode::fetchShareAttributes($item['body']);
+       if (empty($shared['comment']) && (!empty($shared['message_id']) || !empty($shared['link']))) {
+               $content = '[share]' . ($shared['message_id'] ?: $shared['link']) . '[/share]';
        } else {
-               $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";
-               }
-
-               $o .= $item['body'];
-               $o .= "[/share]";
+               $content = '[share]' . $item['uri'] . '[/share]';
        }
-
-       echo $o;
-       System::exit();
+       System::httpExit($content);
 }