]> git.wh0rd.org Git - tt-rss.git/blob - modules/pref-filters.php
7445c0e0d85a404eac6e647fb23e77d759d04332
[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                         if (db_affected_rows($link, $result) != 0) {
154                                 print_notice(T_sprintf("Saved filter <b>%s</b>", htmlspecialchars($reg_exp)));
155                         }
156
157                 }
158
159                 if ($subop == "remove") {
160
161                         $ids = split(",", db_escape_string($_GET["ids"]));
162
163                         foreach ($ids as $id) {
164                                 db_query($link, "DELETE FROM ttrss_filters WHERE id = '$id' AND owner_uid = ". $_SESSION["uid"]);
165                         }
166                 }
167
168                 if ($subop == "add") {
169                 
170                         $regexp = db_escape_string(trim($_GET["reg_exp"]));
171                         $filter_type = db_escape_string(trim($_GET["filter_type"]));
172                         $feed_id = db_escape_string($_GET["feed_id"]);
173                         $action_id = db_escape_string($_GET["action_id"]); 
174                         $action_param = db_escape_string($_GET["action_param"]); 
175
176                         $inverse = checkbox_to_sql_bool(db_escape_string($_GET["inverse"]));
177
178                         if (!$regexp) return;
179
180                         if (!$feed_id) {
181                                 $feed_id = 'NULL';
182                         } else {
183                                 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
184                         }
185
186                         $result = db_query($link,
187                                 "INSERT INTO ttrss_filters (reg_exp,filter_type,owner_uid,feed_id,
188                                         action_id, action_param, inverse) 
189                                 VALUES 
190                                         ('$regexp', '$filter_type','".$_SESSION["uid"]."', 
191                                                 $feed_id, '$action_id', '$action_param', $inverse)");
192
193                         if (db_affected_rows($link, $result) != 0) {
194                                 print T_sprintf("Created filter <b>%s</b>", htmlspecialchars($regexp));
195                         }
196
197                         return;
198                 }
199
200                 if ($quiet) return;
201
202                 set_pref($link, "_PREFS_ACTIVE_TAB", "filterConfig");
203
204                 $sort = db_escape_string($_GET["sort"]);
205
206                 if (!$sort || $sort == "undefined") {
207                         $sort = "reg_exp";
208                 }
209
210 //              print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
211
212                 $result = db_query($link, "SELECT id,description 
213                         FROM ttrss_filter_types ORDER BY description");
214
215                 $filter_types = array();
216
217                 while ($line = db_fetch_assoc($result)) {
218                         //array_push($filter_types, $line["description"]);
219                         $filter_types[$line["id"]] = $line["description"];
220                 }
221
222                 print "<a class='helpLinkPic' href=\"javascript:displayHelpInfobox(2)\">
223                         <img src='images/sign_quest.png'></a>";
224
225                 print "<input type=\"submit\" 
226                         class=\"button\" 
227                         onclick=\"return displayDlg('quickAddFilter', false)\" 
228                         id=\"create_filter_btn\"
229                         value=\"".__('Create filter')."\">"; 
230
231                 $result = db_query($link, "SELECT 
232                                 ttrss_filters.id AS id,reg_exp,
233                                 ttrss_filter_types.name AS filter_type_name,
234                                 ttrss_filter_types.description AS filter_type_descr,
235                                 enabled,
236                                 inverse,
237                                 feed_id,
238                                 ttrss_filter_actions.description AS action_description,
239                                 ttrss_feeds.title AS feed_title
240                         FROM 
241                                 ttrss_filter_types,ttrss_filter_actions,ttrss_filters LEFT JOIN
242                                         ttrss_feeds ON (ttrss_filters.feed_id = ttrss_feeds.id)
243                         WHERE
244                                 filter_type = ttrss_filter_types.id AND
245                                 ttrss_filter_actions.id = action_id AND
246                                 ttrss_filters.owner_uid = ".$_SESSION["uid"]."
247                         ORDER by $sort");
248
249                 if (db_num_rows($result) != 0) {
250
251                         print "<p><table width=\"100%\" cellspacing=\"0\" class=\"prefFilterList\" 
252                                 id=\"prefFilterList\">";
253
254                         print "<tr><td class=\"selectPrompt\" colspan=\"8\">
255                                 ".__('Select:')." 
256                                         <a href=\"javascript:selectPrefRows('filter', true)\">".__('All')."</a>,
257                                         <a href=\"javascript:selectPrefRows('filter', false)\">".__('None')."</a>
258                                 </td</tr>";
259
260                         print "<tr class=\"title\">
261                                                 <td align='center' width=\"5%\">&nbsp;</td>
262                                                 <td width=\"20%\"><a href=\"javascript:updateFilterList('reg_exp')\">".__('Filter expression')."</a></td>
263                                                 <td width=\"\"><a href=\"javascript:updateFilterList('feed_title')\">".__('Feed')."</a></td>
264                                                 <td width=\"15%\"><a href=\"javascript:updateFilterList('filter_type')\">".__('Match')."</a></td>
265                                                 <td width=\"15%\"><a href=\"javascript:updateFilterList('action_description')\">".__('Action')."</a></td>";
266
267                         $lnum = 0;
268                         
269                         while ($line = db_fetch_assoc($result)) {
270         
271                                 $class = ($lnum % 2) ? "even" : "odd";
272         
273                                 $filter_id = $line["id"];
274                                 $edit_filter_id = $_GET["id"];
275
276                                 $enabled = sql_bool_to_bool($line["enabled"]);
277                                 $inverse = sql_bool_to_bool($line["inverse"]);
278
279                                 if ($subop == "edit" && $filter_id != $edit_filter_id) {
280                                         $class .= "Grayed";
281                                         $this_row_id = "";
282                                 } else {
283                                         $this_row_id = "id=\"FILRR-$filter_id\"";
284                                 }
285         
286                                 print "<tr class=\"$class\" $this_row_id>";
287         
288                                 $line["reg_exp"] = htmlspecialchars(db_unescape_string($line["reg_exp"]));
289         
290                                 if (!$line["feed_title"]) $line["feed_title"] = __("All feeds");
291
292                                 $line["feed_title"] = htmlspecialchars(db_unescape_string($line["feed_title"]));
293
294                                 print "<td align='center'><input onclick='toggleSelectPrefRow(this, \"filter\");' 
295                                         type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
296
297                                 if (!$enabled) {
298                                         $line["reg_exp"] = "<span class=\"insensitive\">" . 
299                                                 $line["reg_exp"] . " " .  __("(Disabled)")."</span>";
300                                         $line["feed_title"] = "<span class=\"insensitive\">" . 
301                                                 $line["feed_title"] . "</span>";
302                                         $line["filter_type_descr"] = "<span class=\"insensitive\">" . 
303                                                 $line["filter_type_descr"] . "</span>";
304                                         $line["action_description"] = "<span class=\"insensitive\">" . 
305                                                 $line["action_description"] . "</span>";
306                                 }       
307         
308                                 print "<td><a href=\"javascript:editFilter($filter_id);\">" . 
309                                         $line["reg_exp"] . "</td>";             
310         
311                                 print "<td><a href=\"javascript:editFilter($filter_id);\">" . 
312                                         $line["feed_title"] . "</td>";                  
313
314                                 $inverse_label = "";
315
316                                 if ($inverse) {
317                                         $inverse_label = " <span class='insensitive'>".__('(Inverse)')."</span>";
318                                 }
319         
320                                 print "<td><a href=\"javascript:editFilter($filter_id);\">" . 
321                                         $line["filter_type_descr"] . "$inverse_label</td>";             
322                 
323                                 print "<td><a href=\"javascript:editFilter($filter_id);\">" . 
324                                         $line["action_description"] . "</td>";                  
325                                 
326                                 print "</tr>";
327         
328                                 ++$lnum;
329                         }
330         
331                         if ($lnum == 0) {
332                                 print "<tr><td colspan=\"4\" align=\"center\">".__('No filters defined.')."</td></tr>";
333                         }
334         
335                         print "</table>";
336
337                         print "<p id=\"filterOpToolbar\">";
338
339                         print "<input type=\"submit\" class=\"button\" disabled=\"true\"
340                                         onclick=\"return editSelectedFilter()\" value=\"".__('Edit')."\">
341                                 <input type=\"submit\" class=\"button\" disabled=\"true\"
342                                         onclick=\"return removeSelectedFilters()\" value=\"".__('Remove')."\">";
343
344                         print "</p>";
345
346
347 /*                      print "<div class=\"insensitive\" style=\"float : right\">
348                                 First matching filter is used, filtering is performed
349                                 when importing articles from the feed.</div>"; */
350
351                 } else {
352
353                         print "<p>".__('No filters defined.')."</p>";
354
355                 }
356         }
357 ?>