]> git.mxchange.org Git - friendica.git/blob - src/Module/Filer/SaveTag.php
Fixing Mainentance & Exception vie
[friendica.git] / src / Module / Filer / SaveTag.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\Filer;
23
24 use Friendica\App\BaseURL;
25 use Friendica\BaseModule;
26 use Friendica\Core\L10n;
27 use Friendica\Core\Renderer;
28 use Friendica\Database\DBA;
29 use Friendica\Model;
30 use Friendica\Network\HTTPException;
31 use Friendica\Util\XML;
32 use Psr\Log\LoggerInterface;
33
34 /**
35  * Shows a dialog for adding tags to a file
36  */
37 class SaveTag extends BaseModule
38 {
39         /** @var LoggerInterface */
40         protected $logger;
41         
42         public function __construct(LoggerInterface $logger, BaseURL $baseUrl, L10n $l10n, array $parameters = [])
43         {
44                 parent::__construct($l10n, $parameters);
45                 
46                 $this->logger = $logger;
47                 
48                 if (!local_user()) {
49                         notice($this->t('You must be logged in to use this module'));
50                         $baseUrl->redirect();
51                 }
52         }
53
54         public function rawContent()
55         {
56                 $term = XML::unescape(trim($_GET['term'] ?? ''));
57
58                 $item_id = $this->parameters['id'] ?? 0;
59
60                 $this->logger->info('filer', ['tag' => $term, 'item' => $item_id]);
61
62                 if ($item_id && strlen($term)) {
63                         $item = Model\Post::selectFirst(['uri-id'], ['id' => $item_id]);
64                         if (!DBA::isResult($item)) {
65                                 throw new HTTPException\NotFoundException();
66                         }
67                         Model\Post\Category::storeFileByURIId($item['uri-id'], local_user(), Model\Post\Category::FILE, $term);
68                 }
69
70                 // return filer dialog
71                 $filetags = Model\Post\Category::getArray(local_user(), Model\Post\Category::FILE);
72
73                 $tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
74                 echo Renderer::replaceMacros($tpl, [
75                         '$field' => ['term', $this->t("Save to Folder:"), '', '', $filetags, $this->t('- select -')],
76                         '$submit' => $this->t('Save'),
77                 ]);
78
79                 exit;
80         }
81 }