-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathurl_parser.js
197 lines (171 loc) · 3.84 KB
/
url_parser.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
const UrlParser = (urlString, namedUrl = "") => {
const urlBase = new URL(urlString);
/**
* Wrapper for URL.hash
*
**/
function hash() {
return urlBase.hash;
}
/**
* Wrapper for URL.host
*
**/
function host() {
return urlBase.host;
}
/**
* Wrapper for URL.hostname
*
**/
function hostname() {
return urlBase.hostname;
}
/**
* Returns an object with all the named params and their values
*
**/
function namedParams() {
const allPathName = pathNames();
const allNamedParamsKeys = namedParamsWithIndex();
return allNamedParamsKeys.reduce((values, paramKey) => {
values[paramKey.value] = allPathName[paramKey.index];
return values;
}, {});
}
/**
* Returns an array with all the named param keys
*
**/
function namedParamsKeys() {
const allNamedParamsKeys = namedParamsWithIndex(namedUrl);
return allNamedParamsKeys.reduce((values, paramKey) => {
values.push(paramKey.value);
return values;
}, []);
}
/**
* Returns an array with all the named param values
*
**/
function namedParamsValues() {
const allPathName = pathNames();
const allNamedParamsKeys = namedParamsWithIndex();
return allNamedParamsKeys.reduce((values, paramKey) => {
values.push(allPathName[paramKey.index]);
return values;
}, []);
}
/**
* Returns an array with all named param ids and their position in the path
* Private
**/
function namedParamsWithIndex() {
const namedUrlParams = getPathNames(namedUrl);
return namedUrlParams.reduce((validParams, param, index) => {
if (param[0] === ":") {
validParams.push({ value: param.slice(1), index });
}
return validParams;
}, []);
}
/**
* Wrapper for URL.port
*
**/
function port() {
return urlBase.port;
}
/**
* Wrapper for URL.pathname
*
**/
function pathname() {
return urlBase.pathname;
}
/**
* Wrapper for URL.protocol
*
**/
function protocol() {
return urlBase.protocol;
}
/**
* Wrapper for URL.search
*
**/
function search() {
return urlBase.search;
}
/**
* Returns an object with all query params and their values
*
**/
function queryParams() {
const params = {};
urlBase.searchParams.forEach((value, key) => {
params[key] = value;
});
return params;
}
/**
* Returns an array with all the query param keys
*
**/
function queryParamsKeys() {
const params = [];
urlBase.searchParams.forEach((_value, key) => {
params.push(key);
});
return params;
}
/**
* Returns an array with all the query param values
*
**/
function queryParamsValues() {
const params = [];
urlBase.searchParams.forEach((value) => {
params.push(value);
});
return params;
}
/**
* Returns an array with all the elements of a pathname
*
**/
function pathNames() {
return getPathNames(urlBase.pathname);
}
/**
* Returns an array with all the parts of a pathname
* Private method
**/
function getPathNames(pathName) {
if (pathName === "/" || pathName.trim().length === 0) return [pathName];
if (pathName.slice(-1) === "/") {
pathName = pathName.slice(0, -1);
}
if (pathName[0] === "/") {
pathName = pathName.slice(1);
}
return pathName.split("/");
}
return Object.freeze({
hash: hash(),
host: host(),
hostname: hostname(),
namedParams: namedParams(),
namedParamsKeys: namedParamsKeys(),
namedParamsValues: namedParamsValues(),
pathNames: pathNames(),
port: port(),
pathname: pathname(),
protocol: protocol(),
search: search(),
queryParams: queryParams(),
queryParamsKeys: queryParamsKeys(),
queryParamsValues: queryParamsValues(),
});
};
module.exports = { UrlParser };