66 lines
1.9 KiB
Objective-C
66 lines
1.9 KiB
Objective-C
//
|
|
// MGMUser.h
|
|
// MGMUsers
|
|
//
|
|
// Created by Mr. Gecko on 7/4/10.
|
|
// Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
|
|
//
|
|
|
|
#if TARGET_OS_IPHONE
|
|
#import <UIKit/UIKit.h>
|
|
#else
|
|
#import <Cocoa/Cocoa.h>
|
|
#endif
|
|
|
|
extern NSString * const MGMUserStartNotification;
|
|
extern NSString * const MGMUserDoneNotification;
|
|
extern NSString * const MGMUserUpdatedNotification;
|
|
extern NSString * const MGMUserID;
|
|
extern NSString * const MGMUserName;
|
|
|
|
@class MGMUser, MGMKeychainItem, MGMHTTPCookieStorage;
|
|
|
|
@protocol MGMUserDelegate <NSObject>
|
|
- (BOOL)isUserDone:(MGMUser *)theUser;
|
|
@end
|
|
|
|
@interface MGMUser : NSObject {
|
|
@private
|
|
id<MGMUserDelegate> delegate;
|
|
MGMKeychainItem *keychainItem;
|
|
NSMutableDictionary *settings;
|
|
}
|
|
+ (NSString *)applicationSupportPath;
|
|
+ (NSString *)cachePath;
|
|
+ (NSString *)cookieStoragePath;
|
|
+ (MGMHTTPCookieStorage *)cookieStorage;
|
|
+ (NSMutableDictionary *)usersPlist;
|
|
+ (NSArray *)users;
|
|
+ (NSArray *)userNames;
|
|
+ (NSArray *)lastUsers;
|
|
+ (MGMUser *)userWithName:(NSString *)theName;
|
|
+ (MGMUser *)userWithID:(NSString *)theID;
|
|
+ (MGMUser *)createUserWithName:(NSString *)theName password:(NSString *)thePassword;
|
|
- (id)initWithSettings:(NSDictionary *)theSettings;
|
|
- (BOOL)isEqual:(id)theObject;
|
|
- (id<MGMUserDelegate>)delegate;
|
|
- (void)setDelegate:(id)theDelegate;
|
|
- (MGMKeychainItem *)keychainItem;
|
|
- (void)start;
|
|
- (BOOL)isStarted;
|
|
- (id)settingForKey:(NSString *)theKey;
|
|
- (void)setSetting:(id)theSetting forKey:(NSString *)theKey;
|
|
- (BOOL)boolForKey:(NSString *)theKey;
|
|
- (void)setBool:(BOOL)theBool forKey:(NSString *)theKey;
|
|
- (NSString *)settingsPath;
|
|
- (NSDictionary *)settings;
|
|
- (void)registerSettings:(NSDictionary *)theSettings;
|
|
- (NSString *)supportPath;
|
|
- (NSString *)cachePath;
|
|
- (NSString *)password;
|
|
- (void)setPassword:(NSString *)thePassword;
|
|
- (NSString *)cookieStoragePath;
|
|
- (MGMHTTPCookieStorage *)cookieStorage;
|
|
- (void)done;
|
|
- (void)remove;
|
|
@end |