parameter.js
2.66 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/**
* 静态化路由参数处理
* @author: yyq<yanqing.yang@yoho.cn>
* @date: 2017/11/24
*/
'use strict';
const _ = require('lodash');
// const logger = global.yoho.logger;
const queryString = require('querystring');
const minToFullMap = {
ag: 'age_level',
cn: 'channel',
gd: 'gender',
sn: 'sort_name',
pa: 'phrase',
ci: 'category_id',
so: 'sort',
ms: 'msort',
mi: 'misort',
tp: 'type',
sz: 'size',
cl: 'color',
pc: 'price',
bd: 'brand',
qr: 'query',
lt: 'limit',
ld: 'limited',
od: 'order',
nw: 'new',
pg: 'page',
st: 'style',
sd: 'standard',
si: 'specialsale_id',
sf: 'specialoffer'
};
const fullToMinMap = _.transform(minToFullMap, (result, value, key) => {
result[value] = key;
}, {});
const transformKey = (params, isFull) => {
if (_.isEmpty(params)) {
return params;
}
let matchParams = {},
extraParams = {};
let map = isFull ? fullToMinMap : minToFullMap;
_.forEach(params, (value, key) => {
let name = map[key];
if (name) {
matchParams[name] = value;
} else {
extraParams[key] = value;
// logger.info(`list parameter [${key}] map value not found`);
}
});
return {
matchParams,
extraParams
};
};
const minPathToFullParam = (path) => {
let obj = {};
_.forEach(_.split(path, '-'), splitValue => {
if (!splitValue) {
return;
}
let minKey = splitValue.substr(0, 2);
let fullKey = minToFullMap[minKey];
if (fullKey) {
obj[fullKey] = _.replace(_.replace(splitValue, minKey, ''), '__', '-'); // 替换value中__
}
});
return obj;
};
/**
* 筛选参数
* @param originParam 当前 URL 中的参数
* @param newParam 要拼接的 参数
* @returns {string}
*/
const fullParamToMinPath = (uri, params, newObj, delObj = {}) => {
let obj = _.assign({}, params, newObj);
let pathArr = [];
let extraQs = '';
Object.assign(delObj, {uid: true});
_.forEach(delObj, (value, key) => {
_.has(obj, key) && _.unset(obj, key);
});
let transParams = transformKey(obj, true);
_.forEach(transParams.matchParams, (value, key) => {
if (value) {
pathArr.push(`${key}${_.replace(value, '-', '__')}`); // 替换value中-
}
});
if (!_.isEmpty(transParams.extraParams)) {
extraQs = '?' + queryString.stringify(transParams.extraParams);
}
return _.trimEnd(uri, '/') + '/' + _.sortBy(pathArr).join('-') + extraQs;
};
module.exports = {
transformKey,
fullParamToMinPath,
minPathToFullParam
};