]> git.mxchange.org Git - friendica.git/blob - src/Module/Filer/SaveTag.php
Use an exception
[friendica.git] / src / Module / Filer / SaveTag.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\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 static function init(array $parameters = [])
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 static function rawContent(array $parameters = [])
46         {
47                 $a = DI::app();
48                 $logger = DI::logger();
49
50                 $term = XML::unescape(trim($_GET['term'] ?? ''));
51                 // @TODO: Replace with parameter from router
52                 $item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
53
54                 $logger->info('filer', ['tag' => $term, 'item' => $item_id]);
55
56                 if ($item_id && strlen($term)) {
57                         $item = Model\Post::selectFirst(['uri-id'], ['id' => $item_id]);
58                         if (!DBA::isResult($item)) {
59                                 throw new HTTPException\NotFoundException();
60                         }
61                         Model\Post\Category::storeFileByURIId($item['uri-id'], local_user(), Model\Post\Category::FILE, $term);
62                 }
63
64                 // return filer dialog
65                 $filetags = Model\Post\Category::getArray(local_user(), Model\Post\Category::FILE);
66
67                 $tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
68                 echo Renderer::replaceMacros($tpl, [
69                         '$field' => ['term', DI::l10n()->t("Save to Folder:"), '', '', $filetags, DI::l10n()->t('- select -')],
70                         '$submit' => DI::l10n()->t('Save'),
71                 ]);
72
73                 exit;
74         }
75 }