2018-09-26 03:20:59 +02:00
|
|
|
const { details: { host } } = require('@config/siteConfig');
|
2018-12-14 18:42:37 +01:00
|
|
|
const chainquery = require('chainquery').default;
|
2018-12-16 07:12:12 +01:00
|
|
|
const { getClaim } = require('server/lbrynet');
|
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;
|
2018-12-16 07:12:12 +01:00
|
|
|
const lbrynetUri = `${data.name}#${data.claim_id}`;
|
2018-10-10 02:11:06 +02:00
|
|
|
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-12-16 07:12:12 +01:00
|
|
|
let lbrynetClaimResult = null;
|
|
|
|
let lbrynetFileExt = null;
|
2018-12-19 00:17:29 +01:00
|
|
|
|
|
|
|
// if (!data.fileExt) {
|
|
|
|
// lbrynetClaimResult = await getClaim(lbrynetUri).catch(() => { return 'invalid URI' });
|
|
|
|
// lbrynetFileExt = lbrynetClaimResult && lbrynetClaimResult.file_name && lbrynetClaimResult.file_name.split('.').slice(-1).pop();
|
|
|
|
// }
|
2018-12-16 07:12:12 +01:00
|
|
|
|
|
|
|
// TODO verify that "generated_x" does anything at all
|
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,
|
2018-12-16 07:12:12 +01:00
|
|
|
fileExt : data.generated_extension || data.fileExt || lbrynetFileExt,
|
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-12-16 07:12:12 +01:00
|
|
|
pending : Boolean(data.height === 0),
|
2018-11-11 01:11:12 +01:00
|
|
|
});
|
|
|
|
};
|