Add random PIS return
Signed-off-by: Fred Boniface <fred@fjla.uk>
This commit is contained in:
parent
a12951fe4f
commit
b590eb6cf5
@ -1,6 +1,6 @@
|
|||||||
const version = {
|
const version = {
|
||||||
api: ['/api/v1/',],
|
api: ['/api/v1/',],
|
||||||
app: '2023.5.2'
|
app: '2023.5.3'
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = version;
|
module.exports = version;
|
@ -21,8 +21,18 @@ async function byCode(req, res, next){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function random(req, res, next){
|
||||||
|
try {
|
||||||
|
res.json(await pis.findRandom());
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Unknown Error', err.message);
|
||||||
|
next(err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
byOrigDest,
|
byOrigDest,
|
||||||
byCode
|
byCode,
|
||||||
|
random
|
||||||
};
|
};
|
@ -4,5 +4,6 @@ const pisController = require('../controllers/pis.controllers');
|
|||||||
|
|
||||||
router.get('/origdest/:start/:end', pisController.byOrigDest);
|
router.get('/origdest/:start/:end', pisController.byOrigDest);
|
||||||
router.get('/code/:code', pisController.byCode);
|
router.get('/code/:code', pisController.byCode);
|
||||||
|
router.get('/code/random', pisController.random);
|
||||||
|
|
||||||
module.exports = router;
|
module.exports = router;
|
@ -28,7 +28,7 @@ async function findPisByOrigDest(start,end) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function findPisByCode(code) {
|
async function findPisByCode(code) {
|
||||||
log.out(`pisServices.findPisByCode: Searching for PIS code: ${code}`);
|
log.out(`pisServices.findPisByCode: Searching for PIS code: ${code}`, 'dbug');
|
||||||
const cleanCode = clean.removeNonNumeric(code);
|
const cleanCode = clean.removeNonNumeric(code);
|
||||||
const query = {
|
const query = {
|
||||||
'code': parseInt(cleanCode)
|
'code': parseInt(cleanCode)
|
||||||
@ -37,9 +37,21 @@ async function findPisByCode(code) {
|
|||||||
return await search;
|
return await search;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function findRandom() {
|
||||||
|
log.out('pisServices.findRandom: Finding five random PIS Codes', 'dbug');
|
||||||
|
const query = {
|
||||||
|
$sample: {
|
||||||
|
size: 5
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const results = db.query('pis', query);
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
// Hopefully at some point, I will also be able to implement a find PIS code by headcode option.
|
// Hopefully at some point, I will also be able to implement a find PIS code by headcode option.
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
findPisByOrigDest,
|
findPisByOrigDest,
|
||||||
findPisByCode
|
findPisByCode,
|
||||||
|
findRandom
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user