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