app.js
2.8 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
'use strict';
const path = require('path');
const express = require('express');
const hbs = require('express-handlebars');
const config = require('./config/config');
const yohoLib = require('yoho-node-lib');
// set root path
global.ROOT_PATH = path.join(__dirname, '');
global.Promise = require('bluebird');
// 全局注册library
yohoLib.global(config);
global.yoho.redis = require('./libs/redis');
const logger = global.yoho.logger;
const app = express();
const cseo = require('./apps/controllers/seo/index');
const baiduXzh = require('./apps/controllers/seo/xzh');
// hbs-set
app.engine('hbs', hbs({
extname: '.hbs',
defaultLayout: 'layout',
layoutsDir: path.join(__dirname, 'hbs'),
partialsDir: path.join(__dirname, 'hbs/partials'),
views: path.join(__dirname, 'apps/views')
}));
// set-express-view
app.set('views', path.join(__dirname, 'apps/views'));
app.set('view engine', 'hbs');
// 设置public文件夹为存放静态文件的目录
app.use('/xml-data/goods-xml', express.static(path.join(__dirname, './public/dist/goods-xml/')));
// 添加请求上下文
app.use(global.yoho.httpCtx());
app.get('/xml-data/goods-:start.xml', cseo.index);
app.get('/xml-data/auto-goods.html', cseo.autoGoodsXml);
app.get('/xml-data/goods/sitemap.xml', cseo.siteMapXml);
app.get('/xml-data/demo.xml', cseo.demoXml);
app.get('/xml-data/demo.xsd', cseo.demoXsd);
app.get('/setTask', cseo.setTask);
app.get('/delTask', cseo.delTask);
// 百度熊掌号
app.get('/sendXzh', baiduXzh.index);
// 百度熊掌号-潮流全站推送一遍mip
app.get('/xzh-yohoGirlsAll', baiduXzh.yohoGirlsAll);
// 百度熊掌号--潮流全站推送一遍mip
app.get('/xzh-yohoBoysAll', baiduXzh.yohoBoysAll);
// 百度熊掌号--mars全站推送一遍mip
app.get('/xzh-marsAll', baiduXzh.marsAll);
// 百度熊掌号--yohoBoysReal实时推送mip
app.get('/xzh-yohoBoysReal', baiduXzh.yohoBoysReal);
// 百度熊掌号--mars实时推送mip
app.get('/xzh-marsReal', baiduXzh.marsReal);
// 商品详情-百度链接提交
app.get('/goodsUrl', cseo.goodsUrl);
// 逛详情-百度链接提交
app.get('/guangUrl', cseo.guangUrl);
// 潮流首页-百度链接提交
app.get('/yohoBoysUrl', cseo.yohoBoysUrl);
// 潮流首页-百度链接提交
app.get('/yohoGirlsUrl', cseo.yohoGirlsUrl);
// 潮流获取sitemap连接,设置到redis
app.get('/newsSitemap', cseo.newsSitemap);
// 潮流全站推送一遍mip和百度资源位
app.get('/yohoGirlsAll', cseo.yohoGirlsAll);
// mars全站推送一遍mip和百度资源位
app.get('/marsAll', cseo.marsAll);
// 潮流全站推送一遍mip和百度资源位
app.get('/yohoBoysAll', cseo.yohoBoysAll);
// mars实时推送百度资源位连接和百度资源位mip
app.get('/marsReal', cseo.marsReal);
app.listen(config.port, function() {
logger.info(`yoho seo start : http://127.0.0.1:${config.port}`);
});