2010-11-08 23:37:58 +01:00
|
|
|
<?php
|
2018-01-21 19:33:59 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +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/>.
|
|
|
|
*
|
2018-01-21 19:33:59 +01:00
|
|
|
*/
|
2018-02-15 03:33:55 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-02-15 03:33:55 +01:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 00:28:31 +01:00
|
|
|
use Friendica\DI;
|
2018-02-06 13:40:22 +01:00
|
|
|
use Friendica\Model\Item;
|
2021-01-16 05:11:28 +01:00
|
|
|
use Friendica\Model\Post;
|
2020-04-18 22:46:41 +02:00
|
|
|
use Friendica\Model\Tag;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-06-18 22:36:34 +02:00
|
|
|
function tagrm_post(App $a)
|
|
|
|
{
|
2018-02-06 13:40:22 +01:00
|
|
|
if (!local_user()) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($_SESSION['photo_return']);
|
2016-12-20 12:35:18 +01:00
|
|
|
}
|
2010-11-08 23:37:58 +01:00
|
|
|
|
2020-01-18 20:52:34 +01:00
|
|
|
if (!empty($_POST['submit']) && ($_POST['submit'] === DI::l10n()->t('Cancel'))) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($_SESSION['photo_return']);
|
2016-12-20 12:35:18 +01:00
|
|
|
}
|
2010-11-08 23:37:58 +01:00
|
|
|
|
2018-10-23 11:40:20 +02:00
|
|
|
$tags = [];
|
2019-10-15 15:01:17 +02:00
|
|
|
foreach ($_POST['tag'] ?? [] as $tag) {
|
2018-11-09 19:29:42 +01:00
|
|
|
$tags[] = hex2bin(Strings::escapeTags(trim($tag)));
|
2018-10-23 11:40:20 +02:00
|
|
|
}
|
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$item_id = $_POST['item'] ?? 0;
|
2018-10-23 11:40:20 +02:00
|
|
|
update_tags($item_id, $tags);
|
|
|
|
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($_SESSION['photo_return']);
|
2018-10-23 11:40:20 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-10-23 13:32:32 +02:00
|
|
|
/**
|
|
|
|
* Updates tags from an item
|
2019-01-07 07:07:42 +01:00
|
|
|
*
|
2018-10-23 13:32:32 +02:00
|
|
|
* @param $item_id
|
|
|
|
* @param $tags array
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws Exception
|
2018-10-23 13:32:32 +02:00
|
|
|
*/
|
2020-05-02 07:08:05 +02:00
|
|
|
function update_tags($item_id, $tags)
|
|
|
|
{
|
|
|
|
if (empty($item_id) || empty($tags)) {
|
2018-10-23 21:18:07 +02:00
|
|
|
return;
|
2018-10-23 11:40:20 +02:00
|
|
|
}
|
2010-11-08 23:37:58 +01:00
|
|
|
|
2021-01-16 05:11:28 +01:00
|
|
|
$item = Post::selectFirst(['uri-id'], ['id' => $item_id, 'uid' => local_user()]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($item)) {
|
2018-10-23 21:18:07 +02:00
|
|
|
return;
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2010-11-08 23:37:58 +01:00
|
|
|
|
2018-10-23 19:29:59 +02:00
|
|
|
foreach ($tags as $new_tag) {
|
2020-04-18 22:46:41 +02:00
|
|
|
if (preg_match_all('/([#@!])\[url\=([^\[\]]*)\]([^\[\]]*)\[\/url\]/ism', $new_tag, $results, PREG_SET_ORDER)) {
|
|
|
|
foreach ($results as $tag) {
|
|
|
|
Tag::removeByHash($item['uri-id'], $tag[1], $tag[3], $tag[2]);
|
|
|
|
}
|
|
|
|
}
|
2010-11-08 23:37:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 22:36:34 +02:00
|
|
|
function tagrm_content(App $a)
|
|
|
|
{
|
2010-11-08 23:37:58 +01:00
|
|
|
$o = '';
|
|
|
|
|
2018-02-06 13:40:22 +01:00
|
|
|
if (!local_user()) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($_SESSION['photo_return']);
|
2010-11-08 23:37:58 +01:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-10-25 21:49:18 +02:00
|
|
|
if ($a->argc == 3) {
|
2018-11-09 19:29:42 +01:00
|
|
|
update_tags($a->argv[1], [Strings::escapeTags(trim(hex2bin($a->argv[2])))]);
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($_SESSION['photo_return']);
|
2018-10-23 11:40:20 +02:00
|
|
|
}
|
|
|
|
|
2018-06-18 22:36:34 +02:00
|
|
|
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
|
|
|
if (!$item_id) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($_SESSION['photo_return']);
|
2010-11-08 23:37:58 +01:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2021-01-16 05:11:28 +01:00
|
|
|
$item = Post::selectFirst(['uri-id'], ['id' => $item_id, 'uid' => local_user()]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($item)) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($_SESSION['photo_return']);
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2010-11-08 23:37:58 +01:00
|
|
|
|
2020-05-05 23:58:25 +02:00
|
|
|
$tag_text = Tag::getCSVByURIId($item['uri-id']);
|
2010-11-08 23:37:58 +01:00
|
|
|
|
2020-05-05 21:54:25 +02:00
|
|
|
$arr = explode(',', $tag_text);
|
2018-10-23 11:40:20 +02:00
|
|
|
|
2020-05-05 21:54:25 +02:00
|
|
|
if (empty($arr)) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($_SESSION['photo_return']);
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2010-11-08 23:37:58 +01:00
|
|
|
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= '<h3>' . DI::l10n()->t('Remove Item Tag') . '</h3>';
|
2010-11-08 23:37:58 +01:00
|
|
|
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= '<p id="tag-remove-desc">' . DI::l10n()->t('Select a tag to remove: ') . '</p>';
|
2010-11-08 23:37:58 +01:00
|
|
|
|
|
|
|
$o .= '<form id="tagrm" action="tagrm" method="post" >';
|
2018-06-18 22:36:34 +02:00
|
|
|
$o .= '<input type="hidden" name="item" value="' . $item_id . '" />';
|
2010-11-08 23:37:58 +01:00
|
|
|
$o .= '<ul>';
|
|
|
|
|
2016-12-20 21:31:05 +01:00
|
|
|
foreach ($arr as $x) {
|
2018-10-23 11:40:20 +02:00
|
|
|
$o .= '<li><input type="checkbox" name="tag[]" value="' . bin2hex($x) . '" >' . BBCode::convert($x) . '</input></li>';
|
2010-11-08 23:37:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '</ul>';
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= '<input id="tagrm-submit" type="submit" name="submit" value="' . DI::l10n()->t('Remove') .'" />';
|
|
|
|
$o .= '<input id="tagrm-cancel" type="submit" name="submit" value="' . DI::l10n()->t('Cancel') .'" />';
|
2010-11-08 23:37:58 +01:00
|
|
|
$o .= '</form>';
|
|
|
|
|
|
|
|
return $o;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|