2014-07-30 08:05:36 +02:00
|
|
|
//
|
2018-01-26 22:51:01 +01:00
|
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
2014-07-30 08:05:36 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
#import "VersionMigrations.h"
|
2015-01-11 17:48:18 +01:00
|
|
|
#import "Environment.h"
|
2015-08-23 00:00:39 +02:00
|
|
|
#import "LockInteractionController.h"
|
2016-09-28 18:21:14 +02:00
|
|
|
#import "OWSDatabaseMigrationRunner.h"
|
2015-01-11 17:48:18 +01:00
|
|
|
#import "SignalKeyingStorage.h"
|
2017-12-04 22:09:26 +01:00
|
|
|
#import <SignalServiceKit/AppContext.h>
|
2017-06-15 19:43:18 +02:00
|
|
|
#import <SignalServiceKit/AppVersion.h>
|
2017-11-28 19:46:26 +01:00
|
|
|
#import <SignalServiceKit/NSUserDefaults+OWS.h>
|
2018-03-02 04:49:05 +01:00
|
|
|
#import <SignalServiceKit/OWSRequestFactory.h>
|
2017-11-28 19:46:26 +01:00
|
|
|
#import <SignalServiceKit/TSAccountManager.h>
|
|
|
|
#import <SignalServiceKit/TSNetworkManager.h>
|
2017-12-19 03:42:50 +01:00
|
|
|
#import <YapDatabase/YapDatabase.h>
|
2015-03-12 00:46:31 +01:00
|
|
|
|
2018-01-30 17:27:44 +01:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
#define NEEDS_TO_REGISTER_PUSH_KEY @"Register For Push"
|
2015-08-23 00:00:39 +02:00
|
|
|
#define NEEDS_TO_REGISTER_ATTRIBUTES @"Register Attributes"
|
2015-03-12 00:46:31 +01:00
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
@interface SignalKeyingStorage (VersionMigrations)
|
2015-01-11 17:48:18 +01:00
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
+ (void)storeString:(NSString *)string forKey:(NSString *)key;
|
|
|
|
+ (void)storeData:(NSData *)data forKey:(NSString *)key;
|
2016-09-28 18:21:14 +02:00
|
|
|
|
2015-01-11 17:48:18 +01:00
|
|
|
@end
|
|
|
|
|
2014-07-30 08:05:36 +02:00
|
|
|
@implementation VersionMigrations
|
|
|
|
|
2015-04-25 16:59:32 +02:00
|
|
|
#pragma mark Utility methods
|
|
|
|
|
2018-01-30 17:27:44 +01:00
|
|
|
+ (void)performUpdateCheckWithCompletion:(VersionMigrationCompletion)completion
|
2016-08-01 00:25:07 +02:00
|
|
|
{
|
2018-04-23 21:49:20 +02:00
|
|
|
DDLogInfo(@"%@ %s", self.logTag, __PRETTY_FUNCTION__);
|
|
|
|
|
2017-03-13 14:33:58 +01:00
|
|
|
// performUpdateCheck must be invoked after Environment has been initialized because
|
|
|
|
// upgrade process may depend on Environment.
|
2017-12-04 16:35:47 +01:00
|
|
|
OWSAssert([Environment current]);
|
2018-01-30 17:27:44 +01:00
|
|
|
OWSAssert(completion);
|
2017-03-13 14:33:58 +01:00
|
|
|
|
2017-06-15 19:43:18 +02:00
|
|
|
NSString *previousVersion = AppVersion.instance.lastAppVersion;
|
|
|
|
NSString *currentVersion = AppVersion.instance.currentAppVersion;
|
2016-11-14 18:47:23 +01:00
|
|
|
|
2017-11-08 20:04:51 +01:00
|
|
|
DDLogInfo(@"%@ Checking migrations. currentVersion: %@, lastRanVersion: %@",
|
|
|
|
self.logTag,
|
|
|
|
currentVersion,
|
|
|
|
previousVersion);
|
2016-11-14 18:47:23 +01:00
|
|
|
|
2015-04-25 16:59:32 +02:00
|
|
|
if (!previousVersion) {
|
2016-08-01 00:25:07 +02:00
|
|
|
DDLogInfo(@"No previous version found. Probably first launch since install - nothing to migrate.");
|
2016-09-28 18:21:14 +02:00
|
|
|
OWSDatabaseMigrationRunner *runner =
|
2018-03-05 15:30:58 +01:00
|
|
|
[[OWSDatabaseMigrationRunner alloc] initWithPrimaryStorage:[OWSPrimaryStorage sharedManager]];
|
2016-09-28 18:21:14 +02:00
|
|
|
[runner assumeAllExistingMigrationsRun];
|
2018-01-30 17:27:44 +01:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
completion();
|
|
|
|
});
|
2015-04-25 16:59:32 +02:00
|
|
|
return;
|
|
|
|
}
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2016-11-14 18:47:23 +01:00
|
|
|
if ([self isVersion:previousVersion atLeast:@"1.0.2" andLessThan:@"2.0"]) {
|
|
|
|
DDLogError(@"Migrating from RedPhone no longer supported. Quitting.");
|
|
|
|
// Not translating these as so few are affected.
|
|
|
|
UIAlertController *alertController = [UIAlertController
|
|
|
|
alertControllerWithTitle:@"You must reinstall Signal"
|
|
|
|
message:
|
|
|
|
@"Sorry, your installation is too old for us to update. You'll have to start fresh."
|
|
|
|
preferredStyle:UIAlertControllerStyleAlert];
|
|
|
|
|
|
|
|
UIAlertAction *quitAction = [UIAlertAction actionWithTitle:@"Quit"
|
|
|
|
style:UIAlertActionStyleDefault
|
|
|
|
handler:^(UIAlertAction *_Nonnull action) {
|
2017-02-14 17:05:59 +01:00
|
|
|
[DDLog flushLog];
|
2016-11-14 18:47:23 +01:00
|
|
|
exit(0);
|
|
|
|
}];
|
|
|
|
[alertController addAction:quitAction];
|
|
|
|
|
2017-12-04 22:09:26 +01:00
|
|
|
[CurrentAppContext().frontmostViewController presentViewController:alertController animated:YES completion:nil];
|
2015-04-25 16:59:32 +02:00
|
|
|
}
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2015-09-01 19:22:08 +02:00
|
|
|
if ([self isVersion:previousVersion atLeast:@"2.0.0" andLessThan:@"2.1.70"] && [TSAccountManager isRegistered]) {
|
2015-04-25 16:59:32 +02:00
|
|
|
[self clearVideoCache];
|
2015-08-23 00:00:39 +02:00
|
|
|
[self blockingAttributesUpdate];
|
2015-04-28 14:41:50 +02:00
|
|
|
}
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2015-11-29 01:14:49 +01:00
|
|
|
if ([self isVersion:previousVersion atLeast:@"2.0.0" andLessThan:@"2.3.0"] && [TSAccountManager isRegistered]) {
|
2016-04-18 20:17:08 +02:00
|
|
|
[self clearBloomFilterCache];
|
2015-11-29 01:14:49 +01:00
|
|
|
}
|
2016-08-01 00:25:07 +02:00
|
|
|
|
2018-04-24 19:15:11 +02:00
|
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
|
|
[[[OWSDatabaseMigrationRunner alloc] initWithPrimaryStorage:[OWSPrimaryStorage sharedManager]]
|
|
|
|
runAllOutstandingWithCompletion:completion];
|
|
|
|
});
|
2017-06-15 19:43:18 +02:00
|
|
|
}
|
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
+ (BOOL)isVersion:(NSString *)thisVersionString
|
|
|
|
atLeast:(NSString *)openLowerBoundVersionString
|
2017-12-04 18:38:44 +01:00
|
|
|
andLessThan:(NSString *)closedUpperBoundVersionString
|
|
|
|
{
|
2015-12-22 12:45:09 +01:00
|
|
|
return [self isVersion:thisVersionString atLeast:openLowerBoundVersionString] &&
|
2017-12-04 18:38:44 +01:00
|
|
|
[self isVersion:thisVersionString lessThan:closedUpperBoundVersionString];
|
2015-04-25 16:59:32 +02:00
|
|
|
}
|
|
|
|
|
2017-12-04 18:38:44 +01:00
|
|
|
+ (BOOL)isVersion:(NSString *)thisVersionString atLeast:(NSString *)thatVersionString
|
|
|
|
{
|
2015-04-25 16:59:32 +02:00
|
|
|
return [thisVersionString compare:thatVersionString options:NSNumericSearch] != NSOrderedAscending;
|
|
|
|
}
|
|
|
|
|
2017-12-04 18:38:44 +01:00
|
|
|
+ (BOOL)isVersion:(NSString *)thisVersionString lessThan:(NSString *)thatVersionString
|
|
|
|
{
|
2015-04-25 16:59:32 +02:00
|
|
|
return [thisVersionString compare:thatVersionString options:NSNumericSearch] == NSOrderedAscending;
|
|
|
|
}
|
|
|
|
|
2017-07-24 17:06:19 +02:00
|
|
|
#pragma mark Upgrading to 2.1 - Removing video cache folder
|
2015-03-12 00:46:31 +01:00
|
|
|
|
2017-12-04 18:38:44 +01:00
|
|
|
+ (void)clearVideoCache
|
|
|
|
{
|
|
|
|
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
|
2015-04-25 16:59:32 +02:00
|
|
|
NSString *basePath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil;
|
2017-12-04 18:38:44 +01:00
|
|
|
basePath = [basePath stringByAppendingPathComponent:@"videos"];
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2015-04-25 16:59:32 +02:00
|
|
|
NSError *error;
|
2015-12-22 12:45:09 +01:00
|
|
|
if ([[NSFileManager defaultManager] fileExistsAtPath:basePath]) {
|
2015-04-25 16:59:32 +02:00
|
|
|
[NSFileManager.defaultManager removeItemAtPath:basePath error:&error];
|
|
|
|
}
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2015-08-23 00:00:39 +02:00
|
|
|
if (error) {
|
2017-12-04 18:38:44 +01:00
|
|
|
DDLogError(
|
|
|
|
@"An error occured while removing the videos cache folder from old location: %@", error.debugDescription);
|
2015-08-23 00:00:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark Upgrading to 2.1.3 - Adding VOIP flag on TS Server
|
|
|
|
|
2017-12-04 18:38:44 +01:00
|
|
|
+ (void)blockingAttributesUpdate
|
|
|
|
{
|
2015-12-22 12:45:09 +01:00
|
|
|
LIControllerBlockingOperation blockingOperation = ^BOOL(void) {
|
2017-11-28 19:46:26 +01:00
|
|
|
[[NSUserDefaults appUserDefaults] setObject:@YES forKey:NEEDS_TO_REGISTER_ATTRIBUTES];
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2017-11-28 19:46:26 +01:00
|
|
|
__block dispatch_semaphore_t sema = dispatch_semaphore_create(0);
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2017-11-28 19:46:26 +01:00
|
|
|
__block BOOL success;
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2018-03-02 04:49:05 +01:00
|
|
|
TSRequest *request = [OWSRequestFactory updateAttributesRequestWithManualMessageFetching:NO];
|
2017-11-28 19:46:26 +01:00
|
|
|
[[TSNetworkManager sharedManager] makeRequest:request
|
|
|
|
success:^(NSURLSessionDataTask *task, id responseObject) {
|
|
|
|
success = YES;
|
|
|
|
dispatch_semaphore_signal(sema);
|
|
|
|
}
|
|
|
|
failure:^(NSURLSessionDataTask *task, NSError *error) {
|
|
|
|
if (!IsNSErrorNetworkFailure(error)) {
|
|
|
|
OWSProdError([OWSAnalyticsEvents errorUpdateAttributesRequestFailed]);
|
|
|
|
}
|
|
|
|
success = NO;
|
|
|
|
DDLogError(@"Updating attributess failed with error: %@", error.description);
|
|
|
|
dispatch_semaphore_signal(sema);
|
|
|
|
}];
|
2015-12-22 12:45:09 +01:00
|
|
|
|
|
|
|
|
2017-11-28 19:46:26 +01:00
|
|
|
dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER);
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2017-11-28 19:46:26 +01:00
|
|
|
return success;
|
2015-08-23 00:00:39 +02:00
|
|
|
};
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2015-08-23 00:00:39 +02:00
|
|
|
LIControllerRetryBlock retryBlock = [LockInteractionController defaultNetworkRetry];
|
2015-12-22 12:45:09 +01:00
|
|
|
|
2015-08-23 00:00:39 +02:00
|
|
|
[LockInteractionController performBlock:blockingOperation
|
|
|
|
completionBlock:^{
|
2017-11-28 19:46:26 +01:00
|
|
|
[[NSUserDefaults appUserDefaults] removeObjectForKey:NEEDS_TO_REGISTER_ATTRIBUTES];
|
|
|
|
DDLogWarn(@"Successfully updated attributes.");
|
2015-08-23 00:00:39 +02:00
|
|
|
}
|
|
|
|
retryBlock:retryBlock
|
|
|
|
usesNetwork:YES];
|
2015-04-25 16:59:32 +02:00
|
|
|
}
|
|
|
|
|
2016-04-18 20:17:08 +02:00
|
|
|
#pragma mark Upgrading to 2.3.0
|
|
|
|
|
|
|
|
// We removed bloom filter contact discovery. Clean up any local bloom filter data.
|
2017-12-04 18:38:44 +01:00
|
|
|
+ (void)clearBloomFilterCache
|
|
|
|
{
|
|
|
|
NSFileManager *fm = [NSFileManager defaultManager];
|
|
|
|
NSArray *cachesDir = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
|
2016-04-18 20:17:08 +02:00
|
|
|
NSString *bloomFilterPath = [[cachesDir objectAtIndex:0] stringByAppendingPathComponent:@"bloomfilter"];
|
|
|
|
|
|
|
|
if ([fm fileExistsAtPath:bloomFilterPath]) {
|
|
|
|
NSError *deleteError;
|
|
|
|
if ([fm removeItemAtPath:bloomFilterPath error:&deleteError]) {
|
|
|
|
DDLogInfo(@"Successfully removed bloom filter cache.");
|
2018-03-05 15:30:58 +01:00
|
|
|
[OWSPrimaryStorage.dbReadWriteConnection
|
2017-07-05 22:58:25 +02:00
|
|
|
readWriteWithBlock:^(YapDatabaseReadWriteTransaction *_Nonnull transaction) {
|
|
|
|
[transaction removeAllObjectsInCollection:@"TSRecipient"];
|
|
|
|
}];
|
2016-04-18 20:17:08 +02:00
|
|
|
DDLogInfo(@"Removed all TSRecipient records - will be replaced by SignalRecipients at next address sync.");
|
|
|
|
} else {
|
|
|
|
DDLogError(@"Failed to remove bloom filter cache with error: %@", deleteError.localizedDescription);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
DDLogDebug(@"No bloom filter cache to remove.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-30 08:05:36 +02:00
|
|
|
@end
|
2018-01-30 17:27:44 +01:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|