2017-06-19 18:37:35 +02:00
|
|
|
const fs = require('fs');
|
2017-06-20 01:15:28 +02:00
|
|
|
const logger = require('winston');
|
2017-06-19 18:37:35 +02:00
|
|
|
const lbryApi = require('../helpers/libraries/lbryApi.js');
|
|
|
|
const config = require('config');
|
|
|
|
const walledAddress = config.get('WalletConfig.lbryAddress');
|
2017-06-20 01:15:28 +02:00
|
|
|
const errorHandlers = require('../helpers/libraries/errorHandlers.js');
|
2017-06-03 05:56:33 +02:00
|
|
|
|
2017-06-17 22:51:30 +02:00
|
|
|
function createPublishParams (claim, filePath, license, nsfw) {
|
2017-06-20 04:34:34 +02:00
|
|
|
logger.debug(`Creating Publish Parameters for "${claim}"`);
|
2017-06-17 22:51:30 +02:00
|
|
|
const publishParams = {
|
|
|
|
name : claim,
|
|
|
|
file_path: filePath,
|
|
|
|
bid : 0.01,
|
|
|
|
metadata : {
|
|
|
|
description: `${claim} published via spee.ch`,
|
|
|
|
title : claim,
|
|
|
|
author : 'spee.ch',
|
|
|
|
language : 'en',
|
|
|
|
license,
|
|
|
|
nsfw : nsfw.toLowerCase() === 'on',
|
|
|
|
},
|
|
|
|
claim_address : walledAddress,
|
|
|
|
change_address: walledAddress,
|
2017-06-19 18:37:35 +02:00
|
|
|
};
|
|
|
|
return publishParams;
|
2017-06-03 05:56:33 +02:00
|
|
|
}
|
2017-06-03 09:41:02 +02:00
|
|
|
|
2017-06-17 22:51:30 +02:00
|
|
|
function deleteTemporaryFile (filePath) {
|
|
|
|
fs.unlink(filePath, err => {
|
2017-06-19 18:37:35 +02:00
|
|
|
if (err) throw err;
|
2017-06-20 04:34:34 +02:00
|
|
|
logger.debug(`successfully deleted ${filePath}`);
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|
2017-06-03 05:56:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2017-06-17 22:51:30 +02:00
|
|
|
publish (claim, fileName, filePath, fileType, license, nsfw, socket, visitor) {
|
|
|
|
// update the client
|
2017-06-19 18:37:35 +02:00
|
|
|
socket.emit('publish-status', 'Your image is being published (this might take a second)...');
|
2017-06-17 22:51:30 +02:00
|
|
|
// send to analytics
|
2017-06-19 18:37:35 +02:00
|
|
|
visitor.event('Publish Route', 'Publish Request', filePath).send();
|
2017-06-17 22:51:30 +02:00
|
|
|
// create the publish object
|
2017-06-19 18:37:35 +02:00
|
|
|
const publishParams = createPublishParams(claim, filePath, license, nsfw);
|
2017-06-17 22:51:30 +02:00
|
|
|
// get a promise to publish
|
|
|
|
lbryApi
|
|
|
|
.publishClaim(publishParams, fileName, fileType)
|
|
|
|
.then(result => {
|
2017-06-19 18:37:35 +02:00
|
|
|
visitor.event('Publish Route', 'Publish Success', filePath).send();
|
|
|
|
socket.emit('publish-complete', { name: claim, result });
|
2017-06-17 22:51:30 +02:00
|
|
|
})
|
|
|
|
.catch(error => {
|
2017-06-19 18:37:35 +02:00
|
|
|
visitor.event('Publish Route', 'Publish Failure', filePath).send();
|
|
|
|
socket.emit('publish-failure', errorHandlers.handlePublishError(error));
|
|
|
|
deleteTemporaryFile(filePath);
|
|
|
|
});
|
2017-06-17 22:51:30 +02:00
|
|
|
},
|
2017-06-19 18:37:35 +02:00
|
|
|
};
|