]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Item/Source.php
fe3f3674b7ffff3038d74dca596942f8886bc74f
[friendica.git] / src / Module / Admin / Item / Source.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\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         protected function content(array $request = []): string
33         {
34                 parent::content();
35
36                 $guid = basename($_REQUEST['guid'] ?? $this->parameters['guid'] ?? '');
37
38                 $item_uri = '';
39                 $item_id = '';
40                 $terms = [];
41                 if (!empty($guid)) {
42                         $item = Model\Post::selectFirst(['id', 'uri-id', 'guid', 'uri'], ['guid' => $guid]);
43
44                         if ($item) {
45                                 $item_id = $item['id'];
46                                 $item_uri = $item['uri'];
47                                 $terms = Model\Tag::getByURIId($item['uri-id'], [Model\Tag::HASHTAG, Model\Tag::MENTION, Model\Tag::IMPLICIT_MENTION]);
48                         }
49                 }
50
51                 $tpl = Renderer::getMarkupTemplate('admin/item/source.tpl');
52                 $o = Renderer::replaceMacros($tpl, [
53                         '$title'       => DI::l10n()->t('Item Source'),
54                         '$guid'        => ['guid', DI::l10n()->t('Item Guid'), $guid, ''],
55                         '$item_uri'    => $item_uri,
56                         '$item_id'     => $item_id,
57                         '$terms'       => $terms,
58                         '$itemidlbl'   => DI::l10n()->t('Item Id'),
59                         '$itemurilbl'  => DI::l10n()->t('Item URI'),
60                         '$submit'      => DI::l10n()->t('Submit'),
61                         '$termslbl'    => DI::l10n()->t('Terms'),
62                         '$taglbl'      => DI::l10n()->t('Tag'),
63                         '$typelbl'     => DI::l10n()->t('Type'),
64                         '$termlbl'     => DI::l10n()->t('Term'),
65                         '$urllbl'      => DI::l10n()->t('URL'),
66                         '$mentionlbl'  => DI::l10n()->t('Mention'),
67                         '$implicitlbl' => DI::l10n()->t('Implicit Mention'),
68                 ]);
69
70                 return $o;
71         }
72 }