]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/OpenWebAuthToken.php
Merge pull request #12674 from nupplaphil/bug/config_typesafe
[friendica.git] / src / Model / OpenWebAuthToken.php
index d0fc046ea62d44bc3680c2e88502ab36e842d423..e99d40f12f65ccd56af0ee4ec500de37b6df16a1 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -36,20 +36,19 @@ class OpenWebAuthToken
         * @param int    $uid  The user ID.
         * @param string $token
         * @param string $meta
-        *
         * @return boolean
         * @throws \Exception
         */
-       public static function create($type, $uid, $token, $meta)
+       public static function create(string $type, int $uid, string $token, string $meta)
        {
                $fields = [
-                       "type" => $type,
-                       "uid" => $uid,
-                       "token" => $token,
-                       "meta" => $meta,
-                       "created" => DateTimeFormat::utcNow()
+                       'type'    => $type,
+                       'uid'     => $uid,
+                       'token'   => $token,
+                       'meta'    => $meta,
+                       'created' => DateTimeFormat::utcNow()
                ];
-               return DBA::insert("openwebauth-token", $fields);
+               return DBA::insert('openwebauth-token', $fields);
        }
 
        /**
@@ -62,15 +61,15 @@ class OpenWebAuthToken
         * @return string|boolean The meta enry or false if not found.
         * @throws \Exception
         */
-       public static function getMeta($type, $uid, $token)
+       public static function getMeta(string $type, int $uid, string $token)
        {
-               $condition = ["type" => $type, "uid" => $uid, "token" => $token];
+               $condition = ['type' => $type, 'uid' => $uid, 'token' => $token];
 
-               $entry = DBA::selectFirst("openwebauth-token", ["id", "meta"], $condition);
+               $entry = DBA::selectFirst('openwebauth-token', ['id', 'meta'], $condition);
                if (DBA::isResult($entry)) {
-                       DBA::delete("openwebauth-token", ["id" => $entry["id"]]);
+                       DBA::delete('openwebauth-token', ['id' => $entry['id']]);
 
-                       return $entry["meta"];
+                       return $entry['meta'];
                }
                return false;
        }
@@ -80,12 +79,13 @@ class OpenWebAuthToken
         *
         * @param string $type     Verify type.
         * @param string $interval SQL compatible time interval
+        * @return void
         * @throws \Exception
         */
-       public static function purge($type, $interval)
+       public static function purge(string $type, string $interval)
        {
-               $condition = ["`type` = ? AND `created` < ?", $type, DateTimeFormat::utcNow() . " - INTERVAL " . $interval];
-               DBA::delete("openwebauth-token", $condition);
+               $condition = ["`type` = ? AND `created` < ?", $type, DateTimeFormat::utcNow() . ' - INTERVAL ' . $interval];
+               DBA::delete('openwebauth-token', $condition);
        }
 
 }