LoginViewController.m 13.8 KB
Newer Older
admin's avatar
admin committed
1 2 3 4 5 6 7 8 9 10 11 12
//
//  LoginViewController.m
//  redstar
//
//  Created by admin on 15/10/22.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import "LoginViewController.h"
#import "LoginView.h"
#import "CustomDropMenuView.h"

13
#import "RootTabBarController.h"
admin's avatar
admin committed
14

15 16
#import <AFNetworking.h>
#import "CommonFunc.h"
17 18 19
#import "HttpClient.h"

#import <MBProgressHUD.h>
20

admin's avatar
admin committed
21 22
#define kUsernameTableViewCell @"usernameTableViewCell"

admin's avatar
admin committed
23
@interface LoginViewController () <CustomDropMenuDelegate, UITextFieldDelegate, UITableViewDelegate, UITableViewDataSource, UITabBarControllerDelegate, UIAlertViewDelegate> {
admin's avatar
admin committed
24 25 26 27 28 29 30
    BOOL isOpened; // 判断存取本地的tableView是否打开
}
@property (nonatomic, strong) LoginView *loginView;
@property (nonatomic, strong) NSMutableDictionary *allUserDict;

@property (nonatomic, strong) UITableView *dropTableView;
@property (nonatomic, strong) CustomDropMenuView *menu;
31 32

@property (nonatomic, strong) RootTabBarController *rootTBC;
admin's avatar
admin committed
33
@property (nonatomic, strong) NSString *jumpURL;
admin's avatar
admin committed
34 35 36 37 38 39 40 41
@end

@implementation LoginViewController

#pragma mark - ViewDidLoad
- (void)viewDidLoad
{
    [super viewDidLoad];
admin's avatar
admin committed
42 43 44
    
    [self getVersion];
    
admin's avatar
admin committed
45 46 47 48 49 50
    isOpened = NO;
    
    [self addAllClick];
   
    
    self.loginView.usernameTextFiled.delegate = self;
admin's avatar
admin committed
51
    self.loginView.passwordTextFiled.delegate = self;
admin's avatar
admin committed
52
    // 初始化数组
53 54
    
    [self requestLogin];
admin's avatar
admin committed
55 56 57 58 59 60 61
}

- (void)loadView
{
    self.view = self.loginView;
}

62 63
- (void)didReceiveMemoryWarning
{
admin's avatar
admin committed
64 65 66 67 68
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - Private Methods
admin's avatar
admin committed
69 70 71 72 73
// 获取版本
- (void)getVersion
{
    HttpClient *httpCilent = [[HttpClient alloc] initWithUrl:[NSString stringWithFormat:@"%@%@", kRedStarURL, kCheckUpdateURL]];
    [httpCilent checkAndUpdateCurrentVersionWithCompletion:^(id response, NSError *error) {
admin's avatar
admin committed
74
        NSLog(@"检查更新 = %@", response);
admin's avatar
admin committed
75
        if (response[@"data"] == nil && response[@"data"] == NULL && response[@"data"] == [NSNull null]) {
admin's avatar
admin committed
76 77
            return;
        } else {
admin's avatar
admin committed
78 79 80
            NSDictionary *dict = response[@"data"];
            NSString *newVersion = [NSString stringWithFormat:@"%@", dict[@"version"]];
            self.jumpURL = [NSString stringWithFormat:@"%@", dict[@"url"]];
admin's avatar
admin committed
81 82
            BOOL isForce = [dict[@"forceUpdate"] boolValue];
            [self checkAppUpdate:newVersion forceUpdate:isForce];
admin's avatar
admin committed
83 84 85 86
        }
    }];
}

admin's avatar
admin committed
87
- (void)checkAppUpdate:(NSString *)newVersion forceUpdate:(BOOL)forceUpdate
admin's avatar
admin committed
88 89 90 91 92 93 94
{
    // 获取当前版本
    NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];
    NSString *currentVersion = [NSString stringWithFormat:@"%@",infoDic[@"CFBundleShortVersionString"]];
    NSLog(@"当前版本是:%@", currentVersion);
    
    if (![currentVersion isEqualToString:newVersion]) {
admin's avatar
admin committed
95
        
admin's avatar
admin committed
96
        if (forceUpdate) {
admin's avatar
admin committed
97 98 99 100 101 102 103 104 105 106
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示!" message:[NSString stringWithFormat:@"发现新版本:%@,如果不更新,可能造成本应用无法使用!", newVersion] delegate:self cancelButtonTitle:nil otherButtonTitles:@"前往更新", nil];
            alert.delegate = self;
            alert.tag = 322234;
            [alert show];
        } else {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示!" message:[NSString stringWithFormat:@"发现新版本:%@", newVersion] delegate:self cancelButtonTitle:@"稍后再说" otherButtonTitles:@"前往更新", nil];
            alert.delegate = self;
            [alert show];
            alert.tag = 3058284;
        }
admin's avatar
admin committed
107 108 109
    }
}

