mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-08 22:12:37 +00:00
67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
|
// TODO: This file was created by bulk-decaffeinate.
|
||
|
// Sanity-check the conversion and remove this comment.
|
||
|
/*
|
||
|
* decaffeinate suggestions:
|
||
|
* DS102: Remove unnecessary code created because of implicit returns
|
||
|
* DS103: Rewrite code to no longer use __guard__
|
||
|
* DS207: Consider shorter variations of null checks
|
||
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
||
|
*/
|
||
|
import * as express from 'express';
|
||
|
import * as _ from 'lodash';
|
||
|
|
||
|
const api: express.Express & {
|
||
|
balenaBackend?: {
|
||
|
currentId: number;
|
||
|
devices: { [key: string]: any };
|
||
|
registerHandler: express.RequestHandler;
|
||
|
getDeviceHandler: express.RequestHandler;
|
||
|
deviceKeyHandler: express.RequestHandler;
|
||
|
};
|
||
|
} = express();
|
||
|
|
||
|
// tslint:disable-next-line
|
||
|
api.use(require('body-parser').json());
|
||
|
|
||
|
api.balenaBackend = {
|
||
|
currentId: 1,
|
||
|
devices: {},
|
||
|
registerHandler: (req, res) => {
|
||
|
console.log('/device/register called with ', req.body);
|
||
|
const device = req.body;
|
||
|
device.id = api.balenaBackend!.currentId++;
|
||
|
api.balenaBackend!.devices[device.id] = device;
|
||
|
return res.status(201).json(device);
|
||
|
},
|
||
|
getDeviceHandler: (req, res) => {
|
||
|
const uuid =
|
||
|
req.query['$filter'] != null
|
||
|
? req.query['$filter'].match(/uuid eq '(.*)'/)[1]
|
||
|
: null;
|
||
|
if (uuid != null) {
|
||
|
return res.json({
|
||
|
d: _.filter(api.balenaBackend!.devices, dev => dev.uuid === uuid),
|
||
|
});
|
||
|
} else {
|
||
|
return res.json({ d: [] });
|
||
|
}
|
||
|
},
|
||
|
deviceKeyHandler: (req, res) => {
|
||
|
return res.status(200).send(req.body.apiKey);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
api.post('/device/register', (req, res) =>
|
||
|
api.balenaBackend!.registerHandler(req, res, _.noop),
|
||
|
);
|
||
|
|
||
|
api.get('/v5/device', (req, res) =>
|
||
|
api.balenaBackend!.getDeviceHandler(req, res, _.noop),
|
||
|
);
|
||
|
|
||
|
api.post('/api-key/device/:deviceId/device-key', (req, res) =>
|
||
|
api.balenaBackend!.deviceKeyHandler(req, res, _.noop),
|
||
|
);
|
||
|
|
||
|
export = api;
|