]> git.mxchange.org Git - friendica.git/blob - src/Module/Post/Share.php
Use the post language for the language detection / config for quality
[friendica.git] / src / Module / Post / Share.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Protocol;
28 use Friendica\Core\Session\Capability\IHandleUserSessions;
29 use Friendica\Core\System;
30 use Friendica\Model\Item;
31 use Friendica\Model\Post;
32 use Friendica\Module\Response;
33 use Friendica\Util\Profiler;
34 use Psr\Log\LoggerInterface;
35
36 /**
37  * Generates a share BBCode block for the provided item.
38  *
39  * Only used in Ajax calls
40  */
41 class Share extends \Friendica\BaseModule
42 {
43         /** @var IHandleUserSessions */
44         private $session;
45         /** @var Content\Item */
46         private $contentItem;
47
48         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 = [])
49         {
50                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
51
52                 $this->session     = $session;
53                 $this->contentItem = $contentItem;
54         }
55
56         protected function rawContent(array $request = [])
57         {
58                 $post_id = $this->parameters['post_id'];
59                 if (!$post_id || !$this->session->getLocalUserId()) {
60                         $this->httpError(403);
61                 }
62
63                 $item = Post::selectFirst(['private', 'body', 'uri', 'plink', 'network'], ['id' => $post_id]);
64                 if (!$item || $item['private'] == Item::PRIVATE) {
65                         $this->httpError(404);
66                 }
67
68                 $shared = $this->contentItem->getSharedPost($item, ['uri']);
69                 if ($shared && empty($shared['comment'])) {
70                         $content = '[share]' . $shared['post']['uri'] . '[/share]';
71                 } elseif (!empty($item['plink']) && !in_array($item['network'], Protocol::FEDERATED)) {
72                         $content = '[attachment]' . $item['plink'] . '[/attachment]';
73                 } else {
74                         $content = '[share]' . $item['uri'] . '[/share]';
75                 }
76
77                 $this->httpExit($content);
78         }
79 }