/** * router of sub app channel * @author: Bi Kai<kai.bi@yoho.cn> * @date: 2016/05/09 */ 'use strict'; const express = require('express'); const cRoot = './controllers'; const channel = require(cRoot); const cate = require(cRoot + '/cate'); const brandController = require(`${cRoot}/brand`); const custom = require(`${cRoot}/custom`); const rewrite = require('../../doraemon/middleware/rewrite'); const sitemap = require('../3party/controllers/sitemap'); const router = express.Router(); // eslint-disable-line router.get('/', channel.switchChannel, channel.index); // 首页,频道选择页 router.get('/boys', channel.switchChannel, channel.boys); router.get('/girls', channel.switchChannel, channel.girls); router.get('/kids', channel.switchChannel, channel.kids); router.get('/lifestyle', channel.switchChannel, channel.lifestyle); router.get('/channel/getResourceContent', channel.getResourceContent);// 获取首页,其余频道楼层 router.get('/(:channel)/bottomBanner', channel.bottomBanner); router.get('/cate', cate.index); router.get('/brands', rewrite.channel, brandController.indexRedirect); // 品牌首页 router.get(/^\/(.*?)-brands/, rewrite.resolve, brandController.index); // 品牌首页 SEO优化 router.get('/brands/search', brandController.search); // 品牌搜索页 router.get('/brands/getBrandList', brandController.brandList); // 获取品牌列表 router.post('/brands/searchAsync', brandController.searchAsync); // 品牌搜索异步数据 router.post('/brands/addBrandSearch', brandController.addBrandSearch); // 添加品牌搜索记录 router.get('/brands/delBrandHistory', brandController.delBrandHistory); // 删除品牌搜索记录 // 5.2新楼层功能 router.post('/channel/shopRecom', channel.shopRecom); // 店铺推荐收藏状态 router.post('/channel/userVip', channel.userVip); // 自定义频道,市场推广-智汇 // 此页面做的早,写死发给市场,与自定义的不兼容,所以需要写死 router.get('/channel/2fb054e8315300a1ae1f80c3a4fda862.html', custom.zhihui); // 自定义频道 router.get('/channel/:id.html', custom.index); // 站点地图 router.get('/sitemap.xml', sitemap.siteMap); module.exports = router;