2017-08-02 03:58:13 +02:00
|
|
|
const logger = require('winston');
|
2018-01-30 20:46:22 +01:00
|
|
|
const { getClaimId, getLocalFileRecord } = require('../controllers/serveController.js');
|
2017-11-27 23:35:29 +01:00
|
|
|
const serveHelpers = require('../helpers/serveHelpers.js');
|
2017-08-03 02:13:02 +02:00
|
|
|
const { handleRequestError } = require('../helpers/errorHandlers.js');
|
2017-12-07 19:13:42 +01:00
|
|
|
const lbryUri = require('../helpers/lbryUri.js');
|
2017-09-08 00:31:32 +02:00
|
|
|
|
|
|
|
const SERVE = 'SERVE';
|
|
|
|
const SHOW = 'SHOW';
|
2017-10-18 00:09:43 +02:00
|
|
|
const NO_CHANNEL = 'NO_CHANNEL';
|
2017-10-18 00:50:35 +02:00
|
|
|
const NO_CLAIM = 'NO_CLAIM';
|
2017-11-28 00:57:20 +01:00
|
|
|
const NO_FILE = 'NO_FILE';
|
2017-07-25 10:52:31 +02:00
|
|
|
|
2017-08-04 01:46:44 +02:00
|
|
|
function isValidClaimId (claimId) {
|
2017-08-04 06:59:22 +02:00
|
|
|
return ((claimId.length === 40) && !/[^A-Za-z0-9]/g.test(claimId));
|
2017-08-04 01:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-08-10 19:49:19 +02:00
|
|
|
function isValidShortId (claimId) {
|
2017-11-27 23:35:29 +01:00
|
|
|
return claimId.length === 1; // it should really evaluate the short url itself
|
2017-08-04 01:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-08-10 19:49:19 +02:00
|
|
|
function isValidShortIdOrClaimId (input) {
|
|
|
|
return (isValidClaimId(input) || isValidShortId(input));
|
2017-08-04 01:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-12-13 23:55:26 +01:00
|
|
|
function clientAcceptsHtml ({accept}) {
|
|
|
|
return accept && accept.match(/text\/html/);
|
|
|
|
}
|
|
|
|
|
2017-12-14 03:30:09 +01:00
|
|
|
function requestIsFromBrowser (headers) {
|
|
|
|
return headers['user-agent'] && headers['user-agent'].match(/Mozilla/);
|
|
|
|
};
|
|
|
|
|
2017-12-14 00:09:01 +01:00
|
|
|
function clientWantsAsset ({accept, range}) {
|
2017-12-14 00:32:58 +01:00
|
|
|
const imageIsWanted = accept && accept.match(/image\/.*/) && !accept.match(/text\/html/) && !accept.match(/text\/\*/);
|
2017-12-14 03:30:09 +01:00
|
|
|
const videoIsWanted = accept && range;
|
2017-12-13 23:55:26 +01:00
|
|
|
return imageIsWanted || videoIsWanted;
|
2017-12-07 00:35:40 +01:00
|
|
|
}
|
|
|
|
|
2018-02-01 04:12:54 +01:00
|
|
|
function determineResponseType (hasFileExtension, headers) {
|
2017-11-27 22:15:09 +01:00
|
|
|
let responseType;
|
2018-02-01 04:12:54 +01:00
|
|
|
if (hasFileExtension) {
|
|
|
|
responseType = SERVE; // assume a serve request if file extension is present
|
|
|
|
if (clientAcceptsHtml(headers)) { // if the request comes from a browser, change it to a show request
|
|
|
|
responseType = SHOW;
|
2017-11-27 22:15:09 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
responseType = SHOW;
|
2017-12-14 03:30:09 +01:00
|
|
|
if (clientWantsAsset(headers) && requestIsFromBrowser(headers)) { // this is in case someone embeds a show url
|
2018-02-01 04:12:54 +01:00
|
|
|
logger.debug('Show request came from browser but wants an image/video. Changing response to serve...');
|
2017-11-29 23:36:51 +01:00
|
|
|
responseType = SERVE;
|
|
|
|
}
|
2017-11-27 22:15:09 +01:00
|
|
|
}
|
|
|
|
return responseType;
|
|
|
|
}
|
|
|
|
|
2017-11-27 23:35:29 +01:00
|
|
|
function serveAssetToClient (claimId, name, res) {
|
|
|
|
return getLocalFileRecord(claimId, name)
|
2017-11-27 23:52:46 +01:00
|
|
|
.then(fileInfo => {
|
2017-12-13 23:55:26 +01:00
|
|
|
// logger.debug('fileInfo:', fileInfo);
|
2017-11-28 00:57:20 +01:00
|
|
|
if (fileInfo === NO_FILE) {
|
2017-12-07 19:13:42 +01:00
|
|
|
return res.status(307).redirect(`/api/claim-get/${name}/${claimId}`);
|
2017-11-27 23:52:46 +01:00
|
|
|
}
|
2017-12-07 19:13:42 +01:00
|
|
|
return serveHelpers.serveFile(fileInfo, claimId, name, res);
|
2017-11-27 23:52:46 +01:00
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
throw error;
|
|
|
|
});
|
2017-11-27 23:35:29 +01:00
|
|
|
}
|
|
|
|
|
2017-11-28 03:12:58 +01:00
|
|
|
function flipClaimNameAndIdForBackwardsCompatibility (identifier, name) {
|
2017-12-14 21:32:20 +01:00
|
|
|
// this is a patch for backwards compatability with '/name/claim_id' url format
|
2017-11-28 03:12:58 +01:00
|
|
|
if (isValidShortIdOrClaimId(name) && !isValidShortIdOrClaimId(identifier)) {
|
|
|
|
const tempName = name;
|
|
|
|
name = identifier;
|
|
|
|
identifier = tempName;
|
|
|
|
}
|
|
|
|
return [identifier, name];
|
|
|
|
}
|
|
|
|
|
|
|
|
function logRequestData (responseType, claimName, channelName, claimId) {
|
|
|
|
logger.debug('responseType ===', responseType);
|
|
|
|
logger.debug('claim name === ', claimName);
|
|
|
|
logger.debug('channel name ===', channelName);
|
|
|
|
logger.debug('claim id ===', claimId);
|
|
|
|
}
|
|
|
|
|
2017-06-30 02:10:14 +02:00
|
|
|
module.exports = (app) => {
|
2017-11-30 19:02:18 +01:00
|
|
|
// route to serve a specific asset using the channel or claim id
|
2018-02-01 04:12:54 +01:00
|
|
|
app.get('/:identifier/:claim', ({ headers, ip, originalUrl, params }, res) => {
|
|
|
|
// decide if this is a show request
|
|
|
|
let hasFileExtension;
|
|
|
|
try {
|
|
|
|
({ hasFileExtension } = lbryUri.parseModifier(params.claim));
|
|
|
|
} catch (error) {
|
|
|
|
return res.status(200).json({success: false, message: error.message});
|
|
|
|
}
|
|
|
|
let responseType = determineResponseType(hasFileExtension, headers);
|
|
|
|
if (responseType !== SERVE) {
|
|
|
|
return res.status(200).render('index');
|
|
|
|
}
|
|
|
|
// parse the claim
|
|
|
|
let claimName;
|
|
|
|
try {
|
|
|
|
({ claimName } = lbryUri.parseClaim(params.claim));
|
|
|
|
} catch (error) {
|
|
|
|
return res.status(200).json({success: false, message: error.message});
|
|
|
|
}
|
|
|
|
// parse the identifier
|
|
|
|
let isChannel, channelName, channelClaimId, claimId;
|
2017-12-07 03:36:17 +01:00
|
|
|
try {
|
2017-12-07 19:13:42 +01:00
|
|
|
({ isChannel, channelName, channelClaimId, claimId } = lbryUri.parseIdentifier(params.identifier));
|
2017-12-07 03:36:17 +01:00
|
|
|
} catch (error) {
|
2017-12-07 03:49:05 +01:00
|
|
|
return handleRequestError(originalUrl, ip, error, res);
|
2017-12-07 03:36:17 +01:00
|
|
|
}
|
|
|
|
if (!isChannel) {
|
|
|
|
[claimId, claimName] = flipClaimNameAndIdForBackwardsCompatibility(claimId, claimName);
|
2017-08-24 02:00:16 +02:00
|
|
|
}
|
2017-11-30 19:02:18 +01:00
|
|
|
// log the request data for debugging
|
2017-11-28 03:12:58 +01:00
|
|
|
logRequestData(responseType, claimName, channelName, claimId);
|
2018-02-01 04:12:54 +01:00
|
|
|
// get the claim Id and then serve the asset
|
|
|
|
getClaimId(channelName, channelClaimId, claimName, claimId)
|
|
|
|
.then(fullClaimId => {
|
|
|
|
if (fullClaimId === NO_CLAIM) {
|
|
|
|
return res.status(200).json({success: false, message: 'no claim id could be found'});
|
|
|
|
} else if (fullClaimId === NO_CHANNEL) {
|
|
|
|
return res.status(200).json({success: false, message: 'no channel id could be found'});
|
|
|
|
}
|
|
|
|
serveAssetToClient(fullClaimId, claimName, res);
|
|
|
|
// postToStats(responseType, originalUrl, ip, claimName, fullClaimId, 'success');
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
handleRequestError(originalUrl, ip, error, res);
|
|
|
|
// postToStats(responseType, originalUrl, ip, claimName, fullClaimId, 'fail');
|
|
|
|
});
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|
2017-11-30 19:02:18 +01:00
|
|
|
// route to serve the winning asset at a claim or a channel page
|
2018-02-01 04:12:54 +01:00
|
|
|
app.get('/:claim', ({ headers, ip, originalUrl, params, query }, res) => {
|
|
|
|
// decide if this is a show request
|
|
|
|
let hasFileExtension;
|
2017-12-07 03:36:17 +01:00
|
|
|
try {
|
2018-02-01 04:12:54 +01:00
|
|
|
({ hasFileExtension } = lbryUri.parseModifier(params.claim));
|
2017-12-07 03:36:17 +01:00
|
|
|
} catch (error) {
|
2018-02-01 04:12:54 +01:00
|
|
|
return res.status(200).json({success: false, message: error.message});
|
2017-12-07 03:36:17 +01:00
|
|
|
}
|
2018-02-01 04:12:54 +01:00
|
|
|
let responseType = determineResponseType(hasFileExtension, headers);
|
|
|
|
if (responseType !== SERVE) {
|
2018-01-30 18:00:02 +01:00
|
|
|
return res.status(200).render('index');
|
2017-08-23 21:21:15 +02:00
|
|
|
}
|
2018-02-01 04:12:54 +01:00
|
|
|
// parse the claim
|
|
|
|
let claimName;
|
|
|
|
try {
|
|
|
|
({claimName} = lbryUri.parseClaim(params.claim));
|
|
|
|
} catch (error) {
|
|
|
|
return res.status(200).json({success: false, message: error.message});
|
|
|
|
}
|
|
|
|
// log the request data for debugging
|
|
|
|
logRequestData(responseType, claimName, null, null);
|
|
|
|
// get the claim Id and then serve the asset
|
|
|
|
getClaimId(null, null, claimName, null)
|
|
|
|
.then(fullClaimId => {
|
|
|
|
if (fullClaimId === NO_CLAIM) {
|
|
|
|
return res.status(200).render('index');
|
|
|
|
}
|
|
|
|
serveAssetToClient(fullClaimId, claimName, res);
|
|
|
|
// postToStats(responseType, originalUrl, ip, claimName, fullClaimId, 'success');
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
handleRequestError(originalUrl, ip, error, res);
|
|
|
|
// postToStats(responseType, originalUrl, ip, claimName, fullClaimId, 'fail');
|
|
|
|
});
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|
|
|
|
};
|