]> git.mxchange.org Git - friendica.git/blob - src/Module/Filer/RemoveTag.php
Merge pull request #12026 from annando/no-boot-src-module-2
[friendica.git] / src / Module / Filer / RemoveTag.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\Session;
28 use Friendica\Core\System;
29 use Friendica\Database\DBA;
30 use Friendica\Model\Post;
31 use Friendica\Module\Response;
32 use Friendica\Navigation\SystemMessages;
33 use Friendica\Network\HTTPException;
34 use Friendica\Util\Profiler;
35 use Psr\Log\LoggerInterface;
36
37 /**
38  * Remove a tag from a file
39  */
40 class RemoveTag extends BaseModule
41 {
42         /** @var SystemMessages */
43         private $systemMessages;
44
45         public function __construct(SystemMessages $systemMessages, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
46         {
47                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
48
49                 $this->systemMessages = $systemMessages;
50         }
51
52         protected function post(array $request = [])
53         {
54                 System::httpError($this->removeTag($request));
55         }
56
57         protected function content(array $request = []): string
58         {
59                 if (!Session::getLocalUser()) {
60                         throw new HTTPException\ForbiddenException();
61                 }
62
63                 $this->removeTag($request, $type, $term);
64
65                 if ($type == Post\Category::FILE) {
66                         $this->baseUrl->redirect('filed?file=' . rawurlencode($term));
67                 }
68
69                 return '';
70         }
71
72         /**
73          * @param array       $request The $_REQUEST array
74          * @param string|null $type    Output parameter with the computed type
75          * @param string|null $term    Output parameter with the computed term
76          *
77          * @return int The relevant HTTP code
78          *
79          * @throws \Exception
80          */
81         private function removeTag(array $request, string &$type = null, string &$term = null): int
82         {
83                 $item_id = $this->parameters['id'] ?? 0;
84
85                 $term = trim($request['term'] ?? '');
86                 $cat = trim($request['cat'] ?? '');
87
88                 if (!empty($cat)) {
89                         $type = Post\Category::CATEGORY;
90                         $term = $cat;
91                 } else {
92                         $type = Post\Category::FILE;
93                 }
94
95                 $this->logger->info('Filer - Remove Tag', [
96                         'term' => $term,
97                         'item' => $item_id,
98                         'type' => $type
99                 ]);
100
101                 if (!$item_id || !strlen($term)) {
102                         $this->systemMessages->addNotice($this->l10n->t('Item was not deleted'));
103                         return 401;
104                 }
105
106                 $item = Post::selectFirst(['uri-id'], ['id' => $item_id]);
107                 if (!DBA::isResult($item)) {
108                         return 404;
109                 }
110
111                 if (!Post\Category::deleteFileByURIId($item['uri-id'], Session::getLocalUser(), $type, $term)) {
112                         $this->systemMessages->addNotice($this->l10n->t('Item was not removed'));
113                         return 500;
114                 }
115
116                 return 200;
117         }
118 }