]> git.mxchange.org Git - friendica.git/blobdiff - mod/share.php
Fix missing/wrong IHandleUserSessions usages
[friendica.git] / mod / share.php
index 792ee400824b15f6aab10b5b01dc314fe0a2430e..01ef855036ee742bcacbc7c4147a220568251c4f 100644 (file)
@@ -20,6 +20,7 @@
  */
 
 use Friendica\App;
+use Friendica\Content\Text\BBCode;
 use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\DI;
@@ -29,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();
        }
 
@@ -40,13 +41,11 @@ function share_init(App $a) {
                System::exit();
        }
 
-       if (strpos($item['body'], "[/share]") !== false) {
-               $pos = strpos($item['body'], "[share");
-               $o = substr($item['body'], $pos);
+       $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 = "[share]" . $item['uri'] . "[/share]";
+               $content = '[share]' . $item['uri'] . '[/share]';
        }
-
-       echo $o;
-       System::exit();
+       System::httpExit($content);
 }