cryptpad/www/common/common-thumbnail.js

195 lines
6.2 KiB
JavaScript
Raw Normal View History

define([
'/bower_components/tweetnacl/nacl-fast.min.js',
], function () {
var Nacl = window.nacl;
var Thumb = {
2017-09-05 09:25:35 +00:00
dimension: 100,
padDimension: 200,
2017-11-02 18:11:27 +00:00
UPDATE_INTERVAL: 60000,
UPDATE_FIRST: 5000
2017-09-05 08:46:00 +00:00
};
var supportedTypes = [
'image/png',
'image/jpeg',
'image/jpg',
2017-10-24 10:26:04 +00:00
'image/gif',
2017-10-24 12:31:42 +00:00
'video/',
'application/pdf'
2017-09-05 08:46:00 +00:00
];
Thumb.isSupportedType = function (type) {
2017-10-24 10:26:04 +00:00
return supportedTypes.some(function (t) {
return type.indexOf(t) !== -1;
});
};
// create thumbnail image from metadata
// return an img tag, or undefined if anything goes wrong
Thumb.fromMetadata = function (metadata) {
if (!metadata || typeof(metadata) !== 'object' || !metadata.thumbnail) { return; }
try {
var u8 = Nacl.util.decodeBase64(metadata.thumbnail);
var blob = new Blob([u8], {
type: 'image/png'
});
var url = URL.createObjectURL(blob);
var img = new Image();
img.src = url;
img.width = Thumb.dimension;
img.height = Thumb.dimension;
return img;
} catch (e) {
console.error(e);
return;
}
};
var getResizedDimensions = Thumb.getResizedDimensions = function (img, type) {
2017-10-24 10:26:04 +00:00
var h = type === 'video' ? img.videoHeight : img.height;
var w = type === 'video' ? img.videoWidth : img.width;
2017-09-05 08:46:00 +00:00
2017-10-26 10:31:16 +00:00
var dim = type === 'pad' ? Thumb.padDimension : Thumb.dimension;
2017-09-05 08:46:00 +00:00
// if the image is too small, don't bother making a thumbnail
2017-10-26 10:31:16 +00:00
/*if (h <= dim && w <= dim) {
2017-10-24 16:49:58 +00:00
return {
x: Math.floor((dim - w) / 2),
w: w,
y: Math.floor((dim - h) / 2),
h : h
};
2017-10-26 10:31:16 +00:00
}*/
2017-09-05 08:46:00 +00:00
// the image is taller than it is wide, so scale to that.
var r = dim / (h > w? h: w); // ratio
2017-10-26 10:31:16 +00:00
if (h <= dim && w <= dim) { r = 1; }
2017-09-05 08:46:00 +00:00
var d;
if (h > w) {
var newW = Math.floor(w*r);
d = Math.floor((dim - newW) / 2);
2017-09-05 08:46:00 +00:00
return {
2017-10-26 10:31:16 +00:00
dim: dim,
x: d,
w: newW,
y: 0,
h: dim,
2017-09-05 08:46:00 +00:00
};
} else {
var newH = Math.floor(h*r);
d = Math.floor((dim - newH) / 2);
2017-09-05 08:46:00 +00:00
return {
2017-10-26 10:31:16 +00:00
dim: dim,
x: 0,
w: dim,
y: d,
h: newH
2017-09-05 08:46:00 +00:00
};
}
};
// assumes that your canvas is square
// nodeback returning blob
2017-10-24 16:49:58 +00:00
Thumb.fromCanvas = function (canvas, D, cb) {
var c2 = document.createElement('canvas');
2017-10-24 16:49:58 +00:00
if (!D) { return void cb('ERROR'); }
2017-09-05 08:46:00 +00:00
2017-10-26 10:31:16 +00:00
c2.width = D.dim;
c2.height = D.dim;
var ctx = c2.getContext('2d');
ctx.drawImage(canvas, D.x, D.y, D.w, D.h);
2017-10-24 16:49:58 +00:00
cb(void 0, c2.toDataURL());
};
2017-09-05 08:46:00 +00:00
Thumb.fromImageBlob = function (blob, cb) {
var url = URL.createObjectURL(blob);
var img = new Image();
img.onload = function () {
2017-10-24 10:26:04 +00:00
var D = getResizedDimensions(img, 'image');
2017-10-24 16:49:58 +00:00
Thumb.fromCanvas(img, D, cb);
2017-09-05 08:46:00 +00:00
};
img.onerror = function () {
cb('ERROR');
};
img.src = url;
};
2017-10-24 10:26:04 +00:00
Thumb.fromVideoBlob = function (blob, cb) {
var url = URL.createObjectURL(blob);
var video = document.createElement("VIDEO");
video.src = url;
video.addEventListener('loadedmetadata', function() {
video.currentTime = Number(Math.floor(Math.min(video.duration/10, 5)));
video.addEventListener('loadeddata', function() {
var D = getResizedDimensions(video, 'video');
Thumb.fromCanvas(video, D, cb);
});
});
video.addEventListener('error', function (e) {
2017-10-24 12:02:29 +00:00
console.error(e);
cb('ERROR');
});
2017-10-24 10:26:04 +00:00
};
2017-10-24 12:31:42 +00:00
Thumb.fromPdfBlob = function (blob, cb) {
require.config({paths: {'pdfjs-dist': '/common/pdfjs'}});
require(['pdfjs-dist/build/pdf'], function (PDFJS) {
var url = URL.createObjectURL(blob);
var makeThumb = function (page) {
var vp = page.getViewport(1);
var canvas = document.createElement("canvas");
canvas.width = canvas.height = Thumb.dimension;
var scale = Math.min(canvas.width / vp.width, canvas.height / vp.height);
canvas.width = Math.floor(vp.width * scale);
canvas.height = Math.floor(vp.height * scale);
return page.render({
canvasContext: canvas.getContext("2d"),
viewport: page.getViewport(scale)
}).promise.then(function () {
return canvas;
});
};
PDFJS.getDocument(url).promise
.then(function (doc) {
return doc.getPage(1).then(makeThumb).then(function (canvas) {
2017-10-26 10:31:16 +00:00
var D = getResizedDimensions(canvas, 'pdf');
Thumb.fromCanvas(canvas, D, cb);
2017-10-24 12:31:42 +00:00
});
2017-10-24 12:32:47 +00:00
}).catch(function () {
2017-10-24 12:31:42 +00:00
cb('ERROR');
});
});
};
2017-10-24 10:26:04 +00:00
Thumb.fromBlob = function (blob, cb) {
if (blob.type.indexOf('video/') !== -1) {
return void Thumb.fromVideoBlob(blob, cb);
}
2017-10-24 12:31:42 +00:00
if (blob.type.indexOf('application/pdf') !== -1) {
return void Thumb.fromPdfBlob(blob, cb);
}
2017-10-24 10:26:04 +00:00
Thumb.fromImageBlob(blob, cb);
};
2017-09-05 08:46:00 +00:00
2017-10-24 16:49:58 +00:00
window.html2canvas = undefined;
2017-10-26 10:31:16 +00:00
Thumb.fromDOM = function (opts, cb) {
var element = opts.getContainer();
2017-10-24 16:49:58 +00:00
var todo = function () {
2017-10-26 10:31:16 +00:00
if (opts.filter) { opts.filter(element, true); }
window.html2canvas(element, {
2017-10-24 16:49:58 +00:00
allowTaint: true,
onrendered: function (canvas) {
2017-10-26 10:31:16 +00:00
if (opts.filter) { opts.filter(element, false); }
var D = getResizedDimensions(canvas, 'pad');
2017-10-24 16:49:58 +00:00
Thumb.fromCanvas(canvas, D, cb);
}
});
};
2017-10-26 10:31:16 +00:00
if (window.html2canvas) { return void todo(); }
2017-10-24 16:49:58 +00:00
require(['/bower_components/html2canvas/build/html2canvas.min.js'], todo);
};
return Thumb;
});