X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FOpenWebAuthToken.php;h=7c14cd3046c24bcad7bd56d74c3e5f1111aa15f5;hb=bc384208016abd2e4ec04dee1f9c6ffd5ced90d2;hp=f295fc370308889e4bf7cf1423d8adf6e121a62d;hpb=149142b4bc7cfd9a40bfa04d767d3e7149a69b22;p=friendica.git diff --git a/src/Model/OpenWebAuthToken.php b/src/Model/OpenWebAuthToken.php index f295fc3703..7c14cd3046 100644 --- a/src/Model/OpenWebAuthToken.php +++ b/src/Model/OpenWebAuthToken.php @@ -5,23 +5,22 @@ */ namespace Friendica\Model; -use Friendica\Database\DBM; +use Friendica\Database\DBA; 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. * @param string $token * @param string $meta - * + * * @return boolean */ public static function create($type, $uid, $token, $meta) @@ -33,25 +32,25 @@ 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. * @param string $token - * + * * @return string|boolean The meta enry or false if not found. */ 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"]; } @@ -60,14 +59,14 @@ class OpenWebAuthToken /** * Purge entries of a verify-type older than interval. - * + * * @param string $type Verify type. * @param string $interval SQL compatible time interval */ 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); } }