2012-05-07 20:18:01 +00:00
|
|
|
//
|
|
|
|
// MPAppDelegate.m
|
|
|
|
// MasterPassword
|
|
|
|
//
|
|
|
|
// Created by Maarten Billemont on 24/11/11.
|
|
|
|
// Copyright (c) 2011 Lyndir. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "MPAppDelegate_Shared.h"
|
2012-08-18 13:37:24 +00:00
|
|
|
#import "MPAppDelegate_Store.h"
|
2013-09-14 18:04:06 +00:00
|
|
|
#import "MPAppDelegate_Key.h"
|
2014-10-28 04:53:16 +00:00
|
|
|
#import "NSManagedObjectModel+KCOrderedAccessorFix.h"
|
2012-05-07 20:18:01 +00:00
|
|
|
|
2017-04-01 04:30:25 +00:00
|
|
|
@interface MPAppDelegate_Shared()
|
2014-09-21 14:29:18 +00:00
|
|
|
|
|
|
|
@property(strong, nonatomic) MPKey *key;
|
|
|
|
@property(strong, nonatomic) NSManagedObjectID *activeUserOID;
|
2014-10-28 04:53:16 +00:00
|
|
|
@property(strong, nonatomic) NSPersistentStoreCoordinator *storeCoordinator;
|
2014-09-21 14:29:18 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2014-03-20 11:15:37 +00:00
|
|
|
@implementation MPAppDelegate_Shared
|
2012-05-11 20:45:05 +00:00
|
|
|
|
|
|
|
+ (MPAppDelegate_Shared *)get {
|
2012-06-08 21:46:13 +00:00
|
|
|
|
2012-05-11 15:04:51 +00:00
|
|
|
#if TARGET_OS_IPHONE
|
2013-09-18 04:21:52 +00:00
|
|
|
return (MPAppDelegate_Shared *)UIApp.delegate;
|
2012-05-07 20:18:01 +00:00
|
|
|
#elif defined (__MAC_OS_X_VERSION_MIN_REQUIRED)
|
2012-05-11 20:45:05 +00:00
|
|
|
return (MPAppDelegate_Shared *)[NSApplication sharedApplication].delegate;
|
2012-05-07 20:18:01 +00:00
|
|
|
#else
|
|
|
|
#error Unsupported OS.
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-10-28 04:53:16 +00:00
|
|
|
- (instancetype)init {
|
|
|
|
|
|
|
|
if (!(self = [super init]))
|
|
|
|
return nil;
|
|
|
|
|
|
|
|
NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil];
|
|
|
|
[model kc_generateOrderedSetAccessors];
|
|
|
|
self.storeCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model];
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2013-06-16 16:39:52 +00:00
|
|
|
- (MPUserEntity *)activeUserForMainThread {
|
2012-08-18 13:37:24 +00:00
|
|
|
|
2013-06-16 16:39:52 +00:00
|
|
|
return [self activeUserInContext:[MPAppDelegate_Shared managedObjectContextForMainThreadIfReady]];
|
2013-01-31 05:42:32 +00:00
|
|
|
}
|
|
|
|
|
2014-05-13 11:27:11 +00:00
|
|
|
- (MPUserEntity *)activeUserInContext:(NSManagedObjectContext *)context {
|
2013-01-31 05:42:32 +00:00
|
|
|
|
2014-04-07 03:34:18 +00:00
|
|
|
NSManagedObjectID *activeUserOID = self.activeUserOID;
|
2014-05-13 11:27:11 +00:00
|
|
|
if (!activeUserOID || !context)
|
2012-08-19 07:34:49 +00:00
|
|
|
return nil;
|
|
|
|
|
2014-05-13 11:27:11 +00:00
|
|
|
MPUserEntity *activeUser = [MPUserEntity existingObjectWithID:activeUserOID inContext:context];
|
|
|
|
if (!activeUser)
|
2013-09-14 18:04:06 +00:00
|
|
|
[self signOutAnimated:YES];
|
2013-01-31 05:42:32 +00:00
|
|
|
|
|
|
|
return activeUser;
|
2012-08-18 13:37:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setActiveUser:(MPUserEntity *)activeUser {
|
|
|
|
|
2013-04-30 04:32:30 +00:00
|
|
|
NSError *error;
|
|
|
|
if (activeUser.objectID.isTemporaryID && ![activeUser.managedObjectContext obtainPermanentIDsForObjects:@[ activeUser ] error:&error])
|
2017-04-01 04:30:25 +00:00
|
|
|
err( @"Failed to obtain a permanent object ID after setting active user: %@", [error fullDescription] );
|
2013-04-30 04:32:30 +00:00
|
|
|
|
2014-03-20 11:15:37 +00:00
|
|
|
self.activeUserOID = activeUser.objectID;
|
2012-08-18 13:37:24 +00:00
|
|
|
}
|
|
|
|
|
2014-09-22 03:11:05 +00:00
|
|
|
- (void)handleCoordinatorError:(NSError *)error {
|
|
|
|
}
|
|
|
|
|
2012-05-07 20:18:01 +00:00
|
|
|
@end
|