spee.ch/server/controllers/api/channel/shortId/index.js

21 lines
524 B
JavaScript
Raw Normal View History

2018-04-27 18:54:36 +02:00
const { handleErrorResponse } = require('../../../utils/errorHandlers.js');
const db = require('../../../../models');
/*
route to get a short channel id from long channel Id
*/
2018-03-29 20:24:52 +02:00
const channelShortIdRoute = ({ 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;