index.js 33 KB
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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
/**
 * 登录
 * @author: tao.huang<tao.huang@yoho.cn>
 * @date: 2016/8/29
 */

/** ************************************************************************/
/*                                  流程                                  */
/** ************************************************************************/
/**
 * 登录分为:
 * 1.普通登录(使用帐户和密码登录)
 * 2.短信验证码登录(使用手机号和验证短信登录)
 * 3.二维码登录
 *
 * 每种登录的流程都是一致的,具体如下:
 * 1. 各个输入框失去焦点验证(包括本地和网络)。
 * 2. 验证包括:本地(Local)和网络(Async)。本地主要是格式验证,网络是服务器验证。
 * 3. 在登录之前,还有预验证(pre),包括之前所有的验证。
 *
 * 普通登录
 * 帐号验证 => 密码验证    => 图形验证码验证 => 登录之前验证 => 登录
 *
 * 手机验证码登录
 * 帐号验证 => 手机短信验证 => 图形验证码验证 => 登录之前验证 => 登录
 *
 * 二维码登录
 * 生成二维码 => 轮询二维码 => 成功后 => 用二维码登录 => 登录
 *
 * 由于功能关系:把这三种登录:
 * 变成的设备登录:分为桌面(普通登录和手机验证码登录)和手机登录(二维码登录)。
 */

var $ = require('yoho-jquery'),
    Captcha = require('../../plugins/captcha'),
    GeeCaptcha = require('../../plugins/gee-captcha'),
    QRCode = require('../../plugins/qrcode');

var needGeeCaptcha = $('.gee-captcha').length;

// 密码输入帐号
var $accountInput1 = $('#account1'),
    getAccountVal1 = function() {
        return $.trim($accountInput1.val());
    },

// 短信输入帐号
    $accountInput2 = $('#account2'),
    getAccountVal2 = function() {
        return $.trim($accountInput2.val());
    },

// 密码
    $passwordInput = $('#password'),
    getPasswordVal = function() {
        return $.trim($passwordInput.val());
    },

// 图像验证码
    $captchaImgWrapper = $('.captcha-wrap'),
    captchaImg = needGeeCaptcha ? new GeeCaptcha('.captcha-wrap').init() : new Captcha('.captcha-wrap').init(),
    $showCaptchaImg = true,
    getCaptchaImgVal = function() {
        return captchaImg.getResults();
    },

// 短信验证码
    $captchaSmsInput = $('#captcha-sms'),
    getCaptchaSmsVal = function() {
        return $.trim($captchaSmsInput.val());
    },
    $captchaSmsBtn = $('.change-captcha-sms'),
    $captchaSmsTokenHideInput = $('#captcha-sms-token-hide'),
    getCaptchaSmsTokenVal = function() { // 短信登录凭证
        return $.trim($captchaSmsTokenHideInput.val());
    },
    smsCaptchaImg = new Captcha('.sms-captcha-img-wrap').init(),
    getSmsCaptchaImgVal = function() { // 短信登录图形验证码
        return smsCaptchaImg.getResults();
    },

// 区域选择
    $countryCodeInput = $('#country-code-hide'),
    getAreaCodeVal = function() {
        return $countryCodeInput.val().replace('+', '');
    },
    $countryCodeHeader = $('#country-code > em'),
    $countryList = $('#country-list'),

// 记住我
    $rememberMe = $('.remember-me'),
    getRememberMeVal = function() {
        return $rememberMe.hasClass('checked') ? true : false;
    },

// 二维码
    $qrCodeHideInput = $('#qrcode'),
    $qrCodeHoverPanel = $('#qrcode-hover'),
    $qrCodeHelper = $('#qrcode-helper'),
    getQrCodeVal = function() {
        return $qrCodeHideInput.val();
    },
    $qrCodeContainer = $('#qrcode-container'),
    $qrCodeOverLayer = $('#qrcode-overlay'),
    pollingQrCodeTimer,
    qrCode = new QRCode($qrCodeContainer.get(0), {
        width: 140,
        height: 140,
        correctLevel: 1
    });

