thirdlogin.js 12.6 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
/**
 * 第三方登录首页
 * @author: wq
 * @date: 2016/1/21
 */
var $ = require('yoho-jquery');
var phoneRegx = require('../common/mail-phone-regx').phoneRegx;
var Captcha = require('../../plugins/captcha');

var nopermissionoption = $('#nopermissionmessage').html(); // 倒计时dom
var sendmessagehtml = $('.validatewrapper').html(); // 发送短信dom
var second = +$('.second').text(); // 倒计时秒数
var dovalidate = false; // 校验验证码标识
var validatecode = false; // 验证码是否通过
var choosedpic = 'https://cdn.yoho.cn/yohobuy/assets/img/passport/choosed.png';// 已选择图片

var $wrapper = $('.bindwrapper'),
    $phoneTip = $wrapper.find('.phone-err-tip'),
    $nextBtn = $wrapper.find('.yohobindbtn');

var captcha = new Captcha('#captcha').init();
var captcha2 = new Captcha('#captcha2').init();

require('../../simple-header');

/**
 * 选择协议
 * @return {[type]} [description]
 */
function chooseProtocol() {
    $('.choosetag').on('change', function() {
        var btnColor = '#f02200';

        if ($(this).attr('checked') === 'checked') {
            $('.choosewrapper').css({
                'background-image': 'url("' + choosedpic + '")'
            });
        } else {
            $('.choosewrapper').css({
                'background-image': 'none'
            });
            btnColor = '#CCCCCC';
        }
        $nextBtn.css({
            'background-color': btnColor
        });
    });
}

/**
 * 判断是否同意协议
 * @return {[type]} [description]
 */
function isagree() {
    return $('.choosetag').attr('checked') === 'checked';
}

/**
 * 选择区域的开关
 * @return {[type]} [description]
 */
function chooseAreaToogle() {
    $('.optionshow').on('click', function() {
        $('.optionslist').toggleClass('hide');
    });
}

/**
 * 验证码校验
 * @return {[type]} [description]
 */
function codeValidate() {
    var validatenum = '';

    $(document).on('keyup', '#validatenum', function() {
        validatenum = $(this).val();
        if (validatenum.length === 4) {
            if (!dovalidate) {
                dovalidate = true;
                $.ajax({
                    type: 'POST',
                    url: '/passport/autouserinfo/checkBindMsg',
                    data: {
                        code: validatenum,
                        mobile: $('#mobile').val(),
                        area: $('#areacode').val()
                    }
                }).then(function(data) {
                    dovalidate = false;
                    if (data.code === 200) {
                        validatecode = true;
                    } else {
                        alert(data.message); // eslint-disable-line
                    }
                });
            }
        }
    });

    $('#validatenum').focus(function() {
        $(this).removeAttr('placeholder');
    }).blur(function() {
        $(this).attr('placeholder', '验证码');
    });
}

/**
 * 选择区域
 * @return {[type]} [description]
 */
function chooseArea() {
    $('.optionitem').on('click', function() {
        var $option = $(this);
        var areanum = $option.attr('areanum');
        var areaname = $option.text();

        $('#areaname').text(areaname);
        $('#areanum').text(areanum);
        $('#areacode').val(areanum);
        $('.optionslist').addClass('hide');
    });
}

/**
 * 取消选择区域
 * @return {[type]} [description]
 */
function cancelChooseArea() {
    $(document).on('click', 'body', function(e) {
        var $target = $(e.target);

        if ($target.hasClass('yohoselectarea') ||
            $target.hasClass('areaname') ||
            $target.hasClass('righttag') ||
            $target.hasClass('optionslist') ||
            $target.hasClass('optionitem')) {
            return;
        } else {
            $('.optionslist').addClass('hide');
        }
    });
}

/**
 * 去掉区域号的加号
 * @return {[type]} [description]
 */
function fixAreaNum() {
    var $opitem = '';
    var itemarecode = '';

    $('.optionitem').each(function() {
        $opitem = $(this);
        itemarecode = $opitem.attr('areanum').replace(/\+/g, '');
        $opitem.attr('areanum', itemarecode);
    });
}

