]> git.wh0rd.org - tt-rss.git/blob - modules/pref-filters.php
more i18n work
[tt-rss.git] / modules / pref-filters.php
1 <?php
2 function module_pref_filters($link) {
3 $subop = $_GET["subop"];
4 $quiet = $_GET["quiet"];
5
6 if ($subop == "edit") {
7
8 $filter_id = db_escape_string($_GET["id"]);
9
10 $result = db_query($link,
11 "SELECT * FROM ttrss_filters WHERE id = '$filter_id' AND owner_uid = " . $_SESSION["uid"]);
12
13 $reg_exp = htmlspecialchars(db_unescape_string(db_fetch_result($result, 0, "reg_exp")));
14 $filter_type = db_fetch_result($result, 0, "filter_type");
15 $feed_id = db_fetch_result($result, 0, "feed_id");
16 $action_id = db_fetch_result($result, 0, "action_id");
17 $action_param = db_fetch_result($result, 0, "action_param");
18
19 $enabled = sql_bool_to_bool(db_fetch_result($result, 0, "enabled"));
20 $inverse = sql_bool_to_bool(db_fetch_result($result, 0, "inverse"));
21
22 print "<div id=\"infoBoxTitle\">".__('Filter editor')."</div>";
23 print "<div class=\"infoBoxContents\">";
24
25 print "<form id=\"filter_edit_form\" onsubmit='return false'>";
26
27 print "<input type=\"hidden\" name=\"op\" value=\"pref-filters\">";
28 print "<input type=\"hidden\" name=\"id\" value=\"$filter_id\">";
29 print "<input type=\"hidden\" name=\"subop\" value=\"editSave\">";
30
31 // print "<div class=\"notice\"><b>Note:</b> filter will only apply to new articles.</div>";
32
33 $result = db_query($link, "SELECT id,description
34 FROM ttrss_filter_types ORDER BY description");
35
36 $filter_types = array();
37
38 while ($line = db_fetch_assoc($result)) {
39 //array_push($filter_types, $line["description"]);
40 $filter_types[$line["id"]] = $line["description"];
41 }
42
43 print "<table width='100%'>";
44
45 print "<tr><td>Match:</td>
46 <td><input onkeypress=\"return filterCR(event, filterEditSave)\"
47 onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
48 onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
49 name=\"reg_exp\" class=\"iedit\" value=\"$reg_exp\">";
50
51 print "</td></tr><tr><td>".__('On field:')."</td><td>";
52
53 print_select_hash("filter_type", $filter_type, $filter_types, "class=\"_iedit\"");
54
55 print "</td></tr>";
56 print "<tr><td>".__('Feed:')."</td><td colspan='2'>";
57
58 print_feed_select($link, "feed_id", $feed_id);
59
60 print "</td></tr>";
61
62 print "<tr><td>".__('Action:')."</td>";
63
64 print "<td colspan='2'><select name=\"action_id\"
65 onchange=\"filterDlgCheckAction(this)\">";
66
67 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
68 ORDER BY name");
69
70 while ($line = db_fetch_assoc($result)) {
71 $is_sel = ($line["id"] == $action_id) ? "selected" : "";
72 printf("<option value='%d' $is_sel>%s</option>", $line["id"], $line["description"]);
73 }
74
75 print "</select>";
76
77 print "</td></tr>";
78
79 print "<tr><td>".__('Params:')."</td>";
80
81 $param_disabled = ($action_id == 4) ? "" : "disabled";
82
83 print "<td><input $param_disabled class='iedit'
84 name=\"action_param\" value=\"$action_param\"></td></tr>";
85
86 if ($enabled) {
87 $checked = "checked";
88 } else {
89 $checked = "";
90 }
91
92 print "<tr><td valign='top'>Options:</td><td>
93 <input type=\"checkbox\" name=\"enabled\" id=\"enabled\" $checked>
94 <label for=\"enabled\">".__('Enabled')."</label><br/>";
95
96 if ($inverse) {
97 $checked = "checked";
98 } else {
99 $checked = "";
100 }
101
102 print "<input type=\"checkbox\" name=\"inverse\" id=\"inverse\" $checked>
103 <label for=\"inverse\">".__('Inverse match')."</label>";
104
105 print "</td></tr></table>";
106
107 print "</form>";
108
109 print "<div align='right'>";
110
111 print "<input type=\"submit\"
112 id=\"infobox_submit\"
113 class=\"button\" onclick=\"return filterEditSave()\"
114 value=\"".__('Save')."\"> ";
115
116 print "<input class=\"button\"
117 type=\"submit\" onclick=\"return filterEditCancel()\"
118 value=\"".__('Cancel')."\">";
119
120 print "</div>";
121
122 return;
123 }
124
125
126 if ($subop == "editSave") {
127
128 $reg_exp = db_escape_string(trim($_GET["reg_exp"]));
129 $filter_type = db_escape_string(trim($_GET["filter_type"]));
130 $filter_id = db_escape_string($_GET["id"]);
131 $feed_id = db_escape_string($_GET["feed_id"]);
132 $action_id = db_escape_string($_GET["action_id"]);
133 $action_param = db_escape_string($_GET["action_param"]);
134 $enabled = checkbox_to_sql_bool(db_escape_string($_GET["enabled"]));
135 $inverse = checkbox_to_sql_bool(db_escape_string($_GET["inverse"]));
136
137 if (!$feed_id) {
138 $feed_id = 'NULL';
139 } else {
140 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
141 }
142
143 $result = db_query($link, "UPDATE ttrss_filters SET
144 reg_exp = '$reg_exp',
145 feed_id = $feed_id,
146 action_id = '$action_id',
147 filter_type = '$filter_type',
148 enabled = $enabled,
149 inverse = $inverse,
150 action_param = '$action_param'
151 WHERE id = '$filter_id' AND owner_uid = " . $_SESSION["uid"]);
152
153 }
154
155 if ($subop == "remove") {
156
157 $ids = split(",", db_escape_string($_GET["ids"]));
158
159 foreach ($ids as $id) {
160 db_query($link, "DELETE FROM ttrss_filters WHERE id = '$id' AND owner_uid = ". $_SESSION["uid"]);
161 }
162 }
163
164 if ($subop == "add") {
165
166 $regexp = db_escape_string(trim($_GET["reg_exp"]));
167 $filter_type = db_escape_string(trim($_GET["filter_type"]));
168 $feed_id = db_escape_string($_GET["feed_id"]);
169 $action_id = db_escape_string($_GET["action_id"]);
170 $action_param = db_escape_string($_GET["action_param"]);
171
172 $inverse = checkbox_to_sql_bool(db_escape_string($_GET["inverse"]));
173
174 if (!$regexp) return;
175
176 if (!$feed_id) {
177 $feed_id = 'NULL';
178 } else {
179 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
180 }
181
182 $result = db_query($link,
183 "INSERT INTO ttrss_filters (reg_exp,filter_type,owner_uid,feed_id,
184 action_id, action_param, inverse)
185 VALUES
186 ('$regexp', '$filter_type','".$_SESSION["uid"]."',
187 $feed_id, '$action_id', '$action_param', $inverse)");
188
189 print_notice(T_sprintf("Created filter <b>%s</b>", htmlspecialchars($regexp)));
190 }
191
192 if ($quiet) return;
193
194 $sort = db_escape_string($_GET["sort"]);
195
196 if (!$sort || $sort == "undefined") {
197 $sort = "reg_exp";
198 }
199
200 // print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
201
202 $result = db_query($link, "SELECT id,description
203 FROM ttrss_filter_types ORDER BY description");
204
205 $filter_types = array();
206
207 while ($line = db_fetch_assoc($result)) {
208 //array_push($filter_types, $line["description"]);
209 $filter_types[$line["id"]] = $line["description"];
210 }
211
212 print "<a class='helpLinkPic' href=\"javascript:displayHelpInfobox(2)\">
213 <img src='images/sign_quest.png'></a>";
214
215 print "<input type=\"submit\"
216 class=\"button\"
217 onclick=\"return displayDlg('quickAddFilter', false)\"
218 id=\"create_filter_btn\"
219 value=\"".__('Create filter')."\">";
220
221 $result = db_query($link, "SELECT
222 ttrss_filters.id AS id,reg_exp,
223 ttrss_filter_types.name AS filter_type_name,
224 ttrss_filter_types.description AS filter_type_descr,
225 enabled,
226 inverse,
227 feed_id,
228 ttrss_filter_actions.description AS action_description,
229 ttrss_feeds.title AS feed_title
230 FROM
231 ttrss_filter_types,ttrss_filter_actions,ttrss_filters LEFT JOIN
232 ttrss_feeds ON (ttrss_filters.feed_id = ttrss_feeds.id)
233 WHERE
234 filter_type = ttrss_filter_types.id AND
235 ttrss_filter_actions.id = action_id AND
236 ttrss_filters.owner_uid = ".$_SESSION["uid"]."
237 ORDER by $sort");
238
239 if (db_num_rows($result) != 0) {
240
241 print "<p><table width=\"100%\" cellspacing=\"0\" class=\"prefFilterList\"
242 id=\"prefFilterList\">";
243
244 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
245 Select:
246 <a href=\"javascript:selectPrefRows('filter', true)\">All</a>,
247 <a href=\"javascript:selectPrefRows('filter', false)\">None</a>
248 </td</tr>";
249
250 print "<tr class=\"title\">
251 <td align='center' width=\"5%\">&nbsp;</td>
252 <td width=\"20%\"><a href=\"javascript:updateFilterList('reg_exp')\">".__('Filter expression')."</a></td>
253 <td width=\"20%\"><a href=\"javascript:updateFilterList('feed_title')\">".__('Feed')."</a></td>
254 <td width=\"15%\"><a href=\"javascript:updateFilterList('filter_type')\">".__('Match')."</a></td>
255 <td width=\"15%\"><a href=\"javascript:updateFilterList('action_description')\">".__('Action')."</a></td>";
256
257 $lnum = 0;
258
259 while ($line = db_fetch_assoc($result)) {
260
261 $class = ($lnum % 2) ? "even" : "odd";
262
263 $filter_id = $line["id"];
264 $edit_filter_id = $_GET["id"];
265
266 $enabled = sql_bool_to_bool($line["enabled"]);
267 $inverse = sql_bool_to_bool($line["inverse"]);
268
269 if ($subop == "edit" && $filter_id != $edit_filter_id) {
270 $class .= "Grayed";
271 $this_row_id = "";
272 } else {
273 $this_row_id = "id=\"FILRR-$filter_id\"";
274 }
275
276 print "<tr class=\"$class\" $this_row_id>";
277
278 $line["reg_exp"] = htmlspecialchars(db_unescape_string($line["reg_exp"]));
279
280 if (!$line["feed_title"]) $line["feed_title"] = __("All feeds");
281
282 $line["feed_title"] = htmlspecialchars(db_unescape_string($line["feed_title"]));
283
284 print "<td align='center'><input onclick='toggleSelectPrefRow(this, \"filter\");'
285 type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
286
287 if (!$enabled) {
288 $line["reg_exp"] = "<span class=\"insensitive\">" .
289 $line["reg_exp"] . " " . __("(Disabled)")."</span>";
290 $line["feed_title"] = "<span class=\"insensitive\">" .
291 $line["feed_title"] . "</span>";
292 $line["filter_type_descr"] = "<span class=\"insensitive\">" .
293 $line["filter_type_descr"] . "</span>";
294 $line["action_description"] = "<span class=\"insensitive\">" .
295 $line["action_description"] . "</span>";
296 }
297
298 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
299 $line["reg_exp"] . "</td>";
300
301 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
302 $line["feed_title"] . "</td>";
303
304 $inverse_label = "";
305
306 if ($inverse) {
307 $inverse_label = " <span class='insensitive'>".__('(Inverse)')."</span>";
308 }
309
310 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
311 $line["filter_type_descr"] . "$inverse_label</td>";
312
313 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
314 $line["action_description"] . "</td>";
315
316 print "</tr>";
317
318 ++$lnum;
319 }
320
321 if ($lnum == 0) {
322 print "<tr><td colspan=\"4\" align=\"center\">".__('No filters defined.')."</td></tr>";
323 }
324
325 print "</table>";
326
327 print "<p id=\"filterOpToolbar\">";
328
329 print "<input type=\"submit\" class=\"button\" disabled=\"true\"
330 onclick=\"return editSelectedFilter()\" value=\"".__('Edit')."\">
331 <input type=\"submit\" class=\"button\" disabled=\"true\"
332 onclick=\"return removeSelectedFilters()\" value=\"".__('Remove')."\">";
333
334 print "</p>";
335
336
337 /* print "<div class=\"insensitive\" style=\"float : right\">
338 First matching filter is used, filtering is performed
339 when importing articles from the feed.</div>"; */
340
341 } else {
342
343 print "<p>".__('No filters defined.')."</p>";
344
345 }
346 }
347 ?>