// 提示
var $accountTip1 = $accountInput1.siblings('.err-tip'),
    $accountTip2 = $accountInput2.siblings('.err-tip'),
    $passwordTip = $passwordInput.siblings('.err-tip'),
    $captchaSmsTip = $captchaSmsInput.siblings('.err-tip'),
    $capsLock = $('#caps-lock');

var mailPhoneRegx = require('../common/mail-phone-regx'), // 邮箱格式验证
    mailAc = require('../common/ac-email'); // 邮箱自动完成

// 刷新手机短信图形验证码
var refreshSmsCaptchaEvent = $.Callbacks(); // eslint-disable-line

// 刷新手机密码图形验证码
var refreshPasswordCaptchaEvent = $.Callbacks(); // eslint-disable-line

// 记住我符号
var checkboxSymbol = {
    checked: '&#xe612;',
    unchecked: '&#xe613;'
};

// 短信验证码的计数器,60s
var secondCount = 60;

// 检查二维码的时间 3s
var CHECK_INTERVAL = 3000;

// 短信验证码只能验证一次
var isSmsCheckedSuccessFlag = false;

/** ************************************************************************/
/*                                  登录类型设置                            */
/** ************************************************************************/
var accountChangeEvent = $.Callbacks(); //eslint-disable-line
var currentLogin = null;
var $PhoneLoginSwitcher = $('.switch');
var AccountLoginData = {
    PasswordLogin: {
        ele: '.password-login',
        validateAccountAsync: function() {
            return $.Deferred().resolve().promise();  // eslint-disable-line
        },
        validateAccountLocal: validateAccountPasswordLocal, // eslint-disable-line
        creditableToken: getPasswordVal,
        type: function() {
            return 'password';
        },
        name: 'PasswordLogin',
        validate: prePasswordLoginWithValidate, // eslint-disable-line
        hideEle: '.sms-login',
        getAccountVal: getAccountVal1, // eslint-disable-line
        showAccountTip: showAccountTip1, // eslint-disable-line
        hideAccountTip: hideAccountTip1  // eslint-disable-line
    },
    SMSLogin: {
        ele: '.sms-login',
        validateAccountAsync: function() {
            return $.ajax({
                url: '/passport/login/sms/checkuser',
                type: 'POST',
                data: {
                    mobile: getAccountVal2(),
                    area: getAreaCodeVal()
                }
            }).then(function(result) {
                var defer = $.Deferred();  // eslint-disable-line

                if (result.code === 200) {
                    hideAccountTip2();  // eslint-disable-line

                    defer.resolve();
                } else {
                    showAccountTip2(result.message);  // eslint-disable-line

                    defer.reject();
                }

                return defer.promise();
            });
        },
        validateAccountLocal: validateAccountSmsLocal, // eslint-disable-line
        creditableToken: getCaptchaSmsTokenVal,
        type: function() {
            return 'sms';
        },
        name: 'SMSLogin',
        validate: preSmsLoginWithValidate,  // eslint-disable-line
        hideEle: '.password-login',
        getAccountVal: getAccountVal2,  // eslint-disable-line
        showAccountTip: showAccountTip2,  // eslint-disable-line
        hideAccountTip: hideAccountTip2  // eslint-disable-line
    },
    QRCodeLogin: {
        name: 'QRCodeLogin',
        type: function() {
            return 'qrcode';
        },
        getAccountVal: function() {  // 这个值没用处只是用来保证登录时接口完整。
            return 'uid';
        },
        validateAccountLocal: function() {
            return $.Deferred().reject().promise();  // eslint-disable-line
        }, // eslint-disable-line
        creditableToken: getQrCodeVal,
        validate: function() {
            return $.Deferred().resolve().promise(); // eslint-disable-line
        }
    }
};

