]> git.mxchange.org Git - friendica.git/blob - src/Module/Search/Saved.php
old boot.php functions replaced in src/module (4)
[friendica.git] / src / Module / Search / Saved.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\Search;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Core\L10n;
27 use Friendica\Core\Search;
28 use Friendica\Core\Session;
29 use Friendica\Database\Database;
30 use Friendica\DI;
31 use Friendica\Module\Response;
32 use Friendica\Util\Profiler;
33 use Psr\Log\LoggerInterface;
34
35 class Saved extends BaseModule
36 {
37         /** @var Database */
38         protected $dba;
39
40         public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, Database $dba, array $server, array $parameters = [])
41         {
42                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
43
44                 $this->dba = $dba;
45         }
46
47         protected function rawContent(array $request = [])
48         {
49                 $action = $this->args->get(2, 'none');
50                 $search = trim(rawurldecode($_GET['term'] ?? ''));
51
52                 $return_url = $_GET['return_url'] ?? Search::getSearchPath($search);
53
54                 if (Session::getLocalUser() && $search) {
55                         switch ($action) {
56                                 case 'add':
57                                         $fields = ['uid' => Session::getLocalUser(), 'term' => $search];
58                                         if (!$this->dba->exists('search', $fields)) {
59                                                 if (!$this->dba->insert('search', $fields)) {
60                                                         DI::sysmsg()->addNotice($this->t('Search term was not saved.'));
61                                                 }
62                                         } else {
63                                                 DI::sysmsg()->addNotice($this->t('Search term already saved.'));
64                                         }
65                                         break;
66
67                                 case 'remove':
68                                         if (!$this->dba->delete('search', ['uid' => Session::getLocalUser(), 'term' => $search])) {
69                                                 DI::sysmsg()->addNotice($this->t('Search term was not removed.'));
70                                         }
71                                         break;
72                         }
73                 }
74
75                 $this->baseUrl->redirect($return_url);
76         }
77 }