const logger = require('winston'); const db = require('../models'); function determineShortClaimId (claimId, height, claimList) { logger.debug('determining short url based on claim id and claim list'); logger.debug('claimlist starting length:', claimList.length); // remove this claim from the claim list, if it exists claimList = claimList.filter(claim => { return claim.claimId !== claimId; }); logger.debug('claim list length without this claim:', claimList.length); // If there are no other claims, return the first letter of the claim id... if (claimList.length === 0) { return claimId.substring(0, 1); // ...otherwise determine the proper short id. } else { const claimListCopy = claimList; let i = 0; // find the longest shared prefix (there is a better way to do this that filters, checks next filter, then filters (i.e. combine this step and next)) while (claimList.length !== 0) { i++; claimList = claimList.filter(claim => { const otherClaimIdSegmentToCompare = claim.claimId.substring(0, i); const thisClaimIdSegmentToCompare = claimId.substring(0, i); logger.debug('compare:', otherClaimIdSegmentToCompare, '===', thisClaimIdSegmentToCompare, '?'); return (otherClaimIdSegmentToCompare === thisClaimIdSegmentToCompare); }); } // use that longest shared prefix to get only those competing claims const lastMatchIndex = i - 1; const lastMatch = claimId.substring(0, lastMatchIndex); logger.debug('last match index:', lastMatchIndex, 'last match:', lastMatch); if (lastMatchIndex === 0) { // if no other claims share a prefix, return with first letter. return claimId.substring(0, 1); } const allMatchingClaimsAtLastMatch = claimListCopy.filter(claim => { return (claim.claimId.substring(0, lastMatchIndex) === lastMatch); }); // for those that share the longest shared prefix: see which came first in time. whichever is earliest, the others take the extra character const sortedMatchingClaims = allMatchingClaimsAtLastMatch.sort((a, b) => { return (a.height < b.height); }); // compare to the earliest one, if it is earlier, this claim takes the extra character if (sortedMatchingClaims[0].height < height) { return claimId.substring(0, lastMatchIndex + 1); } return claimId.substring(0, lastMatchIndex); } } function createOpenGraphInfo ({ fileType, claimId, name, fileName, fileExt }) { return { embedUrl : `https://spee.ch/embed/${claimId}/${name}`, showUrl : `https://spee.ch/${claimId}/${name}`, source : `https://spee.ch/${claimId}/${name}${fileExt}`, directFileUrl: `https://spee.ch/media/${fileName}`, }; } module.exports = { serveFile ({ fileName, fileType, filePath }, res) { logger.info(`serving file ${fileName}`); // set default options let options = { headers: { 'X-Content-Type-Options': 'nosniff', 'Content-Type' : fileType, }, }; // adjust default options as needed switch (fileType) { case 'image/jpeg': case 'image/gif': case 'image/png': case 'video/mp4': break; default: logger.warn('sending file with unknown type as .jpeg'); options['headers']['Content-Type'] = 'image/jpeg'; break; } // send the file res.status(200).sendFile(filePath, options); }, showFile (fileInfo, res) { const openGraphInfo = createOpenGraphInfo(fileInfo); res.status(200).render('show', { layout: 'show', fileInfo, openGraphInfo }); }, showFileLite (fileInfo, res) { const openGraphInfo = createOpenGraphInfo(fileInfo); res.status(200).render('showLite', { layout: 'show', fileInfo, openGraphInfo }); }, getFullClaimIdFromShortId (shortId, name) { return new Promise((resolve, reject) => { logger.debug('getting claim_id from short url'); // use the daemon to check for claims list db.sequelize.query(`SELECT claimId FROM Claim WHERE name = '${name}' AND claimId LIKE '${shortId}%' ORDER BY height ASC LIMIT 1;`, { type: db.sequelize.QueryTypes.SELECT }) .then(result => { switch (result.length) { case 0: return reject(new Error('That is an invalid Short Id')); default: // note results must be sorted return resolve(result[0].claimId); } }) .catch(error => { reject(error); }); }); }, getShortIdFromClaimId (claimId, height, name) { return new Promise((resolve, reject) => { logger.debug('finding short claim id from full claim id'); db.sequelize.query(`SELECT claimId, height FROM Claim WHERE name = '${name}' ORDER BY claimId;`, { type: db.sequelize.QueryTypes.SELECT }) .then(result => { switch (result.length) { case 0: return reject(new Error('That is an invalid Claim Id')); default: // note results must be sorted const shortId = determineShortClaimId(claimId, height, result); logger.debug('short claim id ===', shortId); return resolve(shortId); } }) .catch(error => { reject(error); }); }); }, getClaimIdByChannelId (channelId, name) { return new Promise((resolve, reject) => { logger.debug('finding claim id from channel id'); db.sequelize.query(`SELECT claimId FROM Claim WHERE name = '${name}' AND certificateId = '${channelId}' LIMIT 1;`, { type: db.sequelize.QueryTypes.SELECT }) .then(result => { switch (result.length) { case 0: return reject(new Error('That is an invalid Channel Id')); default: // note results must be sorted logger.debug('found result', result); return resolve(result[0].claimId); } }) .catch(error => { reject(error); }); }); }, getAllFreeClaims (name) { return new Promise((resolve, reject) => { db.sequelize.query(`SELECT * FROM Claim WHERE name = '${name}' ORDER BY amount DESC, height ASC`, { type: db.sequelize.QueryTypes.SELECT }) .then(result => { switch (result.length) { case 0: return resolve(null); default: return resolve(result); } }) .catch(error => { reject(error); }); }); }, getTopFreeClaim (name) { return new Promise((resolve, reject) => { db.sequelize.query(`SELECT * FROM Claim WHERE name = '${name}' ORDER BY amount DESC, height ASC LIMIT 1`, { type: db.sequelize.QueryTypes.SELECT }) .then(result => { switch (result.length) { case 0: return resolve(null); default: return resolve(result[0]); } }) .catch(error => { reject(error); }); }); }, resolveAgainstClaimTable (name, claimId) { return new Promise((resolve, reject) => { db.sequelize.query(`SELECT * FROM Claim WHERE name = '${name}' AND claimId = '${claimId}'`, { type: db.sequelize.QueryTypes.SELECT }) .then(result => { switch (result.length) { case 0: return resolve(null); case 1: return resolve(result[0]); default: return new Error('more than one entry matches that name and claimID'); } }) .catch(error => { reject(error); }); }); }, };