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