2019-10-07 14:13:31 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2023-01-01 09:36:24 -05:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 09:45:36 -05: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 14:13:31 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module\Search;
|
|
|
|
|
2021-11-20 09:38:03 -05:00
|
|
|
use Friendica\App;
|
2019-10-07 14:13:31 -04:00
|
|
|
use Friendica\BaseModule;
|
2021-11-19 14:18:48 -05:00
|
|
|
use Friendica\Core\L10n;
|
2020-05-17 09:51:56 -04:00
|
|
|
use Friendica\Core\Search;
|
2021-11-19 14:18:48 -05:00
|
|
|
use Friendica\Database\Database;
|
2022-10-17 14:55:22 -04:00
|
|
|
use Friendica\DI;
|
2021-11-21 14:06:36 -05:00
|
|
|
use Friendica\Module\Response;
|
2021-11-20 09:38:03 -05:00
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2019-10-07 14:13:31 -04:00
|
|
|
|
|
|
|
class Saved extends BaseModule
|
|
|
|
{
|
2021-11-19 14:18:48 -05:00
|
|
|
/** @var Database */
|
|
|
|
protected $dba;
|
|
|
|
|
2021-11-21 14:06:36 -05: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 14:18:48 -05:00
|
|
|
{
|
2021-11-21 14:06:36 -05:00
|
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
2021-11-19 14:18:48 -05:00
|
|
|
|
2021-11-20 09:38:03 -05:00
|
|
|
$this->dba = $dba;
|
2021-11-19 14:18:48 -05:00
|
|
|
}
|
|
|
|
|
2021-11-20 09:38:03 -05:00
|
|
|
protected function rawContent(array $request = [])
|
2019-10-07 14:13:31 -04:00
|
|
|
{
|
2021-11-19 14:18:48 -05:00
|
|
|
$action = $this->args->get(2, 'none');
|
2021-11-07 04:18:25 -05:00
|
|
|
$search = trim(rawurldecode($_GET['term'] ?? ''));
|
2019-10-07 14:13:31 -04:00
|
|
|
|
2020-05-17 09:51:56 -04:00
|
|
|
$return_url = $_GET['return_url'] ?? Search::getSearchPath($search);
|
2019-10-07 14:13:31 -04:00
|
|
|
|
2022-10-20 16:59:12 -04:00
|
|
|
if (DI::userSession()->getLocalUserId() && $search) {
|
2019-10-07 14:13:31 -04:00
|
|
|
switch ($action) {
|
|
|
|
case 'add':
|
2022-10-20 16:59:12 -04:00
|
|
|
$fields = ['uid' => DI::userSession()->getLocalUserId(), 'term' => $search];
|
2021-11-19 14:18:48 -05:00
|
|
|
if (!$this->dba->exists('search', $fields)) {
|
|
|
|
if (!$this->dba->insert('search', $fields)) {
|
2022-10-17 14:55:22 -04:00
|
|
|
DI::sysmsg()->addNotice($this->t('Search term was not saved.'));
|
2020-07-23 02:11:21 -04:00
|
|
|
}
|
2019-10-07 14:13:31 -04:00
|
|
|
} else {
|
2022-10-17 14:55:22 -04:00
|
|
|
DI::sysmsg()->addNotice($this->t('Search term already saved.'));
|
2019-10-07 14:13:31 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'remove':
|
2022-10-20 16:59:12 -04:00
|
|
|
if (!$this->dba->delete('search', ['uid' => DI::userSession()->getLocalUserId(), 'term' => $search])) {
|
2022-10-17 14:55:22 -04:00
|
|
|
DI::sysmsg()->addNotice($this->t('Search term was not removed.'));
|
2020-07-23 02:11:21 -04:00
|
|
|
}
|
2019-10-07 14:13:31 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-19 14:18:48 -05:00
|
|
|
$this->baseUrl->redirect($return_url);
|
2019-10-07 14:13:31 -04:00
|
|
|
}
|
|
|
|
}
|