AutorÃa | Ultima modificación | Ver Log |
// 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 "Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h"#import "Crashlytics/Crashlytics/Components/FIRCLSApplication.h"#import "Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h"#import "Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h"#import "Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h"#import "Crashlytics/Shared/FIRCLSConstants.h"@interface FIRCLSNetworkOperation ()@property(nonatomic, strong, readonly) NSString *googleAppID;@end@implementation FIRCLSNetworkOperation- (instancetype)initWithGoogleAppID:(NSString *)googleAppIDtoken:(FIRCLSDataCollectionToken *)token {NSParameterAssert(googleAppID);if (!googleAppID) {return nil;}self = [super init];if (self) {_googleAppID = googleAppID;_token = token;}return self;}- (void)startWithToken:(FIRCLSDataCollectionToken *)token {// Settings is considered data collection, so we must only// call this with a valid tokenif (![token isValid]) {FIRCLSErrorLog(@"Skipping network operation with invalid data collection token");return;}[super start];}- (NSMutableURLRequest *)mutableRequestWithDefaultHTTPHeaderFieldsAndTimeoutForURL:(NSURL *)url {return [self mutableRequestWithDefaultHTTPHeadersForURL:url timeout:10.0];}- (NSMutableURLRequest *)mutableRequestWithDefaultHTTPHeadersForURL:(NSURL *)urltimeout:(NSTimeInterval)timeout {NSMutableURLRequest *request =[NSMutableURLRequest requestWithURL:urlcachePolicy:NSURLRequestReloadIgnoringLocalCacheDatatimeoutInterval:timeout];NSString *localeId = self.localeIdentifier;[request setValue:self.userAgentString forHTTPHeaderField:FIRCLSNetworkUserAgent];[request setValue:FIRCLSNetworkUTF8 forHTTPHeaderField:FIRCLSNetworkAcceptCharset];[request setValue:localeId forHTTPHeaderField:FIRCLSNetworkAcceptLanguage];[request setValue:localeId forHTTPHeaderField:FIRCLSNetworkContentLanguage];[request setValue:FIRCLSDeveloperToken forHTTPHeaderField:FIRCLSNetworkCrashlyticsDeveloperToken];[request setValue:FIRCLSApplicationGetSDKBundleID()forHTTPHeaderField:FIRCLSNetworkCrashlyticsAPIClientId];[request setValue:FIRCLSSDKVersion()forHTTPHeaderField:FIRCLSNetworkCrashlyticsAPIClientDisplayVersion];[request setValue:self.googleAppID forHTTPHeaderField:FIRCLSNetworkCrashlyticsGoogleAppId];return request;}- (NSString *)userAgentString {return[NSString stringWithFormat:@"%@/%@", FIRCLSApplicationGetSDKBundleID(), FIRCLSSDKVersion()];}- (NSString *)localeIdentifier {return NSLocale.currentLocale.localeIdentifier;}@end