| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #import "GoogleSignIn/Sources/Public/GoogleSignIn/GIDGoogleUser.h"
- #import "GoogleSignIn/Sources/GIDGoogleUser_Private.h"
- #import "GoogleSignIn/Sources/Public/GoogleSignIn/GIDConfiguration.h"
- #import "GoogleSignIn/Sources/GIDAuthentication_Private.h"
- #import "GoogleSignIn/Sources/GIDProfileData_Private.h"
- #import "GoogleSignIn/Sources/GIDToken_Private.h"
- #ifdef SWIFT_PACKAGE
- @import AppAuth;
- #else
- #import <AppAuth/AppAuth.h>
- #endif
- // The ID Token claim key for the hosted domain value.
- static NSString *const kHostedDomainIDTokenClaimKey = @"hd";
- // Key constants used for encode and decode.
- static NSString *const kAuthenticationKey = @"authentication";
- static NSString *const kProfileDataKey = @"profileData";
- static NSString *const kAuthState = @"authState";
- // Parameters for the token exchange endpoint.
- static NSString *const kAudienceParameter = @"audience";
- static NSString *const kOpenIDRealmParameter = @"openid.realm";
- NS_ASSUME_NONNULL_BEGIN
- @implementation GIDGoogleUser {
- OIDAuthState *_authState;
- GIDConfiguration *_cachedConfiguration;
- GIDToken *_cachedAccessToken;
- GIDToken *_cachedRefreshToken;
- GIDToken *_cachedIdToken;
- }
- - (nullable NSString *)userID {
- NSString *idTokenString = self.idToken.tokenString;
- if (idTokenString) {
- OIDIDToken *idTokenDecoded =
- [[OIDIDToken alloc] initWithIDTokenString:idTokenString];
- if (idTokenDecoded && idTokenDecoded.subject) {
- return [idTokenDecoded.subject copy];
- }
- }
- return nil;
- }
- - (nullable NSArray<NSString *> *)grantedScopes {
- NSArray<NSString *> *grantedScopes;
- NSString *grantedScopeString = _authState.lastTokenResponse.scope;
- if (grantedScopeString) {
- // If we have a 'scope' parameter from the backend, this is authoritative.
- // Remove leading and trailing whitespace.
- grantedScopeString = [grantedScopeString stringByTrimmingCharactersInSet:
- [NSCharacterSet whitespaceCharacterSet]];
- // Tokenize with space as a delimiter.
- NSMutableArray<NSString *> *parsedScopes =
- [[grantedScopeString componentsSeparatedByString:@" "] mutableCopy];
- // Remove empty strings.
- [parsedScopes removeObject:@""];
- grantedScopes = [parsedScopes copy];
- }
- return grantedScopes;
- }
- - (GIDConfiguration *)configuration {
- @synchronized(self) {
- // Caches the configuration since it would not change for one GIDGoogleUser instance.
- if (!_cachedConfiguration) {
- NSString *clientID = _authState.lastAuthorizationResponse.request.clientID;
- NSString *serverClientID =
- _authState.lastTokenResponse.request.additionalParameters[kAudienceParameter];
- NSString *openIDRealm =
- _authState.lastTokenResponse.request.additionalParameters[kOpenIDRealmParameter];
-
- _cachedConfiguration = [[GIDConfiguration alloc] initWithClientID:clientID
- serverClientID:serverClientID
- hostedDomain:[self hostedDomain]
- openIDRealm:openIDRealm];
- };
- }
-
- return _cachedConfiguration;
- }
- - (GIDToken *)accessToken {
- @synchronized(self) {
- if (!_cachedAccessToken) {
- _cachedAccessToken = [[GIDToken alloc] initWithTokenString:_authState.lastTokenResponse.accessToken
- expirationDate:_authState.lastTokenResponse.
- accessTokenExpirationDate];
- }
- }
- return _cachedAccessToken;
- }
- - (GIDToken *)refreshToken {
- @synchronized(self) {
- if (!_cachedRefreshToken) {
- _cachedRefreshToken = [[GIDToken alloc] initWithTokenString:_authState.refreshToken
- expirationDate:nil];
- }
- }
- return _cachedRefreshToken;
- }
- - (nullable GIDToken *)idToken {
- @synchronized(self) {
- NSString *idTokenString = _authState.lastTokenResponse.idToken;
- if (!_cachedIdToken && idTokenString) {
- NSDate *idTokenExpirationDate = [[[OIDIDToken alloc]
- initWithIDTokenString:idTokenString] expiresAt];
- _cachedIdToken = [[GIDToken alloc] initWithTokenString:idTokenString
- expirationDate:idTokenExpirationDate];
- }
- }
- return _cachedIdToken;
- }
- #pragma mark - Private Methods
- - (instancetype)initWithAuthState:(OIDAuthState *)authState
- profileData:(nullable GIDProfileData *)profileData {
- self = [super init];
- if (self) {
- [self updateAuthState:authState profileData:profileData];
- }
- return self;
- }
- - (void)updateAuthState:(OIDAuthState *)authState
- profileData:(nullable GIDProfileData *)profileData {
- @synchronized(self) {
- _authState = authState;
- _authentication = [[GIDAuthentication alloc] initWithAuthState:authState];
- _profile = profileData;
-
- // These three tokens will be generated in the getter and cached .
- _cachedAccessToken = nil;
- _cachedRefreshToken = nil;
- _cachedIdToken = nil;
- }
- }
- #pragma mark - Helpers
- - (nullable NSString *)hostedDomain {
- NSString *idTokenString = self.idToken.tokenString;
- if (idTokenString) {
- OIDIDToken *idTokenDecoded = [[OIDIDToken alloc] initWithIDTokenString:idTokenString];
- if (idTokenDecoded && idTokenDecoded.claims[kHostedDomainIDTokenClaimKey]) {
- return idTokenDecoded.claims[kHostedDomainIDTokenClaimKey];
- }
- }
- return nil;
- }
- #pragma mark - NSSecureCoding
- + (BOOL)supportsSecureCoding {
- return YES;
- }
- - (nullable instancetype)initWithCoder:(NSCoder *)decoder {
- self = [super init];
- if (self) {
- GIDProfileData *profileData =
- [decoder decodeObjectOfClass:[GIDProfileData class] forKey:kProfileDataKey];
- OIDAuthState *authState;
- if ([decoder containsValueForKey:kAuthState]) { // Current encoding
- authState = [decoder decodeObjectOfClass:[OIDAuthState class] forKey:kAuthState];
- } else { // Old encoding
- GIDAuthentication *authentication = [decoder decodeObjectOfClass:[GIDAuthentication class]
- forKey:kAuthenticationKey];
- authState = authentication.authState;
- }
- [self updateAuthState:authState profileData:profileData];
- }
- return self;
- }
- - (void)encodeWithCoder:(NSCoder *)encoder {
- [encoder encodeObject:_profile forKey:kProfileDataKey];
- [encoder encodeObject:_authState forKey:kAuthState];
- }
- @end
- NS_ASSUME_NONNULL_END
|