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