/** ************************************************************************/
/*                                  设备登录类型                             */
/** ************************************************************************/
var $deviceSwitcher = $('#device-bg');
var deviceLoginData = {
    DesktopLogin: {
        ele: '.desktop-login',
        hideEle: '.mobile-login',
        dataType: 'MobileLogin',
        tipText: '扫码登录更安全',
        bgClass: 'type-mobile-bg',
        removeClass: 'type-desktop-bg'
    },
    MobileLogin: {
        ele: '.mobile-login',
        hideEle: '.desktop-login',
        dataType: 'DesktopLogin',
        tipText: '密码登录在这里',
        bgClass: 'type-desktop-bg',
        removeClass: 'type-mobile-bg'
    }
};

var $deviceTips = $('.type-tip');

// 提示只显示一次
var desktopTipShowOnce = $.Callbacks('once'); //eslint-disable-line
var mobileTipShowOnce = $.Callbacks('once');  //eslint-disable-line

var QR_CODE_ERR = {
    fail: '扫描失败',
    error: '二维码已失效'
};

var tpl = function(text) {
    return [
        '<div class="qrcode-err-tip">',
        text,
        '</div><a id="qrcode-refresh-btn" class="qrcode-refresh-btn">请点击刷新</a>'
    ].join('');
};

require('../../common/promise');

// 切换登录方式
accountChangeEvent.add(function(type) {
    currentLogin = AccountLoginData[type];
});

// 重置状态
accountChangeEvent.add(function(type) {
    hideAccountTip1(); // eslint-disable-line
    hideAccountTip2();  // eslint-disable-line
    hideCaptchaImgTip(); // eslint-disable-line
    hideCaptchaSmsTip(); // eslint-disable-line
    hidePasswordTip();   // eslint-disable-line
    hideSmsCaptchaImgTip(); // eslint-disable-line

    $passwordInput.val('');

    $captchaSmsInput.val('');
    $captchaSmsTokenHideInput.val('');

    if (type === AccountLoginData.QRCodeLogin.name) {
        $qrCodeOverLayer.empty();
        initQrCode(); // eslint-disable-line
    }

    // 密码登录的图形验证码
    if (type === AccountLoginData.PasswordLogin.name) {
        if ($showCaptchaImg) {
            $captchaImgWrapper.removeClass('hide');

            $.sleep(500).then(function() {
                captchaImg.refresh();
            });
        }
    }

    if (type === AccountLoginData.SMSLogin.name) {
        if ($showCaptchaImg) {
            $captchaImgWrapper.addClass('hide');
        }
    }
});

// 保留已输入的帐号信息
accountChangeEvent.add(function(type) {
    if (type === AccountLoginData.SMSLogin.name) {
        $accountInput2.val($accountInput1.val());
        refreshSmsCaptchaImg();  // eslint-disable-line
    } else {
        $accountInput1.val($accountInput2.val());
    }
});

desktopTipShowOnce.add(function() {
    $deviceTips.removeClass('hide');
});

mobileTipShowOnce.add(function() {
    $deviceTips.removeClass('hide');
});

refreshSmsCaptchaEvent.add(function() {
    refreshSmsCaptchaImg();  // eslint-disable-line
});

refreshPasswordCaptchaEvent.add(function() {
    refreshPasswordCaptchaImg(); // eslint-disable-line
});

/** ************************************************************************/
/*                                  加载自定义库                            */
/** ************************************************************************/

require('yoho-jquery-placeholder');
require('../../simple-header');
require('../../common');// yas

/** ************************************************************************/
/*                                  错误提示框                              */
/** ************************************************************************/

function errTipShow($tip, $input, msg) {
    $tip.removeClass('hide').children('em').empty().html(msg);
    $input.addClass('error');
}

function errTipHide($tip, $input) {
    $tip.addClass('hide');
    $input.removeClass('error');
}

/** ************************************************************************/

function showAccountTip1(msg) {
    refreshPasswordCaptchaEvent.fire();
    return errTipShow($accountTip1, $accountInput1, msg);
}

function hideAccountTip1() {
    return errTipHide($accountTip1, $accountInput1);
}

