friendica/src/Module/Filer/SaveTag.php

79 lines
2.5 KiB
PHP
Raw Normal View History

2019-03-01 11:01:44 +01:00
<?php
2020-02-09 15:45:36 +01:00
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, the Friendica project
2020-02-09 15:45:36 +01: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 11:01:44 +01:00
2019-05-04 10:30:05 +02:00
namespace Friendica\Module\Filer;
2019-03-01 11:01:44 +01:00
use Friendica\App;
2019-03-01 11:01:44 +01:00
use Friendica\BaseModule;
use Friendica\Core\L10n;
2019-03-01 11:01:44 +01:00
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
2019-03-01 11:01:44 +01:00
use Friendica\Model;
use Friendica\Module\Response;
2021-01-21 22:53:19 +01:00
use Friendica\Network\HTTPException;
use Friendica\Util\Profiler;
2019-03-01 11:01:44 +01:00
use Friendica\Util\XML;
use Psr\Log\LoggerInterface;
2019-03-01 11:01:44 +01:00
/**
2019-03-01 11:57:16 +01:00
* Shows a dialog for adding tags to a file
2019-03-01 11:01:44 +01:00
*/
2019-05-04 10:30:05 +02:00
class SaveTag extends BaseModule
2019-03-01 11:01:44 +01: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 11:01:44 +01:00
{
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
2019-03-01 11:01:44 +01:00
if (!local_user()) {
notice($this->t('You must be logged in to use this module'));
$baseUrl->redirect();
2019-03-01 11:01:44 +01:00
}
}
protected function rawContent(array $request = [])
2019-03-01 11:01:44 +01:00
{
$term = XML::unescape(trim($_GET['term'] ?? ''));
2021-07-25 17:23:37 +02:00
$item_id = $this->parameters['id'] ?? 0;
2019-03-01 11:01:44 +01:00
$this->logger->info('filer', ['tag' => $term, 'item' => $item_id]);
2019-03-01 11:01:44 +01:00
if ($item_id && strlen($term)) {
$item = Model\Post::selectFirst(['uri-id'], ['id' => $item_id]);
if (!DBA::isResult($item)) {
2021-01-21 22:53:19 +01:00
throw new HTTPException\NotFoundException();
}
Model\Post\Category::storeFileByURIId($item['uri-id'], local_user(), Model\Post\Category::FILE, $term);
2019-03-01 11:01:44 +01:00
}
2019-03-01 11:57:16 +01:00
// return filer dialog
2021-01-21 08:16:41 +01:00
$filetags = Model\Post\Category::getArray(local_user(), Model\Post\Category::FILE);
2019-03-01 11:57:16 +01: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 11:57:16 +01:00
]);
exit;
2019-03-01 11:01:44 +01:00
}
}