2017-07-17 13:16:11 -07:00
const logger = require ( 'winston' ) ;
2017-08-02 17:13:02 -07:00
const db = require ( '../models' ) ;
2017-07-17 13:16:11 -07:00
2017-08-10 10:49:19 -07:00
function determineShortClaimId ( claimId , height , claimList ) {
2017-07-19 14:11:47 -07:00
logger . debug ( 'determining short url based on claim id and claim list' ) ;
2017-08-10 13:04:31 -07:00
logger . debug ( 'claimlist starting length:' , claimList . length ) ;
2017-08-04 12:58:42 -07:00
// remove this claim from the claim list, if it exists
claimList = claimList . filter ( claim => {
2017-08-15 15:35:03 -07:00
return claim . claimId !== claimId ;
2017-07-19 07:58:44 -07:00
} ) ;
2017-08-10 13:04:31 -07:00
logger . debug ( 'claim list length without this claim:' , claimList . length ) ;
// If there are no other claims, return the first letter of the claim id...
2017-08-04 12:58:42 -07:00
if ( claimList . length === 0 ) {
2017-07-19 14:11:47 -07:00
return claimId . substring ( 0 , 1 ) ;
2017-08-10 13:04:31 -07:00
// ...otherwise determine the proper short id.
2017-07-19 14:11:47 -07:00
} else {
const claimListCopy = claimList ;
2017-08-10 13:04:31 -07:00
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 ) {
2017-07-19 14:11:47 -07:00
i ++ ;
claimList = claimList . filter ( claim => {
2017-08-15 15:35:03 -07:00
const otherClaimIdSegmentToCompare = claim . claimId . substring ( 0 , i ) ;
2017-08-10 13:04:31 -07:00
const thisClaimIdSegmentToCompare = claimId . substring ( 0 , i ) ;
logger . debug ( 'compare:' , otherClaimIdSegmentToCompare , '===' , thisClaimIdSegmentToCompare , '?' ) ;
return ( otherClaimIdSegmentToCompare === thisClaimIdSegmentToCompare ) ;
2017-07-19 14:11:47 -07:00
} ) ;
}
2017-08-10 13:04:31 -07:00
// 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 => {
2017-08-15 15:35:03 -07:00
return ( claim . claimId . substring ( 0 , lastMatchIndex ) === lastMatch ) ;
2017-07-19 07:58:44 -07:00
} ) ;
2017-08-10 13:04:31 -07:00
// 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 ) ;
2017-07-19 14:11:47 -07:00
}
2017-08-10 13:04:31 -07:00
return claimId . substring ( 0 , lastMatchIndex ) ;
2017-07-19 07:58:44 -07:00
}
2017-07-19 14:11:47 -07:00
}
2017-08-07 17:08:03 -07:00
function createOpenGraphInfo ( { fileType , claimId , name , fileName , fileExt } ) {
2017-08-04 17:41:06 -07:00
return {
2017-08-08 13:05:29 -07:00
embedUrl : ` https://spee.ch/embed/ ${ claimId } / ${ name } ` ,
2017-08-08 11:01:01 -07:00
showUrl : ` https://spee.ch/ ${ claimId } / ${ name } ` ,
source : ` https://spee.ch/ ${ claimId } / ${ name } ${ fileExt } ` ,
directFileUrl : ` https://spee.ch/media/ ${ fileName } ` ,
2017-08-04 17:41:06 -07:00
} ;
}
2017-07-17 13:16:11 -07:00
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 ) ;
} ,
2017-08-01 18:58:13 -07:00
showFile ( fileInfo , res ) {
2017-08-04 17:41:06 -07:00
const openGraphInfo = createOpenGraphInfo ( fileInfo ) ;
res . status ( 200 ) . render ( 'show' , { layout : 'show' , fileInfo , openGraphInfo } ) ;
2017-07-31 17:02:39 -07:00
} ,
2017-08-01 18:58:13 -07:00
showFileLite ( fileInfo , res ) {
2017-08-04 17:41:06 -07:00
const openGraphInfo = createOpenGraphInfo ( fileInfo ) ;
res . status ( 200 ) . render ( 'showLite' , { layout : 'show' , fileInfo , openGraphInfo } ) ;
2017-07-31 17:02:39 -07:00
} ,
2017-08-10 10:49:19 -07:00
getFullClaimIdFromShortId ( shortId , name ) {
2017-08-02 13:16:39 -07:00
return new Promise ( ( resolve , reject ) => {
2017-08-04 11:32:21 -07:00
logger . debug ( 'getting claim_id from short url' ) ;
2017-08-02 13:16:39 -07:00
// use the daemon to check for claims list
2017-08-16 00:03:26 -07:00
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 } )
2017-08-15 15:35:03 -07:00
. then ( result => {
switch ( result . length ) {
case 0 :
return reject ( new Error ( 'That is an invalid Short Id' ) ) ;
default : // note results must be sorted
2017-08-16 00:03:26 -07:00
return resolve ( result [ 0 ] . claimId ) ;
2017-07-20 10:15:20 -07:00
}
} )
2017-08-15 15:35:03 -07:00
. catch ( error => {
reject ( error ) ;
} ) ;
} ) ;
} ,
getShortIdFromClaimId ( claimId , height , name ) {
return new Promise ( ( resolve , reject ) => {
logger . debug ( 'finding short claim id from full claim id' ) ;
2017-08-16 00:03:26 -07:00
db . sequelize . query ( ` SELECT claimId, height FROM Claim WHERE name = ' ${ name } ' ORDER BY claimId; ` , { type : db . sequelize . QueryTypes . SELECT } )
2017-08-15 15:35:03 -07:00
. then ( result => {
switch ( result . length ) {
2017-07-19 09:11:08 -07:00
case 0 :
2017-08-15 15:35:03 -07:00
return reject ( new Error ( 'That is an invalid Claim Id' ) ) ;
default : // note results must be sorted
2017-08-16 00:03:26 -07:00
const shortId = determineShortClaimId ( claimId , height , result ) ;
2017-08-15 15:35:03 -07:00
logger . debug ( 'short claim id ===' , shortId ) ;
return resolve ( shortId ) ;
2017-07-19 09:11:08 -07:00
}
} )
. catch ( error => {
reject ( error ) ;
} ) ;
} ) ;
} ,
2017-08-15 15:35:03 -07:00
getAllFreeClaims ( claimName ) {
2017-08-02 13:16:39 -07:00
return new Promise ( ( resolve , reject ) => {
2017-08-16 00:03:26 -07:00
db . sequelize . query ( ` SELECT * FROM Claim WHERE name = ' ${ claimName } ' ORDER BY amount DESC, height ASC ` , { type : db . sequelize . QueryTypes . SELECT } )
2017-08-15 15:35:03 -07:00
. then ( result => {
2017-08-16 00:03:26 -07:00
switch ( result . length ) {
case 0 :
return resolve ( null ) ;
default :
return resolve ( result ) ;
2017-08-15 15:35:03 -07:00
}
} )
. catch ( error => {
reject ( error ) ;
} ) ;
} ) ;
} ,
getTopFreeClaim ( claimName ) {
return new Promise ( ( resolve , reject ) => {
2017-08-16 00:03:26 -07:00
db . sequelize . query ( ` SELECT * FROM Claim WHERE name = ' ${ claimName } ' ORDER BY amount DESC, height ASC LIMIT 1 ` , { type : db . sequelize . QueryTypes . SELECT } )
2017-08-15 15:35:03 -07:00
. then ( result => {
2017-08-16 00:03:26 -07:00
switch ( result . length ) {
case 0 :
return resolve ( null ) ;
default :
return resolve ( result ) ;
2017-08-15 15:35:03 -07:00
}
2017-07-19 09:11:08 -07:00
} )
. catch ( error => {
reject ( error ) ;
} ) ;
2017-07-17 13:16:11 -07:00
} ) ;
2017-07-19 14:11:47 -07:00
} ,
2017-07-17 13:16:11 -07:00
} ;