spee.ch/routes/api-routes.js

170 lines
6.5 KiB
JavaScript
Raw Normal View History

const logger = require('winston');
const multipart = require('connect-multiparty');
const multipartMiddleware = multipart();
2017-09-28 20:42:29 +02:00
const db = require('../models');
2017-08-16 20:00:17 +02:00
const { publish } = require('../controllers/publishController.js');
const { getClaimList, resolveUri } = require('../helpers/lbryApi.js');
const { createPublishParams, validateApiPublishRequest, validatePublishSubmission, cleanseNSFW, cleanseChannelName, checkClaimNameAvailability, checkChannelAvailability } = require('../helpers/publishHelpers.js');
2017-08-03 02:13:02 +02:00
const errorHandlers = require('../helpers/errorHandlers.js');
2017-06-30 07:26:29 +02:00
const { postToStats, sendGoogleAnalytics } = require('../controllers/statsController.js');
const { authenticateChannelCredentials } = require('../auth/authentication.js');
2017-09-20 23:39:20 +02:00
module.exports = (app) => {
// route to run a claim_list request on the daemon
2017-07-06 03:26:33 +02:00
app.get('/api/claim_list/:name', ({ headers, ip, originalUrl, params }, res) => {
2017-06-30 02:10:14 +02:00
// google analytics
2017-08-04 06:59:22 +02:00
sendGoogleAnalytics('SERVE', headers, ip, originalUrl);
2017-06-30 02:10:14 +02:00
// serve the content
2017-08-16 20:00:17 +02:00
getClaimList(params.name)
.then(claimsList => {
postToStats('serve', originalUrl, ip, null, null, 'success');
res.status(200).json(claimsList);
})
.catch(error => {
2017-11-02 19:50:05 +01:00
errorHandlers.handleApiError('claim_list', originalUrl, ip, error, res);
2017-08-16 20:00:17 +02:00
});
});
2017-07-03 23:48:35 +02:00
// route to check whether spee.ch has published to a claim
2017-10-10 03:29:40 +02:00
app.get('/api/isClaimAvailable/:name', ({ params }, res) => {
2017-07-03 23:48:35 +02:00
// send response
2017-09-19 21:54:23 +02:00
checkClaimNameAvailability(params.name)
2017-08-16 20:00:17 +02:00
.then(result => {
if (result === true) {
res.status(200).json(true);
} else {
2017-09-21 02:14:33 +02:00
logger.debug(`Rejecting '${params.name}' because that name has already been claimed on spee.ch`);
2017-08-16 20:00:17 +02:00
res.status(200).json(false);
}
})
.catch(error => {
res.status(500).json(error);
});
2017-07-03 23:48:35 +02:00
});
2017-09-19 17:47:24 +02:00
// route to check whether spee.ch has published to a channel
2017-09-19 21:54:23 +02:00
app.get('/api/isChannelAvailable/:name', ({ params }, res) => {
2017-09-19 17:47:24 +02:00
checkChannelAvailability(params.name)
.then(result => {
if (result === true) {
res.status(200).json(true);
} else {
2017-09-21 02:14:33 +02:00
logger.debug(`Rejecting '${params.name}' because that channel has already been claimed on spee.ch`);
2017-09-19 17:47:24 +02:00
res.status(200).json(false);
}
})
.catch(error => {
2017-09-19 21:54:23 +02:00
logger.debug('api/isChannelAvailable/ error', error);
2017-09-19 17:47:24 +02:00
res.status(500).json(error);
});
});
// route to run a resolve request on the daemon
2017-07-06 03:26:33 +02:00
app.get('/api/resolve/:uri', ({ headers, ip, originalUrl, params }, res) => {
2017-06-30 02:10:14 +02:00
// google analytics
2017-08-04 06:59:22 +02:00
sendGoogleAnalytics('SERVE', headers, ip, originalUrl);
2017-06-30 02:10:14 +02:00
// serve content
2017-08-16 20:00:17 +02:00
resolveUri(params.uri)
.then(resolvedUri => {
postToStats('serve', originalUrl, ip, null, null, 'success');
res.status(200).json(resolvedUri);
})
.catch(error => {
2017-11-02 19:50:05 +01:00
errorHandlers.handleApiError('resolve', originalUrl, ip, error, res);
2017-08-16 20:00:17 +02:00
});
});
// route to run a publish request on the daemon
2017-11-02 19:50:05 +01:00
app.post('/api/publish', multipartMiddleware, ({ body, files, ip, originalUrl }, res) => {
2017-10-10 03:29:40 +02:00
// validate that mandatory parts of the request are present
2017-07-08 01:08:35 +02:00
try {
validateApiPublishRequest(body, files);
2017-07-08 01:08:35 +02:00
} catch (error) {
logger.debug('publish request rejected, insufficient request parameters');
res.status(400).json({success: false, message: error.message});
2017-07-08 01:08:35 +02:00
return;
}
2017-10-10 03:29:40 +02:00
// validate file, name, license, and nsfw
const file = files.file;
2017-06-26 19:43:35 +02:00
const fileName = file.name;
const filePath = file.path;
const fileType = file.type;
const name = body.name;
const nsfw = cleanseNSFW(body.nsfw); // cleanse nsfw input
try {
validatePublishSubmission(file, name, nsfw);
} catch (error) {
logger.debug('publish request rejected');
res.status(400).json({success: false, message: error.message});
return;
}
logger.debug(`name: ${name}, nsfw: ${nsfw}`);
// optional inputs
const license = body.license || null;
const title = body.title || null;
const description = body.description || null;
2017-10-10 03:29:40 +02:00
const thumbnail = body.thumbnail || null;
let channelName = body.channelName || null;
channelName = cleanseChannelName(channelName);
const channelPassword = body.channelPassword || null;
logger.debug(`license: ${license} title: "${title}" description: "${description}" channelName: "${channelName}" channelPassword: "${channelPassword}" nsfw: "${nsfw}"`);
// check channel authorization
authenticateChannelCredentials(channelName, channelPassword)
.then(result => {
if (!result) {
throw new Error('Authentication failed, you do not have access to that channel');
}
// make sure the claim name is available
return checkClaimNameAvailability(name);
})
2017-09-28 19:51:02 +02:00
.then(result => {
if (!result) {
throw new Error('That name is already in use by spee.ch.');
2017-09-28 19:51:02 +02:00
}
// create publish parameters object
2017-10-10 03:29:40 +02:00
return createPublishParams(filePath, name, title, description, license, nsfw, thumbnail, channelName);
2017-09-28 19:51:02 +02:00
})
.then(publishParams => {
logger.debug('publishParams:', publishParams);
// publish the asset
2017-09-28 19:51:02 +02:00
return publish(publishParams, fileName, fileType);
})
2017-08-16 20:00:17 +02:00
.then(result => {
res.status(200).json({
success: true,
message: {
name,
url : `spee.ch/${result.claim_id}/${name}`,
lbryTx: result,
},
});
2017-08-16 20:00:17 +02:00
})
.catch(error => {
2017-11-02 19:50:05 +01:00
errorHandlers.handleApiError('publish', originalUrl, ip, error, res);
2017-08-16 20:00:17 +02:00
});
});
2017-09-28 20:42:29 +02:00
// route to get a short claim id from long claim Id
app.get('/api/shortClaimId/:longId/:name', ({ originalUrl, ip, params }, res) => {
// serve content
db.Claim
.getShortClaimIdFromLongClaimId(params.longId, params.name)
2017-09-28 20:42:29 +02:00
.then(shortId => {
res.status(200).json(shortId);
})
.catch(error => {
logger.error('api error getting short channel id', error);
res.status(400).json(error.message);
});
});
// route to get a short channel id from long channel Id
2017-11-02 19:50:05 +01:00
app.get('/api/shortChannelId/:longId/:name', ({ ip, originalUrl, params }, res) => {
2017-09-28 20:42:29 +02:00
// serve content
db.Certificate.getShortChannelIdFromLongChannelId(params.longId, params.name)
2017-09-28 20:42:29 +02:00
.then(shortId => {
2017-10-30 05:01:45 +01:00
logger.debug('sending back short channel id', shortId);
2017-09-28 20:42:29 +02:00
res.status(200).json(shortId);
})
.catch(error => {
logger.error('api error getting short channel id', error);
2017-11-02 19:50:05 +01:00
errorHandlers.handleApiError('short channel id', originalUrl, ip, error, res);
2017-09-28 20:42:29 +02:00
});
});
};