streams/Code/Module/Tagrm.php

159 lines
4.1 KiB
PHP
Raw Normal View History

2016-04-19 03:38:38 +00:00
<?php
2021-12-03 03:01:39 +00:00
2022-02-16 04:08:28 +00:00
namespace Code\Module;
2016-04-19 03:38:38 +00:00
2022-02-16 04:08:28 +00:00
use Code\Web\Controller;
2021-12-02 22:33:36 +00:00
2016-04-19 03:38:38 +00:00
require_once('include/bbcode.php');
2021-12-02 23:02:31 +00:00
class Tagrm extends Controller
{
public function post()
{
2021-12-03 03:01:39 +00:00
if (!local_channel()) {
2021-12-02 23:02:31 +00:00
goaway(z_root() . '/' . $_SESSION['photo_return']);
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
2021-12-03 03:01:39 +00:00
if ((x($_POST, 'submit')) && ($_POST['submit'] === t('Cancel'))) {
2021-12-02 23:02:31 +00:00
goaway(z_root() . '/' . $_SESSION['photo_return']);
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
$tag = ((x($_POST, 'tag')) ? trim($_POST['tag']) : '');
$item = ((x($_POST, 'item')) ? intval($_POST['item']) : 0);
2021-12-03 03:01:39 +00:00
$r = q(
"SELECT * FROM item WHERE id = %d AND uid = %d LIMIT 1",
2021-12-02 23:02:31 +00:00
intval($item),
intval(local_channel())
);
2021-12-03 03:01:39 +00:00
if (!$r) {
2021-12-02 23:02:31 +00:00
goaway(z_root() . '/' . $_SESSION['photo_return']);
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
$r = fetch_post_tags($r);
2021-12-02 23:02:31 +00:00
$item = $r[0];
$new_tags = [];
if ($item['term']) {
for ($x = 0; $x < count($item['term']); $x++) {
2021-12-03 03:01:39 +00:00
if ($item['term'][$x]['term'] !== hex2bin($tag)) {
2021-12-02 23:02:31 +00:00
$new_tags[] = $item['term'][$x];
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
}
}
2021-12-03 03:01:39 +00:00
if ($new_tags) {
2021-12-02 23:02:31 +00:00
$item['term'] = $new_tags;
2021-12-03 03:01:39 +00:00
} else {
2021-12-02 23:02:31 +00:00
unset($item['term']);
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
item_store_update($item);
info(t('Tag removed') . EOL);
goaway(z_root() . '/' . $_SESSION['photo_return']);
// NOTREACHED
}
public function get()
{
if (!local_channel()) {
goaway(z_root() . '/' . $_SESSION['photo_return']);
// NOTREACHED
}
// remove tag on the fly if item and tag are provided
if ((argc() == 4) && (argv(1) === 'drop') && intval(argv(2))) {
$item = intval(argv(2));
$tag = argv(3);
2021-12-03 03:01:39 +00:00
$r = q(
"SELECT * FROM item WHERE id = %d AND uid = %d LIMIT 1",
2021-12-02 23:02:31 +00:00
intval($item),
intval(local_channel())
);
2021-12-03 03:01:39 +00:00
if (!$r) {
2021-12-02 23:02:31 +00:00
goaway(z_root() . '/' . $_SESSION['photo_return']);
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
$r = fetch_post_tags($r);
2021-12-02 23:02:31 +00:00
$item = $r[0];
$new_tags = [];
if ($item['term']) {
for ($x = 0; $x < count($item['term']); $x++) {
2021-12-03 03:01:39 +00:00
if ($item['term'][$x]['term'] !== hex2bin($tag)) {
2021-12-02 23:02:31 +00:00
$new_tags[] = $item['term'][$x];
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
}
}
2021-12-03 03:01:39 +00:00
if ($new_tags) {
2021-12-02 23:02:31 +00:00
$item['term'] = $new_tags;
2021-12-03 03:01:39 +00:00
} else {
2021-12-02 23:02:31 +00:00
unset($item['term']);
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
item_store_update($item);
info(t('Tag removed') . EOL);
goaway(z_root() . '/' . $_SESSION['photo_return']);
}
//if we got only the item print a list of tags to select
if ((argc() == 3) && (argv(1) === 'drop') && intval(argv(2))) {
$o = '';
$item = intval(argv(2));
2021-12-03 03:01:39 +00:00
$r = q(
"SELECT * FROM item WHERE id = %d AND uid = %d LIMIT 1",
2021-12-02 23:02:31 +00:00
intval($item),
intval(local_channel())
);
2021-12-03 03:01:39 +00:00
if (!$r) {
2021-12-02 23:02:31 +00:00
goaway(z_root() . '/' . $_SESSION['photo_return']);
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
$r = fetch_post_tags($r);
2021-12-02 23:02:31 +00:00
2021-12-03 03:01:39 +00:00
if (!count($r[0]['term'])) {
2021-12-02 23:02:31 +00:00
goaway(z_root() . '/' . $_SESSION['photo_return']);
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
$o .= '<h3>' . t('Remove Item Tag') . '</h3>';
$o .= '<p id="tag-remove-desc">' . t('Select a tag to remove: ') . '</p>';
$o .= '<form id="tagrm" action="tagrm" method="post" >';
$o .= '<input type="hidden" name="item" value="' . $item . '" />';
$o .= '<ul>';
foreach ($r[0]['term'] as $x) {
$o .= '<li><input type="checkbox" name="tag" value="' . bin2hex($x['term']) . '" >' . bbcode($x['term']) . '</input></li>';
}
$o .= '</ul>';
$o .= '<input id="tagrm-submit" type="submit" name="submit" value="' . t('Remove') . '" />';
$o .= '<input id="tagrm-cancel" type="submit" name="submit" value="' . t('Cancel') . '" />';
$o .= '</form>';
return $o;
}
}
2016-04-19 03:38:38 +00:00
}