| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- * 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 "FirebaseMessaging/Sources/FIRMessagingSyncMessageManager.h"
- #import "FirebaseMessaging/Sources/FIRMessagingConstants.h"
- #import "FirebaseMessaging/Sources/FIRMessagingDefines.h"
- #import "FirebaseMessaging/Sources/FIRMessagingLogger.h"
- #import "FirebaseMessaging/Sources/FIRMessagingPersistentSyncMessage.h"
- #import "FirebaseMessaging/Sources/FIRMessagingRmqManager.h"
- #import "FirebaseMessaging/Sources/FIRMessagingUtilities.h"
- static const int64_t kDefaultSyncMessageTTL = 4 * 7 * 24 * 60 * 60; // 4 weeks
- // 4 MB of free space is required to persist Sync messages
- static const uint64_t kMinFreeDiskSpaceInMB = 1;
- @interface FIRMessagingSyncMessageManager ()
- @property(nonatomic, readwrite, strong) FIRMessagingRmqManager *rmqManager;
- @end
- @implementation FIRMessagingSyncMessageManager
- - (instancetype)init {
- FIRMessagingInvalidateInitializer();
- }
- - (instancetype)initWithRmqManager:(FIRMessagingRmqManager *)rmqManager {
- self = [super init];
- if (self) {
- _rmqManager = rmqManager;
- }
- return self;
- }
- - (void)removeExpiredSyncMessages {
- [self.rmqManager deleteExpiredOrFinishedSyncMessages];
- }
- - (BOOL)didReceiveAPNSSyncMessage:(NSDictionary *)message {
- NSString *rmqID = message[kFIRMessagingMessageIDKey];
- if (![rmqID length]) {
- FIRMessagingLoggerError(kFIRMessagingMessageCodeSyncMessageManager002,
- @"Invalid nil rmqID for sync message.");
- return NO;
- }
- FIRMessagingPersistentSyncMessage *persistentMessage =
- [self.rmqManager querySyncMessageWithRmqID:rmqID];
- if (!persistentMessage) {
- // Do not persist the new message if we don't have enough disk space
- uint64_t freeDiskSpace = FIRMessagingGetFreeDiskSpaceInMB();
- if (freeDiskSpace < kMinFreeDiskSpaceInMB) {
- return NO;
- }
- int64_t expirationTime = [[self class] expirationTimeForSyncMessage:message];
- [self.rmqManager saveSyncMessageWithRmqID:rmqID expirationTime:expirationTime];
- return NO;
- }
- if (!persistentMessage.apnsReceived) {
- persistentMessage.apnsReceived = YES;
- [self.rmqManager updateSyncMessageViaAPNSWithRmqID:rmqID];
- }
- // Already received this message either via MCS or APNS.
- return YES;
- }
- + (int64_t)expirationTimeForSyncMessage:(NSDictionary *)message {
- int64_t ttl = kDefaultSyncMessageTTL;
- if (message[kFIRMessagingMessageSyncMessageTTLKey]) {
- ttl = [message[kFIRMessagingMessageSyncMessageTTLKey] longLongValue];
- }
- int64_t currentTime = FIRMessagingCurrentTimestampInSeconds();
- return currentTime + ttl;
- }
- @end
|