Replace legacy file/category handling
[friendica.git/.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\DI;
27 use Friendica\Model;
28 use Friendica\Util\XML;
29
30 /**
31  * Shows a dialog for adding tags to a file
32  */
33 class SaveTag extends BaseModule
34 {
35         public static function init(array $parameters = [])
36         {
37                 if (!local_user()) {
38                         notice(DI::l10n()->t('You must be logged in to use this module'));
39                         DI::baseUrl()->redirect();
40                 }
41         }
42
43         public static function rawContent(array $parameters = [])
44         {
45                 $a = DI::app();
46                 $logger = DI::logger();
47
48                 $term = XML::unescape(trim($_GET['term'] ?? ''));
49                 // @TODO: Replace with parameter from router
50                 $item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
51
52                 $logger->info('filer', ['tag' => $term, 'item' => $item_id]);
53
54                 if ($item_id && strlen($term)) {
55                         // file item
56                         Model\FileTag::saveFile(local_user(), $item_id, $term);
57                 }
58
59                 // return filer dialog
60                 $filetags = Model\Post\Category::getArray(local_user(), Model\Post\Category::FILE);
61
62                 $tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
63                 echo Renderer::replaceMacros($tpl, [
64                         '$field' => ['term', DI::l10n()->t("Save to Folder:"), '', '', $filetags, DI::l10n()->t('- select -')],
65                         '$submit' => DI::l10n()->t('Save'),
66                 ]);
67
68                 exit;
69         }
70 }