function showAccountTip2(msg) {
    refreshSmsCaptchaEvent.fire();
    return errTipShow($accountTip2, $accountInput2, msg);
}

function hideAccountTip2() {
    return errTipHide($accountTip2, $accountInput2);
}

/** ************************************************************************/

function showPasswordTip(msg) {
    refreshPasswordCaptchaEvent.fire();
    return errTipShow($passwordTip, $passwordInput, msg);
}

function hidePasswordTip() {
    return errTipHide($passwordTip, $passwordInput);
}

/** ************************************************************************/

function hideCaptchaImgTip() {
    return captchaImg.hide();
}

/** ************************************************************************/

function showCaptchaSmsTip(msg) {
    refreshSmsCaptchaEvent.fire();
    return errTipShow($captchaSmsTip, $captchaSmsInput, msg);
}

function hideCaptchaSmsTip() {
    return errTipHide($captchaSmsTip, $captchaSmsInput);
}

/** ************************************************************************/

function showSmsCaptchaImgTip() {
    refreshSmsCaptchaEvent.fire();
    smsCaptchaImg.showTip();
}

function hideSmsCaptchaImgTip() {
    smsCaptchaImg.hideTip();
}

/** ************************************************************************/

function showQrCodeFailTip(msg) {
    hideQrCodeTip();  // eslint-disable-line
    $qrCodeOverLayer.addClass('qrcode-overlay-fail');
    $qrCodeOverLayer.append(tpl(msg));

    $qrCodeHoverPanel.addClass('hide'); // 取消事件
}

function hideQrCodeTip() {
    $qrCodeOverLayer.empty();
    $qrCodeOverLayer.removeClass();

    $qrCodeHoverPanel.removeClass('hide'); // 激活事件
}

function showQrCodeSuccess() {
    $qrCodeOverLayer.addClass('qrcode-overlay-success');
}

/** ************************************************************************/
/*                                  用户帐号验证                            */
/** ************************************************************************/

function validateAccountPasswordLocal() {
    var account = currentLogin.getAccountVal(),
        err;

    var defer = $.Deferred(); // eslint-disable-line

    if (account !== '') {
        if (/^[0-9]+$/.test(account)) {
            defer.resolve();
        } else {
            if (mailPhoneRegx.emailRegx.test(account)) {
                defer.resolve();
            } else {
                defer.reject();
                err = '邮箱格式不正确,请重新输入';
            }
        }
    } else {
        err = '请输入账户名';
    }

    if (defer.state() === 'resolved') {
        currentLogin.hideAccountTip();
    } else {
        currentLogin.showAccountTip(err);
    }
    return defer.promise();
}

function validateAccountSmsLocal() {
    var account = currentLogin.getAccountVal(),
        err;

    var defer = $.Deferred(); // eslint-disable-line

    if (account !== '') {
        if (/^[0-9]+$/.test(account)) {

            defer.resolve();
        } else {
            err = '手机号码不正确,请重新输入';

            defer.reject();
        }
    } else {
        err = '请输入手机号';
    }

    if (defer.state() === 'resolved') {
        currentLogin.hideAccountTip();
    } else {
        currentLogin.showAccountTip(err);
    }

    return defer.promise();
}

// 本地验证和网络验证
function validateAccount() {
    return currentLogin.validateAccountLocal()
        .then(currentLogin.validateAccountAsync)
        .then(currentLogin.hideAccountTip);
}

/** ************************************************************************/
/*                                  密码验证                                */
/** ************************************************************************/

function validatePasswordLocal() {
    var password = getPasswordVal(),
        err;

    var defer = $.Deferred(); // eslint-disable-line

    if (password !== '') {
        if (password.length < 6) {
            err = '请输入长度为6-20字符的密码';

            defer.reject();
        } else {

            defer.resolve();
        }
    } else {
        err = '请输入密码';

        defer.reject();
    }

    if (defer.state() === 'resolved') {
        hidePasswordTip();
    } else {
        showPasswordTip(err);
    }

    return defer.promise();
}

