2018-09-26 03:20:59 +02:00
|
|
|
const { details: { host } } = require('@config/siteConfig');
|
2018-10-10 02:11:06 +02:00
|
|
|
const chainquery = require('chainquery');
|
2018-09-26 03:20:59 +02:00
|
|
|
|
2018-10-10 02:11:06 +02:00
|
|
|
module.exports = async (data) => {
|
|
|
|
// TODO: Refactor getching the channel name out; requires invasive changes.
|
|
|
|
const certificateId = data.publisher_id || data.certificateId;
|
|
|
|
let channelName = data.channelName;
|
|
|
|
|
2018-11-11 01:11:12 +01:00
|
|
|
if (certificateId && !channelName) {
|
|
|
|
channelName = await chainquery.claim.queries.getClaimChannelName(certificateId).catch(() => {});
|
2018-10-10 02:11:06 +02:00
|
|
|
}
|
|
|
|
|
2018-10-29 15:09:26 +01:00
|
|
|
let channelShortId = null;
|
|
|
|
if (certificateId && channelName) {
|
|
|
|
channelShortId = await chainquery.claim.queries.getShortClaimIdFromLongClaimId(certificateId, channelName).catch(() => null);
|
|
|
|
}
|
|
|
|
|
2018-10-10 02:11:06 +02:00
|
|
|
return ({
|
2018-11-11 01:11:12 +01:00
|
|
|
name : data.name,
|
|
|
|
title : data.title,
|
2018-10-10 02:11:06 +02:00
|
|
|
certificateId,
|
|
|
|
channelName,
|
2018-10-29 15:09:26 +01:00
|
|
|
channelShortId,
|
2018-10-10 02:11:06 +02:00
|
|
|
contentType: data.content_type || data.contentType,
|
2018-11-11 01:11:12 +01:00
|
|
|
claimId : data.claim_id || data.claimId,
|
|
|
|
fileExt : data.generated_extension || data.fileExt,
|
2018-10-10 02:11:06 +02:00
|
|
|
description: data.description,
|
2018-11-11 01:11:12 +01:00
|
|
|
thumbnail : data.generated_thumbnail || data.thumbnail_url || data.thumbnail,
|
|
|
|
outpoint : data.transaction_hash_id || data.outpoint,
|
2018-10-10 02:11:06 +02:00
|
|
|
host,
|
2018-11-11 01:11:12 +01:00
|
|
|
});
|
|
|
|
};
|