| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- /*
- * Copyright 2019 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 "FirebaseMessaging/Sources/Token/FIRMessagingTokenFetchOperation.h"
- #import "FirebaseMessaging/Sources/FIRMessagingCode.h"
- #import "FirebaseMessaging/Sources/FIRMessagingConstants.h"
- #import "FirebaseMessaging/Sources/FIRMessagingDefines.h"
- #import "FirebaseMessaging/Sources/FIRMessagingLogger.h"
- #import "FirebaseMessaging/Sources/FIRMessagingUtilities.h"
- #import "FirebaseMessaging/Sources/NSError+FIRMessaging.h"
- #import "FirebaseMessaging/Sources/Token/FIRMessagingCheckinPreferences.h"
- #import "FirebaseMessaging/Sources/Token/FIRMessagingTokenOperation.h"
- #import "FirebaseCore/Extension/FirebaseCoreInternal.h"
- // We can have a static int since this error should theoretically only
- // happen once (for the first time). If it repeats there is something
- // else that is wrong.
- static int phoneRegistrationErrorRetryCount = 0;
- static const int kMaxPhoneRegistrationErrorRetryCount = 10;
- NSString *const kFIRMessagingFirebaseUserAgentKey = @"X-firebase-client";
- NSString *const kFIRMessagingFirebaseHeartbeatKey = @"X-firebase-client-log-type";
- @implementation FIRMessagingTokenFetchOperation
- - (instancetype)initWithAuthorizedEntity:(NSString *)authorizedEntity
- scope:(NSString *)scope
- options:(nullable NSDictionary<NSString *, NSString *> *)options
- checkinPreferences:(FIRMessagingCheckinPreferences *)checkinPreferences
- instanceID:(NSString *)instanceID
- heartbeatLogger:(id<FIRHeartbeatLoggerProtocol>)heartbeatLogger {
- return [super initWithAction:FIRMessagingTokenActionFetch
- forAuthorizedEntity:authorizedEntity
- scope:scope
- options:options
- checkinPreferences:checkinPreferences
- instanceID:instanceID
- heartbeatLogger:heartbeatLogger];
- }
- - (void)performTokenOperation {
- NSMutableURLRequest *request = [self tokenRequest];
- NSString *checkinVersionInfo = self.checkinPreferences.versionInfo;
- [request setValue:checkinVersionInfo forHTTPHeaderField:@"info"];
- [request setValue:[FIRApp firebaseUserAgent]
- forHTTPHeaderField:kFIRMessagingFirebaseUserAgentKey];
- [request setValue:@([self.heartbeatLogger heartbeatCodeForToday]).stringValue
- forHTTPHeaderField:kFIRMessagingFirebaseHeartbeatKey];
- // Build form-encoded body
- NSString *deviceAuthID = self.checkinPreferences.deviceID;
- NSMutableArray<NSURLQueryItem *> *queryItems =
- [[self class] standardQueryItemsWithDeviceID:deviceAuthID scope:self.scope];
- [queryItems addObject:[NSURLQueryItem queryItemWithName:@"sender" value:self.authorizedEntity]];
- [queryItems addObject:[NSURLQueryItem queryItemWithName:@"X-subtype"
- value:self.authorizedEntity]];
- if (self.instanceID.length > 0) {
- [queryItems addObject:[NSURLQueryItem queryItemWithName:kFIRMessagingParamInstanceID
- value:self.instanceID]];
- }
- // Create query items from passed-in options
- id apnsTokenData = self.options[kFIRMessagingTokenOptionsAPNSKey];
- id apnsSandboxValue = self.options[kFIRMessagingTokenOptionsAPNSIsSandboxKey];
- if ([apnsTokenData isKindOfClass:[NSData class]] &&
- [apnsSandboxValue isKindOfClass:[NSNumber class]]) {
- NSString *APNSString = FIRMessagingAPNSTupleStringForTokenAndServerType(
- apnsTokenData, ((NSNumber *)apnsSandboxValue).boolValue);
- // The name of the query item happens to be the same as the dictionary key
- NSURLQueryItem *item = [NSURLQueryItem queryItemWithName:kFIRMessagingTokenOptionsAPNSKey
- value:APNSString];
- [queryItems addObject:item];
- }
- id firebaseAppID = self.options[kFIRMessagingTokenOptionsFirebaseAppIDKey];
- if ([firebaseAppID isKindOfClass:[NSString class]]) {
- // The name of the query item happens to be the same as the dictionary key
- NSURLQueryItem *item =
- [NSURLQueryItem queryItemWithName:kFIRMessagingTokenOptionsFirebaseAppIDKey
- value:(NSString *)firebaseAppID];
- [queryItems addObject:item];
- }
- NSURLComponents *components = [[NSURLComponents alloc] init];
- components.queryItems = queryItems;
- NSString *content = components.query;
- request.HTTPBody = [content dataUsingEncoding:NSUTF8StringEncoding];
- FIRMessagingLoggerDebug(kFIRMessagingMessageCodeTokenFetchOperationFetchRequest,
- @"Register request to %@ content: %@", FIRMessagingTokenRegisterServer(),
- content);
- FIRMessaging_WEAKIFY(self);
- void (^requestHandler)(NSData *, NSURLResponse *, NSError *) =
- ^(NSData *data, NSURLResponse *response, NSError *error) {
- FIRMessaging_STRONGIFY(self);
- [self handleResponseWithData:data response:response error:error];
- };
- NSURLSessionConfiguration *config = NSURLSessionConfiguration.defaultSessionConfiguration;
- config.timeoutIntervalForResource = 60.0f; // 1 minute
- NSURLSession *session = [NSURLSession sessionWithConfiguration:config];
- self.dataTask = [session dataTaskWithRequest:request completionHandler:requestHandler];
- [self.dataTask resume];
- }
- #pragma mark - Request Handling
- - (void)handleResponseWithData:(NSData *)data
- response:(NSURLResponse *)response
- error:(NSError *)error {
- if (error) {
- FIRMessagingLoggerDebug(kFIRMessagingMessageCodeTokenFetchOperationRequestError,
- @"Token fetch HTTP error. Error Code: %ld", (long)error.code);
- [self finishWithResult:FIRMessagingTokenOperationError token:nil error:error];
- return;
- }
- NSString *dataResponse = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- if (dataResponse.length == 0) {
- NSError *error = [NSError messagingErrorWithCode:kFIRMessagingErrorCodeUnknown
- failureReason:@"Empty response."];
- [self finishWithResult:FIRMessagingTokenOperationError token:nil error:error];
- return;
- }
- NSDictionary *parsedResponse = [self parseFetchTokenResponse:dataResponse];
- if ([parsedResponse[@"token"] length]) {
- [self finishWithResult:FIRMessagingTokenOperationSucceeded
- token:parsedResponse[@"token"]
- error:nil];
- return;
- }
- NSString *errorValue = parsedResponse[@"Error"];
- NSError *responseError = nil;
- if (errorValue.length) {
- NSArray *errorComponents = [errorValue componentsSeparatedByString:@":"];
- // HACK (Kansas replication delay), PHONE_REGISTRATION_ERROR on App
- // uninstall and reinstall.
- if ([errorComponents containsObject:@"PHONE_REGISTRATION_ERROR"]) {
- // Encountered issue http://b/27043795
- // Retry register until successful or another error encountered or a
- // certain number of tries are over.
- if (phoneRegistrationErrorRetryCount < kMaxPhoneRegistrationErrorRetryCount) {
- const int nextRetryInterval = 1 << phoneRegistrationErrorRetryCount;
- FIRMessaging_WEAKIFY(self);
- dispatch_after(
- dispatch_time(DISPATCH_TIME_NOW, (int64_t)(nextRetryInterval * NSEC_PER_SEC)),
- dispatch_get_main_queue(), ^{
- FIRMessaging_STRONGIFY(self);
- phoneRegistrationErrorRetryCount++;
- [self performTokenOperation];
- });
- return;
- }
- } else if ([errorComponents containsObject:kFIRMessaging_CMD_RST]) {
- NSString *failureReason = @"Identity is invalid. Server request identity reset.";
- FIRMessagingLoggerDebug(kFIRMessagingMessageCodeInternal001, @"%@", failureReason);
- responseError = [NSError messagingErrorWithCode:kFIRMessagingErrorCodeInvalidIdentity
- failureReason:failureReason];
- } else {
- FIRMessagingLoggerDebug(kFIRMessagingMessageCodeTokenFetchOperationRequestError,
- @"Token fetch got an error from server: %@", errorValue);
- responseError = [NSError messagingErrorWithCode:kFIRMessagingErrorCodeUnknown
- failureReason:errorValue];
- }
- }
- if (!responseError) {
- NSString *failureReason = @"Invalid fetch response, expected 'token' or 'Error' key";
- FIRMessagingLoggerDebug(kFIRMessagingMessageCodeTokenFetchOperationBadResponse, @"%@",
- failureReason);
- responseError = [NSError messagingErrorWithCode:kFIRMessagingErrorCodeUnknown
- failureReason:failureReason];
- }
- [self finishWithResult:FIRMessagingTokenOperationError token:nil error:responseError];
- }
- // expect a response e.g. "token=<reg id>\nGOOG.ttl=123"
- - (NSDictionary *)parseFetchTokenResponse:(NSString *)response {
- NSArray *lines = [response componentsSeparatedByString:@"\n"];
- NSMutableDictionary *parsedResponse = [NSMutableDictionary dictionary];
- for (NSString *line in lines) {
- NSArray *keyAndValue = [line componentsSeparatedByString:@"="];
- if ([keyAndValue count] > 1) {
- parsedResponse[keyAndValue[0]] = keyAndValue[1];
- }
- }
- return parsedResponse;
- }
- @end
|