2017-08-01 18:58:13 -07:00
|
|
|
const logger = require('winston');
|
2017-08-23 17:00:16 -07:00
|
|
|
const { getAssetByClaim, getChannelContents, getAssetByChannel, serveOrShowAsset } = require('../controllers/serveController.js');
|
2017-08-02 17:13:02 -07:00
|
|
|
const { handleRequestError } = require('../helpers/errorHandlers.js');
|
2017-09-07 15:31:32 -07:00
|
|
|
|
|
|
|
const SERVE = 'SERVE';
|
|
|
|
const SHOW = 'SHOW';
|
|
|
|
const SHOWLITE = 'SHOWLITE';
|
|
|
|
const CHANNEL = 'CHANNEL';
|
|
|
|
const CLAIM = 'CLAIM';
|
|
|
|
const CHANNELID_INDICATOR = ':';
|
2017-07-25 01:52:31 -07:00
|
|
|
|
2017-08-03 16:46:44 -07:00
|
|
|
function isValidClaimId (claimId) {
|
2017-08-03 21:59:22 -07:00
|
|
|
return ((claimId.length === 40) && !/[^A-Za-z0-9]/g.test(claimId));
|
2017-08-03 16:46:44 -07:00
|
|
|
}
|
|
|
|
|
2017-08-10 10:49:19 -07:00
|
|
|
function isValidShortId (claimId) {
|
2017-08-03 16:46:44 -07:00
|
|
|
return claimId.length === 1; // really it should evaluate the short url itself
|
|
|
|
}
|
|
|
|
|
2017-08-10 10:49:19 -07:00
|
|
|
function isValidShortIdOrClaimId (input) {
|
|
|
|
return (isValidClaimId(input) || isValidShortId(input));
|
2017-08-03 16:46:44 -07:00
|
|
|
}
|
|
|
|
|
2017-08-23 17:00:16 -07:00
|
|
|
function getAsset (claimType, channelName, channelId, name, claimId) {
|
|
|
|
switch (claimType) {
|
|
|
|
case CHANNEL:
|
|
|
|
return getAssetByChannel(channelName, channelId, name);
|
|
|
|
case CLAIM:
|
|
|
|
return getAssetByClaim(name, claimId);
|
|
|
|
default:
|
|
|
|
return new Error('that claim type was not found');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-29 17:10:14 -07:00
|
|
|
module.exports = (app) => {
|
2017-07-06 13:37:03 -07:00
|
|
|
// route to serve a specific asset
|
2017-07-31 17:02:39 -07:00
|
|
|
app.get('/:identifier/:name', ({ headers, ip, originalUrl, params }, res) => {
|
2017-08-03 16:46:44 -07:00
|
|
|
let identifier = params.identifier;
|
2017-07-31 17:02:39 -07:00
|
|
|
let name = params.name;
|
|
|
|
let claimType;
|
|
|
|
let channelName = null;
|
2017-08-23 17:00:16 -07:00
|
|
|
let claimId = null;
|
2017-08-21 18:03:57 -07:00
|
|
|
let channelId = null;
|
2017-08-03 16:46:44 -07:00
|
|
|
let method;
|
2017-09-07 09:45:00 -07:00
|
|
|
let fileExtension;
|
2017-08-03 16:46:44 -07:00
|
|
|
// parse the name
|
|
|
|
const positionOfExtension = name.indexOf('.');
|
|
|
|
if (positionOfExtension >= 0) {
|
2017-09-07 09:45:00 -07:00
|
|
|
fileExtension = name.substring(positionOfExtension + 1);
|
2017-08-03 22:09:36 -07:00
|
|
|
name = name.substring(0, positionOfExtension);
|
2017-08-08 15:41:14 -07:00
|
|
|
/* patch because twitter player preview adds '>' before file extension */
|
|
|
|
if (name.indexOf('>') >= 0) {
|
|
|
|
name = name.substring(0, name.indexOf('>'));
|
|
|
|
}
|
|
|
|
/* end patch */
|
2017-09-07 09:45:00 -07:00
|
|
|
logger.debug('file extension =', fileExtension);
|
2017-08-03 16:46:44 -07:00
|
|
|
if (headers['accept'] && headers['accept'].split(',').includes('text/html')) {
|
|
|
|
method = SHOWLITE;
|
|
|
|
} else {
|
|
|
|
method = SERVE;
|
|
|
|
}
|
|
|
|
} else {
|
2017-08-07 10:54:07 -07:00
|
|
|
method = SHOW;
|
2017-08-03 16:46:44 -07:00
|
|
|
}
|
2017-08-08 15:41:14 -07:00
|
|
|
/* patch for backwards compatability with spee.ch/name/claim_id */
|
2017-08-10 10:49:19 -07:00
|
|
|
if (isValidShortIdOrClaimId(name) && !isValidShortIdOrClaimId(identifier)) {
|
2017-08-03 16:46:44 -07:00
|
|
|
let tempName = name;
|
|
|
|
name = identifier;
|
|
|
|
identifier = tempName;
|
|
|
|
}
|
2017-08-18 16:52:58 -07:00
|
|
|
/* end patch */
|
2017-08-03 16:46:44 -07:00
|
|
|
logger.debug('claim name =', name);
|
|
|
|
logger.debug('method =', method);
|
|
|
|
// parse identifier for whether it is a channel, short url, or claim_id
|
2017-07-31 17:02:39 -07:00
|
|
|
if (identifier.charAt(0) === '@') {
|
2017-08-21 18:03:57 -07:00
|
|
|
channelName = identifier;
|
2017-07-31 17:02:39 -07:00
|
|
|
claimType = CHANNEL;
|
2017-08-21 18:03:57 -07:00
|
|
|
const channelIdIndex = channelName.indexOf(CHANNELID_INDICATOR);
|
|
|
|
if (channelIdIndex !== -1) {
|
|
|
|
channelId = channelName.substring(channelIdIndex + 1);
|
|
|
|
channelName = channelName.substring(0, channelIdIndex);
|
|
|
|
}
|
2017-08-22 15:50:20 -07:00
|
|
|
logger.debug('channel name =', channelName);
|
2017-08-01 18:58:13 -07:00
|
|
|
} else {
|
2017-08-23 17:00:16 -07:00
|
|
|
claimId = identifier;
|
|
|
|
logger.debug('claim id =', claimId);
|
|
|
|
claimType = CLAIM;
|
|
|
|
}
|
2017-08-02 13:16:39 -07:00
|
|
|
// 1. retrieve the asset and information
|
2017-08-23 17:00:16 -07:00
|
|
|
getAsset(claimType, channelName, channelId, name, claimId)
|
2017-08-02 13:16:39 -07:00
|
|
|
// 2. serve or show
|
|
|
|
.then(fileInfo => {
|
|
|
|
if (!fileInfo) {
|
|
|
|
res.status(200).render('noClaims');
|
2017-08-03 11:14:50 -07:00
|
|
|
} else {
|
2017-09-07 09:45:00 -07:00
|
|
|
return serveOrShowAsset(fileInfo, fileExtension, method, headers, originalUrl, ip, res);
|
2017-08-02 13:16:39 -07:00
|
|
|
}
|
|
|
|
})
|
2017-08-04 11:32:21 -07:00
|
|
|
// 3. update the file
|
2017-08-03 16:46:44 -07:00
|
|
|
.then(fileInfoForUpdate => {
|
2017-08-04 11:32:21 -07:00
|
|
|
// if needed, this is where we would update the file
|
2017-08-02 13:16:39 -07:00
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
handleRequestError('serve', originalUrl, ip, error, res);
|
|
|
|
});
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|
2017-07-17 13:16:11 -07:00
|
|
|
// route to serve the winning asset at a claim
|
2017-07-05 09:26:22 -07:00
|
|
|
app.get('/:name', ({ headers, ip, originalUrl, params }, res) => {
|
2017-08-03 11:14:50 -07:00
|
|
|
// parse name param
|
|
|
|
let name = params.name;
|
|
|
|
let method;
|
2017-08-03 22:09:36 -07:00
|
|
|
let fileExtension;
|
2017-08-23 12:21:15 -07:00
|
|
|
let channelName = null;
|
|
|
|
let channelId = null;
|
|
|
|
if (name.charAt(0) === '@') {
|
|
|
|
channelName = name;
|
|
|
|
const channelIdIndex = channelName.indexOf(CHANNELID_INDICATOR);
|
|
|
|
if (channelIdIndex !== -1) {
|
|
|
|
channelId = channelName.substring(channelIdIndex + 1);
|
|
|
|
channelName = channelName.substring(0, channelIdIndex);
|
2017-08-03 11:14:50 -07:00
|
|
|
}
|
2017-08-23 12:21:15 -07:00
|
|
|
logger.debug('channel name =', channelName);
|
|
|
|
logger.debug('channel Id =', channelId);
|
|
|
|
// 1. retrieve the channel contents
|
|
|
|
getChannelContents(channelName, channelId)
|
|
|
|
// 2. respond to the request
|
|
|
|
.then(channelContents => {
|
|
|
|
if (!channelContents) {
|
|
|
|
res.status(200).render('noChannel');
|
|
|
|
} else {
|
|
|
|
const handlebarsData = {
|
|
|
|
channelName,
|
|
|
|
channelContents,
|
|
|
|
};
|
|
|
|
res.status(200).render('channel', handlebarsData);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
handleRequestError('serve', originalUrl, ip, error, res);
|
|
|
|
});
|
2017-08-03 11:14:50 -07:00
|
|
|
} else {
|
2017-08-23 12:21:15 -07:00
|
|
|
if (name.indexOf('.') !== -1) {
|
2017-08-03 11:14:50 -07:00
|
|
|
method = SERVE;
|
2017-08-23 12:21:15 -07:00
|
|
|
if (headers['accept'] && headers['accept'].split(',').includes('text/html')) {
|
|
|
|
method = SHOWLITE;
|
|
|
|
}
|
2017-09-07 09:45:00 -07:00
|
|
|
fileExtension = name.substring(name.indexOf('.') + 1);
|
2017-08-23 12:21:15 -07:00
|
|
|
name = name.substring(0, name.indexOf('.'));
|
|
|
|
logger.debug('file extension =', fileExtension);
|
2017-08-03 11:14:50 -07:00
|
|
|
} else {
|
2017-08-23 12:21:15 -07:00
|
|
|
method = SHOW;
|
|
|
|
if (headers['accept'] && !headers['accept'].split(',').includes('text/html')) {
|
|
|
|
method = SERVE;
|
|
|
|
}
|
2017-08-03 11:14:50 -07:00
|
|
|
}
|
2017-08-23 12:21:15 -07:00
|
|
|
logger.debug('claim name = ', name);
|
|
|
|
logger.debug('method =', method);
|
|
|
|
// 1. retrieve the asset and information
|
2017-08-24 09:42:56 -07:00
|
|
|
getAsset(CLAIM, null, null, name, null)
|
2017-08-23 12:21:15 -07:00
|
|
|
// 2. respond to the request
|
|
|
|
.then(fileInfo => {
|
|
|
|
if (!fileInfo) {
|
|
|
|
res.status(200).render('noClaims');
|
|
|
|
} else {
|
2017-09-07 09:45:00 -07:00
|
|
|
return serveOrShowAsset(fileInfo, fileExtension, method, headers, originalUrl, ip, res);
|
2017-08-23 12:21:15 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
// 3. update the database
|
|
|
|
.then(fileInfoForUpdate => {
|
|
|
|
// if needed, this is where we would update the file
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
handleRequestError('serve', originalUrl, ip, error, res);
|
|
|
|
});
|
|
|
|
}
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|
|
|
|
};
|