]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/OpenWebAuthToken.php
Merge pull request #9 from nupplaphil/dependabot/composer/guzzlehttp/guzzle-6.5.8
[friendica.git] / src / Model / OpenWebAuthToken.php
index cd80c3f62e3660f34051fcfd0998492b51fe4f14..5071b00d3a594a2e59b9b1276be4def3f0415af2 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -40,16 +40,16 @@ class OpenWebAuthToken
         * @return boolean
         * @throws \Exception
         */
-       public static function create($type, $uid, $token, $meta)
+       public static function create(string $type, uid $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 +62,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;
        }
@@ -82,10 +82,10 @@ class OpenWebAuthToken
         * @param string $interval SQL compatible time interval
         * @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);
        }
 
 }