118 lines
2.8 KiB
JavaScript
118 lines
2.8 KiB
JavaScript
module.exports = function(app) {
|
||
var express = require('express');
|
||
var characteristicsRouter = express.Router();
|
||
|
||
var CHARACTERISTICS = [
|
||
{
|
||
id: 1,
|
||
characteristicName: 'α-fucosidase (API ZYM)',
|
||
characteristicType: 1,
|
||
strains: [1,2],
|
||
measurements: [1,6],
|
||
createdAt: "0001-01-01T00:00:00Z",
|
||
updatedAt: "0001-01-01T00:00:00Z",
|
||
deletedAt: null,
|
||
createdBy: 1,
|
||
updatedBy: 1,
|
||
deletedBy: null,
|
||
sortOrder: 1,
|
||
},
|
||
{
|
||
id: 2,
|
||
characteristicName: 'α-glucosidase',
|
||
characteristicType: 2,
|
||
strains: [1,2],
|
||
measurements: [2,7],
|
||
createdAt: "0001-01-01T00:00:00Z",
|
||
updatedAt: "0001-01-01T00:00:00Z",
|
||
deletedAt: null,
|
||
createdBy: 1,
|
||
updatedBy: 1,
|
||
deletedBy: null,
|
||
sortOrder: 2,
|
||
},
|
||
{
|
||
id: 3,
|
||
characteristicName: 'Chloramphenicol',
|
||
characteristicType: 3,
|
||
strains: [1,2],
|
||
measurements: [3,8],
|
||
createdAt: "0001-01-01T00:00:00Z",
|
||
updatedAt: "0001-01-01T00:00:00Z",
|
||
deletedAt: null,
|
||
createdBy: 1,
|
||
updatedBy: 1,
|
||
deletedBy: null,
|
||
sortOrder: 3,
|
||
},
|
||
{
|
||
id: 4,
|
||
characteristicName: 'Bacitracin',
|
||
characteristicType: 1,
|
||
strains: [1,2],
|
||
measurements: [4,9],
|
||
createdAt: "0001-01-01T00:00:00Z",
|
||
updatedAt: "0001-01-01T00:00:00Z",
|
||
deletedAt: null,
|
||
createdBy: 1,
|
||
updatedBy: 1,
|
||
deletedBy: null,
|
||
sortOrder: 4,
|
||
},
|
||
{
|
||
id: 5,
|
||
characteristicName: 'Indole',
|
||
characteristicType: 2,
|
||
strains: [1,2],
|
||
measurements: [5,10],
|
||
createdAt: "0001-01-01T00:00:00Z",
|
||
updatedAt: "0001-01-01T00:00:00Z",
|
||
deletedAt: null,
|
||
createdBy: 1,
|
||
updatedBy: 1,
|
||
deletedBy: null,
|
||
sortOrder: 5,
|
||
}
|
||
]
|
||
|
||
characteristicsRouter.get('/', function(req, res) {
|
||
var characteristics;
|
||
if (req.query.ids) {
|
||
characteristics = CHARACTERISTICS.filter(function(c) {
|
||
return req.query.ids.indexOf(c.id.toString()) > -1;
|
||
});
|
||
} else {
|
||
characteristics = CHARACTERISTICS;
|
||
}
|
||
res.send({
|
||
'characteristics': characteristics
|
||
});
|
||
});
|
||
|
||
characteristicsRouter.post('/', function(req, res) {
|
||
res.status(201).end();
|
||
});
|
||
|
||
characteristicsRouter.get('/:id', function(req, res) {
|
||
var characteristic = CHARACTERISTICS.filter(function(c) {
|
||
return c.id == req.params.id;
|
||
});
|
||
res.send({
|
||
'characteristic': characteristic
|
||
});
|
||
});
|
||
|
||
characteristicsRouter.put('/:id', function(req, res) {
|
||
res.send({
|
||
'characteristics': {
|
||
id: req.params.id
|
||
}
|
||
});
|
||
});
|
||
|
||
characteristicsRouter.delete('/:id', function(req, res) {
|
||
res.status(204).end();
|
||
});
|
||
|
||
app.use('/api/hymenobacter/characteristics', characteristicsRouter);
|
||
};
|