ttrss/classes/pref/labels.php

326 lines
9.1 KiB
PHP
Raw Normal View History

2011-12-13 10:34:43 +01:00
<?php
class Pref_Labels extends Handler_Protected {
2011-12-13 10:34:43 +01:00
2011-12-26 09:02:52 +01:00
function csrf_ignore($method) {
$csrf_ignored = array("index", "getlabeltree", "edit");
return array_search($method, $csrf_ignored) !== false;
}
2011-12-13 10:34:43 +01:00
function edit() {
$label_id = clean($_REQUEST['id']);
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("SELECT * FROM ttrss_labels2 WHERE
id = ? AND owner_uid = ?");
$sth->execute([$label_id, $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
if ($line = $sth->fetch()) {
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print_hidden("id", "$label_id");
print_hidden("op", "pref-labels");
print_hidden("method", "save");
2011-12-13 10:34:43 +01:00
2017-12-11 16:23:30 +01:00
print "<form onsubmit='return false;'>";
2017-12-02 10:45:33 +01:00
print "<div class=\"dlgSec\">".__("Caption")."</div>";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "<div class=\"dlgSecCont\">";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
$fg_color = $line['fg_color'];
$bg_color = $line['bg_color'];
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "<span class=\"labelColorIndicator\" id=\"label-editor-indicator\" style='color : $fg_color; background-color : $bg_color; margin-bottom : 4px; margin-right : 4px'>&alpha;</span>";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "<input style=\"font-size : 16px\" name=\"caption\"
2011-12-13 10:34:43 +01:00
dojoType=\"dijit.form.ValidationTextBox\"
required=\"true\"
value=\"".htmlspecialchars($line['caption'])."\">";
2017-12-02 10:45:33 +01:00
print "</div>";
print "<div class=\"dlgSec\">" . __("Colors") . "</div>";
print "<div class=\"dlgSecCont\">";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "<table cellspacing=\"0\">";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "<tr><td>".__("Foreground:")."</td><td>".__("Background:").
"</td></tr>";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "<tr><td style='padding-right : 10px'>";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "<input dojoType=\"dijit.form.TextBox\"
2011-12-13 10:34:43 +01:00
style=\"display : none\" id=\"labelEdit_fgColor\"
name=\"fg_color\" value=\"$fg_color\">";
2017-12-02 10:45:33 +01:00
print "<input dojoType=\"dijit.form.TextBox\"
2011-12-13 10:34:43 +01:00
style=\"display : none\" id=\"labelEdit_bgColor\"
name=\"bg_color\" value=\"$bg_color\">";
2017-12-02 10:45:33 +01:00
print "<div dojoType=\"dijit.ColorPalette\">
2011-12-13 10:34:43 +01:00
<script type=\"dojo/method\" event=\"onChange\" args=\"fg_color\">
dijit.byId(\"labelEdit_fgColor\").attr('value', fg_color);
$('label-editor-indicator').setStyle({color: fg_color});
</script>
2017-12-02 10:45:33 +01:00
</div>";
print "</div>";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "</td><td>";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "<div dojoType=\"dijit.ColorPalette\">
2011-12-13 10:34:43 +01:00
<script type=\"dojo/method\" event=\"onChange\" args=\"bg_color\">
dijit.byId(\"labelEdit_bgColor\").attr('value', bg_color);
$('label-editor-indicator').setStyle({backgroundColor: bg_color});
</script>
2017-12-02 10:45:33 +01:00
</div>";
print "</div>";
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
print "</td></tr></table>";
print "</div>";
2011-12-13 10:34:43 +01:00
# print "</form>";
2017-12-02 10:45:33 +01:00
print "<div class=\"dlgButtons\">";
print "<button dojoType=\"dijit.form.Button\" type=\"submit\" class=\"btn-primary\" onclick=\"dijit.byId('labelEditDlg').execute()\">".
2017-12-02 10:45:33 +01:00
__('Save')."</button>";
print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('labelEditDlg').hide()\">".
__('Cancel')."</button>";
print "</div>";
2017-12-11 16:23:30 +01:00
print "</form>";
2017-12-02 10:45:33 +01:00
}
2011-12-13 10:34:43 +01:00
}
function getlabeltree() {
$root = array();
$root['id'] = 'root';
$root['name'] = __('Labels');
$root['items'] = array();
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("SELECT *
2011-12-13 10:34:43 +01:00
FROM ttrss_labels2
2017-12-02 10:45:33 +01:00
WHERE owner_uid = ?
2011-12-13 10:34:43 +01:00
ORDER BY caption");
2017-12-02 10:45:33 +01:00
$sth->execute([$_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
while ($line = $sth->fetch()) {
2011-12-13 10:34:43 +01:00
$label = array();
$label['id'] = 'LABEL:' . $line['id'];
$label['bare_id'] = $line['id'];
$label['name'] = $line['caption'];
$label['fg_color'] = $line['fg_color'];
$label['bg_color'] = $line['bg_color'];
$label['type'] = 'label';
$label['checkbox'] = false;
array_push($root['items'], $label);
}
$fl = array();
$fl['identifier'] = 'id';
$fl['label'] = 'name';
$fl['items'] = array($root);
print json_encode($fl);
return;
}
function colorset() {
$kind = clean($_REQUEST["kind"]);
$ids = explode(',', clean($_REQUEST["ids"]));
$color = clean($_REQUEST["color"]);
$fg = clean($_REQUEST["fg"]);
$bg = clean($_REQUEST["bg"]);
2011-12-13 10:34:43 +01:00
foreach ($ids as $id) {
if ($kind == "fg" || $kind == "bg") {
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("UPDATE ttrss_labels2 SET
${kind}_color = ? WHERE id = ?
AND owner_uid = ?");
$sth->execute([$color, $id, $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
} else {
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("UPDATE ttrss_labels2 SET
fg_color = ?, bg_color = ? WHERE id = ?
AND owner_uid = ?");
$sth->execute([$fg, $bg, $id, $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
}
2017-12-02 10:45:33 +01:00
$caption = Labels::find_caption($id, $_SESSION["uid"]);
2011-12-13 10:34:43 +01:00
/* Remove cached data */
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET label_cache = ''
WHERE label_cache LIKE ? AND owner_uid = ?");
$sth->execute(["%$caption%", $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
}
}
function colorreset() {
$ids = explode(',', clean($_REQUEST["ids"]));
2011-12-13 10:34:43 +01:00
foreach ($ids as $id) {
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("UPDATE ttrss_labels2 SET
fg_color = '', bg_color = '' WHERE id = ?
AND owner_uid = ?");
$sth->execute([$id, $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
$caption = Labels::find_caption($id, $_SESSION["uid"]);
2011-12-13 10:34:43 +01:00
/* Remove cached data */
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET label_cache = ''
WHERE label_cache LIKE ? AND owner_uid = ?");
$sth->execute(["%$caption%", $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
}
}
function save() {
$id = clean($_REQUEST["id"]);
$caption = trim(clean($_REQUEST["caption"]));
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
$this->pdo->beginTransaction();
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("SELECT caption FROM ttrss_labels2
WHERE id = ? AND owner_uid = ?");
$sth->execute([$id, $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
if ($row = $sth->fetch()) {
$old_caption = $row["caption"];
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("SELECT id FROM ttrss_labels2
WHERE caption = ? AND owner_uid = ?");
$sth->execute([$caption, $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
2017-12-02 10:45:33 +01:00
if (!$sth->fetch()) {
2011-12-13 10:34:43 +01:00
if ($caption) {
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("UPDATE ttrss_labels2 SET
caption = ? WHERE id = ? AND
owner_uid = ?");
$sth->execute([$caption, $id, $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
/* Update filters that reference label being renamed */
2017-12-02 10:45:33 +01:00
$sth = $this->pdo->prepare("UPDATE ttrss_filters2_actions SET
action_param = ? WHERE action_param = ?
2011-12-13 10:34:43 +01:00
AND action_id = 7
2017-12-02 10:45:33 +01:00
AND filter_id IN (SELECT id FROM ttrss_filters2 WHERE owner_uid = ?)");
$sth->execute([$caption, $old_caption, $_SESSION['uid']]);
2011-12-13 10:34:43 +01:00
print clean($_REQUEST["value"]);
2011-12-13 10:34:43 +01:00
} else {
print $old_caption;
}
} else {
print $old_caption;
}
}
2017-12-02 10:45:33 +01:00
$this->pdo->commit();
2011-12-13 10:34:43 +01:00
}
function remove() {
$ids = explode(",", clean($_REQUEST["ids"]));
2011-12-13 10:34:43 +01:00
foreach ($ids as $id) {
Labels::remove($id, $_SESSION["uid"]);
2011-12-13 10:34:43 +01:00
}
}
function add() {
$caption = clean($_REQUEST["caption"]);
$output = clean($_REQUEST["output"]);
2011-12-13 10:34:43 +01:00
if ($caption) {
if (Labels::create($caption)) {
2011-12-13 10:34:43 +01:00
if (!$output) {
print T_sprintf("Created label <b>%s</b>", htmlspecialchars($caption));
}
}
if ($output == "select") {
header("Content-Type: text/xml");
print "<rpc-reply><payload>";
print_label_select("select_label",
2011-12-13 10:34:43 +01:00
$caption, "");
print "</payload></rpc-reply>";
}
}
return;
}
function index() {
print "<div id=\"pref-label-wrap\" dojoType=\"dijit.layout.BorderContainer\" gutters=\"false\">";
print "<div id=\"pref-label-header\" dojoType=\"dijit.layout.ContentPane\" region=\"top\">";
print "<div id=\"pref-label-toolbar\" dojoType=\"dijit.Toolbar\">";
print "<div dojoType=\"dijit.form.DropDownButton\">".
"<span>" . __('Select')."</span>";
print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
print "<div onclick=\"dijit.byId('labelTree').model.setAllChecked(true)\"
dojoType=\"dijit.MenuItem\">".__('All')."</div>";
print "<div onclick=\"dijit.byId('labelTree').model.setAllChecked(false)\"
dojoType=\"dijit.MenuItem\">".__('None')."</div>";
print "</div></div>";
print"<button dojoType=\"dijit.form.Button\" onclick=\"return addLabel()\">".
__('Create label')."</button dojoType=\"dijit.form.Button\"> ";
print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('labelTree').removeSelected()\">".
2011-12-13 10:34:43 +01:00
__('Remove')."</button dojoType=\"dijit.form.Button\"> ";
print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('labelTree').resetColors()\">".
2011-12-13 10:34:43 +01:00
__('Clear colors')."</button dojoType=\"dijit.form.Button\">";
print "</div>"; #toolbar
print "</div>"; #pane
print "<div id=\"pref-label-content\" dojoType=\"dijit.layout.ContentPane\" region=\"center\">";
print "<div id=\"labellistLoading\">
<img src='images/indicator_tiny.gif'>".
__("Loading, please wait...")."</div>";
print "<div dojoType=\"dojo.data.ItemFileWriteStore\" jsId=\"labelStore\"
url=\"backend.php?op=pref-labels&method=getlabeltree\">
</div>
<div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"labelModel\" store=\"labelStore\"
query=\"{id:'root'}\" rootId=\"root\"
childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
</div>
<div dojoType=\"fox.PrefLabelTree\" id=\"labelTree\"
model=\"labelModel\" openOnClick=\"true\">
<script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
Element.hide(\"labellistLoading\");
</script>
<script type=\"dojo/method\" event=\"onClick\" args=\"item\">
var id = String(item.id);
var bare_id = id.substr(id.indexOf(':')+1);
if (id.match('LABEL:')) {
dijit.byId('labelTree').editLabel(bare_id);
2011-12-13 10:34:43 +01:00
}
</script>
</div>";
print "</div>"; #pane
2012-12-23 13:15:34 +01:00
2013-04-18 10:27:34 +02:00
PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
2012-12-23 13:15:34 +01:00
"hook_prefs_tab", "prefLabels");
2011-12-13 10:34:43 +01:00
print "</div>"; #container
}
2017-04-26 19:24:18 +02:00
}