validateCode.js
1.85 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
/**
* 验证码中间件
* @author feng.chen<feng.chen@yoho.cn>
* @date 2017/03/23
*/
'use strict';
const _ = require('lodash');
const config = global.yoho.config;
const co = Promise.coroutine;
const geetest = require('./geetest');
const imgCheck = require('../models/imgcheck');
/**
* 加载验证码
*/
const load = (req, res, next) => {
co(function* () {
let isNeedImgCheckApiData = yield req.ctx(imgCheck).isNeedImgCheck(req.cookies.udid);
if (_.parseInt(_.get(isNeedImgCheckApiData, 'code')) === 200) {
req.yoho.captchaShow = _.get(isNeedImgCheckApiData, 'data');
} else {
req.yoho.captchaShow = false;
}
res.locals.useGeetest = !req.yoho.captchaShow;
if (_.has(res, 'locals.loadJsBefore')) {
res.locals.loadJsBefore.push({
src: global.yoho.config.geetestJs
});
} else {
res.locals.loadJsBefore = [
{
src: global.yoho.config.geetestJs
}
];
}
return next();
})();
};
/**
* 验证验证码
*/
const check = (req, res, next) => {
let testCode = req.body.yohobuy;
if (testCode === config.testCode) {
return next();
}
co(function* () {
let isNeedImgCheckApiData = yield req.ctx(imgCheck).isNeedImgCheck(req.cookies.udid);
req.yoho.captchaShow = true;
if (_.parseInt(_.get(isNeedImgCheckApiData, 'code')) === 200) {
req.yoho.captchaShow = _.get(isNeedImgCheckApiData, 'data');
} else {
req.yoho.captchaShow = false;
}
res.locals.useGeetest = !req.yoho.captchaShow;
return res.locals.useGeetest;
})().then(function() {
return res.locals.useGeetest ? geetest.validate(req, res, next) : next();
});
};
module.exports = {
load,
check
};