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