2019-10-07 18:13:31 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-10-07 18:13:31 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module\Search;
|
|
|
|
|
2021-11-20 14:38:03 +00:00
|
|
|
use Friendica\App;
|
2019-10-07 18:13:31 +00:00
|
|
|
use Friendica\BaseModule;
|
2021-11-19 19:18:48 +00:00
|
|
|
use Friendica\Core\L10n;
|
2020-05-17 13:51:56 +00:00
|
|
|
use Friendica\Core\Search;
|
2021-11-19 19:18:48 +00:00
|
|
|
use Friendica\Database\Database;
|
2022-10-17 18:55:22 +00:00
|
|
|
use Friendica\DI;
|
2021-11-21 19:06:36 +00:00
|
|
|
use Friendica\Module\Response;
|
2021-11-20 14:38:03 +00:00
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2019-10-07 18:13:31 +00:00
|
|
|
|
|
|
|
class Saved extends BaseModule
|
|
|
|
{
|
2021-11-19 19:18:48 +00:00
|
|
|
/** @var Database */
|
|
|
|
protected $dba;
|
|
|
|
|
2021-11-21 19:06:36 +00:00
|
|
|
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, Database $dba, array $server, array $parameters = [])
|
2021-11-19 19:18:48 +00:00
|
|
|
{
|
2021-11-21 19:06:36 +00:00
|
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
2021-11-19 19:18:48 +00:00
|
|
|
|
2021-11-20 14:38:03 +00:00
|
|
|
$this->dba = $dba;
|
2021-11-19 19:18:48 +00:00
|
|
|
}
|
|
|
|
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function rawContent(array $request = [])
|
2019-10-07 18:13:31 +00:00
|
|
|
{
|
2021-11-19 19:18:48 +00:00
|
|
|
$action = $this->args->get(2, 'none');
|
2021-11-07 09:18:25 +00:00
|
|
|
$search = trim(rawurldecode($_GET['term'] ?? ''));
|
2019-10-07 18:13:31 +00:00
|
|
|
|
2020-05-17 13:51:56 +00:00
|
|
|
$return_url = $_GET['return_url'] ?? Search::getSearchPath($search);
|
2019-10-07 18:13:31 +00:00
|
|
|
|
2019-10-13 12:39:41 +00:00
|
|
|
if (local_user() && $search) {
|
2019-10-07 18:13:31 +00:00
|
|
|
switch ($action) {
|
|
|
|
case 'add':
|
|
|
|
$fields = ['uid' => local_user(), 'term' => $search];
|
2021-11-19 19:18:48 +00:00
|
|
|
if (!$this->dba->exists('search', $fields)) {
|
|
|
|
if (!$this->dba->insert('search', $fields)) {
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice($this->t('Search term was not saved.'));
|
2020-07-23 06:11:21 +00:00
|
|
|
}
|
2019-10-07 18:13:31 +00:00
|
|
|
} else {
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice($this->t('Search term already saved.'));
|
2019-10-07 18:13:31 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'remove':
|
2021-11-19 19:18:48 +00:00
|
|
|
if (!$this->dba->delete('search', ['uid' => local_user(), 'term' => $search])) {
|
2022-10-17 18:55:22 +00:00
|
|
|
DI::sysmsg()->addNotice($this->t('Search term was not removed.'));
|
2020-07-23 06:11:21 +00:00
|
|
|
}
|
2019-10-07 18:13:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-19 19:18:48 +00:00
|
|
|
$this->baseUrl->redirect($return_url);
|
2019-10-07 18:13:31 +00:00
|
|
|
}
|
|
|
|
}
|