/** ************************************************************************/
/*                                  图形验证码                              */
/** ************************************************************************/
function validateCaptchaImgAsync() {
    return captchaImg.check();
}

function validateCaptchaImg() {
    // 验证码不可见的时候验证通过
    if ($captchaImgWrapper.is(':hidden')) {
        return $.Deferred().resolve().promise(); //eslint-disable-line
    }

    return validateCaptchaImgAsync()
        .then(hideCaptchaSmsTip);
}

function refreshPasswordCaptchaImg() {
    return captchaImg.refresh();
}

/** ************************************************************************/
/*                                  短信验证码                              */
/** ************************************************************************/

function validateCaptchaSmsLocal() {
    var captcha = getCaptchaSmsVal(),
        err;

    var defer = $.Deferred(); // eslint-disable-line

    if (captcha !== '') {
        if (captcha.length !== 4) {
            err = '请输入长度为4字符的验证码';

            defer.reject();
        } else {

            defer.resolve();
        }
    } else {
        err = '请输入短信验证码';

        defer.reject();
    }

    if (defer.state() === 'resolved') {
        hideCaptchaSmsTip();
    } else {
        showCaptchaSmsTip(err);
    }

    return defer.promise();
}

// Note: 这里的验证码只能成功验证一次,十分钟内有效
function validateCaptchaSmsAsync() {
    var smsToken = getCaptchaSmsTokenVal();

    if (isSmsCheckedSuccessFlag && smsToken !== '') {
        return $.Deferred().resolve().promise();              // eslint-disable-line
    }

    return $.ajax({
        url: '/passport/login/sms/auth',
        type: 'POST',
        data: {
            area: getAreaCodeVal(),
            mobile: currentLogin.getAccountVal(),
            code: getCaptchaSmsVal()
        }
    }).then(function(result) {
        var defer = $.Deferred(); // eslint-disable-line

        if (result.code === 200) {
            hideCaptchaSmsTip();
            $captchaSmsTokenHideInput.val(result.token);
            isSmsCheckedSuccessFlag = true;

            defer.resolve();
        } else if (result.code === 501) {
            showCaptchaSmsTip(result.message);
            $captchaSmsTokenHideInput.val('');

            defer.reject();
        } else {
            showCaptchaSmsTip('验证码不正确');
            $captchaSmsTokenHideInput.val('');

            defer.reject();
        }

        return defer.promise();
    });
}

function validateCaptchaSms() {
    return validateCaptchaSmsLocal()
        .then(validateCaptchaSmsAsync)
        .then(hideCaptchaSmsTip);
}

function disable60sSendSmsBtn() {
    secondCount -= 1;
    if (secondCount < 0) {
        secondCount = 60;
        $captchaSmsBtn.text('获取短信验证码')
            .removeClass('second-progress')
            .removeClass('disable');
    } else {
        $captchaSmsBtn.addClass('disable')
            .addClass('second-progress')
            .text(secondCount + '秒后可重新操作');
        window.setTimeout(disable60sSendSmsBtn, 1000);
    }
}

function sendCaptchaSmsAsync() {
    return $.ajax({
        type: 'POST',
        url: '/passport/login/sms/send',
        data: {
            area: getAreaCodeVal(),
            mobile: currentLogin.getAccountVal(),
            verifyCode: getSmsCaptchaImgVal()
        }
    });
}

/** ************************************************************************/
/*                                  短信验证图形验证                         */
/** ************************************************************************/

function validateSmsCaptchaImg() {
    return smsCaptchaImg.check();
}

function refreshSmsCaptchaImg() {
    $.sleep(500).then(function() {
        smsCaptchaImg.refresh();
    });
}

/** ************************************************************************/
/*                                  二维码验证                              */
/** ************************************************************************/

function drawQrCode(qrcode) {
    qrCode.clear().makeCode(qrcode);
    $qrCodeHideInput.val(qrcode);
}

