]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Item/Source.php
post/thread views are renamed, search bugs fixed
[friendica.git] / src / Module / Admin / Item / Source.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\Admin\Item;
23
24 use Friendica\Core\Renderer;
25 use Friendica\DI;
26 use Friendica\Model;
27 use Friendica\Module\BaseAdmin;
28
29 class Source extends BaseAdmin
30
31 {
32         public static function content(array $parameters = [])
33         {
34                 parent::content($parameters);
35
36                 $guid = basename($_REQUEST['guid'] ?? $parameters['guid'] ?? '');
37
38                 $source = '';
39                 $item_uri = '';
40                 $item_id = '';
41                 $terms = [];
42                 if (!empty($guid)) {
43                         $item = Model\Post::selectFirst(['id', 'uri-id', 'guid', 'uri'], ['guid' => $guid]);
44
45                         if ($item) {
46                                 $conversation = Model\Conversation::getByItemUri($item['uri']);
47
48                                 $item_id = $item['id'];
49                                 $item_uri = $item['uri'];
50                                 $source = $conversation['source'];
51                                 $terms = Model\Tag::getByURIId($item['uri-id'], [Model\Tag::HASHTAG, Model\Tag::MENTION, Model\Tag::IMPLICIT_MENTION]);
52                         }
53                 }
54
55                 $tpl = Renderer::getMarkupTemplate('admin/item/source.tpl');
56                 $o = Renderer::replaceMacros($tpl, [
57                         '$guid'          => ['guid', DI::l10n()->t('Item Guid'), $guid, ''],
58                         '$source'        => $source,
59                         '$item_uri'      => $item_uri,
60                         '$item_id'       => $item_id,
61                         '$terms'         => $terms,
62                 ]);
63
64                 return $o;
65         }
66 }