2017-04-05 16:56:22 -04:00
|
|
|
//==============================================================================
|
|
|
|
// This file is part of Master Password.
|
|
|
|
// Copyright (c) 2011-2017, Maarten Billemont.
|
2012-05-07 22:18:01 +02:00
|
|
|
//
|
2017-04-05 16:56:22 -04:00
|
|
|
// Master Password is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2012-05-07 22:18:01 +02:00
|
|
|
//
|
2017-04-05 16:56:22 -04:00
|
|
|
// Master Password is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2012-05-07 22:18:01 +02:00
|
|
|
//
|
2017-04-05 16:56:22 -04:00
|
|
|
// You can find a copy of the GNU General Public License in the
|
|
|
|
// LICENSE file. Alternatively, see <http://www.gnu.org/licenses/>.
|
|
|
|
//==============================================================================
|
2012-05-07 22:18:01 +02:00
|
|
|
|
|
|
|
#import "MPAppDelegate_Shared.h"
|
2012-08-18 15:37:24 +02:00
|
|
|
#import "MPAppDelegate_Store.h"
|
2013-09-14 14:04:06 -04:00
|
|
|
#import "MPAppDelegate_Key.h"
|
2014-10-28 00:53:16 -04:00
|
|
|
#import "NSManagedObjectModel+KCOrderedAccessorFix.h"
|
2012-05-07 22:18:01 +02:00
|
|
|
|
2020-04-04 16:30:14 -04:00
|
|
|
#import <Countly/Countly.h>
|
|
|
|
|
2017-04-01 00:30:25 -04:00
|
|
|
@interface MPAppDelegate_Shared()
|
2014-09-21 10:29:18 -04:00
|
|
|
|
2017-04-29 23:03:50 -04:00
|
|
|
@property(strong, atomic) MPKey *key;
|
|
|
|
@property(strong, atomic) NSManagedObjectID *activeUserOID;
|
|
|
|
@property(strong, atomic) NSPersistentStoreCoordinator *storeCoordinator;
|
2014-09-21 10:29:18 -04:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2014-03-20 07:15:37 -04:00
|
|
|
@implementation MPAppDelegate_Shared
|
2012-05-11 22:45:05 +02:00
|
|
|
|
2020-03-13 12:15:24 -04:00
|
|
|
static MPAppDelegate_Shared *instance;
|
|
|
|
|
2012-05-11 22:45:05 +02:00
|
|
|
+ (MPAppDelegate_Shared *)get {
|
2012-06-08 23:46:13 +02:00
|
|
|
|
2020-03-13 12:15:24 -04:00
|
|
|
return instance;
|
2012-05-07 22:18:01 +02:00
|
|
|
}
|
|
|
|
|
2014-10-28 00:53:16 -04:00
|
|
|
- (instancetype)init {
|
|
|
|
|
2020-03-13 12:15:24 -04:00
|
|
|
if (!(self = instance = [super init]))
|
2014-10-28 00:53:16 -04:00
|
|
|
return nil;
|
|
|
|
|
|
|
|
NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil];
|
|
|
|
[model kc_generateOrderedSetAccessors];
|
|
|
|
self.storeCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model];
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2013-06-16 12:39:52 -04:00
|
|
|
- (MPUserEntity *)activeUserForMainThread {
|
2012-08-18 15:37:24 +02:00
|
|
|
|
2013-06-16 12:39:52 -04:00
|
|
|
return [self activeUserInContext:[MPAppDelegate_Shared managedObjectContextForMainThreadIfReady]];
|
2013-01-31 00:42:32 -05:00
|
|
|
}
|
|
|
|
|
2014-05-13 07:27:11 -04:00
|
|
|
- (MPUserEntity *)activeUserInContext:(NSManagedObjectContext *)context {
|
2013-01-31 00:42:32 -05:00
|
|
|
|
2014-04-06 23:34:18 -04:00
|
|
|
NSManagedObjectID *activeUserOID = self.activeUserOID;
|
2014-05-13 07:27:11 -04:00
|
|
|
if (!activeUserOID || !context)
|
2012-08-19 09:34:49 +02:00
|
|
|
return nil;
|
|
|
|
|
2014-05-13 07:27:11 -04:00
|
|
|
MPUserEntity *activeUser = [MPUserEntity existingObjectWithID:activeUserOID inContext:context];
|
|
|
|
if (!activeUser)
|
2020-04-04 16:30:14 -04:00
|
|
|
[self signOut];
|
2013-01-31 00:42:32 -05:00
|
|
|
|
|
|
|
return activeUser;
|
2012-08-18 15:37:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setActiveUser:(MPUserEntity *)activeUser {
|
|
|
|
|
2020-04-04 16:30:14 -04:00
|
|
|
NSManagedObjectID *activeUserOID = activeUser.permanentObjectID;
|
2020-04-04 19:50:37 -04:00
|
|
|
if ([self.activeUserOID isEqual:activeUserOID])
|
2020-04-04 16:30:14 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (self.key)
|
|
|
|
self.key = nil;
|
|
|
|
|
|
|
|
if ([[MPConfig get].sendInfo boolValue])
|
|
|
|
[Countly.sharedInstance userLoggedOut];
|
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:MPSignedOutNotification object:self];
|
|
|
|
|
|
|
|
self.activeUserOID = activeUserOID;
|
2012-08-18 15:37:24 +02:00
|
|
|
}
|
|
|
|
|
2014-09-21 23:11:05 -04:00
|
|
|
- (void)handleCoordinatorError:(NSError *)error {
|
|
|
|
}
|
|
|
|
|
2012-05-07 22:18:01 +02:00
|
|
|
@end
|