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

231 lines
6.8 KiB
JavaScript
Raw Normal View History

const logger = require('winston');
2018-11-09 15:49:03 +01:00
const db = require('server/models');
2019-02-19 02:03:37 +01:00
const {
details,
publishing: { disabled, disabledMessage, primaryClaimAddress },
} = require('@config/siteConfig');
2018-11-09 15:49:03 +01:00
const { resolveUri } = require('server/lbrynet');
const { sendGATimingEvent } = require('../../../../utils/googleAnalytics.js');
const { handleErrorResponse } = require('../../../utils/errorHandlers.js');
const publish = require('../publish/publish.js');
const parsePublishApiRequestBody = require('../publish/parsePublishApiRequestBody');
const parsePublishApiRequestFiles = require('../publish/parsePublishApiRequestFiles.js');
const authenticateUser = require('../publish/authentication.js');
const createThumbnailPublishParams = require('../publish/createThumbnailPublishParams.js');
2018-12-14 18:42:37 +01:00
const chainquery = require('chainquery').default;
2019-01-14 07:27:23 +01:00
const createCanonicalLink = require('@globalutils/createCanonicalLink');
/*
route to update a claim through the daemon
*/
2019-02-23 06:52:31 +01:00
const updateMetadata = ({ nsfw, license, licenseUrl, title, description }) => {
const update = {};
if (nsfw) update['nsfw'] = nsfw;
if (license) update['license'] = license;
2019-02-23 06:52:31 +01:00
if (licenseUrl) update['license_url'] = licenseUrl;
if (title) update['title'] = title;
if (description) update['description'] = description;
return update;
};
2018-11-07 23:51:06 +01:00
const rando = () => {
let text = '';
const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (let i = 0; i < 6; i += 1) text += possible.charAt(Math.floor(Math.random() * 62));
return text;
};
const claimUpdate = ({ body, files, headers, ip, originalUrl, user, tor }, res) => {
// logging
logger.info('Claim update request:', {
ip,
headers,
body,
files,
user,
});
// check for disabled publishing
if (disabled) {
return res.status(503).json({
success: false,
message: disabledMessage,
});
}
// define variables
2018-11-07 23:51:06 +01:00
let channelName,
channelId,
channelPassword,
description,
fileName,
filePath,
fileType,
gaStartTime,
thumbnail,
fileExtension,
license,
2019-02-23 06:52:31 +01:00
licenseUrl,
2018-11-07 23:51:06 +01:00
name,
nsfw,
thumbnailFileName,
thumbnailFilePath,
thumbnailFileType,
title,
claimRecord,
metadata,
publishResult,
thumbnailUpdate = false;
// record the start time of the request
gaStartTime = Date.now();
try {
2019-02-19 02:03:37 +01:00
({ name, nsfw, license, title, description, thumbnail } = parsePublishApiRequestBody(body));
({
fileName,
filePath,
fileExtension,
fileType,
thumbnailFileName,
thumbnailFilePath,
thumbnailFileType,
} = parsePublishApiRequestFiles(files, true));
({ channelName, channelId, channelPassword } = body);
} catch (error) {
2019-02-19 02:03:37 +01:00
return res.status(400).json({ success: false, message: error.message });
}
// check channel authorization
authenticateUser(channelName, channelId, channelPassword, user)
.then(({ channelName, channelClaimId }) => {
2018-11-07 23:51:06 +01:00
if (!channelId) {
channelId = channelClaimId;
}
2019-02-19 02:03:37 +01:00
return chainquery.claim.queries
.resolveClaimInChannel(name, channelClaimId)
.then(claim => claim.dataValues);
})
.then(claim => {
claimRecord = claim;
2018-11-07 23:51:06 +01:00
if (claimRecord.content_type === 'video/mp4' && files.file) {
thumbnailUpdate = true;
}
2018-11-07 23:51:06 +01:00
if (!files.file || thumbnailUpdate) {
return Promise.all([
db.File.findOne({ where: { name, claimId: claim.claim_id } }),
resolveUri(`${claim.name}#${claim.claim_id}`),
]);
}
return [null, null];
})
.then(([fileResult, resolution]) => {
2019-02-19 02:03:37 +01:00
metadata = Object.assign(
{},
{
title: claimRecord.title,
description: claimRecord.description,
nsfw: claimRecord.nsfw,
license: claimRecord.license,
2019-02-24 07:23:56 +01:00
licenseUrl: claimRecord.license_url,
2019-02-19 02:03:37 +01:00
language: 'en',
author: details.title,
},
2019-02-23 06:52:31 +01:00
updateMetadata({ title, description, nsfw, license, licenseUrl })
2019-02-19 02:03:37 +01:00
);
const publishParams = {
name,
2019-02-19 02:03:37 +01:00
bid: '0.01',
claim_address: primaryClaimAddress,
2019-02-19 02:03:37 +01:00
channel_name: channelName,
channel_id: channelId,
metadata,
};
2018-11-07 23:51:06 +01:00
if (files.file) {
2018-11-07 23:51:06 +01:00
if (thumbnailUpdate) {
// publish new thumbnail
const newThumbnailName = `${name}-${rando()}`;
2019-02-19 02:03:37 +01:00
const newThumbnailParams = createThumbnailPublishParams(
filePath,
newThumbnailName,
license,
nsfw
);
2018-11-07 23:51:06 +01:00
newThumbnailParams['file_path'] = filePath;
publish(newThumbnailParams, fileName, fileType);
2019-02-19 02:03:37 +01:00
publishParams['thumbnail'] = `${details.host}/${newThumbnailParams.channel_name}:${
newThumbnailParams.channel_id
}/${newThumbnailName}-thumb.jpg`;
2018-11-07 23:51:06 +01:00
} else {
publishParams['file_path'] = filePath;
}
} else {
fileName = fileResult.fileName;
fileType = fileResult.fileType;
2018-11-07 23:51:06 +01:00
publishParams['thumbnail'] = claimRecord.thumbnail_url;
}
const fp = files && files.file && files.file.path ? files.file.path : undefined;
return publish(publishParams, fileName, fileType, fp);
})
.then(result => {
publishResult = result;
if (channelName) {
2019-02-19 02:03:37 +01:00
return chainquery.claim.queries.getShortClaimIdFromLongClaimId(
result.certificateId,
channelName
);
} else {
2019-02-19 02:03:37 +01:00
return chainquery.claim.queries
.getShortClaimIdFromLongClaimId(result.claimId, name, result)
.catch(() => {
return result.claimId.slice(0, 1);
});
}
})
.then(shortId => {
let canonicalUrl;
if (channelName) {
2019-02-19 02:03:37 +01:00
canonicalUrl = createCanonicalLink({
asset: { ...publishResult, channelShortId: shortId },
});
} else {
2018-11-11 01:11:12 +01:00
canonicalUrl = createCanonicalLink({ asset: { ...publishResult, shortId } });
}
if (publishResult.error) {
res.status(400).json({
success: false,
message: publishResult.message,
});
}
2019-02-19 02:03:37 +01:00
const { claimId } = publishResult;
res.status(200).json({
success: true,
message: 'update successful',
2019-02-19 02:03:37 +01:00
data: {
name,
claimId,
2019-02-19 02:03:37 +01:00
url: `${details.host}${canonicalUrl}`, // for backwards compatability with app
showUrl: `${details.host}${canonicalUrl}`,
serveUrl: `${details.host}${canonicalUrl}${fileExtension}`,
pushTo: canonicalUrl,
claimData: publishResult,
},
});
// record the publish end time and send to google analytics
sendGATimingEvent('end-to-end', 'update', fileType, gaStartTime, Date.now());
})
.catch(error => {
handleErrorResponse(originalUrl, ip, error, res);
});
};
module.exports = claimUpdate;