function refreshQrCodeAsync() {
    return $.ajax({
        url: '/passport/login/qrcode/refresh',
        type: 'POST',
        data: {}
    }).then(function(result) {
        var defer = $.Deferred();                           // eslint-disable-line

        if (result.code === 200) {
            hideQrCodeTip();
            drawQrCode(result.data.qrcode);

            defer.resolve();
        } else {
            showQrCodeFailTip(QR_CODE_ERR.error);

            defer.reject();
        }

        return defer.promise();
    });
}

function validateQrCodeAsync(code) {
    return $.ajax({
        url: '/passport/login/qrcode/check',
        type: 'POST',
        data: {
            qrcode: code
        }
    });
}

function pollingThisQrCodeStatusAsync() {
    if (pollingQrCodeTimer !== null) {
        stopPollingQrCodeTimer(); // eslint-disable-line
    }

    pollingQrCodeTimer = setTimeout(function() {
        validateQrCodeAsync(getQrCodeVal())
            .always(stopPollingQrCodeTimer)      // eslint-disable-line
            .then(function(result) {
                if (result.code === 200) {
                    showQrCodeSuccess();
                    loginAsync();         // eslint-disable-line

                } else if (result.code === 403) {
                    setImmediate(pollingThisQrCodeStatusAsync);

                } else if (result.code === 404) {
                    showQrCodeFailTip(QR_CODE_ERR.error);

                } else {
                    showQrCodeFailTip(QR_CODE_ERR.fail);
                }
            });
    }, CHECK_INTERVAL);
}

function stopPollingQrCodeTimer() {
    clearTimeout(pollingQrCodeTimer);
    pollingQrCodeTimer = null;
}

function initQrCode() {
    // 不需要初始化
    // drawQrCode('//m.yohobuy.com/signin.html');
}

function getDesktopLoginType() {
    return $PhoneLoginSwitcher.find('.selected').data('type');
}

/** ************************************************************************/
/*                                  全部验证过程                             */
/** ************************************************************************/

// 密码验证过程
function validateWithPasswordMode() {
    return validateAccount()
        .then(validatePasswordLocal)
        .then(validateCaptchaImg);
}

// 短信验证过程
function validateWithSmsMode() {
    return validateAccount()
        .then(validateCaptchaSms);
}

/** ************************************************************************/
/*                                  登录之前验证                             */
/** ************************************************************************/

// password登录之前验证
function prePasswordLoginWithValidate() {
    return (function() {
        var account = currentLogin.getAccountVal(),
            password = getPasswordVal();

        var defer = $.Deferred(); // eslint-disable-line

        if (account === '') {
            showAccountTip1('请输入账户名');

            defer.reject();
        }

        if (password === '') {
            showPasswordTip('请输入密码');

            defer.reject();
        }

        if (account === '' && password === '') {
            // 账户名和密码都为空的情况下点击登陆,只在账户输入框后显示错误提示
            showAccountTip1('请输入账户名和密码');

            $passwordTip.addClass('hide');
            $passwordInput.addClass('error');

            defer.reject();
        }

        return defer.resolve().promise();

    }()).then(validateWithPasswordMode);
}

// sms登录之前验证
function preSmsLoginWithValidate() {
    return (function() {
        var account = currentLogin.getAccountVal(),
            password = getCaptchaSmsVal(),
            smsImg = getSmsCaptchaImgVal();

        var defer = $.Deferred(); // eslint-disable-line

        if (account === '') {
            showAccountTip2('请输入手机号');

            return defer.reject().promise();
        }

        if (smsImg === '') {
            showSmsCaptchaImgTip('请输入图形证码');

            return defer.reject().promise();
        }

        if (password === '') {
            showCaptchaSmsTip('请输入短信验证码');

            return defer.reject().promise();
        }

        if (password === '' && account === '') {
            // 账户名和密码都为空的情况下点击登陆,只在账户输入框后显示错误提示
            showAccountTip2('请输入手机号和短信验证码');

            $captchaSmsTip.addClass('hide');
            $captchaSmsInput.addClass('error');

            return defer.reject().promise();
        }

        return defer.resolve().promise();

    }()).then(validateWithSmsMode);
}

