friendica/src/Module/Filer/SaveTag.php

75 lines
2.2 KiB
PHP
Raw Normal View History

2019-03-01 11:01:44 +01:00
<?php
2020-02-09 15:45:36 +01:00
/**
* @copyright Copyright (C) 2020, Friendica
*
* @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\BaseModule;
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
use Friendica\DI;
2019-03-01 11:01:44 +01:00
use Friendica\Model;
use Friendica\Util\XML;
/**
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 static function init(array $parameters = [])
2019-03-01 11:01:44 +01:00
{
if (!local_user()) {
2020-07-23 08:11:21 +02:00
notice(DI::l10n()->t('You must be logged in to use this module'));
DI::baseUrl()->redirect();
2019-03-01 11:01:44 +01:00
}
}
public static function rawContent(array $parameters = [])
2019-03-01 11:01:44 +01:00
{
$a = DI::app();
$logger = DI::logger();
2019-03-01 11:01:44 +01:00
$term = XML::unescape(trim($_GET['term'] ?? ''));
2019-05-01 21:29:04 +02:00
// @TODO: Replace with parameter from router
2019-03-01 11:01:44 +01:00
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
$logger->info('filer', ['tag' => $term, 'item' => $item_id]);
if ($item_id && strlen($term)) {
$item = Model\Post::selectFirst(['uri-id'], ['id' => $item_id]);
if (!DBA::isResult($item)) {
return;
}
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', DI::l10n()->t("Save to Folder:"), '', '', $filetags, DI::l10n()->t('- select -')],
'$submit' => DI::l10n()->t('Save'),
2019-03-01 11:57:16 +01:00
]);
exit;
2019-03-01 11:01:44 +01:00
}
}