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

26 lines
725 B
JavaScript
Raw Normal View History

2018-04-27 18:54:36 +02:00
const { handleErrorResponse } = require('../../../utils/errorHandlers.js');
const db = require('../../../../models');
2018-12-14 18:42:37 +01:00
const chainquery = require('chainquery').default;
2018-03-29 02:35:41 +02:00
/*
route to get a short claim id from long claim Id
*/
const claimShortId = async ({ ip, originalUrl, body, params }, res) => {
try {
let shortId = await chainquery.claim.queries.getShortClaimIdFromLongClaimId(params.longId, params.name).catch(() => {});
2018-11-11 01:11:12 +01:00
if (!shortId) {
shortId = await db.Claim.getShortClaimIdFromLongClaimId(params.longId, params.name);
}
res.status(200).json({success: true, data: shortId});
2018-11-11 01:11:12 +01:00
} catch (error) {
handleErrorResponse(originalUrl, ip, error, res);
}
2018-03-29 02:35:41 +02:00
};
module.exports = claimShortId;