]> git.wh0rd.org - tt-rss.git/blobdiff - backend.php
perform backend sanity check on startup, update schema version in backend.php
[tt-rss.git] / backend.php
index 495cebe722ff0a9f66ec744804e4b54c39b2ad1c..2ed2f926640ac9a4b7e0e90d7ec7b986ee91b18f 100644 (file)
@@ -1,4 +1,6 @@
 <?
+       define(SCHEMA_VERSION, 2);
+
        $op = $_GET["op"];
 
        if ($op == "rpc") {
@@ -10,6 +12,8 @@
        require_once "functions.php";
        require_once "magpierss/rss_fetch.inc";
 
+       $script_started = getmicrotime();
+
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); 
 
        if (!$link) {
        if (DB_TYPE == "pgsql") {
                pg_query("set client_encoding = 'utf-8'");
        }
-       
+
+/*
+       $result = db_query($link, "SELECT schema_version FROM ttrss_version");
+
+       $schema_version = db_fetch_result($result, 0, "schema_version");
+
+       if ($schema_version != SCHEMA_VERSION) {
+               print "Error: database schema is invalid
+                       (got version $schema_version; expected ".SCHEMA_VERSION.")";
+               return;
+       }
+*/
+
        $fetch = $_GET["fetch"];
 
        /* FIXME this needs reworking */
                        <script type=\"text/javascript\" src=\"functions.js\"></script>
                        <script type=\"text/javascript\" src=\"feedlist.js\"></script>
                        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
-                       </head><body>";
+                       </head><body onload=\"init()\">";
 
                print "<ul class=\"feedList\" id=\"feedList\">";
 
                                FROM ttrss_entries WHERE marked = true AND unread = true");
                        $num_starred = db_fetch_result($result, 0, "num_starred");
 
-                       $class = "odd";
+                       $class = "virt";
 
                        if ($num_starred > 0) $class .= "Unread";
 
        
                                        $count = db_fetch_result($tmp_result, 0, "count");
        
-                                       $class = "odd";
+                                       $class = "label";
        
                                        if ($count > 0) {
                                                $class .= "Unread";
                                
        //                      $class = ($lnum % 2) ? "even" : "odd";
        
-                               $class = "odd";
+                               $class = "feed";
        
                                if ($unread > 0) $class .= "Unread";
        
                }
 
                if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
+               
                        update_all_feeds($link, true);                  
 
                        $omode = $_GET["omode"];
 
                        print "Marked active page as read.";
                }
+
+               if ($subop == "sanityCheck") {
+
+                       $error_code = 0;
+
+                       $result = db_query($link, "SELECT schema_version FROM ttrss_version");
+
+                       $schema_version = db_fetch_result($result, 0, "schema_version");
+
+                       if ($schema_version != SCHEMA_VERSION) {
+                               $error_code = 5;
+                       }
+
+                       print "<error code='$error_code'/>";
+               }
        }
        
        if ($op == "feeds") {
                                <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
                                <script type=\"text/javascript\" src=\"functions.js\"></script>
                                <script type=\"text/javascript\" src=\"viewfeed.js\"></script>
-                               </head><body>";
+                               </head><body onload='init()'>";
                }
 
