From 81480f4492a837f5fcd9790c7c6f853dfb5e1353 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Tue, 4 Nov 2025 07:53:14 +0000 Subject: [PATCH] remove deprecated methods --- src/Appwrite/Auth/Auth.php | 183 ------------------------------------- 1 file changed, 183 deletions(-) diff --git a/src/Appwrite/Auth/Auth.php b/src/Appwrite/Auth/Auth.php index 82bac36a79..1af4ea3a04 100644 --- a/src/Appwrite/Auth/Auth.php +++ b/src/Appwrite/Auth/Auth.php @@ -45,187 +45,4 @@ class Auth return SESSION_PROVIDER_TOKEN; } } - - /** - * Encode. - * - * One-way encryption - * - * @deprecated We plan to deprecate this class in the future. Use Utopia Auth when possible. - * @param $string - * - * @return string - */ - public static function hash(string $string) - { - return \hash('sha256', $string); - } - - /** - * Token Generator. - * - * Generate random password string - * - * @deprecated We plan to deprecate this class in the future. Use Utopia Auth when possible. - * @param int $length Length of returned token - * - * @return string - */ - public static function tokenGenerator(int $length = 256): string - { - if ($length <= 0) { - throw new \Exception('Token length must be greater than 0'); - } - - $bytesLength = (int) ceil($length / 2); - $token = \bin2hex(\random_bytes($bytesLength)); - - return substr($token, 0, $length); - } - - /** - * Verify token and check that its not expired. - * - * @deprecated We plan to deprecate this class in the future. Use Utopia Auth when possible. - * @param array $tokens - * @param int $type Type of token to verify, if null will verify any type - * @param string $secret - * - * @return false|Document - */ - public static function tokenVerify(array $tokens, int $type = null, string $secret, Proof $proofForToken): false|Document - { - foreach ($tokens as $token) { - if ( - $token->isSet('secret') && - $token->isSet('expire') && - $token->isSet('type') && - ($type === null || $token->getAttribute('type') === $type) && - $proofForToken->verify($secret, $token->getAttribute('secret')) && - DateTime::formatTz($token->getAttribute('expire')) >= DateTime::formatTz(DateTime::now()) - ) { - return $token; - } - } - - return false; - } - - /** - * Verify session and check that its not expired. - * - * @deprecated We plan to deprecate this class in the future. Use Utopia Auth when possible. - * @param array $sessions - * @param string $secret - * - * @return bool|string - */ - public static function sessionVerify(array $sessions, string $secret, Token $proofForToken) - { - foreach ($sessions as $session) { - if ( - $session->isSet('secret') && - $session->isSet('provider') && - $proofForToken->verify($secret, $session->getAttribute('secret')) && - DateTime::formatTz(DateTime::format(new \DateTime($session->getAttribute('expire')))) >= DateTime::formatTz(DateTime::now()) - ) { - return $session->getId(); - } - } - - return false; - } - - /** - * Is Privileged User? - * - * @deprecated We plan to deprecate this class in the future. Use Utopia Auth when possible. - * @param array $roles - * - * @return bool - */ - public static function isPrivilegedUser(array $roles): bool - { - if ( - in_array(User::ROLE_OWNER, $roles) || - in_array(User::ROLE_DEVELOPER, $roles) || - in_array(User::ROLE_ADMIN, $roles) - ) { - return true; - } - - return false; - } - - /** - * Is App User? - * - * @deprecated We plan to deprecate this class in the future. Use Utopia Auth when possible. - * @param array $roles - * - * @return bool - */ - public static function isAppUser(array $roles): bool - { - if (in_array(User::ROLE_APPS, $roles)) { - return true; - } - - return false; - } - - /** - * Returns all roles for a user. - * - * @deprecated We plan to deprecate this class in the future. Use Utopia Auth when possible. - * @param Document $user - * @return array - */ - public static function getRoles(Document $user): array - { - $roles = []; - - if (!self::isPrivilegedUser(Authorization::getRoles()) && !self::isAppUser(Authorization::getRoles())) { - if ($user->getId()) { - $roles[] = Role::user($user->getId())->toString(); - $roles[] = Role::users()->toString(); - - $emailVerified = $user->getAttribute('emailVerification', false); - $phoneVerified = $user->getAttribute('phoneVerification', false); - - if ($emailVerified || $phoneVerified) { - $roles[] = Role::user($user->getId(), Roles::DIMENSION_VERIFIED)->toString(); - $roles[] = Role::users(Roles::DIMENSION_VERIFIED)->toString(); - } else { - $roles[] = Role::user($user->getId(), Roles::DIMENSION_UNVERIFIED)->toString(); - $roles[] = Role::users(Roles::DIMENSION_UNVERIFIED)->toString(); - } - } else { - return [Role::guests()->toString()]; - } - } - - foreach ($user->getAttribute('memberships', []) as $node) { - if (!isset($node['confirm']) || !$node['confirm']) { - continue; - } - - if (isset($node['$id']) && isset($node['teamId'])) { - $roles[] = Role::team($node['teamId'])->toString(); - $roles[] = Role::member($node['$id'])->toString(); - - if (isset($node['roles'])) { - foreach ($node['roles'] as $nodeRole) { // Set all team roles - $roles[] = Role::team($node['teamId'], $nodeRole)->toString(); - } - } - } - } - - foreach ($user->getAttribute('labels', []) as $label) { - $roles[] = 'label:' . $label; - } - - return $roles; - } }