X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ftagrm.php;h=fdf3ef4f8f4cfee64f55056fd07651737c644c18;hb=697b8a6cb84d042f0f34ec71a6f3e8739a52860c;hp=b9991d68da5b5ff0ea4c9a7a360dfe2fe1464ed8;hpb=9e3bae5caa6725737c2a1221a6c499e06ea0077c;p=friendica.git diff --git a/mod/tagrm.php b/mod/tagrm.php index b9991d68da..fdf3ef4f8f 100644 --- a/mod/tagrm.php +++ b/mod/tagrm.php @@ -1,104 +1,131 @@ . + * */ use Friendica\App; use Friendica\Content\Text\BBCode; -use Friendica\Core\L10n; -use Friendica\Core\System; -use Friendica\Database\DBM; -use Friendica\Model\Item; - -function tagrm_post(App $a) { +use Friendica\Database\DBA; +use Friendica\DI; +use Friendica\Model\Post; +use Friendica\Model\Tag; +function tagrm_post(App $a) +{ if (!local_user()) { - goaway(System::baseUrl() . '/' . $_SESSION['photo_return']); - } - - if ((x($_POST,'submit')) && ($_POST['submit'] === L10n::t('Cancel'))) { - goaway(System::baseUrl() . '/' . $_SESSION['photo_return']); + DI::baseUrl()->redirect($_SESSION['photo_return']); } - $tag = ((x($_POST,'tag')) ? hex2bin(notags(trim($_POST['tag']))) : ''); - $item = ((x($_POST,'item')) ? intval($_POST['item']) : 0 ); - - $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($item), - intval(local_user()) - ); - - if (!DBM::is_result($r)) { - goaway(System::baseUrl() . '/' . $_SESSION['photo_return']); + if (!empty($_POST['submit']) && ($_POST['submit'] === DI::l10n()->t('Cancel'))) { + DI::baseUrl()->redirect($_SESSION['photo_return']); } - $arr = explode(',', $r[0]['tag']); - for ($x = 0; $x < count($arr); $x ++) { - if ($arr[$x] === $tag) { - unset($arr[$x]); - break; - } + $tags = []; + foreach ($_POST['tag'] ?? [] as $tag) { + $tags[] = hex2bin(trim($tag)); } - $tag_str = implode(',',$arr); - - Item::update(['tag' => $tag_str], ['id' => $item]); - - info(L10n::t('Tag removed') . EOL ); - goaway(System::baseUrl() . '/' . $_SESSION['photo_return']); + $item_id = $_POST['item'] ?? 0; + update_tags($item_id, $tags); + DI::baseUrl()->redirect($_SESSION['photo_return']); // NOTREACHED } +/** + * Updates tags from an item + * + * @param $item_id + * @param $tags array + * @throws Exception + */ +function update_tags($item_id, $tags) +{ + if (empty($item_id) || empty($tags)) { + return; + } + $item = Post::selectFirst(['uri-id'], ['id' => $item_id, 'uid' => local_user()]); + if (!DBA::isResult($item)) { + return; + } -function tagrm_content(App $a) { + foreach ($tags as $new_tag) { + 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]); + } + } + } +} +function tagrm_content(App $a) +{ $o = ''; + $photo_return = $_SESSION['photo_return'] ?? ''; + if (!local_user()) { - goaway(System::baseUrl() . '/' . $_SESSION['photo_return']); + DI::baseUrl()->redirect($photo_return); // NOTREACHED } - $item = (($a->argc > 1) ? intval($a->argv[1]) : 0); - if (!$item) { - goaway(System::baseUrl() . '/' . $_SESSION['photo_return']); - // NOTREACHED + if (DI::args()->getArgc()== 3) { + update_tags(DI::args()->getArgv()[1], [trim(hex2bin(DI::args()->getArgv()[2]))]); + DI::baseUrl()->redirect($photo_return); } - $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($item), - intval(local_user()) - ); + $item_id = ((DI::args()->getArgc()> 1) ? intval(DI::args()->getArgv()[1]) : 0); + if (!$item_id) { + DI::baseUrl()->redirect($photo_return); + // NOTREACHED + } - if (!DBM::is_result($r)) { - goaway(System::baseUrl() . '/' . $_SESSION['photo_return']); + $item = Post::selectFirst(['uri-id'], ['id' => $item_id, 'uid' => local_user()]); + if (!DBA::isResult($item)) { + DI::baseUrl()->redirect($photo_return); } - $arr = explode(',', $r[0]['tag']); + $tag_text = Tag::getCSVByURIId($item['uri-id']); - if (!count($arr)) { - goaway(System::baseUrl() . '/' . $_SESSION['photo_return']); + $arr = explode(',', $tag_text); + + if (empty($arr)) { + DI::baseUrl()->redirect($photo_return); } - $o .= '

' . L10n::t('Remove Item Tag') . '

'; + $o .= '

' . DI::l10n()->t('Remove Item Tag') . '

'; - $o .= '

' . L10n::t('Select a tag to remove: ') . '

'; + $o .= '

' . DI::l10n()->t('Select a tag to remove: ') . '

'; $o .= '
'; - $o .= ''; + $o .= ''; $o .= ''; - $o .= ''; - $o .= ''; + $o .= ''; + $o .= ''; $o .= '
'; return $o; - }