admin's avatar
admin committed
110
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
admin's avatar
admin committed
111
{
admin's avatar
admin committed
112 113 114 115 116 117 118 119 120 121
    if (alertView.tag == 3058284) {
        if (buttonIndex == 1) {
            NSString *url = self.jumpURL;
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
        }
    } else if (alertView.tag == 322234){
        if (buttonIndex == 0) {
            NSString *url = self.jumpURL;
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
        }
admin's avatar
admin committed
122 123 124 125 126
    }
}



127 128
- (void)requestLogin
{
129
   
130 131 132 133 134
    // 获取上次登陆信息
    if ([[[NSUserDefaults standardUserDefaults] objectForKey:@"loginMessage"] isEqualToString:@"ok"]) {
        NSString *username = [[NSUserDefaults standardUserDefaults] objectForKey:@"username"];
        NSString *password = [[NSUserDefaults standardUserDefaults] objectForKey:@"password"];
        
admin's avatar
admin committed
135 136
        self.loginView.usernameTextFiled.text = username;
        self.loginView.passwordTextFiled.text = password;
137
        
admin's avatar
admin committed
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
        if (self.loginView.usernameTextFiled.text.length == 0 || self.loginView.passwordTextFiled.text.length == 0) {
            UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"账号、密码不能为空" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
            [alertView show];
            return;
        } else {
            
            HttpClient *httpClient = [[HttpClient alloc] initWithLogin];
            UIWindow *window = [[UIApplication sharedApplication].windows lastObject];
            [MBProgressHUD showHUDAddedTo:window animated:YES];
            [httpClient loginWithUsername:username password:password completion:^(id response, NSError *error) {
                NSLog(@"登陆 respo = %@", response);
                NSLog(@"error = %@", error);
                if ([response[@"message"] isEqualToString:@"ok"]) {
                    // 保存登陆信息
                    NSUserDefaults *userDefault = [NSUserDefaults standardUserDefaults];
                    [userDefault setObject:username forKey:@"username"];
                    [userDefault setObject:password forKey:@"password"];
                    [userDefault setObject:response[@"message"] forKey:@"loginMessage"];
                    
                    NSDictionary *dict = response[@"data"];
                    NSString *user_code = dict[@"user_code"];
                    NSString *user_name = dict[@"user_name"];
                    NSString *user_uuid = dict[@"user_uuid"];
admin's avatar
admin committed
161
                    NSString *enterprise_name = dict[@"enterprise_name"];
162
                    NSString *enterprise_uuid = dict[@"enterprise_uuid"];
admin's avatar
admin committed
163
                    NSString *org_name = dict[@"org_name"];
164
                    NSString *authenticode = dict[@"authenticode"];
admin's avatar
admin committed
165
                    NSArray *permissions = dict[@"permissions"];
admin's avatar
admin committed
166
                    
167
                    [userDefault setObject:enterprise_uuid forKey:@"enterprise_uuid"];
admin's avatar
admin committed
168 169 170
                    [userDefault setObject:user_code forKey:@"user_code"];
                    [userDefault setObject:user_name forKey:@"user_name"];
                    [userDefault setObject:user_uuid forKey:@"user_uuid"];
admin's avatar
admin committed
171 172
                    [userDefault setObject:enterprise_name forKey:@"enterprise_name"];
                    [userDefault setObject:org_name forKey:@"org_name"];
173
                    [userDefault setObject:authenticode forKey:@"authenticode"];
admin's avatar
admin committed
174 175
                    [userDefault setObject:permissions forKey:@"permissions"];

admin's avatar
admin committed
176 177 178 179 180 181 182 183 184 185 186
                    self.rootTBC = [[RootTabBarController alloc] init];
                    [MBProgressHUD hideHUDForView:window animated:YES];
                    [self presentViewController:_rootTBC animated:YES completion:nil];
                } else {
                    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:[NSString stringWithFormat:@"%@", response[@"message"]] delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
                    [MBProgressHUD hideHUDForView:window animated:YES];
                    [alertView show];
                }
            }];

        }
187 188
    }
}
admin's avatar
admin committed
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203

- (void)addAllClick
{
    [self.loginView.loginButton addTarget:self action:@selector(loginButtonClick:) forControlEvents:UIControlEventTouchUpInside];
    
    [self.loginView.retrieveButton addTarget:self action:@selector(retrieveButtonClick:) forControlEvents:UIControlEventTouchUpInside];

    [self.loginView.registerButton addTarget:self action:@selector(registerButtonClick:) forControlEvents:UIControlEventTouchUpInside];
}

/**
 *  登录按钮
 */
