]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/OpenWebAuthToken.php
Merge branch '2019.03-RC'
[friendica.git] / src / Model / OpenWebAuthToken.php
index 336f4ab0691d431fab1a896a6a225f0f2e526738..7b30d2eb054ac73477f86ecd10087b3c19303b99 100644 (file)
@@ -5,8 +5,7 @@
  */
 namespace Friendica\Model;
 
-use Friendica\Database\dba;
-use Friendica\Database\DBM;
+use Friendica\Database\DBA;
 use Friendica\Util\DateTimeFormat;
 
 /**
@@ -17,12 +16,13 @@ class OpenWebAuthToken
        /**
         * Create an entry in the 'openwebauth-token' table.
         *
-        * @param string $type   Verify type.
-        * @param int    $uid    The user ID.
+        * @param string $type Verify type.
+        * @param int    $uid  The user ID.
         * @param string $token
         * @param string $meta
         *
         * @return boolean
+        * @throws \Exception
         */
        public static function create($type, $uid, $token, $meta)
        {
@@ -33,25 +33,26 @@ class OpenWebAuthToken
                        "meta" => $meta,
                        "created" => DateTimeFormat::utcNow()
                ];
-               return dba::insert("openwebauth-token", $fields);
+               return DBA::insert("openwebauth-token", $fields);
        }
 
        /**
         * Get the "meta" field of an entry in the openwebauth-token table.
         *
-        * @param string $type   Verify type.
-        * @param int    $uid    The user ID.
+        * @param string $type Verify type.
+        * @param int    $uid  The user ID.
         * @param string $token
         *
         * @return string|boolean The meta enry or false if not found.
+        * @throws \Exception
         */
        public static function getMeta($type, $uid, $token)
        {
                $condition = ["type" => $type, "uid" => $uid, "token" => $token];
 
-               $entry = dba::selectFirst("openwebauth-token", ["id", "meta"], $condition);
-               if (DBM::is_result($entry)) {
-                       dba::delete("openwebauth-token", ["id" => $entry["id"]]);
+               $entry = DBA::selectFirst("openwebauth-token", ["id", "meta"], $condition);
+               if (DBA::isResult($entry)) {
+                       DBA::delete("openwebauth-token", ["id" => $entry["id"]]);
 
                        return $entry["meta"];
                }
@@ -63,11 +64,12 @@ class OpenWebAuthToken
         *
         * @param string $type     Verify type.
         * @param string $interval SQL compatible time interval
+        * @throws \Exception
         */
        public static function purge($type, $interval)
        {
                $condition = ["`type` = ? AND `created` < ?", $type, DateTimeFormat::utcNow() . " - INTERVAL " . $interval];
-               dba::delete("openwebauth-token", $condition);
+               DBA::delete("openwebauth-token", $condition);
        }
 
 }