| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /*
- * Copyright 2017 Google
- *
- * 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 "FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h"
- #import "FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h"
- #import "FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h"
- #import "FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h"
- #import "FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h"
- #import "FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface FIROAuthCredential ()
- @property(nonatomic, nullable) NSString *rawNonce;
- - (nullable instancetype)initWithProvider:(NSString *)provider NS_UNAVAILABLE;
- @end
- @implementation FIROAuthCredential
- - (nullable instancetype)initWithProvider:(NSString *)provider {
- [FIRAuthExceptionUtils
- raiseMethodNotImplementedExceptionWithReason:@"Please call the designated initializer."];
- return nil;
- }
- - (instancetype)initWithProviderID:(NSString *)providerID
- IDToken:(nullable NSString *)IDToken
- rawNonce:(nullable NSString *)rawNonce
- accessToken:(nullable NSString *)accessToken
- secret:(nullable NSString *)secret
- fullName:(nullable NSPersonNameComponents *)fullName
- pendingToken:(nullable NSString *)pendingToken {
- self = [super initWithProvider:providerID];
- if (self) {
- _IDToken = IDToken;
- _rawNonce = rawNonce;
- _accessToken = accessToken;
- _pendingToken = pendingToken;
- _secret = secret;
- _fullName = fullName;
- }
- return self;
- }
- - (instancetype)initWithProviderID:(NSString *)providerID
- sessionID:(NSString *)sessionID
- OAuthResponseURLString:(NSString *)OAuthResponseURLString {
- self = [self initWithProviderID:providerID
- IDToken:nil
- rawNonce:nil
- accessToken:nil
- secret:nil
- fullName:nil
- pendingToken:nil];
- if (self) {
- _OAuthResponseURLString = OAuthResponseURLString;
- _sessionID = sessionID;
- }
- return self;
- }
- - (nullable instancetype)initWithVerifyAssertionResponse:(FIRVerifyAssertionResponse *)response {
- if (response.oauthIDToken.length || response.oauthAccessToken.length ||
- response.oauthSecretToken.length) {
- return [self initWithProviderID:response.providerID
- IDToken:response.oauthIDToken
- rawNonce:nil
- accessToken:response.oauthAccessToken
- secret:response.oauthSecretToken
- fullName:nil
- pendingToken:response.pendingToken];
- }
- return nil;
- }
- - (void)prepareVerifyAssertionRequest:(FIRVerifyAssertionRequest *)request {
- request.providerIDToken = _IDToken;
- request.providerRawNonce = _rawNonce;
- request.providerAccessToken = _accessToken;
- request.requestURI = _OAuthResponseURLString;
- request.sessionID = _sessionID;
- request.providerOAuthTokenSecret = _secret;
- request.pendingToken = _pendingToken;
- request.fullName = _fullName;
- }
- #pragma mark - NSSecureCoding
- + (BOOL)supportsSecureCoding {
- return YES;
- }
- - (nullable instancetype)initWithCoder:(NSCoder *)aDecoder {
- NSString *IDToken = [aDecoder decodeObjectOfClass:[NSString class] forKey:@"IDToken"];
- NSString *rawNonce = [aDecoder decodeObjectOfClass:[NSString class] forKey:@"rawNonce"];
- NSString *accessToken = [aDecoder decodeObjectOfClass:[NSString class] forKey:@"accessToken"];
- NSString *pendingToken = [aDecoder decodeObjectOfClass:[NSString class] forKey:@"pendingToken"];
- NSString *secret = [aDecoder decodeObjectOfClass:[NSString class] forKey:@"secret"];
- NSPersonNameComponents *fullName = [aDecoder decodeObjectOfClass:[NSPersonNameComponents class]
- forKey:@"fullName"];
- self = [self initWithProviderID:self.provider
- IDToken:IDToken
- rawNonce:rawNonce
- accessToken:accessToken
- secret:secret
- fullName:fullName
- pendingToken:pendingToken];
- return self;
- }
- - (void)encodeWithCoder:(NSCoder *)aCoder {
- [aCoder encodeObject:self.IDToken forKey:@"IDToken"];
- [aCoder encodeObject:self.rawNonce forKey:@"rawNonce"];
- [aCoder encodeObject:self.accessToken forKey:@"accessToken"];
- [aCoder encodeObject:self.pendingToken forKey:@"pendingToken"];
- [aCoder encodeObject:self.secret forKey:@"secret"];
- [aCoder encodeObject:self.fullName forKey:@"fullName"];
- }
- @end
- NS_ASSUME_NONNULL_END
|