2018-04-27 18:54:36 +02:00
|
|
|
const { handleErrorResponse } = require('../../../utils/errorHandlers.js');
|
|
|
|
const db = require('../../../../models');
|
2018-10-09 02:02:05 +02:00
|
|
|
const chainquery = require('chainquery');
|
2018-03-29 02:35:41 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
route to get a short claim id from long claim Id
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-10-09 02:02:05 +02:00
|
|
|
const claimShortId = async ({ ip, originalUrl, body, params }, res) => {
|
|
|
|
try {
|
2018-10-10 19:19:51 +02:00
|
|
|
let shortId = await chainquery.claim.queries.getShortClaimIdFromLongClaimId(params.longId, params.name).catch(() => {});
|
2018-10-09 02:02:05 +02:00
|
|
|
|
2018-11-11 01:11:12 +01:00
|
|
|
if (!shortId) {
|
2018-10-09 02:02:05 +02:00
|
|
|
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) {
|
2018-10-09 02:02:05 +02:00
|
|
|
handleErrorResponse(originalUrl, ip, error, res);
|
|
|
|
}
|
2018-03-29 02:35:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = claimShortId;
|