-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSplashViewController.m
396 lines (276 loc) · 14.1 KB
/
SplashViewController.m
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
//
// SplashViewController.m
// Parodize
//
// Created by administrator on 09/10/15.
// Copyright (c) 2015 Parodize. All rights reserved.
//
#import "SplashViewController.h"
#import <QuartzCore/QuartzCore.h>
#import "SWRevealViewController.h"
#import "SignUpViewController.h"
#import "SignUpViewController.h"
#import "User_Profile.h"
#import "HomeViewController.h"
#import "ProfileImageViewController.h"
@interface SplashViewController ()
{
// UIImageView *pdImage;
BOOL side2Visible;
NSMutableDictionary *fbDetails;
BOOL isError;
}
@end
@implementation SplashViewController
@synthesize fbButton,twtrButton,emailButton,loginName,loginIndicatorView,appDelegate;
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tabAction:) name:@"SuccessSignUp" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tabAction:) name:@"UserNameUpdate" object:nil];
appDelegate=(AppDelegate *)[[UIApplication sharedApplication] delegate];
// self.view.backgroundColor = [[Context contextSharedManager]
// setBackgroundForView:self.view withImageName:@"pd_Background"];
loginName.hidden=YES;
loginIndicatorView.hidden=YES;
loginName.hidden=YES;
loginName.text=@"";
[loginIndicatorView stopAnimating];
[self roundedCorners:twtrButton];
[self roundedCorners:emailButton];
// [self animateIcon];
}
-(void)viewWillAppear:(BOOL)animated
{
[[UITabBar appearance] setBackgroundImage:[[UIImage alloc] init]];
[[UITabBar appearance] setShadowImage:[[UIImage alloc] init]];
}
-(void)roundedCorners:(UIButton *)sender
{
sender.layer.cornerRadius=2;
sender.layer.masksToBounds=YES;
}
- (void)loginButton:(FBSDKLoginButton *)loginButton didCompleteWithResult:(FBSDKLoginManagerLoginResult *)result error:(NSError *)error;
{
if (error)
{
NSLog(@"%@",error);
}
else if (result.isCancelled)
{
NSLog(@"Cancelled");
}
else
{
NSMutableDictionary* parameters = [NSMutableDictionary dictionary];
[parameters setValue:@"id,name,email" forKey:@"fields"];
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:parameters]
startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result, NSError *error) {
NSLog(@"%@",result[@"id"]);
if (error)
{
}
else
{
}
//userDict=(NSMutableDictionary *)result;
}];
}
}
- (void)loginButtonDidLogOut:(FBSDKLoginButton *)loginButton
{
}
- (IBAction)tabAction:(id)sender
{
// loginView.hidden=YES;
[self showActivityWithMessage:nil];
[[DataManager sharedDataManager] requestProfileDetails:nil forSender:self];
}
-(void)loginWithFirstName:(NSString *)firstName lastName:(NSString *)lastName forEmail:(NSString *)email
{
[loginIndicatorView startAnimating];
if (firstName.length>0) {
if (lastName.length>0) {
loginName.text=[NSString stringWithFormat:@"Login as %@ %@",firstName,lastName];
}
else
loginName.text=[NSString stringWithFormat:@"Login as %@",firstName];
}else
{
loginName.text=[NSString stringWithFormat:@"Login as %@",email];
}
loginName.hidden=NO;
loginIndicatorView.hidden=NO;
[loginIndicatorView startAnimating];
// loginView.hidden=YES;
}
- (IBAction)emailAction:(id)sender
{
UIStoryboard *storyBoard=[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]];
SignUpViewController *signUpVC = [storyBoard instantiateViewControllerWithIdentifier:@"SignInIdentifier"];
UINavigationController *navigationController =
[[UINavigationController alloc] initWithRootViewController:signUpVC];
[self presentViewController:navigationController animated:YES completion:nil];
}
- (IBAction)loginFaceBookAction:(id)sender {
[self showActivityWithMessage:nil];
NSArray *permissionsArray = @[ @"user_about_me",@"email", @"user_relationships", @"user_birthday", @"user_location",@"user_hometown",@"public_profile",@"user_friends"];
FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init];
[login
logInWithReadPermissions: permissionsArray
fromViewController:self
handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) {
if (error) {
NSLog(@"Process error");
[self hideActivity];
} else if (result.isCancelled) {
NSLog(@"Cancelled");
[self hideActivity];
} else {
NSLog(@"Logged in");
NSLog(@"%@",result);
NSMutableDictionary* parameters = [NSMutableDictionary dictionary];
[parameters setValue:@"id,name,email, first_name, last_name, gender" forKey:@"fields"];
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:parameters]
startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id results, NSError *error) {
NSLog(@"%@",results);
// NSDictionary *resultDict=results;
NSUserDefaults *sharedUserDefaults = [NSUserDefaults standardUserDefaults];
if (fbDetails.count>0) {
[fbDetails removeAllObjects];
fbDetails=nil;
}
fbDetails=[[NSMutableDictionary alloc]init];
[fbDetails setValue:[results objectForKey:@"first_name"] forKey:@"userFirstName"];
[fbDetails setValue:[results objectForKey:@"last_name"] forKey:@"userLastName"];
[fbDetails setValue:[results objectForKey:@"email"] forKey:@"userEmail"];
[fbDetails setValue:[results objectForKey:@"id"] forKey:@"userFbID"];
[fbDetails setValue:[NSString stringWithFormat:@"https://graph.facebook.com/%@/picture?type=large",[results objectForKey:@"id"]] forKey:@"profile_picture_URL"];
[sharedUserDefaults setValue:fbDetails forKey:@"profile"];
[sharedUserDefaults setBool:YES forKey:@"fb_login"];
NSString *tokenString=result.token.tokenString;
[self invokeCloudGetUserRegisteration:[NSDictionary dictionaryWithObjectsAndKeys:[results objectForKey:@"first_name"],@"firstname",[results objectForKey:@"last_name"],@"lastname",[results objectForKey:@"email"],@"email",[results objectForKey:@"id"],@"fbid",[results objectForKey:@"gender"],@"gender",[NSString stringWithFormat:@"https://graph.facebook.com/%@/picture?type=large",[results objectForKey:@"id"]],@"profilePictureURL",tokenString,@"fb_accesstoken", nil]];
}];
}
}];
}
-(void)invokeCloudGetUserRegisteration:(NSDictionary *)profileDict {
[[DataManager sharedDataManager] registerFacebookAccount:profileDict forSender:self];
}
#pragma mark DataManagerDelegate Methods
-(void) didCloudGetUserRegisterationRequest:(NSMutableDictionary *) dataDictionaray {
NSLog(@"Yahooooo... \n %@",dataDictionaray);
if ([dataDictionaray objectForKey:RESPONSE_ERROR]) {
[self hideActivity];
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Error" message:[dataDictionaray objectForKey:RESPONSE_ERROR] preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alertController addAction:ok];
[self presentViewController:alertController animated:YES completion:nil];
}
else
{
NSMutableDictionary *responseDict=[[dataDictionaray valueForKey:RESPONSE_SUCCESS] mutableCopy];
[responseDict removeObjectForKey:@"notifications"];
NSString *userStr=[responseDict objectForKey:@"username"];
[User_Profile saveUserProfile:responseDict withCompletionBlock:^(BOOL flag,NSString *firstName,NSString *lastName,NSString *email) {
if (flag) {
if (userStr.length>0) {
//[self loginWithFirstName:firstName lastName:lastName forEmail:email];
[appDelegate sendDeviceToken];
[[DataManager sharedDataManager] requestProfileDetails:nil forSender:self];
}else{
[self hideActivity];
UIStoryboard *storyBoard=[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]];
ProfileImageViewController *profileView = [storyBoard instantiateViewControllerWithIdentifier:@"profilePage"];
profileView.isFacebookRegister=YES;
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:profileView];
// profileView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:navigationController animated:YES completion:nil];
}
}
else
{
NSLog(@"Database storage error");
}
}];
}
}
-(void) didLoggedIn:(NSMutableDictionary *) dataDictionaray {
NSLog(@"Yahooooo... \n %@",dataDictionaray);
if ([dataDictionaray objectForKey:RESPONSE_ERROR]) {
[self hideActivity];
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Error" message:[dataDictionaray objectForKey:RESPONSE_ERROR] preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alertController addAction:ok];
[self presentViewController:alertController animated:YES completion:nil];
}
else
{
NSMutableDictionary *responseDict=[[dataDictionaray valueForKey:RESPONSE_SUCCESS] mutableCopy];
NSLog(@"%@",[responseDict objectForKey:@"score"]);
[responseDict removeObjectForKey:@"notifications"];
[User_Profile saveUserProfile:responseDict withCompletionBlock:^(BOOL flag,NSString *firstName,NSString *lastName,NSString *email) {
if (flag)
{
[[Context contextSharedManager] setLoginUser:YES forKey:EMAIL_LOGIN];
[appDelegate sendDeviceToken];
// [self loginWithFirstName:firstName lastName:lastName forEmail:email];
[[DataManager sharedDataManager] requestProfileDetails:nil forSender:self];
}
else
{
NSLog(@"Database storage error");
}
}];
}
}
-(void) didGetProfileDetails:(NSMutableDictionary *) dataDictionary
{
NSLog(@"Yahooooo... \n %@",dataDictionary);
[self hideActivity];
if ([dataDictionary objectForKey:RESPONSE_ERROR]) {
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Error" message:[dataDictionary objectForKey:RESPONSE_ERROR] preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alertController addAction:ok];
[self presentViewController:alertController animated:YES completion:nil];
}
else
{
NSMutableDictionary *responseDict=[[dataDictionary valueForKey:RESPONSE_SUCCESS] mutableCopy];
NSLog(@"%@",[responseDict objectForKey:@"score"]);
[responseDict removeObjectForKey:@"notifications"];
[User_Profile saveUserProfile:responseDict withCompletionBlock:^(BOOL flag,NSString *firstName,NSString *lastName,NSString *email) {
if (flag)
{
[self loginWithFirstName:firstName lastName:lastName forEmail:email];
UIStoryboard *storyBoard=[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]];
SWRevealViewController *tabView = [storyBoard instantiateViewControllerWithIdentifier:@"reveal"];
tabView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:tabView animated:YES completion:nil];
}
else
{
NSLog(@"Database storage error");
}
}];
}
}
-(void) requestDidFailWithRequest:(NSError *) error {
NSLog(@"Error");
[self hideActivity];
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Error" message:@"Server internal issue, unable to communicate " preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alertController addAction:ok];
[self presentViewController:alertController animated:YES completion:nil];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
[self.view endEditing:YES];
}
@end