]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Item/Source.php
Merge pull request #8272 from MrPetovan/bug/8254-regex-url-img
[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                 $a = DI::app();
37
38                 $guid = null;
39                 // @TODO: Replace with parameter from router
40                 if (!empty($a->argv[3])) {
41                         $guid = $a->argv[3];
42                 }
43
44                 $guid = $_REQUEST['guid'] ?? $guid;
45
46                 $source = '';
47                 $item_uri = '';
48                 $item_id = '';
49                 $terms = [];
50                 if (!empty($guid)) {
51                         $item = Model\Item::selectFirst(['id', 'guid', 'uri'], ['guid' => $guid]);
52
53                         $conversation = Model\Conversation::getByItemUri($item['uri']);
54
55                         $item_id = $item['id'];
56                         $item_uri = $item['uri'];
57                         $source = $conversation['source'];
58                         $terms = Model\Term::tagArrayFromItemId($item['id'], [Model\Term::HASHTAG, Model\Term::MENTION, Model\Term::IMPLICIT_MENTION]);
59                 }
60
61                 $tpl = Renderer::getMarkupTemplate('admin/item/source.tpl');
62                 $o = Renderer::replaceMacros($tpl, [
63                         '$guid'          => ['guid', DI::l10n()->t('Item Guid'), $guid, ''],
64                         '$source'        => $source,
65                         '$item_uri'      => $item_uri,
66                         '$item_id'       => $item_id,
67                         '$terms'         => $terms,
68                 ]);
69
70                 return $o;
71         }
72 }