Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
htoooth
8 years ago
Commit
fa2e01bbeac1b0e0b33fae317b513aa432fc5077
2 parents
97780fb8
25c18105
Merge branch 'feature/captcha' into gray
# Conflicts: # apps/home/router.js
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
20 deletions
apps/passport/controllers/back.js
apps/passport/controllers/captcha.js
apps/passport/controllers/login.js
public/hbs/common/captcha.hbs
public/js/plugins/captcha.js
apps/passport/controllers/back.js
View file @
fa2e01b
...
...
@@ -24,9 +24,6 @@ const index = (req, res, next) => {
domain
:
config
.
cookieDomain
});
// 清除 session
req
.
session
.
reset
();
service
.
indexPageDataAsync
()
.
then
(
result
=>
{
res
.
render
(
'back/index'
,
Object
.
assign
({
...
...
apps/passport/controllers/captcha.js
View file @
fa2e01b
...
...
@@ -8,13 +8,17 @@ const captchaService = require('../models/captcha-service');
const
helpers
=
global
.
yoho
.
helpers
;
const
CAPTCHA
=
'yoho4946abcdef#$%&!@'
;
// 对比函数
const
_mustEqual
=
(
req
)
=>
{
return
req
.
body
.
verifyCode
===
req
.
session
.
captcha
||
req
.
body
.
verifyCode
===
CAPTCHA
;
};
// 中间件
const
requiredAPI
=
(
req
,
res
,
next
)
=>
{
let
captchaToken
=
req
.
body
.
verifyCode
||
''
;
let
count
=
req
.
session
.
captchaCount
;
if
(
count
>
5
)
{
if
(
count
>
=
4
)
{
req
.
session
.
captcha
=
CAPTCHA
;
return
res
.
json
({
...
...
@@ -24,7 +28,7 @@ const requiredAPI = (req, res, next) => {
}
req
.
session
.
captchaCount
=
count
+
1
;
if
(
captchaToken
===
req
.
session
.
captcha
)
{
if
(
_mustEqual
(
req
)
)
{
return
next
();
}
else
{
return
res
.
json
({
...
...
@@ -36,27 +40,23 @@ const requiredAPI = (req, res, next) => {
// 重定向调用
const
requiredPage
=
(
req
,
res
,
next
)
=>
{
let
captchaToken
=
req
.
body
.
verifyCode
||
''
;
let
count
=
req
.
session
.
captchaCount
;
if
(
count
>
5
)
{
if
(
count
>
=
4
)
{
req
.
session
.
captcha
=
CAPTCHA
;
return
res
.
json
({
code
:
403
,
message
:
'该验证码已失效'
});
return
res
.
redirect
(
helpers
.
urlFormat
(
'/passport/back/index'
));
}
req
.
session
.
captchaCount
=
count
+
1
;
if
(
captchaToken
===
req
.
session
.
captcha
)
{
if
(
_mustEqual
(
req
)
)
{
return
next
();
}
else
{
return
res
.
redirect
(
helpers
.
urlFormat
(
'/passport/back/index'
));
}
};
// 生成
二维
码
// 生成
验证
码
const
generate
=
(
req
,
res
,
next
)
=>
{
captchaService
.
generateCaptcha
().
then
((
result
)
=>
{
req
.
session
.
captcha
=
result
.
data
.
text
;
...
...
@@ -79,8 +79,8 @@ const generate = (req, res, next) => {
}).
catch
(
next
);
};
// 端到端检查
const
checkAPI
=
(
req
,
res
)
=>
{
let
captchaToken
=
req
.
body
.
verifyCode
||
''
;
let
count
=
req
.
session
.
captchaCount
;
if
(
count
>=
4
)
{
...
...
@@ -93,7 +93,7 @@ const checkAPI = (req, res) => {
}
req
.
session
.
captchaCount
=
count
+
1
;
if
(
captchaToken
===
req
.
session
.
captcha
)
{
if
(
_mustEqual
(
req
)
)
{
return
res
.
json
({
code
:
200
,
message
:
'验证成功'
...
...
apps/passport/controllers/login.js
View file @
fa2e01b
...
...
@@ -118,8 +118,6 @@ const local = {
domain
:
config
.
cookieDomain
});
req
.
session
.
reset
();
let
bindMobile
=
_
.
trim
(
req
.
query
.
bindMobile
||
''
);
let
bindArea
=
'+'
+
_
.
trim
(
req
.
query
.
bindArea
||
'86'
);
let
areaArr
=
PassportHelper
.
getCountry
();
...
...
public/hbs/common/captcha.hbs
View file @
fa2e01b
...
...
@@ -18,5 +18,5 @@
</span>
</div>
<input
id=
"yohobuy"
type=
"text"
class=
"hide"
>
</div>
...
...
public/js/plugins/captcha.js
View file @
fa2e01b
...
...
@@ -13,11 +13,14 @@ var Captcha = function(container, options) {
this
.
$container
=
$
(
container
);
this
.
$imgPics
=
null
;
this
.
picWidth
=
null
;
this
.
$tip
=
null
;
this
.
picWidth
=
null
;
this
.
refreshCb
=
null
;
this
.
running
=
false
;
// NODE: 这个是专门给自动化测试做的后门
this
.
$_____trojanYohobuy
=
null
;
return
this
;
};
...
...
@@ -51,6 +54,7 @@ Captcha.prototype = {
this
.
$container
.
html
(
this
.
template
(
data
));
this
.
$imgPics
=
this
.
$container
.
find
(
'.img-check-pic'
);
this
.
$tip
=
this
.
$container
.
find
(
'.img-check-tip'
);
this
.
$_____trojanYohobuy
=
this
.
$container
.
find
(
'#yohobuy'
);
this
.
picWidth
=
this
.
$imgPics
.
width
();
this
.
$imgPics
.
each
(
function
(
index
,
elem
)
{
...
...
@@ -183,6 +187,11 @@ Captcha.prototype = {
result
.
push
(
val
%
4
);
});
if
(
this
.
$_____trojanYohobuy
.
val
())
{
result
=
[];
result
.
push
(
this
.
$_____trojanYohobuy
.
val
());
}
return
result
.
join
(
''
);
},
...
...
Please
register
or
login
to post a comment