commit
303d6ccc3d
|
@ -185,10 +185,12 @@ module.exports = (lib) => {
|
|||
lib.checkRepostCheckSum(cbcs, (cbcrcs) => {
|
||||
if(cbcrcs === true) {
|
||||
var mime = fileType(readChunk.sync('./b/' + tmpdest, 0, 262));
|
||||
info.ext = mime.ext;
|
||||
info.mime = mime.mime;
|
||||
if(lib.cfg.main.allowedMimes.hasOwnProperty(mime.mime) || info.type === 'soundcloud')
|
||||
cb({ success: true, info: info, size: size, file: './b/' + tmpdest, checksum: cbcs });
|
||||
else
|
||||
cb({ success: false, file: tmpdest, msg: 'lol, go f0ck yourself ('+mime+')' });
|
||||
cb({ success: false, file: tmpdest, msg: 'lol, go f0ck yourself ('+mime.mime+')' });
|
||||
}
|
||||
else
|
||||
cb({ success: false, file: tmpdest, msg: 'repost motherf0cker: '+lib.cfg.main.url+'/'+cbcrcs });
|
||||
|
|
|
@ -77,7 +77,8 @@ function Websrv(tlib) {
|
|||
'.mp3': 'audio/mpeg',
|
||||
'.mp4': 'video/mp4',
|
||||
'.webm': 'video/webm',
|
||||
'.ogg': 'audio/ogg'
|
||||
'.ogg': 'audio/ogg',
|
||||
'.mov': 'video/quicktime'
|
||||
};
|
||||
if(filePath == "./index.html") { // mainpage
|
||||
var tpl = swig.compile(templates.index);
|
||||
|
@ -124,6 +125,7 @@ function Websrv(tlib) {
|
|||
break;
|
||||
case "video/webm":
|
||||
case "video/mp4":
|
||||
case "video/quicktime":
|
||||
data.item = 'video';
|
||||
break;
|
||||
case "audio/mpeg":
|
||||
|
@ -182,6 +184,7 @@ function Websrv(tlib) {
|
|||
switch(contentType) {
|
||||
case "video/webm":
|
||||
case "video/mp4":
|
||||
case "video/quicktime":
|
||||
case "audio/mpeg":
|
||||
case "audio/ogg":
|
||||
var start = 0;
|
||||
|
|
Loading…
Reference in New Issue
Block a user