This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/server/mocks/characteristics.js
2015-06-11 11:19:13 -08:00

113 lines
2.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = function(app) {
var express = require('express');
var characteristicsRouter = express.Router();
var CHARACTERISTICS = [
{
id: 1,
characteristicName: 'α-fucosidase (API ZYM)',
characteristicType: 'Type 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
},
{
id: 2,
characteristicName: 'α-glucosidase',
characteristicType: 'Type 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
},
{
id: 3,
characteristicName: 'Chloramphenicol',
characteristicType: 'Type 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
},
{
id: 4,
characteristicName: 'Bacitracin',
characteristicType: 'Type 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
},
{
id: 5,
characteristicName: 'Indole',
characteristicType: 'Type 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
}
]
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);
};