]> git.mxchange.org Git - friendica.git/commitdiff
port hubzillas OpenWebAuth - fix wrong table name + fix wrong method name
authorrabuzarus <rabuzarus@t-online.de>
Wed, 20 Jun 2018 18:11:26 +0000 (20:11 +0200)
committerrabuzarus <rabuzarus@t-online.de>
Wed, 20 Jun 2018 18:11:26 +0000 (20:11 +0200)
src/Model/OpenWebAuthToken.php
src/Util/Crypto.php

index f295fc370308889e4bf7cf1423d8adf6e121a62d..5c405b27d3c1f7e902d1ef202f1bd879ebced6e7 100644 (file)
@@ -10,12 +10,12 @@ use Friendica\Util\DateTimeFormat;
 use dba;
 
 /**
- * Methods to deal with entries of the 'openwebauth_token' table.
+ * Methods to deal with entries of the 'openwebauth-token' table.
  */
 class OpenWebAuthToken
 {
        /**
-        * Create an entry in the 'openwebauth_token' table.
+        * Create an entry in the 'openwebauth-token' table.
         * 
         * @param string $type   Verify type.
         * @param int    $uid    The user ID.
@@ -33,11 +33,11 @@ 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.
+        * Get the "meta" field of an entry in the openwebauth-token table.
         * 
         * @param string $type   Verify type.
         * @param int    $uid    The user ID.
@@ -49,9 +49,9 @@ class OpenWebAuthToken
        {
                $condition = ["type" => $type, "uid" => $uid, "token" => $token];
 
-               $entry = dba::selectFirst("openwebauth_token", ["id", "meta"], $condition);
+               $entry = dba::selectFirst("openwebauth-token", ["id", "meta"], $condition);
                if (DBM::is_result($entry)) {
-                       dba::delete("openwebauth_token", ["id" => $entry["id"]]);
+                       dba::delete("openwebauth-token", ["id" => $entry["id"]]);
 
                        return $entry["meta"];
                }
@@ -67,7 +67,7 @@ class OpenWebAuthToken
        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);
        }
 
 }
index ad2a6fb2cb5ed4790f287bd3ea4d653ba1ded496..6a49626bd2e5b377911182a45195372beebd2a8f 100644 (file)
@@ -394,7 +394,7 @@ class Crypto
                $key = random_bytes(32);
                $iv  = random_bytes(16);
                $result = ['encrypted' => true];
-               $result['data'] = base64url_encode(self::AES256CBC_encrypt($data, $key, $iv), true);
+               $result['data'] = base64url_encode(self::encryptAES256CBC($data, $key, $iv), true);
 
                // log the offending call so we can track it down
                if (!openssl_public_encrypt($key, $k, $pubkey)) {