/**
 * 关闭蒙层
 * @return {[type]} [description]
 */
function closeMask() {
    var $target;

    $(document).on('click', '#alreayregist', function(e) {
        $target = $(e.target);
        if ($target.hasClass('mask') || $target.hasClass('backdrop')) {
            $('#alreayregist').hide();
            $('.backdrop').hide();
        }
    });

    $(document).on('click', '#bindconfirm', function(e) {
        $target = $(e.target);
        if ($target.hasClass('mask') || $target.hasClass('backdrop')) {
            $('#bindconfirm').hide();
            $('.backdrop').hide();
        }
    });
}

/**
 * 绑定其他手机号
 * @return {[type]} [description]
 */
function yohoBindBtn() {
    $(document).on('click', '#yohobindbtn', function() {
        $('.phonenum').val('');
        $('#bindconfirm').hide();
        $('.backdrop').hide();
    });

    $(document).on('click', '#yohobindbtn2', function() {
        $('.phonenum').val('');
        $('#alreayregist').hide();
        $('.backdrop').hide();
    });
}

/**
 * 发送短信的时间变换动画
 * @return {[type]} [description]
 */
function changeSecond() {
    second -= 1;
    if (second < 0) {
        second = 60;
        $('.validatewrapper').html(sendmessagehtml);
        return;
    } else {
        $('.second').text(second);
        window.setTimeout(changeSecond, 1000);
    }

}

/**
 * 时间循环
 * @param  {[type]} phonenum [description]
 * @return {[type]}          [description]
 */
function circleTime() {
    $('.validatewrapper').html(nopermissionoption);
    window.setTimeout(changeSecond, 1000);
}

/**
 * 发送短信
 * @return {[type]} [description]
 */
function sendMessageValidate() {
    $(document).on('click', '#sendmessage', function() {
        if ($('#sendmessage').attr('disabled') === 'disabled') {
            return;
        }
        captcha2.hideTip();

        $.ajax({
            type: 'POST',
            url: '/passport/autouserinfo/sendBindMsgCode',
            data: {
                mobile: $('#mobile').val(),
                area: $('#areacode').val(),
                verifyCode: captcha2.getResults()
            }
        }).then(function(data) {
            if (data.code === 405) {
                // 验证码 error
                captcha2.showTip(data.message);
            } else if (data.code !== 200) {
                alert(data.message); // eslint-disable-line
            } else {
                circleTime($('#mobile').val());
            }
        });

    });
}

/**
 * 最终提交表单
 */
function actionSubmit() {
    var mobile = '';
    var area = '';

    area = $('#areacode').val();
    mobile = $('#mobile').val();
    $.ajax({
        type: 'POST',
        url: '/passport/autouserinfo/bindMobile',
        data: {
            area: area,
            openId: $('#openId').val(),
            sourceType: $('#sourceType').val(),
            mobile: mobile,
            code: $('#validatenum').val()
        }
    }).then(function(data) {
        if (data.code === 200) {
            if (data.data && data.data.refer) {
                window.location.href = data.data.refer;
            } else {
                window.location.href = '/passport/thirdlogin/bindsuccess';
            }
        } else {
            alert(data.message); // eslint-disable-line
        }
    });
}

/**
 * 确认去绑定
 * @return {[type]} [description]
 */
function goToBindPhone() {
    $(document).on('click', '#gotobindphone', function() {
        if (validatecode === true) {
            $('#inarea').val($('#areacode').val());
            $('#inmobile').val($('#mobile').val());
            actionSubmit();
        } else {
            alert('请输入正确验证码'); // eslint-disable-line
        }
    });
}

/**
 * 点击下一步
 * @return {[type]} [description]
 */
