]> git.wh0rd.org - tt-rss.git/blame - include/rssfuncs.php
misc generated feed tweaks (fix json content-type, etc)
[tt-rss.git] / include / rssfuncs.php
CommitLineData
2c08214a 1<?php
09e8bdfd
AD
2 define('DAEMON_UPDATE_LOGIN_LIMIT', 30);
3 define('DAEMON_FEED_LIMIT', 100);
0f556e3e 4 define('DAEMON_SLEEP_INTERVAL', 60);
09e8bdfd 5
79178062
AD
6 function update_feedbrowser_cache($link) {
7
8 $result = db_query($link, "SELECT feed_url, site_url, title, COUNT(id) AS subscribers
9 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
10 WHERE tf.feed_url = ttrss_feeds.feed_url
11 AND (private IS true OR auth_login != '' OR auth_pass != '' OR feed_url LIKE '%:%@%/%'))
12 GROUP BY feed_url, site_url, title ORDER BY subscribers DESC LIMIT 1000");
13
14 db_query($link, "BEGIN");
15
16 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
17
18 $count = 0;
19
20 while ($line = db_fetch_assoc($result)) {
21 $subscribers = db_escape_string($line["subscribers"]);
22 $feed_url = db_escape_string($line["feed_url"]);
23 $title = db_escape_string($line["title"]);
24 $site_url = db_escape_string($line["site_url"]);
25
26 $tmp_result = db_query($link, "SELECT subscribers FROM
27 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
28
29 if (db_num_rows($tmp_result) == 0) {
30
31 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
32 (feed_url, site_url, title, subscribers) VALUES ('$feed_url',
33 '$site_url', '$title', '$subscribers')");
34
35 ++$count;
36
37 }
38
39 }
40
41 db_query($link, "COMMIT");
42
43 return $count;
44
45 }
46
47
2c08214a
AD
48 /**
49 * Update a feed batch.
50 * Used by daemons to update n feeds by run.
51 * Only update feed needing a update, and not being processed
52 * by another process.
53 *
54 * @param mixed $link Database link
55 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
56 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
57 * @param boolean $debug Set to false to disable debug output. Default to true.
58 * @return void
59 */
60 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
61 // Process all other feeds using last_updated and interval parameters
62
61c1812f
AD
63 define('PREFS_NO_CACHE', true);
64
2c08214a 65 // Test if the user has loggued in recently. If not, it does not update its feeds.
09e8bdfd 66 if (!SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
2c08214a
AD
67 if (DB_TYPE == "pgsql") {
68 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
69 } else {
70 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
71 }
72 } else {
73 $login_thresh_qpart = "";
74 }
75
76 // Test if the feed need a update (update interval exceded).
77 if (DB_TYPE == "pgsql") {
78 $update_limit_qpart = "AND ((
79 ttrss_feeds.update_interval = 0
80 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
81 ) OR (
82 ttrss_feeds.update_interval > 0
83 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
941e48a4
AD
84 ) OR ttrss_feeds.last_updated IS NULL
85 OR last_updated = '1970-01-01 00:00:00')";
2c08214a
AD
86 } else {
87 $update_limit_qpart = "AND ((
88 ttrss_feeds.update_interval = 0
89 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
90 ) OR (
91 ttrss_feeds.update_interval > 0
92 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
941e48a4
AD
93 ) OR ttrss_feeds.last_updated IS NULL
94 OR last_updated = '1970-01-01 00:00:00')";
2c08214a
AD
95 }
96
97 // Test if feed is currently being updated by another process.
98 if (DB_TYPE == "pgsql") {
99 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '5 minutes')";
100 } else {
101 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
102 }
103
104 // Test if there is a limit to number of updated feeds
105 $query_limit = "";
106 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
107
108 $random_qpart = sql_random_function();
109
110 // We search for feed needing update.
111 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
112 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
113 ttrss_feeds.update_interval
114 FROM
115 ttrss_feeds, ttrss_users, ttrss_user_prefs
116 WHERE
117 ttrss_feeds.owner_uid = ttrss_users.id
118 AND ttrss_users.id = ttrss_user_prefs.owner_uid
119 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
120 $login_thresh_qpart $update_limit_qpart
121 $updstart_thresh_qpart
122 ORDER BY $random_qpart $query_limit");
123
124 $user_prefs_cache = array();
125
126 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
127
128 // Here is a little cache magic in order to minimize risk of double feed updates.
129 $feeds_to_update = array();
130 while ($line = db_fetch_assoc($result)) {
131 $feeds_to_update[$line['id']] = $line;
132 }
133
134 // We update the feed last update started date before anything else.
135 // There is no lag due to feed contents downloads
136 // It prevent an other process to update the same feed.
137 $feed_ids = array_keys($feeds_to_update);
138 if($feed_ids) {
139 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
140 WHERE id IN (%s)", implode(',', $feed_ids)));
141 }
142
3c696512 143 expire_cached_files($debug);
2a91b6ff 144 expire_lock_files($debug);
3c696512 145
2c08214a
AD
146 // For each feed, we call the feed update function.
147 while ($line = array_pop($feeds_to_update)) {
148
149 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
150
151 update_rss_feed($link, $line["id"], true);
152
153 sleep(1); // prevent flood (FIXME make this an option?)
154 }
155
f1611683
AD
156 require_once "digest.php";
157
2c08214a 158 // Send feed digests by email if needed.
8437c066 159 send_headlines_digests($link, $debug);
2c08214a
AD
160
161 } // function update_daemon_common
162
87764a50 163 // ignore_daemon is not used
0e4a7d7a 164 function update_rss_feed($link, $feed, $ignore_daemon = false, $no_cache = false,
2c08214a
AD
165 $override_url = false) {
166
167 require_once "lib/simplepie/simplepie.inc";
2c08214a 168
2c08214a
AD
169 $debug_enabled = defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug'];
170
2c08214a
AD
171 if ($debug_enabled) {
172 _debug("update_rss_feed: start");
173 }
174
87764a50 175 $result = db_query($link, "SELECT id,update_interval,auth_login,
19b3992b 176 feed_url,auth_pass,cache_images,last_updated,cache_content,
87764a50
AD
177 mark_unread_on_update, owner_uid, update_on_checksum_change,
178 pubsub_state
179 FROM ttrss_feeds WHERE id = '$feed'");
2c08214a
AD
180
181 if (db_num_rows($result) == 0) {
182 if ($debug_enabled) {
183 _debug("update_rss_feed: feed $feed NOT FOUND/SKIPPED");
184 }
185 return false;
186 }
187
2c08214a
AD
188 $last_updated = db_fetch_result($result, 0, "last_updated");
189 $owner_uid = db_fetch_result($result, 0, "owner_uid");
190 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
191 0, "mark_unread_on_update"));
192 $update_on_checksum_change = sql_bool_to_bool(db_fetch_result($result,
193 0, "update_on_checksum_change"));
194 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
195
196 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
197 WHERE id = '$feed'");
198
199 $auth_login = db_fetch_result($result, 0, "auth_login");
200 $auth_pass = db_fetch_result($result, 0, "auth_pass");
201
2c08214a 202 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
87764a50 203 $cache_content = sql_bool_to_bool(db_fetch_result($result, 0, "cache_content"));
2c08214a
AD
204 $fetch_url = db_fetch_result($result, 0, "feed_url");
205
2c08214a
AD
206 $feed = db_escape_string($feed);
207
208 if ($auth_login && $auth_pass ){
209 $url_parts = array();
210 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
211
212 if ($url_parts[1] && $url_parts[2]) {
213 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
214 }
215
216 }
217
218 if ($override_url)
219 $fetch_url = $override_url;
220
221 if ($debug_enabled) {
222 _debug("update_rss_feed: fetching [$fetch_url]...");
223 }
224
0e4a7d7a
AD
225 // Ignore cache if new feed or manual update.
226 $cache_age = (is_null($last_updated) || $last_updated == '1970-01-01 00:00:00') ?
227 -1 : get_feed_update_interval($link, $feed) * 60;
2c08214a 228
19b3992b 229 $simplepie_cache_dir = CACHE_DIR . "/simplepie";
2c08214a 230
19b3992b
AD
231 if (!is_dir($simplepie_cache_dir)) {
232 mkdir($simplepie_cache_dir);
233 }
2c08214a 234
19b3992b
AD
235 $rss = new SimplePie();
236 $rss->set_useragent(SELF_USER_AGENT);
237 $rss->set_timeout($no_cache ? 15 : 60);
238 $rss->set_feed_url($fetch_url);
239 $rss->set_output_encoding('UTF-8');
ba946ba2 240 $rss->force_feed(true);
2c08214a 241
19b3992b
AD
242 if ($debug_enabled) {
243 _debug("feed update interval (sec): " .
244 get_feed_update_interval($link, $feed)*60);
245 }
2c08214a 246
19b3992b 247 $rss->enable_cache(!$no_cache);
2c08214a 248
19b3992b
AD
249 if (!$no_cache) {
250 $rss->set_cache_location($simplepie_cache_dir);
251 $rss->set_cache_duration($cache_age);
2c08214a
AD
252 }
253
19b3992b
AD
254 $rss->init();
255
2c08214a
AD
256// print_r($rss);
257
258 if ($debug_enabled) {
259 _debug("update_rss_feed: fetch done, parsing...");
260 }
261
262 $feed = db_escape_string($feed);
263
19b3992b 264 if (!$rss->error()) {
2c08214a 265
d2a421e3
AD
266 // We use local pluginhost here because we need to load different per-user feed plugins
267 $user_plugins = get_pref($link, "_ENABLED_PLUGINS", $owner_uid);
268
269 $pluginhost = new PluginHost($link);
270
271 $pluginhost->load(PLUGINS, $pluginhost::KIND_ALL);
455b1401
AD
272 $pluginhost->load($user_plugins, $pluginhost::KIND_USER, $owner_uid);
273 $pluginhost->load_data();
d2a421e3 274
4412b877
AD
275 $pluginhost->run_hooks($pluginhost::HOOK_FEED_PARSED, "hook_feed_parsed", $rss);
276
2c08214a
AD
277 if ($debug_enabled) {
278 _debug("update_rss_feed: processing feed data...");
279 }
280
281// db_query($link, "BEGIN");
282
382268c6
AD
283 if (DB_TYPE == "pgsql") {
284 $favicon_interval_qpart = "favicon_last_checked < NOW() - INTERVAL '12 hour'";
285 } else {
286 $favicon_interval_qpart = "favicon_last_checked < DATE_SUB(NOW(), INTERVAL 12 HOUR)";
287 }
288
289 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid,
290 (favicon_last_checked IS NULL OR $favicon_interval_qpart) AS
291 favicon_needs_check
2c08214a
AD
292 FROM ttrss_feeds WHERE id = '$feed'");
293
294 $registered_title = db_fetch_result($result, 0, "title");
295 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
296 $orig_site_url = db_fetch_result($result, 0, "site_url");
382268c6
AD
297 $favicon_needs_check = sql_bool_to_bool(db_fetch_result($result, 0,
298 "favicon_needs_check"));
2c08214a
AD
299
300 $owner_uid = db_fetch_result($result, 0, "owner_uid");
301
bb566dc2 302 $site_url = db_escape_string(mb_substr(rewrite_relative_url($fetch_url, $rss->get_link()), 0, 245));
2c08214a
AD
303
304 if ($debug_enabled) {
305 _debug("update_rss_feed: checking favicon...");
306 }
307
f2798eb6
AD
308 if ($favicon_needs_check) {
309 check_feed_favicon($site_url, $feed, $link);
310
311 db_query($link, "UPDATE ttrss_feeds SET favicon_last_checked = NOW()
312 WHERE id = '$feed'");
313 }
2c08214a
AD
314
315 if (!$registered_title || $registered_title == "[Unknown]") {
316
19b3992b 317 $feed_title = db_escape_string($rss->get_title());
2c08214a
AD
318
319 if ($debug_enabled) {
320 _debug("update_rss_feed: registering title: $feed_title");
321 }
322
323 db_query($link, "UPDATE ttrss_feeds SET
324 title = '$feed_title' WHERE id = '$feed'");
325 }
326
0cf81637 327 if ($site_url && $orig_site_url != $site_url) {
2c08214a
AD
328 db_query($link, "UPDATE ttrss_feeds SET
329 site_url = '$site_url' WHERE id = '$feed'");
330 }
331
19b3992b 332 $icon_url = db_escape_string(mb_substr(
bb566dc2 333 rewrite_relative_url($fetch_url, $rss->get_image_url()), 0, 245));
2c08214a
AD
334
335 if ($icon_url && $orig_icon_url != $icon_url) {
336 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
337 }
338
339 if ($debug_enabled) {
b24504b1 340 _debug("update_rss_feed: loading filters & labels...");
2c08214a
AD
341 }
342
343 $filters = load_filters($link, $feed, $owner_uid);
b24504b1 344 $labels = get_all_labels($link, $owner_uid);
2c08214a 345
67bd0b1f
AD
346 if ($debug_enabled) {
347 //print_r($filters);
348 _debug("update_rss_feed: " . count($filters) . " filters loaded.");
349 }
2c08214a 350
19b3992b 351 $items = $rss->get_items();
2c08214a 352
19b3992b 353 if (!is_array($items)) {
2c08214a 354 if ($debug_enabled) {
19b3992b 355 _debug("update_rss_feed: no articles found.");
2c08214a
AD
356 }
357
358 db_query($link, "UPDATE ttrss_feeds
359 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
360
361 return; // no articles
362 }
363
364 if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
365
366 if ($debug_enabled) _debug("update_rss_feed: checking for PUSH hub...");
367
368 $feed_hub_url = false;
2c08214a 369
19b3992b 370 $links = $rss->get_links('hub');
2c08214a 371
19b3992b
AD
372 if ($links && is_array($links)) {
373 foreach ($links as $l) {
374 $feed_hub_url = $l;
375 break;
2c08214a
AD
376 }
377 }
378
379 if ($debug_enabled) _debug("update_rss_feed: feed hub url: $feed_hub_url");
380
381 if ($feed_hub_url && function_exists('curl_init') &&
382 !ini_get("open_basedir")) {
383
384 require_once 'lib/pubsubhubbub/subscriber.php';
385
386 $callback_url = get_self_url_prefix() .
387 "/public.php?op=pubsub&id=$feed";
388
389 $s = new Subscriber($feed_hub_url, $callback_url);
390
391 $rc = $s->subscribe($fetch_url);
392
393 if ($debug_enabled)
394 _debug("update_rss_feed: feed hub url found, subscribe request sent.");
395
396 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 1
397 WHERE id = '$feed'");
398 }
399 }
400
401 if ($debug_enabled) {
402 _debug("update_rss_feed: processing articles...");
403 }
404
19b3992b 405 foreach ($items as $item) {
2c08214a
AD
406 if ($_REQUEST['xdebug'] == 2) {
407 print_r($item);
408 }
409
19b3992b
AD
410 $entry_guid = $item->get_id();
411 if (!$entry_guid) $entry_guid = $item->get_link();
412 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
2c08214a 413
765509c5 414 if ($cache_content) {
d5e9cf28 415 $entry_guid = "ccache:$entry_guid";
765509c5
AD
416 }
417
418 if ($auth_login || $auth_pass) {
419 $entry_guid = "auth,$owner_uid:$entry_guid";
420 }
421
2c08214a
AD
422 if ($debug_enabled) {
423 _debug("update_rss_feed: guid $entry_guid");
424 }
425
426 if (!$entry_guid) continue;
427
428 $entry_timestamp = "";
429
19b3992b 430 $entry_timestamp = strtotime($item->get_date());
2c08214a 431
19b3992b 432 if ($entry_timestamp == -1 || !$entry_timestamp) {
2c08214a
AD
433 $entry_timestamp = time();
434 $no_orig_date = 'true';
435 } else {
436 $no_orig_date = 'false';
437 }
438
439 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
440
441 if ($debug_enabled) {
442 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
443 }
444
19b3992b 445 $entry_title = $item->get_title();
1b35d30c
AD
446
447 $entry_link = rewrite_relative_url($site_url, htmlspecialchars_decode($item->get_link()));
2c08214a
AD
448
449 if ($debug_enabled) {
450 _debug("update_rss_feed: title $entry_title");
451 _debug("update_rss_feed: link $entry_link");
452 }
453
454 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
455
19b3992b
AD
456 $entry_content = $item->get_content();
457 if (!$entry_content) $entry_content = $item->get_description();
2c08214a 458
c5867798 459 if ($cache_images && is_writable(CACHE_DIR . '/images'))
3c696512
AD
460 $entry_content = cache_images($entry_content, $site_url, $debug_enabled);
461
2c08214a
AD
462 if ($_REQUEST["xdebug"] == 2) {
463 print "update_rss_feed: content: ";
487f0750 464 print $entry_content;
3c696512 465 print "\n";
2c08214a
AD
466 }
467
87764a50 468 $entry_cached_content = "";
2c08214a 469
19b3992b 470 $entry_comments = $item->data["comments"];
2c08214a 471
19b3992b
AD
472 if ($item->get_author()) {
473 $entry_author_item = $item->get_author();
474 $entry_author = $entry_author_item->get_name();
475 if (!$entry_author) $entry_author = $entry_author_item->get_email();
2c08214a 476
19b3992b 477 $entry_author = db_escape_string($entry_author);
2c08214a
AD
478 }
479
bb566dc2 480 $entry_guid = db_escape_string(mb_substr($entry_guid, 0, 245));
2c08214a 481
bb566dc2
AD
482 $entry_comments = db_escape_string(mb_substr($entry_comments, 0, 245));
483 $entry_author = db_escape_string(mb_substr($entry_author, 0, 245));
2c08214a 484
19b3992b 485 $num_comments = $item->get_item_tags('http://purl.org/rss/1.0/modules/slash/', 'comments');
83e6e313 486
19b3992b
AD
487 if (is_array($num_comments) && is_array($num_comments[0])) {
488 $num_comments = (int) $num_comments[0]["data"];
2c08214a 489 } else {
19b3992b 490 $num_comments = 0;
2c08214a
AD
491 }
492
2c08214a 493 if ($debug_enabled) {
83e6e313 494 _debug("update_rss_feed: num_comments: $num_comments");
2c08214a
AD
495 _debug("update_rss_feed: looking for tags [1]...");
496 }
497
498 // parse <category> entries into tags
499
500 $additional_tags = array();
501
19b3992b 502 $additional_tags_src = $item->get_categories();
2c08214a 503
19b3992b
AD
504 if (is_array($additional_tags_src)) {
505 foreach ($additional_tags_src as $tobj) {
506 array_push($additional_tags, $tobj->get_term());
2c08214a 507 }
19b3992b 508 }
2c08214a 509
19b3992b
AD
510 if ($debug_enabled) {
511 _debug("update_rss_feed: category tags:");
512 print_r($additional_tags);
2c08214a
AD
513 }
514
515 if ($debug_enabled) {
516 _debug("update_rss_feed: looking for tags [2]...");
517 }
518
fa6fbd36 519 $entry_tags = array_unique($additional_tags);
2c08214a
AD
520
521 for ($i = 0; $i < count($entry_tags); $i++)
522 $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
523
524 if ($debug_enabled) {
6aff7845
AD
525 //_debug("update_rss_feed: unfiltered tags found:");
526 //print_r($entry_tags);
2c08214a
AD
527 }
528
2c08214a
AD
529 if ($debug_enabled) {
530 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
531 }
532
cc85704f 533 // TODO: less memory-hungry implementation
19c73507 534
19b3992b
AD
535 if ($debug_enabled) {
536 _debug("update_rss_feed: applying plugin filters..");
537 }
cc85704f 538
455b1401 539 $article = array("owner_uid" => $owner_uid, // read only
9e222305 540 "guid" => $entry_guid,
19b3992b
AD
541 "title" => $entry_title,
542 "content" => $entry_content,
543 "link" => $entry_link,
544 "tags" => $entry_tags,
545 "author" => $entry_author);
cc85704f 546
19b3992b
AD
547 foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_FILTER) as $plugin) {
548 $article = $plugin->hook_article_filter($article);
cc85704f
AD
549 }
550
19b3992b 551 $entry_tags = $article["tags"];
9e222305 552 $entry_guid = db_escape_string($article["guid"]);
1b35d30c
AD
553 $entry_content = db_escape_string($article["content"], false);
554 $entry_title = db_escape_string($article["title"]);
555 $entry_author = db_escape_string($article["author"]);
556 $entry_link = db_escape_string($article["link"]);
2bbd6994 557
9e222305 558 $content_hash = "SHA1:" . sha1($entry_content);
cc85704f 559
2c08214a
AD
560 db_query($link, "BEGIN");
561
9e222305
AD
562 $result = db_query($link, "SELECT id FROM ttrss_entries
563 WHERE guid = '$entry_guid'");
564
2c08214a
AD
565 if (db_num_rows($result) == 0) {
566
567 if ($debug_enabled) {
9e222305 568 _debug("update_rss_feed: base guid [$entry_guid] not found");
2c08214a
AD
569 }
570
87764a50
AD
571 if ($cache_content) {
572 if ($debug_enabled) {
8054439f 573 _debug("update_rss_feed: caching content (initial)...");
87764a50
AD
574 }
575
576 $entry_cached_content = cache_content($link, $entry_link, $auth_login, $auth_pass);
577
578 if ($cache_images && is_writable(CACHE_DIR . '/images'))
579 $entry_cached_content = cache_images($entry_cached_content, $site_url, $debug_enabled);
580
581 $entry_cached_content = db_escape_string($entry_cached_content, false);
87764a50
AD
582 }
583
2c08214a
AD
584 // base post entry does not exist, create it
585
586 $result = db_query($link,
587 "INSERT INTO ttrss_entries
588 (title,
589 guid,
590 link,
591 updated,
592 content,
593 content_hash,
87764a50 594 cached_content,
2c08214a
AD
595 no_orig_date,
596 date_updated,
597 date_entered,
598 comments,
599 num_comments,
600 author)
601 VALUES
602 ('$entry_title',
603 '$entry_guid',
604 '$entry_link',
605 '$entry_timestamp_fmt',
606 '$entry_content',
607 '$content_hash',
cb93a5de 608 '$entry_cached_content',
2c08214a
AD
609 $no_orig_date,
610 NOW(),
611 NOW(),
612 '$entry_comments',
613 '$num_comments',
614 '$entry_author')");
e8291805
AD
615
616 $article_labels = array();
617
2c08214a
AD
618 } else {
619 // we keep encountering the entry in feeds, so we need to
620 // update date_updated column so that we don't get horrible
621 // dupes when the entry gets purged and reinserted again e.g.
622 // in the case of SLOW SLOW OMG SLOW updating feeds
623
624 $base_entry_id = db_fetch_result($result, 0, "id");
625
626 db_query($link, "UPDATE ttrss_entries SET date_updated = NOW()
627 WHERE id = '$base_entry_id'");
e8291805
AD
628
629 $article_labels = get_article_labels($link, $base_entry_id, $owner_uid);
2c08214a
AD
630 }
631
632 // now it should exist, if not - bad luck then
633
634 $result = db_query($link, "SELECT
635 id,content_hash,no_orig_date,title,
636 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
637 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
130b0781 638 num_comments, cached_content
2c08214a
AD
639 FROM
640 ttrss_entries
641 WHERE guid = '$entry_guid'");
642
643 $entry_ref_id = 0;
644 $entry_int_id = 0;
645
646 if (db_num_rows($result) == 1) {
647
648 if ($debug_enabled) {
9e222305 649 _debug("update_rss_feed: base guid [$entry_guid] found, checking for user record");
2c08214a
AD
650 }
651
652 // this will be used below in update handler
653 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
654 $orig_title = db_fetch_result($result, 0, "title");
655 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
130b0781 656 $orig_cached_content = trim(db_fetch_result($result, 0, "cached_content"));
2c08214a
AD
657 $orig_date_updated = strtotime(db_fetch_result($result,
658 0, "date_updated"));
659
660 $ref_id = db_fetch_result($result, 0, "id");
661 $entry_ref_id = $ref_id;
662
663 // check for user post link to main table
664
665 // do we allow duplicate posts with same GUID in different feeds?
666 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
667 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
668 } else {
669 $dupcheck_qpart = "";
670 }
671
672 /* Collect article tags here so we could filter by them: */
673
674 $article_filters = get_article_filters($filters, $entry_title,
4021d61a 675 $entry_content, $entry_link, $entry_timestamp, $entry_author,
2c08214a
AD
676 $entry_tags);
677
678 if ($debug_enabled) {
679 _debug("update_rss_feed: article filters: ");
680 if (count($article_filters) != 0) {
681 print_r($article_filters);
682 }
683 }
684
685 if (find_article_filter($article_filters, "filter")) {
686 db_query($link, "COMMIT"); // close transaction in progress
687 continue;
688 }
689
690 $score = calculate_article_score($article_filters);
691
692 if ($debug_enabled) {
693 _debug("update_rss_feed: initial score: $score");
694 }
695
696 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
697 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
698 $dupcheck_qpart";
699
700// if ($_REQUEST["xdebug"]) print "$query\n";
701
702 $result = db_query($link, $query);
703
704 // okay it doesn't exist - create user entry
705 if (db_num_rows($result) == 0) {
706
707 if ($debug_enabled) {
708 _debug("update_rss_feed: user record not found, creating...");
709 }
710
711 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
712 $unread = 'true';
713 $last_read_qpart = 'NULL';
714 } else {
715 $unread = 'false';
716 $last_read_qpart = 'NOW()';
717 }
718
719 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
720 $marked = 'true';
721 } else {
722 $marked = 'false';
723 }
724
725 if (find_article_filter($article_filters, 'publish')) {
726 $published = 'true';
727 } else {
728 $published = 'false';
729 }
730
2ea9bbfd
AD
731 // N-grams
732
733 if (DB_TYPE == "pgsql" and defined('_NGRAM_TITLE_DUPLICATE_THRESHOLD')) {
734
735 $result = db_query($link, "SELECT COUNT(*) AS similar FROM
736 ttrss_entries,ttrss_user_entries
737 WHERE ref_id = id AND updated >= NOW() - INTERVAL '7 day'
738 AND similarity(title, '$entry_title') >= "._NGRAM_TITLE_DUPLICATE_THRESHOLD."
739 AND owner_uid = $owner_uid");
740
741 $ngram_similar = db_fetch_result($result, 0, "similar");
742
743 if ($debug_enabled) {
744 _debug("update_rss_feed: N-gram similar results: $ngram_similar");
745 }
746
747 if ($ngram_similar > 0) {
748 $unread = 'false';
749 }
750 }
751
2c08214a
AD
752 $result = db_query($link,
753 "INSERT INTO ttrss_user_entries
754 (ref_id, owner_uid, feed_id, unread, last_read, marked,
755 published, score, tag_cache, label_cache, uuid)
756 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
757 $last_read_qpart, $marked, $published, '$score', '', '', '')");
758
759 if (PUBSUBHUBBUB_HUB && $published == 'true') {
760 $rss_link = get_self_url_prefix() .
761 "/public.php?op=rss&id=-2&key=" .
762 get_feed_access_key($link, -2, false, $owner_uid);
763
764 $p = new Publisher(PUBSUBHUBBUB_HUB);
765
766 $pubsub_result = $p->publish_update($rss_link);
767 }
768
769 $result = db_query($link,
770 "SELECT int_id FROM ttrss_user_entries WHERE
771 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
772 feed_id = '$feed' LIMIT 1");
773
774 if (db_num_rows($result) == 1) {
775 $entry_int_id = db_fetch_result($result, 0, "int_id");
776 }
777 } else {
778 if ($debug_enabled) {
779 _debug("update_rss_feed: user record FOUND");
780 }
781
782 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
783 $entry_int_id = db_fetch_result($result, 0, "int_id");
784 }
785
786 if ($debug_enabled) {
787 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
788 }
789
790 $post_needs_update = false;
791 $update_insignificant = false;
130b0781 792 $cached_content_needs_update = false;
2c08214a
AD
793
794 if ($orig_num_comments != $num_comments) {
795 $post_needs_update = true;
796 $update_insignificant = true;
797 }
798
799 if ($content_hash != $orig_content_hash) {
800 $post_needs_update = true;
801 $update_insignificant = false;
130b0781
AD
802 $cached_content_needs_update = true;
803 }
87764a50 804
130b0781
AD
805 if ($cache_content) {
806 if ($debug_enabled) {
807 _debug("update_rss_feed: caching content because original checksum changed...");
808 }
87764a50 809
130b0781 810 $entry_cached_content = cache_content($link, $entry_link, $auth_login, $auth_pass);
87764a50 811
130b0781 812 if ($entry_cached_content) {
87764a50
AD
813 if ($cache_images && is_writable(CACHE_DIR . '/images'))
814 $entry_cached_content = cache_images($entry_cached_content, $site_url, $debug_enabled);
815
816 $entry_cached_content = db_escape_string($entry_cached_content, false);
130b0781
AD
817 $post_needs_update = true;
818 } else {
819 $entry_cached_content = db_escape_string($orig_cached_content);
87764a50 820 }
130b0781
AD
821 } else {
822 $entry_cached_content = db_escape_string($orig_cached_content);
2c08214a
AD
823 }
824
825 if (db_escape_string($orig_title) != $entry_title) {
826 $post_needs_update = true;
827 $update_insignificant = false;
828 }
829
830 // if post needs update, update it and mark all user entries
831 // linking to this post as updated
832 if ($post_needs_update) {
833
834 if (defined('DAEMON_EXTENDED_DEBUG')) {
835 _debug("update_rss_feed: post $entry_guid needs update...");
836 }
837
838// print "<!-- post $orig_title needs update : $post_needs_update -->";
839
840 db_query($link, "UPDATE ttrss_entries
841 SET title = '$entry_title', content = '$entry_content',
842 content_hash = '$content_hash',
87764a50 843 cached_content = '$entry_cached_content',
2c08214a
AD
844 updated = '$entry_timestamp_fmt',
845 num_comments = '$num_comments'
846 WHERE id = '$ref_id'");
847
848 if (!$update_insignificant) {
849 if ($mark_unread_on_update) {
850 db_query($link, "UPDATE ttrss_user_entries
851 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
852 } else if ($update_on_checksum_change) {
853 db_query($link, "UPDATE ttrss_user_entries
854 SET last_read = null WHERE ref_id = '$ref_id'
855 AND unread = false");
856 }
857 }
858 }
859 }
860
861 db_query($link, "COMMIT");
862
863 if ($debug_enabled) {
864 _debug("update_rss_feed: assigning labels...");
865 }
866
92c14e9d 867 assign_article_to_label_filters($link, $entry_ref_id, $article_filters,
b24504b1 868 $owner_uid, $article_labels);
2c08214a
AD
869
870 if ($debug_enabled) {
871 _debug("update_rss_feed: looking for enclosures...");
872 }
873
874 // enclosures
875
876 $enclosures = array();
877
19b3992b 878 $encs = $item->get_enclosures();
2c08214a 879
19b3992b
AD
880 if (is_array($encs)) {
881 foreach ($encs as $e) {
882 $e_item = array(
883 $e->link, $e->type, $e->length);
2c08214a 884 array_push($enclosures, $e_item);
2c08214a
AD
885 }
886 }
887
2c08214a
AD
888 if ($debug_enabled) {
889 _debug("update_rss_feed: article enclosures:");
890 print_r($enclosures);
891 }
892
893 db_query($link, "BEGIN");
894
895 foreach ($enclosures as $enc) {
896 $enc_url = db_escape_string($enc[0]);
897 $enc_type = db_escape_string($enc[1]);
898 $enc_dur = db_escape_string($enc[2]);
899
900 $result = db_query($link, "SELECT id FROM ttrss_enclosures
901 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
902
903 if (db_num_rows($result) == 0) {
904 db_query($link, "INSERT INTO ttrss_enclosures
905 (content_url, content_type, title, duration, post_id) VALUES
906 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
907 }
908 }
909
910 db_query($link, "COMMIT");
911
912 // check for manual tags (we have to do it here since they're loaded from filters)
913
914 foreach ($article_filters as $f) {
6aff7845 915 if ($f["type"] == "tag") {
2c08214a 916
6aff7845 917 $manual_tags = trim_array(explode(",", $f["param"]));
2c08214a
AD
918
919 foreach ($manual_tags as $tag) {
920 if (tag_is_valid($tag)) {
921 array_push($entry_tags, $tag);
922 }
923 }
924 }
925 }
926
927 // Skip boring tags
928
929 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref($link,
930 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
931
932 $filtered_tags = array();
933 $tags_to_cache = array();
934
935 if ($entry_tags && is_array($entry_tags)) {
936 foreach ($entry_tags as $tag) {
937 if (array_search($tag, $boring_tags) === false) {
938 array_push($filtered_tags, $tag);
939 }
940 }
941 }
942
943 $filtered_tags = array_unique($filtered_tags);
944
945 if ($debug_enabled) {
946 _debug("update_rss_feed: filtered article tags:");
947 print_r($filtered_tags);
948 }
949
950 // Save article tags in the database
951
952 if (count($filtered_tags) > 0) {
953
954 db_query($link, "BEGIN");
955
956 foreach ($filtered_tags as $tag) {
957
958 $tag = sanitize_tag($tag);
959 $tag = db_escape_string($tag);
960
961 if (!tag_is_valid($tag)) continue;
962
963 $result = db_query($link, "SELECT id FROM ttrss_tags
964 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
965 owner_uid = '$owner_uid' LIMIT 1");
966
967 if ($result && db_num_rows($result) == 0) {
968
969 db_query($link, "INSERT INTO ttrss_tags
970 (owner_uid,tag_name,post_int_id)
971 VALUES ('$owner_uid','$tag', '$entry_int_id')");
972 }
973
974 array_push($tags_to_cache, $tag);
975 }
976
977 /* update the cache */
978
979 $tags_to_cache = array_unique($tags_to_cache);
980
981 $tags_str = db_escape_string(join(",", $tags_to_cache));
982
983 db_query($link, "UPDATE ttrss_user_entries
984 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
985 AND owner_uid = $owner_uid");
986
987 db_query($link, "COMMIT");
988 }
989
b24504b1
AD
990 if (get_pref($link, "AUTO_ASSIGN_LABELS", $owner_uid, false)) {
991 if ($debug_enabled) {
992 _debug("update_rss_feed: auto-assigning labels...");
993 }
994
995 foreach ($labels as $label) {
996 $caption = $label["caption"];
997
3fc6e71a 998 if (preg_match("/\b$caption\b/i", "$tags_str " . strip_tags($entry_content) . " $entry_title")) {
b24504b1
AD
999 if (!labels_contains_caption($article_labels, $caption)) {
1000 label_add_article($link, $entry_ref_id, $caption, $owner_uid);
1001 }
1002 }
1003 }
1004 }
1005
2c08214a
AD
1006 if ($debug_enabled) {
1007 _debug("update_rss_feed: article processed");
1008 }
1009 }
1010
1011 if (!$last_updated) {
1012 if ($debug_enabled) {
1013 _debug("update_rss_feed: new feed, catching it up...");
1014 }
1015 catchup_feed($link, $feed, false, $owner_uid);
1016 }
1017
1018 if ($debug_enabled) {
1019 _debug("purging feed...");
1020 }
1021
1022 purge_feed($link, $feed, 0, $debug_enabled);
1023
1024 db_query($link, "UPDATE ttrss_feeds
f2798eb6 1025 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
2c08214a
AD
1026
1027// db_query($link, "COMMIT");
1028
1029 } else {
1030
bb566dc2 1031 $error_msg = db_escape_string(mb_substr($rss->error(), 0, 245));
2c08214a
AD
1032
1033 if ($debug_enabled) {
1034 _debug("update_rss_feed: error fetching feed: $error_msg");
1035 }
1036
2c08214a
AD
1037 db_query($link,
1038 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1039 last_updated = NOW() WHERE id = '$feed'");
1040 }
1041
19b3992b 1042 unset($rss);
2c08214a
AD
1043
1044 if ($debug_enabled) {
1045 _debug("update_rss_feed: done");
1046 }
1047
1048 }
1049
3c696512
AD
1050 function cache_images($html, $site_url, $debug) {
1051 $cache_dir = CACHE_DIR . "/images";
1052
1053 libxml_use_internal_errors(true);
1054
1055 $charset_hack = '<head>
1056 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
1057 </head>';
1058
1059 $doc = new DOMDocument();
1060 $doc->loadHTML($charset_hack . $html);
1061 $xpath = new DOMXPath($doc);
1062
1063 $entries = $xpath->query('(//img[@src])');
1064
1065 foreach ($entries as $entry) {
1066 if ($entry->hasAttribute('src')) {
1067 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
1068
1069 $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
1070
1071 if ($debug) _debug("cache_images: downloading: $src to $local_filename");
1072
1073 if (!file_exists($local_filename)) {
1074 $file_content = fetch_file_contents($src);
1075
b8379e69 1076 if ($file_content && strlen($file_content) > 1024) {
3c696512
AD
1077 file_put_contents($local_filename, $file_content);
1078 }
1079 }
1080
1081 if (file_exists($local_filename)) {
1082 $entry->setAttribute('src', SELF_URL_PATH . '/image.php?url=' .
487f0750 1083 base64_encode($src));
3c696512
AD
1084 }
1085 }
1086 }
1087
1088 $node = $doc->getElementsByTagName('body')->item(0);
1089
7b8ff151 1090 return $doc->saveXML($node, LIBXML_NOEMPTYTAG);
3c696512
AD
1091 }
1092
2a91b6ff
AD
1093 function expire_lock_files($debug) {
1094 if ($debug) _debug("Removing old lock files...");
1095
1096 $num_deleted = 0;
1097
1098 if (is_writable(LOCK_DIRECTORY)) {
1099 $files = glob(LOCK_DIRECTORY . "/*.lock");
1100
1101 if ($files) {
1102 foreach ($files as $file) {
1103 if (!file_is_locked($file) && time() - filemtime($file) > 86400*2) {
1104 unlink($file);
1105 ++$num_deleted;
1106 }
1107 }
1108 }
1109 }
1110
1111 if ($debug) _debug("Removed $num_deleted files.");
1112 }
1113
3c696512 1114 function expire_cached_files($debug) {
19b3992b 1115 foreach (array("simplepie", "images", "export") as $dir) {
3c696512 1116 $cache_dir = CACHE_DIR . "/$dir";
2c08214a 1117
3c696512 1118 if ($debug) _debug("Expiring $cache_dir");
2c08214a 1119
3c696512
AD
1120 $num_deleted = 0;
1121
1122 if (is_writable($cache_dir)) {
1123 $files = glob("$cache_dir/*");
1124
2a91b6ff 1125 if ($files) {
2ab20c31
AD
1126 foreach ($files as $file) {
1127 if (time() - filemtime($file) > 86400*7) {
1128 unlink($file);
3c696512 1129
2ab20c31
AD
1130 ++$num_deleted;
1131 }
3c696512
AD
1132 }
1133 }
2a91b6ff 1134 }
3c696512
AD
1135
1136 if ($debug) _debug("Removed $num_deleted files.");
1137 }
1138 }
2c08214a 1139
a3e0bdcf
AD
1140 /**
1141 * Source: http://www.php.net/manual/en/function.parse-url.php#104527
1142 * Returns the url query as associative array
1143 *
1144 * @param string query
1145 * @return array params
1146 */
1147 function convertUrlQuery($query) {
1148 $queryParts = explode('&', $query);
1149
1150 $params = array();
1151
1152 foreach ($queryParts as $param) {
1153 $item = explode('=', $param);
1154 $params[$item[0]] = $item[1];
1155 }
1156
1157 return $params;
1158 }
92c14e9d
AD
1159
1160 function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
1161 $matches = array();
1162
1163 foreach ($filters as $filter) {
1164 $match_any_rule = $filter["match_any_rule"];
1165 $filter_match = false;
1166
1167 foreach ($filter["rules"] as $rule) {
1168 $match = false;
1169 $reg_exp = $rule["reg_exp"];
1170
1171 if (!$reg_exp)
1172 continue;
1173
1174 switch ($rule["type"]) {
1175 case "title":
1176 $match = @preg_match("/$reg_exp/i", $title);
1177 break;
1178 case "content":
d03ae73e
AD
1179 // we don't need to deal with multiline regexps
1180 $content = preg_replace("/[\r\n\t]/", "", $content);
1181
92c14e9d
AD
1182 $match = @preg_match("/$reg_exp/i", $content);
1183 break;
1184 case "both":
d03ae73e
AD
1185 // we don't need to deal with multiline regexps
1186 $content = preg_replace("/[\r\n\t]/", "", $content);
1187
72d1d067 1188 $match = (@preg_match("/$reg_exp/i", $title) || @preg_match("/$reg_exp/i", $content));
92c14e9d
AD
1189 break;
1190 case "link":
1191 $match = @preg_match("/$reg_exp/i", $link);
1192 break;
1193 case "author":
1194 $match = @preg_match("/$reg_exp/i", $author);
1195 break;
1196 case "tag":
1197 $tag_string = join(",", $tags);
1198 $match = @preg_match("/$reg_exp/i", $tag_string);
1199 break;
1200 }
1201
1202 if ($match_any_rule) {
1203 if ($match) {
1204 $filter_match = true;
1205 break;
1206 }
1207 } else {
1208 $filter_match = $match;
1209 if (!$match) {
1210 break;
1211 }
1212 }
1213 }
1214
1215 if ($filter_match) {
1216 foreach ($filter["actions"] AS $action) {
1217 array_push($matches, $action);
1218 }
1219 }
1220 }
1221
1222 return $matches;
1223 }
1224
1225 function find_article_filter($filters, $filter_name) {
1226 foreach ($filters as $f) {
1227 if ($f["type"] == $filter_name) {
1228 return $f;
1229 };
1230 }
1231 return false;
1232 }
1233
1234 function find_article_filters($filters, $filter_name) {
1235 $results = array();
1236
1237 foreach ($filters as $f) {
1238 if ($f["type"] == $filter_name) {
1239 array_push($results, $f);
1240 };
1241 }
1242 return $results;
1243 }
1244
1245 function calculate_article_score($filters) {
1246 $score = 0;
1247
1248 foreach ($filters as $f) {
1249 if ($f["type"] == "score") {
1250 $score += $f["param"];
1251 };
1252 }
1253 return $score;
1254 }
1255
b24504b1
AD
1256 function labels_contains_caption($labels, $caption) {
1257 foreach ($labels as $label) {
1258 if ($label[1] == $caption) {
1259 return true;
1260 }
1261 }
1262
1263 return false;
1264 }
1265
1266 function assign_article_to_label_filters($link, $id, $filters, $owner_uid, $article_labels) {
92c14e9d
AD
1267 foreach ($filters as $f) {
1268 if ($f["type"] == "label") {
b24504b1
AD
1269 if (!labels_contains_caption($article_labels, $f["param"])) {
1270 label_add_article($link, $id, $f["param"], $owner_uid);
1271 }
1272 }
92c14e9d
AD
1273 }
1274 }
87764a50
AD
1275
1276 function cache_content($link, $url, $login, $pass) {
1277
1278 $content = fetch_file_contents($url, $login, $pass);
1279
1280 if ($content) {
1281 $doc = new DOMDocument();
1282 @$doc->loadHTML($content);
1283 $xpath = new DOMXPath($doc);
1284
1285 $node = $doc->getElementsByTagName('body')->item(0);
1286
1287 if ($node) {
1288 $content = $doc->saveXML($node, LIBXML_NOEMPTYTAG);
1289
1290 return $content;
1291 }
1292 }
1293
1294 return "";
1295 }
2c08214a 1296?>