2018-04-27 18:54:36 +02:00
|
|
|
const { handleErrorResponse } = require('../../../utils/errorHandlers.js');
|
2018-09-26 03:20:59 +02:00
|
|
|
const getClaimData = require('server/utils/getClaimData');
|
2018-10-28 19:00:31 +01:00
|
|
|
const fetchClaimData = require('server/utils/fetchClaimData');
|
2018-12-14 18:42:37 +01:00
|
|
|
const chainquery = require('chainquery').default;
|
2018-10-24 10:43:30 +02:00
|
|
|
const db = require('server/models');
|
2018-03-29 02:35:41 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
route to return data for a claim
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-10-10 02:11:06 +02:00
|
|
|
const claimData = async ({ ip, originalUrl, body, params }, res) => {
|
|
|
|
try {
|
2018-10-28 19:00:31 +01:00
|
|
|
const resolvedClaim = await fetchClaimData(params);
|
2018-10-10 02:11:06 +02:00
|
|
|
|
|
|
|
if (!resolvedClaim) {
|
|
|
|
return res.status(404).json({
|
|
|
|
success: false,
|
|
|
|
message: 'No claim could be found',
|
2018-05-04 00:22:29 +02:00
|
|
|
});
|
2018-10-10 02:11:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
res.status(200).json({
|
|
|
|
success: true,
|
|
|
|
data : await getClaimData(resolvedClaim),
|
2018-03-29 20:24:52 +02:00
|
|
|
});
|
2018-11-11 01:11:12 +01:00
|
|
|
} catch (error) {
|
2018-10-10 02:11:06 +02:00
|
|
|
handleErrorResponse(originalUrl, ip, error, res);
|
|
|
|
}
|
2018-03-29 02:35:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = claimData;
|