/** ************************************************************************/
/*                                  登录函数                                */
/** ************************************************************************/

function loginAsync() {
    return currentLogin.validate().then(function() {
        return $.ajax({
            url: '/passport/login/auth',
            type: 'POST',
            data: {
                areaCode: getAreaCodeVal(),
                account: currentLogin.getAccountVal(),
                password: currentLogin.creditableToken(),
                verifyCode: currentLogin.type() === 'password' ? getCaptchaImgVal() : '',
                isRemember: getRememberMeVal(),
                loginType: currentLogin.type()
            }
        });
    }).then(function(res) {
        if (res.code === 200) {
            if (res.data) {
                location.href = res.data.session;
            }
        } else {
            if (currentLogin.type() === 'password') {
                showPasswordTip(res.message);
                $passwordInput.addClass('error').val('');

                if (res.data && res.data.needCaptcha) {
                    showCaptchaImgPic();                          // eslint-disable-line
                }
            } else if (currentLogin.type() === 'sms') {
                showCaptchaSmsTip('短信验证码错误');
                $captchaSmsInput.addClass('error').val('');
            } else if (currentLogin.type() === 'qrcode') {
                showQrCodeFailTip(QR_CODE_ERR.fail);
            }
        }
    });
}

function showCaptchaImgPic() {
    captchaImg.refresh().then(function() {
        $captchaImgWrapper.removeClass('hide');
    });

    $showCaptchaImg = true;
}

function getReferForLogin() {
    var vars = {},
        hash,
        index,
        i,
        search = window.location.search,
        hashes = search ? search.slice(1).split('&') : [];

    for (i = 0; i < hashes.length; i++) {
        index = hashes[i].indexOf('=');
        hash = hashes[i].substring(0, index);
        vars[hash] = hashes[i].substring(++index);
    }
    return vars.refer || '';
}

// 设置 refer 信息
function setRefer() {
    var refer = getReferForLogin(),
        regUrl;

    regUrl = (function() {
        if (refer) {
            return '/reg.html?refer=' + refer;
        } else {
            return '/reg.html';
        }
    }());

    $('.fast-reg').attr('href', regUrl);
}

/** ************************************************************************/
/*                                  事件绑定                                */
/** ************************************************************************/

$('[placeholder]').placeholder(); // ie8 兼容 placeholder

// 展开地区列表
$('#country-code').on('click', function() {
    if ($countryList.css('display') === 'none') {
        $countryList.slideDown();
    }
});

// 选中地区列表项
$countryList.on('click', 'li', function() {
    var $this = $(this),
        cc = $this.data('cc');

    $countryCodeHeader.html($this.html());
    $countryCodeInput.val(cc);
    $countryList.slideUp();
});

// 点击其他区域,收起区域列表
$(document).on('click', function(e) {
    if ($(e.target).closest('#country-code').length > 0) {
        return;
    }

    if ($countryList.css('display') === 'block') {
        $countryList.slideUp();
    }
});

/** ************************************************************************/

    // 邮箱自动完成后失去焦点:仅进行本地格式验证格式;
mailAc($accountInput1, function() {
    return currentLogin.validateAccountLocal();
});

// 密码输入框事件
$passwordInput.on('blur', function() {
    validatePasswordLocal();

    if ($capsLock.hasClass('hide')) {
        return;
    }

    $capsLock.addClass('hide');
}).on('keypress', function(e) {
    var code = e.which;

    // CapsLock检测
    if (code >= 65 && code <= 90) {
        $capsLock.removeClass('hide');
        return;
    }
    $capsLock.addClass('hide');
});

/** ************************************************************************/

// 短信下手机输入框失去焦点:本地验证格式
$accountInput2.on('blur', function() {
    return currentLogin.validateAccountLocal();
});

