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/measurements.js
2015-03-19 11:04:04 -08:00

181 lines
4.3 KiB
JavaScript

module.exports = function(app) {
var express = require('express');
var measurementsRouter = express.Router();
var MEASUREMENTS = [
{
id: 1,
strain: 1,
characteristic: 'Characteristic 1',
textMeasurementType: 'Meas. Type 1',
txtValue: null,
numValue: null,
confidenceInterval: null,
unitType: null,
notes: null,
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 2,
strain: 1,
characteristic: 'Characteristic 2',
textMeasurementType: 'Meas. Type 1',
txtValue: null,
numValue: null,
confidenceInterval: null,
unitType: null,
notes: null,
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 3,
strain: 1,
characteristic: 'Characteristic 3',
textMeasurementType: null,
txtValue: "text value",
numValue: null,
confidenceInterval: null,
unitType: null,
notes: "some notes",
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 4,
strain: 1,
characteristic: 'Characteristic 4',
textMeasurementType: null,
txtValue: null,
numValue: 123.4,
confidenceInterval: null,
unitType: 'Unit 1',
notes: null,
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 5,
strain: 1,
characteristic: 'Characteristic 4',
textMeasurementType: null,
txtValue: null,
numValue: 567.8,
confidenceInterval: 0.2,
unitType: 'Unit 1',
notes: null,
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 6,
strain: 2,
characteristic: 'Characteristic 1',
textMeasurementType: 'Meas. Type 1',
txtValue: null,
numValue: null,
confidenceInterval: null,
unitType: null,
notes: null,
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 7,
strain: 2,
characteristic: 'Characteristic 2',
textMeasurementType: 'Meas. Type 1',
txtValue: null,
numValue: null,
confidenceInterval: null,
unitType: null,
notes: null,
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 8,
strain: 2,
characteristic: 'Characteristic 3',
textMeasurementType: null,
txtValue: "text value",
numValue: null,
confidenceInterval: null,
unitType: null,
notes: "some notes",
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 9,
strain: 2,
characteristic: 'Characteristic 4',
textMeasurementType: null,
txtValue: null,
numValue: 123.4,
confidenceInterval: null,
unitType: 'Unit 1',
notes: null,
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
},
{
id: 10,
strain: 2,
characteristic: 'Characteristic 4',
textMeasurementType: null,
txtValue: null,
numValue: 567.8,
confidenceInterval: 0.2,
unitType: 'Unit 1',
notes: null,
testMethod: null,
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z"
}
]
measurementsRouter.get('/', function(req, res) {
res.send({
'measurements': MEASUREMENTS
});
});
measurementsRouter.post('/', function(req, res) {
res.status(201).end();
});
measurementsRouter.get('/:id', function(req, res) {
var measurements = MEASUREMENTS.filter(function(m) {
return m.id == req.params.id;
});
res.send({
'measurement': measurements
});
});
measurementsRouter.put('/:id', function(req, res) {
var measurements = MEASUREMENTS.filter(function(m) {
return m.id == req.params.id;
});
res.send({
'measurement': measurements[0]
});
});
measurementsRouter.delete('/:id', function(req, res) {
res.status(204).end();
});
app.use('/api/hymenobacter/measurements', measurementsRouter);
};