]> git.mxchange.org Git - friendica.git/blob - src/Module/Post/Share.php
Remove trailing spaces from Module\Post\Share
[friendica.git] / src / Module / Post / Share.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Post;
23
24 use Friendica\App;
25 use Friendica\Content;
26 use Friendica\Core\L10n;
27 use Friendica\Core\Session\Capability\IHandleUserSessions;
28 use Friendica\Core\System;
29 use Friendica\Model\Item;
30 use Friendica\Model\Post;
31 use Friendica\Module\Response;
32 use Friendica\Util\Profiler;
33 use Psr\Log\LoggerInterface;
34
35 /**
36  * Generates a share BBCode block for the provided item.
37  *
38  * Only used in Ajax calls
39  */
40 class Share extends \Friendica\BaseModule
41 {
42         /** @var IHandleUserSessions */
43         private $session;
44         /** @var Content\Item */
45         private $contentItem;
46
47         public function __construct(Content\Item $contentItem, IHandleUserSessions $session, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
48         {
49                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
50
51                 $this->session     = $session;
52                 $this->contentItem = $contentItem;
53         }
54
55         protected function rawContent(array $request = [])
56         {
57                 $post_id = $this->parameters['post_id'];
58                 if (!$post_id || !$this->session->getLocalUserId()) {
59                         System::httpError(403);
60                 }
61
62                 $item = Post::selectFirst(['private', 'body', 'uri'], ['id' => $post_id]);
63                 if (!$item || $item['private'] == Item::PRIVATE) {
64                         System::httpError(404);
65                 }
66
67                 $shared = $this->contentItem->getSharedPost($item, ['uri']);
68                 if ($shared && empty($shared['comment'])) {
69                         $content = '[share]' . $shared['post']['uri'] . '[/share]';
70                 } else {
71                         $content = '[share]' . $item['uri'] . '[/share]';
72                 }
73
74                 System::httpExit($content);
75         }
76 }