-               if (sprintf("%d", $feed) != 0 && $feed >= 0) {
+               if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
 
-                       $result = db_query($link, 
-                               "SELECT *,SUBSTRING(last_updated,1,16) as last_updated_s
-                               FROM ttrss_feeds WHERE id = '$feed'");
-               
-                       if ($result) {
-       
-//                             $line = db_fetch_assoc($result);
-//                             update_rss_feed($link, $line["feed_url"], $feed);
+                       $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
+                               WHERE id = '$feed'");
 
-                               if ($subop == "MarkAllRead")  {
-       
-                                       db_query($link, "UPDATE ttrss_entries SET unread = false,last_read = NOW() 
+                       $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
+
+                       update_rss_feed($link, $feed_url, $feed);
+
+               }
+
+               if ($subop == "MarkAllRead")  {
+
+                       if (sprintf("%d", $feed) != 0) {
+                       
+                               if ($feed > 0) {
+                                       db_query($link, "UPDATE ttrss_entries 
+                                               SET unread = false,last_read = NOW() 
                                                WHERE feed_id = '$feed'");
+                                               
+                               } else if ($feed < 0 && $feed > -10) { // special, like starred
+
+                                       if ($feed == -1) {
+                                               db_query($link, "UPDATE ttrss_entries 
+                                                       SET unread = false,last_read = NOW()
+                                                       WHERE marked = true");
+                                       }
+                       
+                               } else if ($feed < -10) { // label
+
+                                       $label_id = -$feed - 11;
+
+                                       $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
+                                               WHERE id = '$label_id'");
+
+                                       if ($tmp_result) {
+                                               $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
+
+                                               db_query($link, "UPDATE ttrss_entries 
+                                                       SET unread = false,last_read = NOW()
+                                                       WHERE $sql_exp");
+                                       }
                                }
+                       } else { // tag
+                               // FIXME, implement catchup for tags
                        }
+
                }
 
                print "<table class=\"headlinesList\" id=\"headlinesList\" width=\"100%\">";
 
                        if ($line["feed_title"]) {                      
                                print "<td width='50%'>$content_link</td>";
-                               print "<td width='20%'>".$line["feed_title"]."</td>";
+                               print "<td width='20%'>
+                                       <a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a></td>";
                        } else {
                                print "<td width='70%'>$content_link</td>";
                        }
                        }
                }
 
+               $result = db_query($link, "SELECT id,title,feed_url,last_error 
+                       FROM ttrss_feeds WHERE last_error != ''");
+
+               if (db_num_rows($result) > 0) {
+               
+                       print "<div class=\"warning\">";
+               
+                       print "<b>Feeds with update errors:</b>";
+
+                       print "<ul class=\"nomarks\">";
+                                               
+                       while ($line = db_fetch_assoc($result)) {
+                               print "<li>" . $line["title"] . " (" . $line["feed_url"] . "): " . 
+                                       $line["last_error"];
+                       }
+
+                       print "</ul>";
+                       print "</div>";
+
+               }
+
                print "<table class=\"prefAddFeed\"><tr>
                        <td><input id=\"fadd_link\"></td>
                        <td colspan=\"4\" align=\"right\">
                
                        }
 
+               print "<h3>OPML Import</h3>
+               <form   enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
+                       File: <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
+                       <input class=\"button\" name=\"op\" onclick=\"return validateOpmlImport();\"
+                               type=\"submit\" value=\"Import\">
+                       </form>";
+
        }
 
        if ($op == "pref-filters") {
                        <title>Tiny Tiny RSS : Help</title>
                        <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
                        <script type=\"text/javascript\" src=\"functions.js\"></script>
-                       <script type=\"text/javascript\" src=\"feedlist.js\"></script>
                        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
                        </head><body>";
 
 
        }
 
+       if ($op == "dlg") {
+               $id = $_GET["id"];
+               $param = $_GET["param"];
+
+               if ($id == "quickAddFeed") {
+                       print "Feed URL: <input 
+                       onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
+                       id=\"qafInput\">
+                       <input class=\"button\"
+                               type=\"submit\" onclick=\"javascript:qafAdd()\" value=\"Add feed\">
+                       <input class=\"button\"
+                               type=\"submit\" onclick=\"javascript:closeDlg()\" 
+                               value=\"Cancel\">";
+               }
+
+               if ($id == "quickDelFeed") {
+
+                       $param = db_escape_string($param);
+
+                       $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$param'");
+
+                       if ($result) {
+
+                               $f_title = db_fetch_result($result, 0, "title");
+               
+                               print "Remove current feed ($f_title)?&nbsp;
+                               <input class=\"button\"
+                                       type=\"submit\" onclick=\"javascript:qfdDelete($param)\" value=\"Remove\">
+                               <input class=\"button\"
+                                       type=\"submit\" onclick=\"javascript:closeDlg()\" 
+                                       value=\"Cancel\">";
+                       } else {
+                               print "Error: Feed $param not found.&nbsp;
+                               <input class=\"button\"
+                                       type=\"submit\" onclick=\"javascript:closeDlg()\" 
+                                       value=\"Cancel\">";             
+                       }
+               }
+
+               if ($id == "search") {
+
+                       print "<input id=\"searchbox\" class=\"extSearch\"                      
+                       onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
+                       onchange=\"javascript:search()\">
+                       <select id=\"searchmodebox\">
+                               <option selected>All feeds</option>
+                               <option>This feed</option>
+                       </select>               
+                       <input type=\"submit\" 
+                               class=\"button\" onclick=\"javascript:search()\" value=\"Search\">
+                       <input class=\"button\"
+                               type=\"submit\" onclick=\"javascript:closeDlg()\" 
+                               value=\"Close\">";
+
+               }
+
+       }
+
        db_close($link);
 ?>
+
+<!-- <?= sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
+