blob: 6d5e818e95cf9dd755c280d3a21a26bd73438113 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//
// User.m
// Juick
//
// Created by Vitaly on 01.02.14.
// Copyright (c) 2014 com.juick. All rights reserved.
//
#import "User.h"
#import "APIClient.h"
@implementation User
+ (User *) fromJSON:(NSDictionary *)jsonData {
User *user = [User new];
user.uid = jsonData[@"uid"];
user.uname = jsonData[@"uname"];
user.avatar = jsonData[@"avatar"];
return user;
}
+(BOOL) isAuthenticated {
NSString *password = [SAMKeychain passwordForService:[[NSBundle mainBundle] bundleIdentifier] account:@"com.juick.password"];
return password != nil;
}
+(void) throwUnableToLogin:(UIViewController *)view {
UIAlertController *alert = [UIAlertController new];
[alert setTitle:@"Error"];
[alert setMessage:@"Unable to login, check username/password, or network connectivity"];
[alert addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleCancel handler:nil]];
UIPopoverPresentationController *popover = [alert popoverPresentationController];
if (popover) {
popover.sourceView = view.view;
popover.sourceRect = CGRectMake(CGRectGetMidX(view.view.bounds), CGRectGetMidY(view.view.bounds), 0, 0);
popover.permittedArrowDirections = UIPopoverArrowDirectionDown;
}
[view presentViewController:alert animated:YES completion:nil];
}
@end
|