robot-check.js
967 Bytes
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
'use strict';
const robotCheckService = require('../models/robot-check-service');
const captchaService = require('../../passport/controllers/captcha');
const index = (req, res, next) => {
let channel = req.yoho.channel || 'boys';
robotCheckService.index(channel).then((result) => {
return res.render('robot-check', Object.assign({
module: '3party',
page: 'robot-check'
}, result));
}).catch(next);
};
const check = captchaService.requiredAPI;
const isHuman = (req, res) => {
let remoteIp = req.get('X-Forwarded-For') || req.ip;
if (remoteIp.indexOf(',') > 0) {
let arr = remoteIp.split(',');
remoteIp = arr[0];
}
robotCheckService.removeBlack(remoteIp).then(() => {
return res.json({
code: 200
});
}).catch(() => {
return res.json({
code: 400
});
});
};
module.exports = {
index,
check,
isHuman
};