spee.ch/server/routes/api/channelShortId.js
2018-03-28 17:35:41 -07:00

21 lines
513 B
JavaScript

const { handleErrorResponse } = require('helpers/errorHandlers.js');
/*
route to get a short channel id from long channel Id
*/
const channelShortIdRoute = (db) => {
return ({ ip, originalUrl, params }, res) => {
db.Certificate.getShortChannelIdFromLongChannelId(params.longId, params.name)
.then(shortId => {
res.status(200).json(shortId);
})
.catch(error => {
handleErrorResponse(originalUrl, ip, error, res);
});
};
};
module.exports = channelShortIdRoute;