]> git.wh0rd.org - tt-rss.git/blame - update.php
filters: cast score expression as integer on save to prevent misscoring
[tt-rss.git] / update.php
CommitLineData
661135c7 1#!/usr/bin/php
fecd57c8 2<?php
661135c7
AD
3 define('DISABLE_SESSIONS', true);
4
d1950553 5 chdir(dirname($_SERVER['SCRIPT_NAME']));
fb074239 6 require_once "functions.php";
81596c66 7 require_once "sanity_check.php";
81596c66
AD
8 require_once "config.php";
9 require_once "db.php";
661135c7 10 require_once "db-prefs.php";
661135c7 11
86268d8b
AD
12 if (!defined('PHP_EXECUTABLE'))
13 define('PHP_EXECUTABLE', '/usr/bin/php');
14
661135c7 15 $op = $argv[1];
70dcff6b 16
661135c7
AD
17 if (!$op || $op == "-help") {
18 print "Tiny Tiny RSS data update script.\n\n";
19 print "Options:\n";
20 print " -feeds - update feeds\n";
21 print " -feedbrowser - update feedbrowser\n";
22 print " -daemon - start single-process update daemon\n";
868650e4 23 print " -cleanup-tags - perform tags table maintenance\n";
661135c7
AD
24 print " -help - show this help\n";
25 return;
81596c66 26 }
87b9fb65 27
661135c7
AD
28 if ($op != "-daemon") {
29 $lock_filename = "update.lock";
30 } else {
31 $lock_filename = "update_daemon.lock";
32 }
fecd57c8 33
661135c7
AD
34 $lock_handle = make_lockfile($lock_filename);
35 $must_exit = false;
fecd57c8 36
661135c7
AD
37 // Try to lock a file in order to avoid concurrent update.
38 if (!$lock_handle) {
39 die("error: Can't create lockfile ($lock_filename). ".
40 "Maybe another update process is already running.\n");
41 }
fecd57c8 42
661135c7 43 // Create a database connection.
dbaa4e4a 44 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
fecd57c8 45
661135c7
AD
46 if (!$link) {
47 if (DB_TYPE == "mysql") {
48 print mysql_error();
49 }
dbaa4e4a 50 // PG seems to display its own errors just fine by default.
661135c7
AD
51 return;
52 }
b4c27af7 53
661135c7 54 init_connection($link);
ef59e6e8 55
661135c7
AD
56 if ($op == "-feeds") {
57 // Update all feeds needing a update.
58 update_daemon_common($link);
84e9a8c7
AD
59
60 // Update feedbrowser
61 $count = update_feedbrowser_cache($link);
62 _debug("Feedbrowser updated, $count feeds processed.");
63
64 // Purge orphans and cleanup tags
65 purge_orphans($link, true);
66
67 $rc = cleanup_tags($link, 14, 50000);
68 _debug("Cleaned $rc cached tags.");
661135c7 69 }
fecd57c8 70
661135c7
AD
71 if ($op == "-feedbrowser") {
72 $count = update_feedbrowser_cache($link);
73 print "Finished, $count feeds processed.\n";
fecd57c8 74 }
661135c7
AD
75
76 if ($op == "-daemon") {
661135c7
AD
77 while (true) {
78 passthru(PHP_EXECUTABLE . " " . $argv[0] . " -daemon-loop");
79 _debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
80 sleep(DAEMON_SLEEP_INTERVAL);
fecd57c8 81 }
81596c66 82 }
9e21a571 83
661135c7
AD
84 if ($op == "-daemon-loop") {
85 if (!make_stampfile('update_daemon.stamp')) {
86 die("error: unable to create stampfile\n");
87 }
9e21a571 88
dbaa4e4a 89 // Call to the feed batch update function
661135c7 90 // or regenerate feedbrowser cache
9e21a571 91
661135c7
AD
92 if (rand(0,100) > 30) {
93 update_daemon_common($link);
9e21a571 94 } else {
661135c7 95 $count = update_feedbrowser_cache($link);
e3b42c5a
AD
96 _debug("Feedbrowser updated, $count feeds processed.");
97
98 purge_orphans($link, true);
dbaa4e4a 99
e3b42c5a
AD
100 $rc = cleanup_tags($link, 14, 50000);
101
102 _debug("Cleaned $rc cached tags.");
9e21a571 103 }
ef59e6e8 104
fecd57c8 105 }
fecd57c8 106
868650e4
AD
107 if ($op == "-cleanup-tags") {
108 $rc = cleanup_tags($link, 14, 50000);
109 print "$rc tags deleted.\n";
110 }
111
661135c7 112 db_close($link);
fecd57c8 113
661135c7
AD
114 unlink(LOCK_DIRECTORY . "/$lock_filename");
115?>