/* * Copyright 2020 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 "FirebaseAppCheck/Sources/Core/Storage/FIRAppCheckStoredToken.h" static NSString *const kTokenKey = @"token"; static NSString *const kExpirationDateKey = @"expirationDate"; static NSString *const kReceivedAtDateKey = @"receivedAtDate"; static NSString *const kStorageVersionKey = @"storageVersion"; static const NSInteger kStorageVersion = 2; NS_ASSUME_NONNULL_BEGIN @implementation FIRAppCheckStoredToken - (NSInteger)storageVersion { return kStorageVersion; } + (BOOL)supportsSecureCoding { return YES; } - (void)encodeWithCoder:(NSCoder *)coder { [coder encodeObject:self.token forKey:kTokenKey]; [coder encodeObject:self.expirationDate forKey:kExpirationDateKey]; [coder encodeObject:self.receivedAtDate forKey:kReceivedAtDateKey]; [coder encodeInteger:self.storageVersion forKey:kStorageVersionKey]; } - (nullable instancetype)initWithCoder:(NSCoder *)coder { self = [super init]; if (self) { NSInteger decodedStorageVersion = [coder decodeIntegerForKey:kStorageVersionKey]; if (decodedStorageVersion > kStorageVersion) { // TODO: Log a message. } _token = [coder decodeObjectOfClass:[NSString class] forKey:kTokenKey]; _expirationDate = [coder decodeObjectOfClass:[NSDate class] forKey:kExpirationDateKey]; _receivedAtDate = [coder decodeObjectOfClass:[NSDate class] forKey:kReceivedAtDateKey]; } return self; } @end NS_ASSUME_NONNULL_END