function nextStep() {
    var openId = '';
    var sourceType = '';
    var mobile = '';
    var areaCode = '';
    var username = '';
    var headImg = '';

    $('#bindfirststep').on('click', function(e) {
        var regx;

        e.preventDefault();
        captcha.hideTip();
        mobile = $('.phonenum').val();
        areaCode = $('#areanum').text();
        regx = phoneRegx['+' + areaCode];

        if (!isagree()) {
            return;
        }
        if (mobile === '' || !regx || !regx.test(mobile)) {
            $phoneTip.find('em').text('手机格式错误');
            $phoneTip.removeClass('hide');
            return;
        }
        openId = $('#openId').val() || '29803EC6D4AAC3AAB8ABDB6AE829D579';
        sourceType = $('#sourceType').val() || 'qq';

        $.ajax({
            type: 'post',
            url: '/passport/autouserinfo/bindCheckSendMsg',
            data: {
                mobile: mobile,
                area: areaCode,
                openId: openId,
                sourceType: sourceType,
                verifyCode: captcha.getResults()
            },
            dataType: 'json',
            success: function(data) {
                var winHeight = $(window).height();

                if (data.code === 200) {
                    $('#bindmobileform').attr('action', data.data.next);
                    $('#bindmobileform').submit();
                } else if (data.code === 201) {

                    // 已注册 未绑定
                    username = data.data.user.username;
                    headImg = data.data.user.headImg;
                    $('#registphone').text(mobile);
                    $('#username').text(username);
                    if (headImg === '') {
                        $('#userphoto').attr('src', 'http://img10.static.yhbimg.com/headimg/2013/11/28/09/' +
                            '01cae078abe5fe320c88cdf4c220212688.gif?imageView/2/w/100/h/100');
                    } else {
                        $('#userphoto').attr('src', headImg);
                    }
                    $('#logindirectly2').attr('href', data.data.user.bindLogin);
                    $('.backdrop').show();

                    $('#alreayregist .mask').css({
                        'padding-top': winHeight > 440 ? winHeight / 2 : 217
                    });
                    $('#alreayregist').show();

                    // 201 code send msg
                    circleTime($('#mobile').val());
                } else if (data.code === 203) {
                    // 已注册 可关联
                    $('#bindmobileform').attr('action', data.data.next);
                    $('#bindmobileform').submit();
                } else if (data.code === 205) {
                    // 未注册 不可关联
                    username = data.data.user.username;
                    headImg = data.data.user.headImg;
                    $('#registphonetwo').text(mobile);
                    $('#username1').text(username);
                    if (headImg === '') {
                        $('#userphoto1').attr('src', 'http://img10.static.yhbimg.com/headimg/2013/11/28/09/' +
                            '01cae078abe5fe320c88cdf4c220212688.gif?imageView/2/w/100/h/100');
                    } else {
                        $('#userphoto1').attr('src', headImg);
                    }
                    $('#logindirectly').attr('href', data.data.user.bindLogin);
                    $('.backdrop').show();
                    $('#bindconfirm .mask').css({
                        'padding-top': winHeight > 440 ? winHeight / 2 : 217
                    });
                    $('#bindconfirm').show();
                } else if (data.code === 402) {
                    $phoneTip.find('em').text('手机格式错误');
                    $phoneTip.removeClass('hide');
                } else if (data.code === 405) {
                    // 验证码 error
                    captcha.showTip(data.message);
                } else {
                    if (data && data.message) {
                        alert(data.message); // eslint-disable-line
                    }
                }
            }
        });
    });
}

$wrapper.on('keydown', '.phonenum', function(e) {
    if (e.keyCode === 13) {
        $nextBtn.trigger('click');
        return false;
    }
});

function init() {
    fixAreaNum(); // 去掉所有区域的+
    sendMessageValidate(); // 有交互的发送短信
    chooseProtocol(); // 选择协议
    chooseArea(); // 选择区域
    chooseAreaToogle(); // 选择区域展示或关闭
    cancelChooseArea(); // 取消选择区域
    nextStep();  // 下一步
    closeMask(); // 关闭蒙层
    yohoBindBtn(); // 绑定其他手机号点击
    goToBindPhone(); // 绑定手机
    codeValidate(); // 验证码校验
}
init();