]> git.mxchange.org Git - friendica.git/blobdiff - mod/share.php
Remove mod/wallmessage module
[friendica.git] / mod / share.php
index b4c2bc50ddb7efc339dc8bd19245472633bf66ec..f0a2170b5e90b683c9d2b2b080181e96f9f05d5d 100644 (file)
@@ -30,7 +30,7 @@ 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()) {
+       if (!$post_id || !DI::userSession()->getLocalUserId()) {
                System::exit();
        }
 
@@ -41,12 +41,9 @@ function share_init(App $a) {
                System::exit();
        }
 
-       $shared = BBCode::fetchShareAttributes($item['body']);
-       if (!empty($shared['message_id']) || !empty($shared['link'])) {
-               $content = '[share]' . ($shared['message_id'] ?: $shared['link']) . '[/share]';
-       } elseif (strpos($item['body'], '[/share]') !== false) {
-               $pos = strpos($item['body'], '[share');
-               $content = substr($item['body'], $pos);
+       $shared = DI::contentItem()->getSharedPost($item, ['uri']);
+       if (!empty($shared) && empty($shared['comment'])) {
+               $content = '[share]' . $shared['post']['uri'] . '[/share]';
        } else {
                $content = '[share]' . $item['uri'] . '[/share]';
        }