friendica/src/Module/Filer/SaveTag.php

80 lines
2.6 KiB
PHP
Raw Normal View History

2019-03-01 10:01:44 +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-03-01 10:01:44 +00:00
2019-05-04 08:30:05 +00:00
namespace Friendica\Module\Filer;
2019-03-01 10:01:44 +00:00
use Friendica\App;
2019-03-01 10:01:44 +00:00
use Friendica\BaseModule;
use Friendica\Core\L10n;
2019-03-01 10:01:44 +00:00
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
2022-10-17 18:55:22 +00:00
use Friendica\DI;
2019-03-01 10:01:44 +00:00
use Friendica\Model;
use Friendica\Module\Response;
2021-01-21 21:53:19 +00:00
use Friendica\Network\HTTPException;
use Friendica\Util\Profiler;
2019-03-01 10:01:44 +00:00
use Friendica\Util\XML;
use Psr\Log\LoggerInterface;
2019-03-01 10:01:44 +00:00
/**
2019-03-01 10:57:16 +00:00
* Shows a dialog for adding tags to a file
2019-03-01 10:01:44 +00:00
*/
2019-05-04 08:30:05 +00:00
class SaveTag extends BaseModule
2019-03-01 10:01:44 +00:00
{
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
2019-03-01 10:01:44 +00:00
{
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
if (!DI::userSession()->getLocalUserId()) {
2022-10-17 18:55:22 +00:00
DI::sysmsg()->addNotice($this->t('You must be logged in to use this module'));
$baseUrl->redirect();
2019-03-01 10:01:44 +00:00
}
}
protected function rawContent(array $request = [])
2019-03-01 10:01:44 +00:00
{
$term = XML::unescape(trim($_GET['term'] ?? ''));
2021-07-25 15:23:37 +00:00
$item_id = $this->parameters['id'] ?? 0;
2019-03-01 10:01:44 +00:00
$this->logger->info('filer', ['tag' => $term, 'item' => $item_id]);
2019-03-01 10:01:44 +00:00
if ($item_id && strlen($term)) {
$item = Model\Post::selectFirst(['uri-id'], ['id' => $item_id]);
if (!DBA::isResult($item)) {
2021-01-21 21:53:19 +00:00
throw new HTTPException\NotFoundException();
}
Model\Post\Category::storeFileByURIId($item['uri-id'], DI::userSession()->getLocalUserId(), Model\Post\Category::FILE, $term);
2019-03-01 10:01:44 +00:00
}
2019-03-01 10:57:16 +00:00
// return filer dialog
$filetags = Model\Post\Category::getArray(DI::userSession()->getLocalUserId(), Model\Post\Category::FILE);
2019-03-01 10:57:16 +00:00
$tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
echo Renderer::replaceMacros($tpl, [
'$field' => ['term', $this->t("Save to Folder:"), '', '', $filetags, $this->t('- select -')],
'$submit' => $this->t('Save'),
2019-03-01 10:57:16 +00:00
]);
exit;
2019-03-01 10:01:44 +00:00
}
}