-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js.01
203 lines (159 loc) · 6.06 KB
/
index.js.01
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
module.exports = Regex;
const escapeRe = /([$.+*?=!:[\]{}(|)/\\])/g;
/**
* Класс 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: options.case || true,
separators: options.separators || "/",
fromStart: options.fromStart || true,
toEnd: options.toEnd || true
}
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 = /.*/) {
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 = "/") {
this.keys = [];
this.path = path;
this.regstr = "";
const separator = "[" + this.escape(this.options.separators) + "]";
const notseparator = "[^" + this.escape(this.options.separators) + "]";
let offset = 0;
let count = 0;
path = path.replace(new RegExp("^" + separator + "*(.*?)" + separator + "*$"), "$1");
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++;
let pq = pat?pat[pat.length-1]:"";
pq = (pq==="+"||pq==="*")?"?":"";
const pattern = (pat ? pat + pq : notseparator + "+");
const isMultiple = (quant === "*" || quant === "+") ? true : false;
const isRequired = (quant !== "*" && quant !== "?") ? true : false;
const quantifier = quant ? quant : "";
if (index > offset) {
const text = path.substring(offset, index);
const regstr = this.escape(text);
this.regstr += regstr;
}
const regstr =
isMultiple ?
"((?:" + pattern + separator + "?" + ")" + 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 +
separator + "?" +
(this.options.toEnd ? "$" : ""),
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) {
if (typeof path !== "string") return;
const result = path.match(this.regexp);
if (!result) return;
const data = {};
this.keys.forEach(item => {
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] = [];
}
if (!isMultiple && !item.multiple) {
data[item.key] = result[item.index];
return;
}
if (isMultiple && !item.multiple && result[item.index]) {
data[item.key].push(result[item.index]);
return;
}
if (result[item.index])
result[item.index].replace(item.regexp, str => {
data[item.key].push(str);
});
});
return data;
};