]> git.wh0rd.org - tt-rss.git/commitdiff
pluginhost: do not connect via legacy DB api until requested
authorAndrew Dolgov <noreply@fakecake.org>
Sun, 3 Dec 2017 11:49:18 +0000 (14:49 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Sun, 3 Dec 2017 11:49:18 +0000 (14:49 +0300)
log all initiated legacy database connections

classes/auth/base.php
classes/db.php
classes/handler.php
classes/handler/public.php
classes/pluginhost.php

index 652b66e6e2d139a64b356abdb6b052c87d081f23..dbc77f8cd34e7deb5694ba5c2430fb98e686586e 100644 (file)
@@ -1,10 +1,8 @@
 <?php
 class Auth_Base {
-       private $dbh;
        private $pdo;
 
        function __construct() {
-               $this->dbh = Db::get();
                $this->pdo = Db::pdo();
        }
 
index 1a4d0b2eee86e2efd352746a09e3bd3d75343265..05fb82d828c4ed7d3ca21a1582f94e2f491bb53a 100644 (file)
@@ -1,12 +1,29 @@
 <?php
 class Db implements IDb {
+
+       /* @var Db $instance */
        private static $instance;
+
+       /* @var IDb $adapter */
        private $adapter;
+
        private $link;
+
+       /* @var PDO $pdo */
        private $pdo;
 
        private function __construct() {
 
+       }
+
+       private function __clone() {
+               //
+       }
+
+       private function legacy_connect() {
+
+               user_error("Legacy connect requested to " . DB_TYPE, E_USER_NOTICE);
+
                $er = error_reporting(E_ALL);
 
                switch (DB_TYPE) {
@@ -25,19 +42,31 @@ class Db implements IDb {
                        exit(100);
                }
 
+               $this->link = $this->adapter->connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, defined('DB_PORT') ? DB_PORT : "");
+
+               if (!$this->link) {
+                       print("Error connecting through adapter: " . $this->adapter->last_error());
+                       exit(101);
+               }
+
+               error_reporting($er);
+       }
+
+       private function pdo_connect() {
+
                $db_port = defined('DB_PORT') && DB_PORT ? ';port='.DB_PORT : '';
 
                $this->pdo = new PDO(DB_TYPE . ':dbname='.DB_NAME.';host='.DB_HOST.$db_port,
                        DB_USER,
                        DB_PASS);
 
-               $this->pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING );
-
                if (!$this->pdo) {
                        print("Error connecting via PDO.");
                        exit(101);
                }
 
+               $this->pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING );
+
                if (DB_TYPE == "pgsql") {
 
                        $this->pdo->query("set client_encoding = 'UTF-8'");
@@ -52,32 +81,27 @@ class Db implements IDb {
                                $this->pdo->query("SET NAMES " . MYSQL_CHARSET);
                        }
                }
-
-               $this->link = $this->adapter->connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, defined('DB_PORT') ? DB_PORT : "");
-
-               if (!$this->link) {
-                       print("Error connecting through adapter: " . $this->adapter->last_error());
-                       exit(101);
-               }
-
-               error_reporting($er);
-       }
-
-       private function __clone() {
-               //
        }
 
        public static function get() {
                if (self::$instance == null)
                        self::$instance = new self();
 
+               if (!self::$instance->link) {
+                       self::$instance->legacy_connect();
+               }
+
                return self::$instance;
        }
 
-    public static function pdo() {
+       public static function pdo() {
         if (self::$instance == null)
             self::$instance = new self();
 
+        if (!self::$instance->pdo) {
+                       self::$instance->pdo_connect();
+               }
+
         return self::$instance->pdo;
     }
 
index 483b573e39a3fb0faac481a59e8be65cbcfd77fb..5b11094929711f3466107efd70b56cf57b9cf38f 100644 (file)
@@ -1,11 +1,9 @@
 <?php
 class Handler implements IHandler {
-       protected $dbh;
        protected $pdo;
        protected $args;
 
        function __construct($args) {
-               $this->dbh = Db::get();
                $this->pdo = Db::pdo();
                $this->args = $args;
        }
index a5b7f94bed87350c064fe2ec88d9eee82ef6be31..e2df4a3cc2537d329e204736aba850f2a4079974 100644 (file)
@@ -338,7 +338,7 @@ class Handler_Public extends Handler {
        }
 
        function globalUpdateFeeds() {
-               RPC::updaterandomfeed_real($this->dbh);
+               RPC::updaterandomfeed_real();
 
                PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", false);
        }
index 561a10a41d15b3a66151bbee0955873e4ad60099..f07e2bbf4593e41e05bcf1e292b7e25d9c87b36e 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 class PluginHost {
-       private $dbh;
        private $pdo;
        private $hooks = array();
        private $plugins = array();
@@ -63,7 +62,6 @@ class PluginHost {
        const KIND_USER = 3;
 
        function __construct() {
-               $this->dbh = Db::get();
                $this->pdo = Db::pdo();
 
                $this->storage = array();
@@ -91,7 +89,7 @@ class PluginHost {
        }
 
        function get_dbh() {
-               return $this->dbh;
+               return Db::get();
        }
 
        function get_pdo() {