opml host, update: use PDO

This commit is contained in:
Andrew Dolgov 2017-12-02 11:42:42 +03:00
parent f8108cc28d
commit a77a47332c
2 changed files with 46 additions and 31 deletions

View File

@ -15,14 +15,16 @@
$op = $_REQUEST['op']; $op = $_REQUEST['op'];
if ($op == "publish"){ if ($op == "publish"){
$key = db_escape_string( $_REQUEST["key"]); $key = $_REQUEST["key"];
$pdo = Db::pdo();
$result = db_query( "SELECT owner_uid $sth = $pdo->prepare( "SELECT owner_uid
FROM ttrss_access_keys WHERE FROM ttrss_access_keys WHERE
access_key = '$key' AND feed_id = 'OPML:Publish'"); access_key = ? AND feed_id = 'OPML:Publish'");
$sth->execute([$key]);
if (db_num_rows($result) == 1) { if ($row = $sth->fetch()) {
$owner_uid = db_fetch_result($result, 0, "owner_uid"); $owner_uid = $row['owner_uid'];
$opml = new Opml($_REQUEST); $opml = new Opml($_REQUEST);
$opml->opml_export("", $owner_uid, true, false); $opml->opml_export("", $owner_uid, true, false);

View File

@ -17,6 +17,8 @@
if (!defined('PHP_EXECUTABLE')) if (!defined('PHP_EXECUTABLE'))
define('PHP_EXECUTABLE', '/usr/bin/php'); define('PHP_EXECUTABLE', '/usr/bin/php');
$pdo = Db::pdo();
init_plugins(); init_plugins();
$longopts = array("feeds", $longopts = array("feeds",
@ -159,8 +161,8 @@
if (isset($options["force-update"])) { if (isset($options["force-update"])) {
_debug("marking all feeds as needing update..."); _debug("marking all feeds as needing update...");
db_query( "UPDATE ttrss_feeds SET last_update_started = '1970-01-01', $pdo->query( "UPDATE ttrss_feeds SET
last_updated = '1970-01-01'"); last_update_started = '1970-01-01', last_updated = '1970-01-01'");
} }
if (isset($options["feeds"])) { if (isset($options["feeds"])) {
@ -218,16 +220,16 @@
_debug("clearing existing indexes..."); _debug("clearing existing indexes...");
if (DB_TYPE == "pgsql") { if (DB_TYPE == "pgsql") {
$result = db_query( "SELECT relname FROM $sth = $pdo->query( "SELECT relname FROM
pg_catalog.pg_class WHERE relname LIKE 'ttrss_%' pg_catalog.pg_class WHERE relname LIKE 'ttrss_%'
AND relname NOT LIKE '%_pkey' AND relname NOT LIKE '%_pkey'
AND relkind = 'i'"); AND relkind = 'i'");
} else { } else {
$result = db_query( "SELECT index_name,table_name FROM $sth = $pdo->query( "SELECT index_name,table_name FROM
information_schema.statistics WHERE index_name LIKE 'ttrss_%'"); information_schema.statistics WHERE index_name LIKE 'ttrss_%'");
} }
while ($line = db_fetch_assoc($result)) { while ($line = $sth->fetch()) {
if (DB_TYPE == "pgsql") { if (DB_TYPE == "pgsql") {
$statement = "DROP INDEX " . $line["relname"]; $statement = "DROP INDEX " . $line["relname"];
_debug($statement); _debug($statement);
@ -236,7 +238,7 @@
$line['table_name']." DROP INDEX ".$line['index_name']; $line['table_name']." DROP INDEX ".$line['index_name'];
_debug($statement); _debug($statement);
} }
db_query( $statement, false); $pdo->query($statement);
} }
_debug("reading indexes from schema for: " . DB_TYPE); _debug("reading indexes from schema for: " . DB_TYPE);
@ -253,7 +255,7 @@
$statement = "CREATE INDEX $index ON $table"; $statement = "CREATE INDEX $index ON $table";
_debug($statement); _debug($statement);
db_query( $statement); $pdo->query($statement);
} }
} }
fclose($fp); fclose($fp);
@ -272,11 +274,11 @@
_debug("converting filters..."); _debug("converting filters...");
db_query( "DELETE FROM ttrss_filters2"); $pdo->query("DELETE FROM ttrss_filters2");
$result = db_query( "SELECT * FROM ttrss_filters ORDER BY id"); $res = $pdo->query("SELECT * FROM ttrss_filters ORDER BY id");
while ($line = db_fetch_assoc($result)) { while ($line = $res->fetch()) {
$owner_uid = $line["owner_uid"]; $owner_uid = $line["owner_uid"];
// date filters are removed // date filters are removed
@ -346,28 +348,36 @@
if (isset($options["gen-search-idx"])) { if (isset($options["gen-search-idx"])) {
echo "Generating search index (stemming set to English)...\n"; echo "Generating search index (stemming set to English)...\n";
$result = db_query("SELECT COUNT(id) AS count FROM ttrss_entries WHERE tsvector_combined IS NULL"); $res = $pdo->query("SELECT COUNT(id) AS count FROM ttrss_entries WHERE tsvector_combined IS NULL");
$count = db_fetch_result($result, 0, "count"); $row = $res->fetch();
$count = $row['count'];
print "Articles to process: $count.\n"; print "Articles to process: $count.\n";
$limit = 500; $limit = 500;
$processed = 0; $processed = 0;
$sth = $pdo->prepare("SELECT id, title, content FROM ttrss_entries WHERE
tsvector_combined IS NULL ORDER BY id LIMIT ?");
$sth->execute([$limit]);
$usth = $pdo->prepare("UPDATE ttrss_entries
SET tsvector_combined = to_tsvector('english', ?) WHERE id = ?");
while (true) { while (true) {
$result = db_query("SELECT id, title, content FROM ttrss_entries WHERE tsvector_combined IS NULL ORDER BY id LIMIT $limit");
while ($line = db_fetch_assoc($result)) { while ($line = $sth->fetch()) {
$tsvector_combined = db_escape_string(mb_substr($line['title'] . ' ' . strip_tags(str_replace('<', ' <', $line['content'])), $tsvector_combined = mb_substr($line['title'] . ' ' . strip_tags(str_replace('<', ' <', $line['content'])),
0, 1000000)); 0, 1000000);
db_query("UPDATE ttrss_entries SET tsvector_combined = to_tsvector('english', '$tsvector_combined') WHERE id = " . $line["id"]); $usth->execute([$tsvector_combined, $line['id']]);
$processed++;
} }
$processed += db_num_rows($result);
print "Processed $processed articles...\n"; print "Processed $processed articles...\n";
if (db_num_rows($result) != $limit) { if ($processed < $limit) {
echo "All done.\n"; echo "All done.\n";
break; break;
} }
@ -410,31 +420,34 @@
} }
if (isset($options["decrypt-feeds"])) { if (isset($options["decrypt-feeds"])) {
$result = db_query("SELECT id, auth_pass FROM ttrss_feeds WHERE auth_pass_encrypted = true");
if (!function_exists("mcrypt_decrypt")) { if (!function_exists("mcrypt_decrypt")) {
_debug("mcrypt functions not available."); _debug("mcrypt functions not available.");
return; return;
} }
$res = $pdo->query("SELECT id, auth_pass FROM ttrss_feeds WHERE auth_pass_encrypted = true");
require_once "crypt.php"; require_once "crypt.php";
$total = 0; $total = 0;
db_query("BEGIN"); $pdo->beginTransaction();
while ($line = db_fetch_assoc($result)) { $usth = $pdo->prepare("UPDATE ttrss_feeds SET auth_pass_encrypted = false, auth_pass = ?
WHERE id = ?");
while ($line = $res->fetch()) {
_debug("processing feed id " . $line["id"]); _debug("processing feed id " . $line["id"]);
$auth_pass = db_escape_string(decrypt_string($line["auth_pass"])); $auth_pass = decrypt_string($line["auth_pass"]);
db_query("UPDATE ttrss_feeds SET auth_pass_encrypted = false, auth_pass = '$auth_pass' $usth->execute([$auth_pass, $line['id']]);
WHERE id = " . $line["id"]);
++$total; ++$total;
} }
db_query("COMMIT"); $pdo->commit();
_debug("$total feeds processed."); _debug("$total feeds processed.");
} }