-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
271 lines (219 loc) · 8.4 KB
/
index.js
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
module.exports = Regex;
if (typeof window !== 'undefined') {
window.pathToRegex = Regex;
}
const escapeRe = /([$.+*?=!:[\]{}(|)/\\])/g;
/**
* defaultParam - simplistic polyfill for default function parament
* @param {any} [obj]
* @param {any} defaultValue
* @return {any}
*/
function defaultParam(obj, defaultValue) {
return typeof obj !== 'undefined' ? obj : defaultValue;
}
/**
* Класс Regex [description].
* @constructor
* @param {Object} options [description].
*/
function Regex(path, options) {
this.init(path, options);
return this;
}
Regex.prototype.init = function (
path = "/",
options = {}
) {
this.options = {
case: typeof options.case === "boolean" ? options.case : true,
separators: typeof options.separators === "string" ? options.separators : "/",
fromStart: typeof options.fromStart === "boolean" ? options.fromStart : true,
toEnd: typeof options.toEnd === "boolean" ? options.toEnd : true
};
this.options.separator = "[" + this.escape(this.options.separators) + "]";
if (path instanceof RegExp) {
this.restructureRegExp(path);
} else if (typeof path === "string") {
this.restructurePath(path);
}
};
/**
* Метод преобразует строку с шаблоном пути, включающим в себя строковое представление регулярных выражений
* и указадели на идентификаторы ключей в стиле Express.js в регулярное выражение
* @param {string} path Строка содержащая шаблон пути. Может содержать в себе регулярные выражения и объявление ключей типа :id. Поведение имитирует аналогичный функционал библиотеки Express.js v.5.x
*/
Regex.prototype.restructureRegExp = function (regexp) {
regexp = defaultParam(regexp, /.*/);
this.keys = [];
this.path = undefined;
this.regstr = ("" + regexp);
this.regstr = this.regstr.substr(1, this.regstr.length - 2);
this.regexp = new RegExp(
this.regstr,
this.options.case ? "" : "i"
);
}
/**
* Метод преобразует строку с шаблоном пути, включающим в себя строковое представление регулярных выражений
* и указадели на идентификаторы ключей в стиле Express.js в регулярное выражение
* @param {string} path Строка содержащая шаблон пути. Может содержать в себе регулярные выражения и объявление ключей типа :id. Поведение имитирует аналогичный функционал библиотеки Express.js v.5.x
*/
Regex.prototype.restructurePath = function (path) {
path = defaultParam(path, '/');
this.keys = [];
this.path = path;
this.regstr = "";
const separator = this.options.separator;
const notseparator = "[^" + this.escape(this.options.separators) + "]";
let offset = 0;
let count = 0;
// 11. REGEXP toEnd[true]: /^[\/]?foo\/(.*?)[\/]?$/
// 11. REGEXP toEnd[false]: /^[\/]?foo\/(.*?)([\/]|[\/]?$)/i
path = path.replace(new RegExp("^" + separator + "*(.*?)" + separator + "*$"), "$1");
//path += this.options.separators[0];
path.replace(/:([a-z]\w*)(\((.*?)\))?([\?\*\+])?/gi, (str, key, a, pat, quant, index, string) => {
// console.log("-----------------------------");
// console.log("str:", str);
// console.log("key:", key);
// console.log("a:", a);
// console.log("pat:", pat);
// console.log("quant:", quant);
// console.log("index:", index);
// console.log("string:", string);
count++;
const isMultiple = (quant === "*" || quant === "+") ? true : false;
const isExtrude = /^(\[[^\[\]]+\]|\([^\(\)]+\)|\.|\\.)[\+\*]$/.test(pat) ? true : false;
let isRequired = (quant !== "*" && quant !== "?") ? true : false;
if (!quant && pat && /^(\[[^\[\]]+\]|\([^\(\)]+\)|\.|\\.)[\*\?]?$/.test(pat)) isRequired = false;
const quantifier = quant ? quant : "";
// console.log("isMultiple", isMultiple);
// console.log("isRequired", isRequired);
// const startChar = path.charAt(index-1);
const isStarted = (!index) ? true : this.separator(path.charAt(index - 1));
const isStoped = (index + str.length >= path.length) ? true : this.separator(path.charAt(index + str.length));
const isToken = isStarted && isStoped;
if (index > offset) {
const text = path.substring(offset, index);
const regstr = this.escape(text);
this.regstr += regstr;
}
if (isToken && index) {
if (!isMultiple || !isRequired) {
if (pat && !isExtrude) {
this.regstr += "?";
}
}
}
//console.log("isStarted", isStarted);
//console.log("isStoped", isStoped);
//console.log("isToken", isToken);
//console.log("this.regstr 1:", this.regstr);
const pattern = (pat ? pat : notseparator + "+");
const regstr =
isMultiple ?
isToken ?
isExtrude ?
"((?:" + separator + "?" + pattern + ")" + quantifier + ")" :
"((?:" + separator + "" + pattern + ")" + quantifier + ")" :
"((?:" + notseparator + "*" + pattern + ")" + quantifier + ")" :
isToken ?
isExtrude ?
"(" + pattern + "?)" + quantifier :
"(" + pattern + ")" + quantifier :
"(" + pattern + ")" + quantifier;
this.regstr += regstr;
const data = {
key: key,
multiple: isMultiple,
required: isRequired,
index: count,
pattern: pattern
};
if (isMultiple)
data.regexp = new RegExp(pattern, this.options.case ? "g" : "gi");
this.keys.push(data);
offset = index + str.length;
return str;
});
if (offset < path.length - 1) {
const text = path.substring(offset);
const regstr = this.escape(text);
this.regstr += regstr;
}
this.regexp = new RegExp(
(this.options.fromStart ? "^" : "") +
separator + "?" +
this.regstr +
(this.options.toEnd
?
separator + "?" + "$"
:
"(" + separator + "|" + separator + "?" + "$" + ")"
),
this.options.case ? "" : "i"
);
}
/**
* Метод экранирует все спец символы указанные в глобальной для модуля, переменной escapeRe
* @param {string} text Любая строка
* @return {string} Строка text, в которой все символы указанные в переменной escapeRe заэкранированы
*/
Regex.prototype.escape = function (text) {
return text.replace(escapeRe, s => {
return "\\" + s
});
}
/**
* Метод проверяет является ли char одним из разделителей указанных в this.options.separators
* @param {string} char Cтрока содержащая в себе проверяемый символ (длинна строки должна быть равна 1)
* @return {boolean} Если проверяемый символ является одним из символов указанных в this.options.separators то true иначе false
*/
Regex.prototype.separator = function (char) {
return !!(this.options.separators.indexOf(char) + 1);
}
Regex.prototype.match = function (path) {
// console.log("match 01");
if (typeof path !== "string") return;
const reseparator = this.options.separator;
const separator = this.options.separators[0];
path = path.replace(new RegExp("^" + reseparator + "*(.*?)" + reseparator + "*$"), separator + "$1" + separator);
// console.log("match 02");
const result = path.match(this.regexp);
// console.log("match 03");
if (!result) return;
// console.log("match 04");
const data = {};
// console.log("match 05");
this.keys.forEach(item => {
// console.log("match foreach 01");
let isMultiple = false;
if (data[item.key])
isMultiple = true;
if (data[item.key] && !Array.isArray(data[item.key])) {
isMultiple = true;
data[item.key] = [data[item.key]];
}
if (item.multiple && !data[item.key]) {
isMultiple = true;
data[item.key] = [];
}
let value = result[item.index] ? result[item.index] : undefined;
if (!isMultiple && !item.multiple) {
data[item.key] = value;
return;
}
if (isMultiple && !item.multiple && result[item.index]) {
data[item.key].push(value);
return;
}
if (result[item.index])
result[item.index].replace(item.regexp, str => {
if (str) data[item.key].push(
str.replace(new RegExp(reseparator + "*$"), "")
);
});
});
// console.log("match 06");
return data;
};