]> git.mxchange.org Git - friendica.git/blobdiff - mod/share.php
Merge pull request #12078 from MrPetovan/task/4090-move-mod-wallmessage
[friendica.git] / mod / share.php
index b606c1a66916fb096c3c0841e67f1b44786c65e6..f0a2170b5e90b683c9d2b2b080181e96f9f05d5d 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 
 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 = (($a->argc > 1) ? intval($a->argv[1]) : 0);
+       $post_id = ((DI::args()->getArgc() > 1) ? intval(DI::args()->getArgv()[1]) : 0);
 
-       if (!$post_id || !local_user()) {
-               exit();
+       if (!$post_id || !DI::userSession()->getLocalUserId()) {
+               System::exit();
        }
 
-       $fields = ['private', 'body', 'author-name', 'author-link', 'author-avatar',
-               'guid', 'created', 'plink', 'title'];
+       $fields = ['private', 'body', 'uri'];
        $item = Post::selectFirst($fields, ['id' => $post_id]);
 
        if (!DBA::isResult($item) || $item['private'] == Item::PRIVATE) {
-               exit();
+               System::exit();
        }
 
-       if (strpos($item['body'], "[/share]") !== false) {
-               $pos = strpos($item['body'], "[share");
-               $o = substr($item['body'], $pos);
+       $shared = DI::contentItem()->getSharedPost($item, ['uri']);
+       if (!empty($shared) && empty($shared['comment'])) {
+               $content = '[share]' . $shared['post']['uri'] . '[/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;
-       exit();
+       System::httpExit($content);
 }