// sms验证码输入框事件
$captchaSmsInput.on('blur', validateCaptchaSms);

// 短信验证码发送按钮
$captchaSmsBtn.on('click', function() {
    // 已在发送短信时间范围内
    if ($captchaSmsBtn.hasClass('second-progress')) {
        return;
    }

    validateAccount()
        .then(validateSmsCaptchaImg)
        .then(function() {
            disable60sSendSmsBtn();
            return sendCaptchaSmsAsync();
        });
});

// 记住登录状态
$rememberMe.on('click', function() {
    var $this = $(this);

    $this.toggleClass('checked');

    if ($this.hasClass('checked')) {
        $this.children('i').html(checkboxSymbol.checked);
    } else {
        $this.children('i').html(checkboxSymbol.unchecked);
    }
});

// focus到输入框则隐藏错误提示和样式
$('.va').on('focus', function() {
    var $this = $(this);

    $this.removeClass('error');
    $this.siblings('.err-tip').addClass('hide');
});

// 切换登录模式:密码登录和短信登录
$PhoneLoginSwitcher.on('click', 'div', function() {
    var $this = $(this),
        type = $this.data('type');

    if ($this.hasClass('selected')) {
        return;
    }

    accountChangeEvent.fire(type);

    $this.addClass('selected');
    $this.siblings().removeClass('selected');

    $(AccountLoginData[type].ele).removeClass('hide');
    $(AccountLoginData[type].hideEle).addClass('hide');
});

// 切换登录模式:手机登录和二维码登录
$deviceSwitcher.on('click', function() {
    var $this = $(this),
        $parent = $this.parent(),
        type = $parent.data('type');

    $deviceTips.addClass('hide'); // 提示一直隐藏

    $(deviceLoginData[type].ele).removeClass('hide');
    $(deviceLoginData[type].hideEle).addClass('hide');

    $parent.data('type', deviceLoginData[type].dataType);
    $parent.find('#device-tip').html(deviceLoginData[type].tipText);

    $this.removeClass(deviceLoginData[type].removeClass)
        .addClass(deviceLoginData[type].bgClass);

    if (type === 'DesktopLogin') {
        desktopTipShowOnce.fire();

        // 还原桌面登录方式
        accountChangeEvent.fire(getDesktopLoginType());

        stopPollingQrCodeTimer();
    } else {
        mobileTipShowOnce.fire();

        accountChangeEvent.fire('QRCodeLogin');

        refreshQrCodeAsync().then(pollingThisQrCodeStatusAsync);
    }

});

// 鼠标移动到二维码上面
$qrCodeHoverPanel.hover(function() {
    $qrCodeContainer.stop(false, true).animate({left: '-=65'}, {
        complete: function() {
            $qrCodeHelper.removeClass('hide');
        }
    });
}, function() {
    $qrCodeContainer.stop(false, true).animate({left: '+=65'}, {
        start: function() {
            $qrCodeHelper.addClass('hide');
        }
    });
});

$qrCodeOverLayer.on('click', '#qrcode-refresh-btn', function() {
    refreshQrCodeAsync().then(pollingThisQrCodeStatusAsync);
});

/** ************************************************************************/
/*                                  登录                                   */
/** ************************************************************************/

    // click登录
$('#login-btn').on('click', loginAsync);

// enter登录
$('input.va').on('keypress', function(e) {
    if (e.which === 13) {
        loginAsync();
    }
});

/** ************************************************************************/
/*                                  初始化                                 */
/** ************************************************************************/

    // 初始化为:二维码登录
$deviceSwitcher.triggerHandler('click');

// 只带账户名的页面,密码输入获得焦点
if (($accountInput1.val() !== '' ||
    $accountInput1.val() === $accountInput1.attr('placeholder')) &&
    $passwordInput.val() === '') {

    $passwordInput.focus();
}

// 设置 refer
setRefer();

/** ************************************************************************/
/*                                  结束                                   */
/** ************************************************************************/