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