- (void)loginButtonClick:(UIButton *)sender
{
204
    
205 206 207 208 209 210 211 212 213 214
    if (self.loginView.usernameTextFiled.text.length == 0 || self.loginView.passwordTextFiled.text.length == 0) {
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"账号、密码不能为空" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
        [alertView show];
        return;
    }
    
    HttpClient *httpClient = [[HttpClient alloc] initWithLogin];
    UIWindow *window = [[UIApplication sharedApplication].windows lastObject];
    [MBProgressHUD showHUDAddedTo:window animated:YES];
    [httpClient loginWithUsername:self.loginView.usernameTextFiled.text password:self.loginView.passwordTextFiled.text completion:^(id response, NSError *error) {
admin's avatar
admin committed
215
        NSLog(@"response = %@, error = %@", response, error);
216
        if ([response[@"message"] isEqualToString:@"ok"]) {
217
           
218 219 220 221
            // 保存登陆信息
            [[NSUserDefaults standardUserDefaults] setObject:self.loginView.usernameTextFiled.text forKey:@"username"];
            [[NSUserDefaults standardUserDefaults] setObject:self.loginView.passwordTextFiled.text forKey:@"password"];
            [[NSUserDefaults standardUserDefaults] setObject:response[@"message"] forKey:@"loginMessage"];
222 223 224 225
            NSDictionary *dict = response[@"data"];
            NSString *user_code = dict[@"user_code"];
            NSString *user_name = dict[@"user_name"];
            NSString *user_uuid = dict[@"user_uuid"];
admin's avatar
admin committed
226
            NSArray *permissions = dict[@"permissions"];
admin's avatar
admin committed
227
            NSString *enterprise_name = dict[@"enterprise_name"];
228 229
            NSString *enterprise_uuid = dict[@"enterprise_uuid"];
            NSString *authenticode = dict[@"authenticode"];
admin's avatar
admin committed
230 231
            NSString *org_name = dict[@"org_name"];
            
232
            [[NSUserDefaults standardUserDefaults] setObject:enterprise_uuid forKey:@"enterprise_uuid"];
admin's avatar
admin committed
233 234 235
            [[NSUserDefaults standardUserDefaults] setObject:enterprise_name forKey:@"enterprise_name"];
            [[NSUserDefaults standardUserDefaults] setObject:org_name forKey:@"org_name"];
            [[NSUserDefaults standardUserDefaults] setObject:permissions forKey:@"permissions"];
236 237 238
            [[NSUserDefaults standardUserDefaults] setObject:user_code forKey:@"user_code"];
            [[NSUserDefaults standardUserDefaults] setObject:user_name forKey:@"user_name"];
            [[NSUserDefaults standardUserDefaults] setObject:user_uuid forKey:@"user_uuid"];
admin's avatar
admin committed
239
            [[NSUserDefaults standardUserDefaults] setObject:permissions forKey:@"permissions"];
240
            [[NSUserDefaults standardUserDefaults] setObject:authenticode forKey:@"authenticode"];
241 242 243 244 245 246 247 248 249 250 251
            // 进入RootTabBar
            self.rootTBC = [[RootTabBarController alloc] init];
            [MBProgressHUD hideHUDForView:window animated:YES];
            [self presentViewController:_rootTBC animated:YES completion:nil];
            
        } else {
            UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:[NSString stringWithFormat:@"%@", response[@"message"]] delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
            [MBProgressHUD hideHUDForView:window animated:YES];
            [alertView show];
        }
    }];
252
}
admin's avatar
admin committed
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


// 找回密码
- (void)retrieveButtonClick:(UIButton *)sender
{
    NSLog(@"找回密码");
}

// 找回密码
- (void)registerButtonClick:(UIButton *)sender
{
    NSLog(@"用户注册");
}

#pragma mark - TableView Delegate/DataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return _allUserDict.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:kUsernameTableViewCell];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:kUsernameTableViewCell];
    }
    cell.textLabel.text = _allUserDict.allKeys[indexPath.row];
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [self tableView:self.dropTableView cellForRowAtIndexPath:indexPath];
    self.loginView.usernameTextFiled.text = cell.textLabel.text;
    NSString *key = _allUserDict.allKeys[indexPath.row];
    self.loginView.passwordTextFiled.text = _allUserDict[key];
    [_menu dismiss];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 40;
}


#pragma mark - UItextField Delegate
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
    if ([self.loginView.usernameTextFiled isFirstResponder]) {
        // 创建下拉菜单
        self.menu = [CustomDropMenuView defaultMenuView];
admin's avatar
admin committed
304
        _menu.showTop = 300;
305 306 307 308
        _menu.showLeft = 20;
        _menu.showRight = -20;
        _menu.showHeight = 40 * _allUserDict.count;
        
admin's avatar
admin committed
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
        _menu.delegate = self;
        _menu.content = self.dropTableView;
        
        // 显示
        [_menu showFrom:self.loginView.usernameView];
    }
}

#pragma mark - layz loading
- (LoginView *)loginView
{
    if (!_loginView) {
        _loginView = [[LoginView alloc] init];
    }
    return _loginView;
}

- (UITableView *)dropTableView
{
    if (!_dropTableView) {
        _dropTableView = [[UITableView alloc] init];
    }
    [_dropTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:kUsernameTableViewCell];
    _dropTableView.translatesAutoresizingMaskIntoConstraints = NO;
    _dropTableView.delegate = self;
    _dropTableView.dataSource = self;
    return _dropTableView;
}

admin's avatar
admin committed
338 339 340 341
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
    [self.view endEditing:YES];
}

admin's avatar
admin committed
342 343


admin's avatar
admin committed
344 345 346 347 348 349 350
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    if ([textField resignFirstResponder]) {
        return YES;
    }
    return NO;
}
admin's avatar
admin committed
351 352

@end