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