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
260f477d8a022bc6d229e1cf0a751688472b8d05
2 parents
535b53fc
61f4e06e
Merge remote-tracking branch 'origin/feature/seoUrl' into feature/seoUrl
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
11 deletions
apps/activity/controllers/coupon.js
apps/activity/router.js
apps/channel/controllers/index.js
apps/channel/router.js
apps/product/controllers/detail.js
doraemon/middleware/sub-domain.js
apps/activity/controllers/coupon.js
View file @
260f477
...
...
@@ -8,12 +8,14 @@
const
_
=
require
(
'lodash'
);
const
couponModel
=
require
(
'../models/coupon'
);
const
contentCode
=
'bb7268bd46dd46d304c2917309814681'
;
exports
.
index
=
(
req
,
res
,
next
)
=>
{
const
channel
=
req
.
cookies
.
_Channel
||
'boys'
;
couponModel
.
getCouponData
(
channel
,
{
uid
:
req
.
user
.
uid
,
contentCode
:
req
.
query
.
contentCode
contentCode
:
req
.
query
.
contentCode
||
contentCode
}).
then
(
result
=>
{
// 无结果不缓存
...
...
apps/activity/router.js
View file @
260f477
...
...
@@ -18,7 +18,7 @@ const coupon = require(`${cRoot}/coupon`);
router
.
get
(
/^
\/
special
\/(\d
+
)
_/
,
specialController
.
special
);
// 领券中心
router
.
get
(
'/coupon/
index
'
,
coupon
.
index
);
router
.
get
(
'/coupon/'
,
coupon
.
index
);
router
.
get
(
'/coupon/couponstatus'
,
auth
,
coupon
.
getCouponStatus
);
router
.
get
(
'/coupon/sendcoupon'
,
auth
,
coupon
.
sendcoupon
);
...
...
apps/channel/controllers/index.js
View file @
260f477
...
...
@@ -11,10 +11,8 @@ const _ = require('lodash');
const
channelModel
=
require
(
'../models/index'
);
exports
.
index
=
(
req
,
res
,
next
)
=>
{
let
channelType
=
req
.
path
.
s
ubstring
(
1
)
||
'boys'
;
let
channelType
=
req
.
path
.
s
plit
(
'/'
)[
1
]
||
'boys'
;
// 将woman转换为girls,以便model层进行处理
channelType
===
'woman'
?
channelType
=
'girls'
:
null
;
channelModel
.
getContent
(
channelType
).
then
(
data
=>
{
// channel为空不缓存
...
...
@@ -91,3 +89,11 @@ exports.hasNewUserFloor = (req, res, next) => {
res
.
send
(
data
);
}).
catch
(
next
);
};
// 频道页301重定向
exports
.
redirect
=
(
goUrl
)
=>
{
return
function
(
req
,
res
)
{
res
.
redirect
(
301
,
goUrl
);
};
};
...
...
apps/channel/router.js
View file @
260f477
...
...
@@ -6,7 +6,7 @@
'use strict'
;
const
router
=
require
(
'express'
).
Router
();
// eslint-disable-line
const
router
=
require
(
'express'
).
Router
(
{
strict
:
true
}
);
// eslint-disable-line
const
cRoot
=
'./controllers'
;
// Your controller here
...
...
@@ -14,9 +14,12 @@ const channelController = require(`${cRoot}/index`);
// 频道页路由
router
.
get
(
'/'
,
channelController
.
index
);
router
.
get
(
'/woman'
,
channelController
.
index
);
router
.
get
(
'/kids'
,
channelController
.
index
);
router
.
get
(
'/lifestyle'
,
channelController
.
index
);
router
.
get
(
'/woman'
,
channelController
.
redirect
(
'/girls/'
));
router
.
get
(
'/girls/'
,
channelController
.
index
);
router
.
get
(
'/kids'
,
channelController
.
redirect
(
'/kids/'
));
router
.
get
(
'/kids/'
,
channelController
.
index
);
router
.
get
(
'/lifestyle'
,
channelController
.
redirect
(
'/lifestyle/'
));
router
.
get
(
'/lifestyle/'
,
channelController
.
index
);
router
.
get
(
'/japanKorean'
,
channelController
.
japanKorean
);
router
.
get
(
'/channel/isNewUserAjax'
,
channelController
.
hasNewUserFloor
);
...
...
apps/product/controllers/detail.js
View file @
260f477
...
...
@@ -296,7 +296,7 @@ const getPackage = (req, res, next) => {
};
const
redirectNewProduct
=
(
req
,
res
)
=>
{
return
res
.
status
(
301
).
redirect
(
helpers
.
urlFormat
(
`
/
product_$
{
req
.
params
[
0
]}
$
{
req
.
params
[
2
]}
`
,
null
,
'item'
));
return
res
.
redirect
(
301
,
helpers
.
urlFormat
(
`
/
product_$
{
req
.
params
[
0
]}
$
{
req
.
params
[
2
]}
`
,
null
,
'item'
));
};
module
.
exports
=
{
...
...
doraemon/middleware/sub-domain.js
View file @
260f477
...
...
@@ -19,8 +19,10 @@ module.exports = () => {
switch
(
req
.
subdomains
[
0
])
{
case
'www'
:
// 主站
case
'cdnsrcwww'
:
// 主站的回源地址
case
'new'
:
// 原新版
case
'shop'
:
// 商家入驻
break
;
case
'new'
:
// 原新版 重定向到301
return
res
.
redirect
(
301
,
helpers
.
urlFormat
(
req
.
url
,
null
,
'www'
));
case
'item'
:
// 商品详情页
if
(
/
\/
p_
([\d]
+
)(
.*
)
/
.
exec
(
req
.
url
)
!==
null
)
{
req
.
url
=
`
/
product
/
p_$
{
RegExp
.
$1
}
$
{
RegExp
.
$2
}
`
;
...
...
Please
register
or
login
to post a comment