@fjell/express-router 4.3.9 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.kodrdriv/config.yaml +10 -0
- package/.kodrdriv/context/content.md +1 -0
- package/dist/CItemRouter.cjs +89 -0
- package/dist/CItemRouter.cjs.map +1 -0
- package/dist/{src/CItemRouter.d.ts → CItemRouter.d.ts} +4 -4
- package/dist/CItemRouter.js +85 -0
- package/dist/CItemRouter.js.map +1 -0
- package/dist/ItemRouter.cjs +293 -0
- package/dist/ItemRouter.cjs.map +1 -0
- package/dist/{src/ItemRouter.d.ts → ItemRouter.d.ts} +4 -4
- package/dist/ItemRouter.js +289 -0
- package/dist/ItemRouter.js.map +1 -0
- package/dist/PItemRouter.cjs +71 -0
- package/dist/PItemRouter.cjs.map +1 -0
- package/dist/{src/PItemRouter.d.ts → PItemRouter.d.ts} +4 -4
- package/dist/PItemRouter.js +67 -0
- package/dist/PItemRouter.js.map +1 -0
- package/dist/index.cjs +437 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/logger.cjs +10 -0
- package/dist/logger.cjs.map +1 -0
- package/dist/logger.d.ts +2 -0
- package/dist/{src/logger.js → logger.js} +4 -2
- package/dist/logger.js.map +1 -0
- package/package.json +48 -38
- package/src/ItemRouter.ts +3 -3
- package/dist/src/CItemRouter.js +0 -58
- package/dist/src/CItemRouter.js.map +0 -1
- package/dist/src/ItemRouter.js +0 -222
- package/dist/src/ItemRouter.js.map +0 -1
- package/dist/src/PItemRouter.js +0 -41
- package/dist/src/PItemRouter.js.map +0 -1
- package/dist/src/index.d.ts +0 -3
- package/dist/src/index.js +0 -4
- package/dist/src/index.js.map +0 -1
- package/dist/src/logger.d.ts +0 -2
- package/dist/src/logger.js.map +0 -1
- package/eslint.config.mjs +0 -70
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,437 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
|
+
|
|
5
|
+
const core = require('@fjell/core');
|
|
6
|
+
const lib = require('@fjell/lib');
|
|
7
|
+
const deepmerge = require('deepmerge');
|
|
8
|
+
const express = require('express');
|
|
9
|
+
const Logging = require('@fjell/logging');
|
|
10
|
+
|
|
11
|
+
const LibLogger = Logging.getLogger('@fjell/express-router');
|
|
12
|
+
|
|
13
|
+
function _define_property$2(obj, key, value) {
|
|
14
|
+
if (key in obj) {
|
|
15
|
+
Object.defineProperty(obj, key, {
|
|
16
|
+
value: value,
|
|
17
|
+
enumerable: true,
|
|
18
|
+
configurable: true,
|
|
19
|
+
writable: true
|
|
20
|
+
});
|
|
21
|
+
} else {
|
|
22
|
+
obj[key] = value;
|
|
23
|
+
}
|
|
24
|
+
return obj;
|
|
25
|
+
}
|
|
26
|
+
class ItemRouter {
|
|
27
|
+
getLk(res) {
|
|
28
|
+
return {
|
|
29
|
+
kt: this.keyType,
|
|
30
|
+
lk: res.locals[this.getPkParam()]
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
// this is meant to be consumed by children routers
|
|
34
|
+
getLKA(res) {
|
|
35
|
+
return [
|
|
36
|
+
this.getLk(res)
|
|
37
|
+
];
|
|
38
|
+
}
|
|
39
|
+
getPk(res) {
|
|
40
|
+
return core.cPK(res.locals[this.getPkParam()], this.getPkType());
|
|
41
|
+
}
|
|
42
|
+
// Unless this is a contained router, the locations will always be an empty array.
|
|
43
|
+
/* eslint-disable */ getLocations(res) {
|
|
44
|
+
throw new Error('Method not implemented in an abstract router');
|
|
45
|
+
}
|
|
46
|
+
/* eslint-enable */ // eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
47
|
+
getIk(res) {
|
|
48
|
+
throw new Error('Method not implemented in an abstract router');
|
|
49
|
+
}
|
|
50
|
+
/* istanbul ignore next */ configureItemActions() {
|
|
51
|
+
this.logger.debug('ARouter - No Item Actions Configured');
|
|
52
|
+
return {};
|
|
53
|
+
}
|
|
54
|
+
/* istanbul ignore next */ configureAllActions() {
|
|
55
|
+
this.logger.debug('ARouter - No All Actions Configured');
|
|
56
|
+
return {};
|
|
57
|
+
}
|
|
58
|
+
/* istanbul ignore next */ getRouter() {
|
|
59
|
+
const router = express.Router();
|
|
60
|
+
this.configure(router);
|
|
61
|
+
return router;
|
|
62
|
+
}
|
|
63
|
+
constructor(lib$1, keyType, options = {}){
|
|
64
|
+
_define_property$2(this, "lib", void 0);
|
|
65
|
+
_define_property$2(this, "keyType", void 0);
|
|
66
|
+
_define_property$2(this, "options", void 0);
|
|
67
|
+
_define_property$2(this, "childRouters", {});
|
|
68
|
+
_define_property$2(this, "logger", void 0);
|
|
69
|
+
_define_property$2(this, "itemActions", void 0);
|
|
70
|
+
_define_property$2(this, "getPkType", ()=>{
|
|
71
|
+
return this.keyType;
|
|
72
|
+
});
|
|
73
|
+
_define_property$2(this, "getPkParam", ()=>{
|
|
74
|
+
return `${this.getPkType()}Pk`;
|
|
75
|
+
});
|
|
76
|
+
_define_property$2(this, "postItemAction", async (req, res)=>{
|
|
77
|
+
this.logger.default('Getting Item', {
|
|
78
|
+
query: req === null || req === void 0 ? void 0 : req.query,
|
|
79
|
+
params: req === null || req === void 0 ? void 0 : req.params,
|
|
80
|
+
locals: res === null || res === void 0 ? void 0 : res.locals
|
|
81
|
+
});
|
|
82
|
+
const ik = this.getIk(res);
|
|
83
|
+
const actionKey = req.path.substring(req.path.lastIndexOf('/') + 1);
|
|
84
|
+
if (!this.itemActions) {
|
|
85
|
+
this.logger.error('Item Actions are not configured');
|
|
86
|
+
return res.status(500).json({
|
|
87
|
+
error: 'Item Actions are not configured'
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
try {
|
|
91
|
+
const item = core.validatePK(await this.lib.get(ik), this.getPkType());
|
|
92
|
+
return res.json(await this.itemActions[actionKey](req, res, item, req.params, req.body));
|
|
93
|
+
} catch (err) {
|
|
94
|
+
this.logger.error('Error in Item Action', {
|
|
95
|
+
message: err === null || err === void 0 ? void 0 : err.message,
|
|
96
|
+
stack: err === null || err === void 0 ? void 0 : err.stack
|
|
97
|
+
});
|
|
98
|
+
return res.status(500).json(err);
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
_define_property$2(this, "configure", (router)=>{
|
|
102
|
+
this.logger.default('Configuring Router', {
|
|
103
|
+
pkType: this.getPkType()
|
|
104
|
+
});
|
|
105
|
+
router.get('/', this.findItems);
|
|
106
|
+
router.post('/', this.createItem);
|
|
107
|
+
const allActions = this.configureAllActions();
|
|
108
|
+
this.logger.debug('All Actions supplied to Router', {
|
|
109
|
+
allActions
|
|
110
|
+
});
|
|
111
|
+
if (allActions) {
|
|
112
|
+
Object.keys(allActions).forEach((actionKey)=>{
|
|
113
|
+
this.logger.default('Configuring All Action', {
|
|
114
|
+
actionKey
|
|
115
|
+
});
|
|
116
|
+
// TODO: Ok, this is a bit of a hack, but we need to customize the types of the request handlers
|
|
117
|
+
router.post(`/${actionKey}`, ...allActions[actionKey]);
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
const itemRouter = express.Router();
|
|
121
|
+
itemRouter.get('/', this.getItem);
|
|
122
|
+
itemRouter.put('/', this.updateItem);
|
|
123
|
+
itemRouter.delete('/', this.deleteItem);
|
|
124
|
+
this.itemActions = this.configureItemActions();
|
|
125
|
+
this.logger.debug('Item Actions supplied to Router', {
|
|
126
|
+
itemActions: this.itemActions
|
|
127
|
+
});
|
|
128
|
+
if (this.itemActions) {
|
|
129
|
+
Object.keys(this.itemActions).forEach((actionKey)=>{
|
|
130
|
+
this.logger.default('Configuring Item Action', {
|
|
131
|
+
actionKey
|
|
132
|
+
});
|
|
133
|
+
// TODO: Ok, this is a bit of a hack, but we need to customize the types of the request handlers
|
|
134
|
+
itemRouter.post(`/${actionKey}`, this.postItemAction);
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
this.logger.default('Configuring Item Operations under PK Param', {
|
|
138
|
+
pkParam: this.getPkParam()
|
|
139
|
+
});
|
|
140
|
+
router.use(`/:${this.getPkParam()}`, this.validatePrimaryKeyValue, itemRouter);
|
|
141
|
+
if (this.childRouters) {
|
|
142
|
+
this.configureChildRouters(itemRouter, this.childRouters);
|
|
143
|
+
}
|
|
144
|
+
return router;
|
|
145
|
+
});
|
|
146
|
+
_define_property$2(this, "validatePrimaryKeyValue", (req, res, next)=>{
|
|
147
|
+
const pkParamValue = req.params[this.getPkParam()];
|
|
148
|
+
if (this.validatePKParam(pkParamValue)) {
|
|
149
|
+
res.locals[this.getPkParam()] = pkParamValue;
|
|
150
|
+
next();
|
|
151
|
+
} else {
|
|
152
|
+
this.logger.error('Invalid Primary Key', {
|
|
153
|
+
pkParamValue,
|
|
154
|
+
path: req === null || req === void 0 ? void 0 : req.path
|
|
155
|
+
});
|
|
156
|
+
res.status(500).json({
|
|
157
|
+
error: 'Invalid Primary Key',
|
|
158
|
+
path: req === null || req === void 0 ? void 0 : req.path
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
_define_property$2(this, "configureChildRouters", (router, childRouters)=>{
|
|
163
|
+
for(const path in childRouters){
|
|
164
|
+
this.logger.default('Configuring Child Router at Path', {
|
|
165
|
+
path
|
|
166
|
+
});
|
|
167
|
+
router.use(`/${path}`, childRouters[path]);
|
|
168
|
+
}
|
|
169
|
+
return router;
|
|
170
|
+
});
|
|
171
|
+
_define_property$2(this, "addChildRouter", (path, router)=>{
|
|
172
|
+
this.childRouters[path] = router;
|
|
173
|
+
});
|
|
174
|
+
/* istanbul ignore next */ // eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
175
|
+
_define_property$2(this, "createItem", async (req, res)=>{
|
|
176
|
+
throw new Error('Method not implemented in an abstract router');
|
|
177
|
+
});
|
|
178
|
+
// TODO: Probably a better way to do this, but this postCreate hook only needs the item.
|
|
179
|
+
/* istanbul ignore next */ _define_property$2(this, "postCreateItem", async (item)=>{
|
|
180
|
+
this.logger.default('Post Create Item', {
|
|
181
|
+
item
|
|
182
|
+
});
|
|
183
|
+
return item;
|
|
184
|
+
});
|
|
185
|
+
_define_property$2(this, "deleteItem", async (req, res)=>{
|
|
186
|
+
this.logger.default('Deleting Item', {
|
|
187
|
+
query: req.query,
|
|
188
|
+
params: req.params,
|
|
189
|
+
locals: res.locals
|
|
190
|
+
});
|
|
191
|
+
const ik = this.getIk(res);
|
|
192
|
+
const removedItem = await this.lib.remove(ik);
|
|
193
|
+
const item = core.validatePK(removedItem, this.getPkType());
|
|
194
|
+
return res.json(item);
|
|
195
|
+
});
|
|
196
|
+
/* eslint-disable */ /* istanbul ignore next */ _define_property$2(this, "findItems", async (req, res)=>{
|
|
197
|
+
throw new Error('Method not implemented in an abstract router');
|
|
198
|
+
});
|
|
199
|
+
/* eslint-enable */ _define_property$2(this, "getItem", async (req, res)=>{
|
|
200
|
+
this.logger.default('Getting Item', {
|
|
201
|
+
query: req.query,
|
|
202
|
+
params: req.params,
|
|
203
|
+
locals: res.locals
|
|
204
|
+
});
|
|
205
|
+
const ik = this.getIk(res);
|
|
206
|
+
try {
|
|
207
|
+
// TODO: What error does validate PK throw, when can that fail?
|
|
208
|
+
const item = core.validatePK(await this.lib.get(ik), this.getPkType());
|
|
209
|
+
return res.json(item);
|
|
210
|
+
} catch (err) {
|
|
211
|
+
if (err instanceof lib.NotFoundError) {
|
|
212
|
+
this.logger.error('Item Not Found', {
|
|
213
|
+
ik,
|
|
214
|
+
message: err === null || err === void 0 ? void 0 : err.message,
|
|
215
|
+
stack: err === null || err === void 0 ? void 0 : err.stack
|
|
216
|
+
});
|
|
217
|
+
return res.status(404).json({
|
|
218
|
+
ik,
|
|
219
|
+
message: "Item Not Found"
|
|
220
|
+
});
|
|
221
|
+
} else {
|
|
222
|
+
this.logger.error('General Error', {
|
|
223
|
+
ik,
|
|
224
|
+
message: err === null || err === void 0 ? void 0 : err.message,
|
|
225
|
+
stack: err === null || err === void 0 ? void 0 : err.stack
|
|
226
|
+
});
|
|
227
|
+
return res.status(500).json({
|
|
228
|
+
ik,
|
|
229
|
+
message: "General Error"
|
|
230
|
+
});
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
_define_property$2(this, "updateItem", async (req, res)=>{
|
|
235
|
+
this.logger.default('Updating Item', {
|
|
236
|
+
body: req === null || req === void 0 ? void 0 : req.body,
|
|
237
|
+
query: req === null || req === void 0 ? void 0 : req.query,
|
|
238
|
+
params: req === null || req === void 0 ? void 0 : req.params,
|
|
239
|
+
locals: res === null || res === void 0 ? void 0 : res.locals
|
|
240
|
+
});
|
|
241
|
+
const ik = this.getIk(res);
|
|
242
|
+
const itemToUpdate = this.convertDates(req.body);
|
|
243
|
+
const retItem = core.validatePK(await this.lib.update(ik, itemToUpdate), this.getPkType());
|
|
244
|
+
return res.json(retItem);
|
|
245
|
+
});
|
|
246
|
+
_define_property$2(this, "convertDates", (item)=>{
|
|
247
|
+
const events = item.events;
|
|
248
|
+
this.logger.default('Converting Dates', {
|
|
249
|
+
item
|
|
250
|
+
});
|
|
251
|
+
if (events) {
|
|
252
|
+
Object.keys(events).forEach((key)=>{
|
|
253
|
+
Object.assign(events, {
|
|
254
|
+
[key]: deepmerge(events[key], {
|
|
255
|
+
at: events[key].at ? new Date(events[key].at) : null
|
|
256
|
+
})
|
|
257
|
+
});
|
|
258
|
+
});
|
|
259
|
+
}
|
|
260
|
+
Object.assign(item, {
|
|
261
|
+
events
|
|
262
|
+
});
|
|
263
|
+
return item;
|
|
264
|
+
});
|
|
265
|
+
// TODO: Maybe just simplify this and require that everything is a UUID?
|
|
266
|
+
/**
|
|
267
|
+
* This method might be an annoyance, but we need to capture a few cases where someone passes
|
|
268
|
+
* a PK parameter that has an odd string in it.
|
|
269
|
+
*
|
|
270
|
+
* @param pkParamValue The value of the primary key parameter
|
|
271
|
+
* @returns if the value is valid.
|
|
272
|
+
*/ _define_property$2(this, "validatePKParam", (pkParamValue)=>{
|
|
273
|
+
let validPkParam = true;
|
|
274
|
+
if (pkParamValue.length <= 0) {
|
|
275
|
+
this.logger.error('Primary Key is an Empty String', {
|
|
276
|
+
pkParamValue
|
|
277
|
+
});
|
|
278
|
+
validPkParam = false;
|
|
279
|
+
} else if (pkParamValue === 'undefined') {
|
|
280
|
+
this.logger.error('Primary Key is the string \'undefined\'', {
|
|
281
|
+
pkParamValue
|
|
282
|
+
});
|
|
283
|
+
validPkParam = false;
|
|
284
|
+
}
|
|
285
|
+
return validPkParam;
|
|
286
|
+
});
|
|
287
|
+
this.lib = lib$1;
|
|
288
|
+
this.keyType = keyType;
|
|
289
|
+
this.options = options;
|
|
290
|
+
this.logger = LibLogger.get("ItemRouter", keyType);
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
function _define_property$1(obj, key, value) {
|
|
295
|
+
if (key in obj) {
|
|
296
|
+
Object.defineProperty(obj, key, {
|
|
297
|
+
value: value,
|
|
298
|
+
enumerable: true,
|
|
299
|
+
configurable: true,
|
|
300
|
+
writable: true
|
|
301
|
+
});
|
|
302
|
+
} else {
|
|
303
|
+
obj[key] = value;
|
|
304
|
+
}
|
|
305
|
+
return obj;
|
|
306
|
+
}
|
|
307
|
+
const logger$1 = LibLogger.get('CItemRouter');
|
|
308
|
+
class CItemRouter extends ItemRouter {
|
|
309
|
+
hasParent() {
|
|
310
|
+
return !!this.parentRoute;
|
|
311
|
+
}
|
|
312
|
+
getIk(res) {
|
|
313
|
+
const pri = this.getPk(res);
|
|
314
|
+
const loc = this.getLocations(res);
|
|
315
|
+
return {
|
|
316
|
+
kt: pri.kt,
|
|
317
|
+
pk: pri.pk,
|
|
318
|
+
loc
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
getLKA(res) {
|
|
322
|
+
/**
|
|
323
|
+
* A location key array is passed to a child router to provide contextfor the items it will
|
|
324
|
+
* be working with. It is always a concatenation of "My LKA" + "Parent LKA" which will
|
|
325
|
+
* bubble all the way up to the root Primary.
|
|
326
|
+
*/ let lka = [
|
|
327
|
+
this.getLk(res)
|
|
328
|
+
];
|
|
329
|
+
lka = lka.concat(this.parentRoute.getLKA(res));
|
|
330
|
+
return lka;
|
|
331
|
+
}
|
|
332
|
+
getLocations(res) {
|
|
333
|
+
return this.parentRoute.getLKA(res);
|
|
334
|
+
}
|
|
335
|
+
constructor(lib, type, parentRoute, options = {}){
|
|
336
|
+
super(lib, type, options), _define_property$1(this, "parentRoute", void 0), _define_property$1(this, "createItem", async (req, res)=>{
|
|
337
|
+
logger$1.trace('Creating Item 2', {
|
|
338
|
+
body: req === null || req === void 0 ? void 0 : req.body,
|
|
339
|
+
query: req === null || req === void 0 ? void 0 : req.query,
|
|
340
|
+
params: req === null || req === void 0 ? void 0 : req.params,
|
|
341
|
+
locals: res === null || res === void 0 ? void 0 : res.locals
|
|
342
|
+
});
|
|
343
|
+
const itemToCreate = this.convertDates(req.body);
|
|
344
|
+
let item = core.validatePK(await this.lib.create(itemToCreate, {
|
|
345
|
+
locations: this.getLocations(res)
|
|
346
|
+
}), this.getPkType());
|
|
347
|
+
item = await this.postCreateItem(item);
|
|
348
|
+
return res.json(item);
|
|
349
|
+
}), /* eslint-disable */ _define_property$1(this, "findItems", async (req, res)=>{
|
|
350
|
+
logger$1.trace('Finding Items', {
|
|
351
|
+
query: req.query,
|
|
352
|
+
params: req.params,
|
|
353
|
+
locals: res.locals
|
|
354
|
+
});
|
|
355
|
+
const query = req.query;
|
|
356
|
+
const finder = query['finder'];
|
|
357
|
+
const finderParams = query['finderParams'];
|
|
358
|
+
let items = [];
|
|
359
|
+
if (finder) {
|
|
360
|
+
// If finder is defined? Call a finder.
|
|
361
|
+
items = await this.lib.find(finder, JSON.parse(finderParams), this.getLocations(res));
|
|
362
|
+
} else {
|
|
363
|
+
// TODO: This is once of the more important places to perform some validaation and feedback
|
|
364
|
+
const itemQuery = core.paramsToQuery(req.query);
|
|
365
|
+
items = await this.lib.all(itemQuery, this.getLocations(res));
|
|
366
|
+
}
|
|
367
|
+
return res.json(items.map((item)=>core.validatePK(item, this.getPkType())));
|
|
368
|
+
});
|
|
369
|
+
this.parentRoute = parentRoute;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
function _define_property(obj, key, value) {
|
|
374
|
+
if (key in obj) {
|
|
375
|
+
Object.defineProperty(obj, key, {
|
|
376
|
+
value: value,
|
|
377
|
+
enumerable: true,
|
|
378
|
+
configurable: true,
|
|
379
|
+
writable: true
|
|
380
|
+
});
|
|
381
|
+
} else {
|
|
382
|
+
obj[key] = value;
|
|
383
|
+
}
|
|
384
|
+
return obj;
|
|
385
|
+
}
|
|
386
|
+
const logger = LibLogger.get('PItemRouter');
|
|
387
|
+
class PItemRouter extends ItemRouter {
|
|
388
|
+
getIk(res) {
|
|
389
|
+
const pri = this.getPk(res);
|
|
390
|
+
return pri;
|
|
391
|
+
}
|
|
392
|
+
constructor(lib, keyType, options = {}){
|
|
393
|
+
super(lib, keyType, options), _define_property(this, "createItem", async (req, res)=>{
|
|
394
|
+
logger.default('Creating Item 2', {
|
|
395
|
+
body: req.body,
|
|
396
|
+
query: req.query,
|
|
397
|
+
params: req.params,
|
|
398
|
+
locals: res.locals
|
|
399
|
+
});
|
|
400
|
+
const itemToCreate = this.convertDates(req.body);
|
|
401
|
+
let item = core.validatePK(await this.lib.create(itemToCreate), this.getPkType());
|
|
402
|
+
item = await this.postCreateItem(item);
|
|
403
|
+
return res.json(item);
|
|
404
|
+
}), /* eslint-disable */ _define_property(this, "findItems", async (req, res)=>{
|
|
405
|
+
logger.default('Finding Items', {
|
|
406
|
+
query: req.query,
|
|
407
|
+
params: req.params,
|
|
408
|
+
locals: res.locals
|
|
409
|
+
});
|
|
410
|
+
let items = [];
|
|
411
|
+
const query = req.query;
|
|
412
|
+
const finder = query['finder'];
|
|
413
|
+
const finderParams = query['finderParams'];
|
|
414
|
+
if (finder) {
|
|
415
|
+
// If finder is defined? Call a finder.
|
|
416
|
+
logger.default('Finding Items with a finder', {
|
|
417
|
+
finder,
|
|
418
|
+
finderParams
|
|
419
|
+
});
|
|
420
|
+
items = await this.lib.find(finder, JSON.parse(finderParams));
|
|
421
|
+
} else {
|
|
422
|
+
logger.default('Finding Items with a query', {
|
|
423
|
+
query: req.query
|
|
424
|
+
});
|
|
425
|
+
// TODO: This is once of the more important places to perform some validaation and feedback
|
|
426
|
+
const itemQuery = core.paramsToQuery(req.query);
|
|
427
|
+
items = await this.lib.all(itemQuery);
|
|
428
|
+
}
|
|
429
|
+
return res.json(items.map((item)=>core.validatePK(item, this.getPkType())));
|
|
430
|
+
});
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
exports.CItemRouter = CItemRouter;
|
|
435
|
+
exports.ItemRouter = ItemRouter;
|
|
436
|
+
exports.PItemRouter = PItemRouter;
|
|
437
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/logger.ts","../src/ItemRouter.ts","../src/CItemRouter.ts","../src/PItemRouter.ts"],"sourcesContent":["import Logging from '@fjell/logging';\n\nconst LibLogger = Logging.getLogger('@fjell/express-router');\n\nexport default LibLogger;\n","import {\n ComKey,\n cPK,\n Item,\n ItemEvent,\n ItemProperties,\n LocKey,\n LocKeyArray,\n PriKey,\n validatePK\n} from \"@fjell/core\";\nimport { NotFoundError, Operations } from \"@fjell/lib\";\nimport deepmerge from \"deepmerge\";\nimport { Request, RequestHandler, Response, Router } from \"express\";\nimport LibLogger from \"./logger\";\n\nexport type ItemRouterOptions = Record<string, never>;\n\n// TODO: body is in the request, it's not needed in the parameters\nexport type ActionMethod = <\n S extends string,\n L1 extends string = never,\n L2 extends string = never,\n L3 extends string = never,\n L4 extends string = never,\n L5 extends string = never\n>(req: Request, res: Response, item: Item<S, L1, L2, L3, L4, L5>, params: any, body: any) =>\n Promise<Item<S, L1, L2, L3, L4, L5>>;\n\n// TODO: body is in the request, it's not needed in the parameters\nexport type AllActionMethods = Array<RequestHandler>;\n\nexport class ItemRouter<\n S extends string,\n L1 extends string = never,\n L2 extends string = never,\n L3 extends string = never,\n L4 extends string = never,\n L5 extends string = never\n> {\n\n protected lib: Operations<Item<S, L1, L2, L3, L4, L5>, S, L1, L2, L3, L4, L5>;\n private keyType: S;\n protected options: ItemRouterOptions;\n private childRouters: Record<string, Router> = {};\n private logger;\n private itemActions: Record<string, ActionMethod> | undefined;\n\n constructor(\n lib: Operations<Item<S, L1, L2, L3, L4, L5>, S, L1, L2, L3, L4, L5>,\n keyType: S,\n options: ItemRouterOptions = {}\n ) {\n this.lib = lib;\n this.keyType = keyType;\n this.options = options;\n this.logger = LibLogger.get(\"ItemRouter\", keyType);\n }\n\n public getPkType = (): S => {\n return this.keyType;\n }\n\n protected getPkParam = (): string => {\n return `${this.getPkType()}Pk`;\n }\n\n protected getLk(res: Response): LocKey<S> {\n return { kt: this.keyType, lk: res.locals[this.getPkParam()] };\n }\n\n // this is meant to be consumed by children routers\n public getLKA(res: Response): LocKeyArray<S, L1, L2, L3, L4> {\n return [this.getLk(res)] as LocKeyArray<S, L1, L2, L3, L4>;\n }\n\n public getPk(res: Response): PriKey<S> {\n return cPK<S>(res.locals[this.getPkParam()], this.getPkType());\n }\n\n // Unless this is a contained router, the locations will always be an empty array.\n /* eslint-disable */\n protected getLocations(res: Response): LocKeyArray<L1, L2, L3, L4, L5> | [] {\n throw new Error('Method not implemented in an abstract router');\n }\n /* eslint-enable */\n\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n protected getIk(res: Response): PriKey<S> | ComKey<S, L1, L2, L3, L4, L5> {\n throw new Error('Method not implemented in an abstract router');\n }\n\n protected postItemAction = async (req: Request, res: Response) => {\n this.logger.default('Getting Item', { query: req?.query, params: req?.params, locals: res?.locals });\n const ik = this.getIk(res);\n const actionKey = req.path.substring(req.path.lastIndexOf('/') + 1);\n if (!this.itemActions) {\n this.logger.error('Item Actions are not configured');\n return res.status(500).json({ error: 'Item Actions are not configured' });\n }\n try {\n const item =\n validatePK(await this.lib.get(ik), this.getPkType()) as Item<S, L1, L2, L3, L4, L5>;\n return res.json(await this.itemActions[actionKey](req, res, item, req.params, req.body));\n } catch (err: any) {\n this.logger.error('Error in Item Action', { message: err?.message, stack: err?.stack });\n return res.status(500).json(err);\n }\n }\n\n private configure = (router: Router) => {\n this.logger.default('Configuring Router', { pkType: this.getPkType() });\n router.get('/', this.findItems);\n router.post('/', this.createItem);\n\n const allActions = this.configureAllActions();\n this.logger.debug('All Actions supplied to Router', { allActions });\n if (allActions) {\n Object.keys(allActions).forEach((actionKey) => {\n this.logger.default('Configuring All Action', { actionKey });\n // TODO: Ok, this is a bit of a hack, but we need to customize the types of the request handlers\n router.post(`/${actionKey}`, ...allActions[actionKey]);\n });\n }\n\n const itemRouter = Router();\n itemRouter.get('/', this.getItem);\n itemRouter.put('/', this.updateItem);\n itemRouter.delete('/', this.deleteItem);\n\n this.itemActions = this.configureItemActions();\n this.logger.debug('Item Actions supplied to Router', { itemActions: this.itemActions });\n if (this.itemActions) {\n Object.keys(this.itemActions).forEach((actionKey) => {\n this.logger.default('Configuring Item Action', { actionKey });\n // TODO: Ok, this is a bit of a hack, but we need to customize the types of the request handlers\n itemRouter.post(`/${actionKey}`, this.postItemAction)\n });\n }\n\n this.logger.default('Configuring Item Operations under PK Param', { pkParam: this.getPkParam() });\n router.use(`/:${this.getPkParam()}`, this.validatePrimaryKeyValue, itemRouter);\n\n if (this.childRouters) {\n this.configureChildRouters(itemRouter, this.childRouters);\n }\n return router;\n }\n\n private validatePrimaryKeyValue = (req: Request, res: Response, next: any) => {\n const pkParamValue = req.params[this.getPkParam()];\n if (this.validatePKParam(pkParamValue)) {\n res.locals[this.getPkParam()] = pkParamValue;\n next();\n } else {\n this.logger.error('Invalid Primary Key', { pkParamValue, path: req?.path });\n res.status(500).json({ error: 'Invalid Primary Key', path: req?.path });\n }\n }\n\n private configureChildRouters = (router: Router, childRouters: Record<string, Router>) => {\n for (const path in childRouters) {\n this.logger.default('Configuring Child Router at Path', { path });\n\n router.use(`/${path}`, childRouters[path]);\n }\n return router;\n }\n\n public addChildRouter = (path: string, router: Router) => {\n this.childRouters[path] = router;\n }\n\n /* istanbul ignore next */\n protected configureItemActions(): Record<string, ActionMethod> {\n this.logger.debug('ARouter - No Item Actions Configured');\n return {};\n }\n\n /* istanbul ignore next */\n protected configureAllActions(): Record<string, AllActionMethods> {\n this.logger.debug('ARouter - No All Actions Configured');\n return {};\n }\n\n /* istanbul ignore next */\n public getRouter(): Router {\n const router = Router();\n this.configure(router);\n return router;\n }\n\n /* istanbul ignore next */\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n protected createItem = async (req: Request, res: Response): Promise<Response<any, Record<string, any>>> => {\n throw new Error('Method not implemented in an abstract router');\n };\n\n // TODO: Probably a better way to do this, but this postCreate hook only needs the item.\n /* istanbul ignore next */\n public postCreateItem = async (item: Item<S, L1, L2, L3, L4, L5>): Promise<Item<S, L1, L2, L3, L4, L5>> => {\n this.logger.default('Post Create Item', { item });\n return item;\n };\n\n protected deleteItem = async (req: Request, res: Response): Promise<Response<any, Record<string, any>>> => {\n this.logger.default('Deleting Item', { query: req.query, params: req.params, locals: res.locals });\n const ik = this.getIk(res);\n const removedItem = await this.lib.remove(ik);\n const item = validatePK(removedItem, this.getPkType());\n return res.json(item);\n };\n\n /* eslint-disable */\n /* istanbul ignore next */\n protected findItems = async (req: Request, res: Response): Promise<Response<any, Record<string, any>>> => {\n throw new Error('Method not implemented in an abstract router');\n };\n /* eslint-enable */\n\n protected getItem = async (req: Request, res: Response) => {\n this.logger.default('Getting Item', { query: req.query, params: req.params, locals: res.locals });\n const ik = this.getIk(res);\n try {\n // TODO: What error does validate PK throw, when can that fail?\n const item = validatePK(await this.lib.get(ik), this.getPkType());\n return res.json(item);\n } catch (err: any) {\n if (err instanceof NotFoundError) {\n this.logger.error('Item Not Found', { ik, message: err?.message, stack: err?.stack });\n return res.status(404).json({\n ik,\n message: \"Item Not Found\",\n });\n } else {\n this.logger.error('General Error', { ik, message: err?.message, stack: err?.stack });\n return res.status(500).json({\n ik,\n message: \"General Error\",\n });\n }\n }\n }\n\n protected updateItem = async (req: Request, res: Response) => {\n this.logger.default('Updating Item',\n { body: req?.body, query: req?.query, params: req?.params, locals: res?.locals });\n const ik = this.getIk(res);\n const itemToUpdate = this.convertDates(req.body as ItemProperties<S, L1, L2, L3, L4, L5>);\n const retItem = validatePK(await this.lib.update(ik, itemToUpdate), this.getPkType());\n return res.json(retItem);\n };\n\n public convertDates = (item: Item<S, L1, L2, L3, L4, L5> | ItemProperties<S, L1, L2, L3, L4, L5>):\n Item<S, L1, L2, L3, L4, L5> | ItemProperties<S, L1, L2, L3, L4, L5> => {\n const events = item.events as Record<string, ItemEvent>;\n this.logger.default('Converting Dates', { item });\n if (events) {\n Object.keys(events).forEach((key: string) => {\n Object.assign(events, {\n [key]: deepmerge(events[key], { at: events[key].at ? new Date(events[key].at) : null })\n });\n });\n }\n Object.assign(item, { events });\n return item;\n };\n\n // TODO: Maybe just simplify this and require that everything is a UUID?\n /**\n * This method might be an annoyance, but we need to capture a few cases where someone passes\n * a PK parameter that has an odd string in it.\n *\n * @param pkParamValue The value of the primary key parameter\n * @returns if the value is valid.\n */\n protected validatePKParam = (pkParamValue: string): boolean => {\n let validPkParam = true;\n if (pkParamValue.length <= 0) {\n this.logger.error('Primary Key is an Empty String', { pkParamValue });\n validPkParam = false;\n } else if (pkParamValue === 'undefined') {\n this.logger.error('Primary Key is the string \\'undefined\\'', { pkParamValue });\n validPkParam = false;\n }\n return validPkParam;\n }\n\n}\n","import {\n ComKey, Item, ItemQuery, LocKey, LocKeyArray, paramsToQuery, PriKey, QueryParams, validatePK\n} from \"@fjell/core\";\nimport { Request, Response } from \"express\";\nimport { ItemRouter, ItemRouterOptions } from \"@/ItemRouter\";\nimport LibLogger from \"@/logger\";\nimport { Contained } from \"@fjell/lib\";\n\nconst logger = LibLogger.get('CItemRouter');\ninterface ParsedQuery {\n [key: string]: undefined | string | string[] | ParsedQuery | ParsedQuery[];\n}\n\nexport class CItemRouter<\n T extends Item<S, L1, L2, L3, L4, L5>,\n S extends string,\n L1 extends string,\n L2 extends string = never,\n L3 extends string = never,\n L4 extends string = never,\n L5 extends string = never\n> extends ItemRouter<S, L1, L2, L3, L4, L5> {\n\n private parentRoute: ItemRouter<L1, L2, L3, L4, L5, never>;\n\n constructor(\n lib: Contained.Operations<T, S, L1, L2, L3, L4, L5>,\n type: S,\n parentRoute: ItemRouter<L1, L2, L3, L4, L5, never>,\n options: ItemRouterOptions = {},\n ) {\n super(lib, type, options);\n this.parentRoute = parentRoute;\n }\n\n public hasParent(): boolean {\n return !!this.parentRoute;\n }\n\n public getIk(res: Response): ComKey<S, L1, L2, L3, L4, L5> {\n const pri = this.getPk(res) as PriKey<S>;\n const loc = this.getLocations(res) as LocKeyArray<L1, L2, L3, L4, L5>;\n return { kt: pri.kt, pk: pri.pk, loc }\n }\n\n public getLKA(res: Response): LocKeyArray<S, L1, L2, L3, L4> {\n /**\n * A location key array is passed to a child router to provide contextfor the items it will\n * be working with. It is always a concatenation of \"My LKA\" + \"Parent LKA\" which will\n * bubble all the way up to the root Primary.\n */\n let lka: LocKey<S | L1 | L2 | L3 | L4>[] = [this.getLk(res)];\n lka = lka.concat(this.parentRoute.getLKA(res) as LocKey<S | L1 | L2 | L3 | L4>[]);\n return lka as LocKeyArray<S, L1, L2, L3, L4>;\n }\n\n public getLocations(res: Response): LocKeyArray<L1, L2, L3, L4, L5> {\n return this.parentRoute.getLKA(res) as LocKeyArray<L1, L2, L3, L4, L5>;\n }\n\n protected createItem = async (req: Request, res: Response) => {\n logger.trace('Creating Item 2',\n { body: req?.body, query: req?.query, params: req?.params, locals: res?.locals });\n const itemToCreate = this.convertDates(req.body as Item<S, L1, L2, L3, L4, L5>);\n let item =\n validatePK(await this.lib.create(\n itemToCreate, { locations: this.getLocations(res) }), this.getPkType()) as Item<S, L1, L2, L3, L4, L5>;\n item = await this.postCreateItem(item);\n return res.json(item);\n };\n\n /* eslint-disable */\n protected findItems = async (req: Request, res: Response) => {\n logger.trace('Finding Items', { query: req.query, params: req.params, locals: res.locals });\n\n const query: ParsedQuery = req.query as unknown as ParsedQuery;\n const finder = query['finder'] as string;\n const finderParams = query['finderParams'] as string;\n\n let items: Item<S, L1, L2, L3, L4, L5>[] = [];\n\n if( finder ) { \n // If finder is defined? Call a finder.\n items = await this.lib.find(finder, JSON.parse(finderParams), this.getLocations(res));\n } else {\n // TODO: This is once of the more important places to perform some validaation and feedback\n const itemQuery: ItemQuery = paramsToQuery(req.query as QueryParams);\n items = await this.lib.all(itemQuery, this.getLocations(res));\n }\n\n return res.json(items.map((item: Item<S, L1, L2, L3, L4, L5>) => validatePK(item, this.getPkType())));\n };\n /* eslint-enable */\n\n}\n","import { Item, ItemQuery, paramsToQuery, PriKey, QueryParams, validatePK } from \"@fjell/core\";\nimport { Primary } from \"@fjell/lib\";\nimport { ItemRouter, ItemRouterOptions } from \"@/ItemRouter\";\nimport { Request, Response } from \"express\";\nimport LibLogger from \"@/logger\";\n\nconst logger = LibLogger.get('PItemRouter');\n\ninterface ParsedQuery {\n [key: string]: undefined | string | string[] | ParsedQuery | ParsedQuery[];\n}\n\nexport class PItemRouter<T extends Item<S>, S extends string> extends ItemRouter<S> {\n\n constructor(lib: Primary.Operations<T, S>, keyType: S, options: ItemRouterOptions = {}) {\n super(lib, keyType, options);\n }\n\n public getIk(res: Response): PriKey<S> {\n const pri = this.getPk(res) as PriKey<S>;\n return pri\n }\n\n public createItem = async (req: Request, res: Response) => {\n logger.default('Creating Item 2', { body: req.body, query: req.query, params: req.params, locals: res.locals });\n const itemToCreate = this.convertDates(req.body as Item<S>);\n let item =\n validatePK(await this.lib.create(itemToCreate), this.getPkType()) as Item<S>;\n item = await this.postCreateItem(item);\n return res.json(item);\n };\n\n /* eslint-disable */\n protected findItems = async (req: Request, res: Response) => {\n logger.default('Finding Items', { query: req.query, params: req.params, locals: res.locals });\n\n let items: Item<S>[] = [];\n\n const query: ParsedQuery = req.query as unknown as ParsedQuery;\n const finder = query['finder'] as string;\n const finderParams = query['finderParams'] as string;\n\n if( finder ) { \n // If finder is defined? Call a finder.\n logger.default('Finding Items with a finder', { finder, finderParams });\n items = await this.lib.find(finder, JSON.parse(finderParams));\n } else {\n logger.default('Finding Items with a query', { query: req.query });\n // TODO: This is once of the more important places to perform some validaation and feedback\n const itemQuery: ItemQuery = paramsToQuery(req.query as QueryParams);\n items = await this.lib.all(itemQuery);\n }\n\n return res.json(items.map((item: Item<S>) => validatePK(item, this.getPkType())));\n };\n /* eslint-enable */\n}\n"],"names":["LibLogger","Logging","getLogger","ItemRouter","getLk","res","kt","keyType","lk","locals","getPkParam","getLKA","getPk","cPK","getPkType","getLocations","Error","getIk","logger","debug","router","Router","configure","lib","options","_define_property","childRouters","itemActions","postItemAction","req","default","query","params","ik","actionKey","path","substring","lastIndexOf","error","status","json","item","validatePK","get","body","err","message","stack","pkType","findItems","post","createItem","allActions","configureAllActions","Object","keys","forEach","itemRouter","getItem","put","updateItem","delete","deleteItem","configureItemActions","pkParam","use","validatePrimaryKeyValue","configureChildRouters","next","pkParamValue","validatePKParam","addChildRouter","postCreateItem","removedItem","remove","NotFoundError","itemToUpdate","convertDates","retItem","update","events","key","assign","deepmerge","at","Date","validPkParam","length","CItemRouter","hasParent","parentRoute","pri","loc","pk","lka","concat","type","trace","itemToCreate","create","locations","finder","finderParams","items","find","JSON","parse","itemQuery","paramsToQuery","all","map","PItemRouter"],"mappings":"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"}
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
|
package/dist/logger.cjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4
|
+
|
|
5
|
+
const Logging = require('@fjell/logging');
|
|
6
|
+
|
|
7
|
+
const LibLogger = Logging.getLogger('@fjell/express-router');
|
|
8
|
+
|
|
9
|
+
exports.default = LibLogger;
|
|
10
|
+
//# sourceMappingURL=logger.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.cjs","sources":["../src/logger.ts"],"sourcesContent":["import Logging from '@fjell/logging';\n\nconst LibLogger = Logging.getLogger('@fjell/express-router');\n\nexport default LibLogger;\n"],"names":["LibLogger","Logging","getLogger"],"mappings":";;;;;;AAEMA,MAAAA,SAAAA,GAAYC,OAAQC,CAAAA,SAAS,CAAC,uBAAA;;;;"}
|
package/dist/logger.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.js","sources":["../src/logger.ts"],"sourcesContent":["import Logging from '@fjell/logging';\n\nconst LibLogger = Logging.getLogger('@fjell/express-router');\n\nexport default LibLogger;\n"],"names":["LibLogger","Logging","getLogger"],"mappings":";;AAEMA,MAAAA,SAAAA,GAAYC,OAAQC,CAAAA,SAAS,CAAC,uBAAA;;;;"}
|