277 lines
7.8 KiB
JavaScript
277 lines
7.8 KiB
JavaScript
|
import EventEmitter from 'events';
|
||
|
import encrypt from 'browser-encrypt-attachment';
|
||
|
import cons from './cons';
|
||
|
|
||
|
function getImageDimension(file) {
|
||
|
return new Promise((resolve) => {
|
||
|
const img = new Image();
|
||
|
img.onload = async () => {
|
||
|
resolve({
|
||
|
w: img.width,
|
||
|
h: img.height,
|
||
|
});
|
||
|
};
|
||
|
img.src = URL.createObjectURL(file);
|
||
|
});
|
||
|
}
|
||
|
function loadVideo(videoFile) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
const video = document.createElement('video');
|
||
|
video.preload = 'metadata';
|
||
|
video.playsInline = true;
|
||
|
video.muted = true;
|
||
|
|
||
|
const reader = new FileReader();
|
||
|
|
||
|
reader.onload = (ev) => {
|
||
|
// Wait until we have enough data to thumbnail the first frame.
|
||
|
video.onloadeddata = async () => {
|
||
|
resolve(video);
|
||
|
video.pause();
|
||
|
};
|
||
|
video.onerror = (e) => {
|
||
|
reject(e);
|
||
|
};
|
||
|
|
||
|
video.src = ev.target.result;
|
||
|
video.load();
|
||
|
video.play();
|
||
|
};
|
||
|
reader.onerror = (e) => {
|
||
|
reject(e);
|
||
|
};
|
||
|
reader.readAsDataURL(videoFile);
|
||
|
});
|
||
|
}
|
||
|
function getVideoThumbnail(video, width, height, mimeType) {
|
||
|
return new Promise((resolve) => {
|
||
|
const MAX_WIDTH = 800;
|
||
|
const MAX_HEIGHT = 600;
|
||
|
let targetWidth = width;
|
||
|
let targetHeight = height;
|
||
|
if (targetHeight > MAX_HEIGHT) {
|
||
|
targetWidth = Math.floor(targetWidth * (MAX_HEIGHT / targetHeight));
|
||
|
targetHeight = MAX_HEIGHT;
|
||
|
}
|
||
|
if (targetWidth > MAX_WIDTH) {
|
||
|
targetHeight = Math.floor(targetHeight * (MAX_WIDTH / targetWidth));
|
||
|
targetWidth = MAX_WIDTH;
|
||
|
}
|
||
|
|
||
|
const canvas = document.createElement('canvas');
|
||
|
canvas.width = targetWidth;
|
||
|
canvas.height = targetHeight;
|
||
|
const context = canvas.getContext('2d');
|
||
|
context.drawImage(video, 0, 0, targetWidth, targetHeight);
|
||
|
|
||
|
canvas.toBlob((thumbnail) => {
|
||
|
resolve({
|
||
|
thumbnail,
|
||
|
info: {
|
||
|
w: targetWidth,
|
||
|
h: targetHeight,
|
||
|
mimetype: thumbnail.type,
|
||
|
size: thumbnail.size,
|
||
|
},
|
||
|
});
|
||
|
}, mimeType);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
class RoomsInput extends EventEmitter {
|
||
|
constructor(mx) {
|
||
|
super();
|
||
|
|
||
|
this.matrixClient = mx;
|
||
|
this.roomIdToInput = new Map();
|
||
|
}
|
||
|
|
||
|
cleanEmptyEntry(roomId) {
|
||
|
const input = this.getInput(roomId);
|
||
|
const isEmpty = typeof input.attachment === 'undefined'
|
||
|
&& (typeof input.message === 'undefined' || input.message === '');
|
||
|
if (isEmpty) {
|
||
|
this.roomIdToInput.delete(roomId);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
getInput(roomId) {
|
||
|
return this.roomIdToInput.get(roomId) || {};
|
||
|
}
|
||
|
|
||
|
setMessage(roomId, message) {
|
||
|
const input = this.getInput(roomId);
|
||
|
input.message = message;
|
||
|
this.roomIdToInput.set(roomId, input);
|
||
|
if (message === '') this.cleanEmptyEntry(roomId);
|
||
|
}
|
||
|
|
||
|
getMessage(roomId) {
|
||
|
const input = this.getInput(roomId);
|
||
|
if (typeof input.message === 'undefined') return '';
|
||
|
return input.message;
|
||
|
}
|
||
|
|
||
|
setAttachment(roomId, file) {
|
||
|
const input = this.getInput(roomId);
|
||
|
input.attachment = {
|
||
|
file,
|
||
|
};
|
||
|
this.roomIdToInput.set(roomId, input);
|
||
|
}
|
||
|
|
||
|
getAttachment(roomId) {
|
||
|
const input = this.getInput(roomId);
|
||
|
if (typeof input.attachment === 'undefined') return null;
|
||
|
return input.attachment.file;
|
||
|
}
|
||
|
|
||
|
cancelAttachment(roomId) {
|
||
|
const input = this.getInput(roomId);
|
||
|
if (typeof input.attachment === 'undefined') return;
|
||
|
|
||
|
const { uploadingPromise } = input.attachment;
|
||
|
|
||
|
if (uploadingPromise) {
|
||
|
this.matrixClient.cancelUpload(uploadingPromise);
|
||
|
delete input.attachment.uploadingPromise;
|
||
|
}
|
||
|
if (input.message) {
|
||
|
delete input.attachment;
|
||
|
delete input.isSending;
|
||
|
this.roomIdToInput.set(roomId, input);
|
||
|
} else {
|
||
|
this.roomIdToInput.delete(roomId);
|
||
|
}
|
||
|
this.emit(cons.events.roomsInput.ATTACHMENT_CANCELED, roomId);
|
||
|
}
|
||
|
|
||
|
isSending(roomId) {
|
||
|
return this.roomIdToInput.get(roomId)?.isSending || false;
|
||
|
}
|
||
|
|
||
|
async sendInput(roomId) {
|
||
|
const input = this.getInput(roomId);
|
||
|
input.isSending = true;
|
||
|
this.roomIdToInput.set(roomId, input);
|
||
|
if (input.attachment) {
|
||
|
await this.sendFile(roomId, input.attachment.file);
|
||
|
}
|
||
|
|
||
|
if (this.getMessage(roomId).trim() !== '') {
|
||
|
const content = {
|
||
|
body: input.message,
|
||
|
msgtype: 'm.text',
|
||
|
};
|
||
|
this.matrixClient.sendMessage(roomId, content);
|
||
|
}
|
||
|
|
||
|
if (this.isSending(roomId)) this.roomIdToInput.delete(roomId);
|
||
|
this.emit(cons.events.roomsInput.MESSAGE_SENT, roomId);
|
||
|
}
|
||
|
|
||
|
async sendFile(roomId, file) {
|
||
|
const fileType = file.type.slice(0, file.type.indexOf('/'));
|
||
|
const info = {
|
||
|
mimetype: file.type,
|
||
|
size: file.size,
|
||
|
};
|
||
|
const content = { info };
|
||
|
let uploadData = null;
|
||
|
|
||
|
if (fileType === 'image') {
|
||
|
const imgDimension = await getImageDimension(file);
|
||
|
|
||
|
info.w = imgDimension.w;
|
||
|
info.h = imgDimension.h;
|
||
|
|
||
|
content.msgtype = 'm.image';
|
||
|
content.body = file.name || 'Image';
|
||
|
} else if (fileType === 'video') {
|
||
|
content.msgtype = 'm.video';
|
||
|
content.body = file.name || 'Video';
|
||
|
|
||
|
try {
|
||
|
const video = await loadVideo(file);
|
||
|
info.w = video.videoWidth;
|
||
|
info.h = video.videoHeight;
|
||
|
const thumbnailData = await getVideoThumbnail(video, video.videoWidth, video.videoHeight, 'image/jpeg');
|
||
|
const thumbnailUploadData = await this.uploadFile(roomId, thumbnailData.thumbnail);
|
||
|
info.thumbnail_info = thumbnailData.info;
|
||
|
if (this.matrixClient.isRoomEncrypted(roomId)) {
|
||
|
info.thumbnail_file = thumbnailUploadData.file;
|
||
|
} else {
|
||
|
info.thumbnail_url = thumbnailUploadData.url;
|
||
|
}
|
||
|
} catch (e) {
|
||
|
this.emit(cons.events.roomsInput.FILE_UPLOAD_CANCELED, roomId);
|
||
|
return;
|
||
|
}
|
||
|
} else if (fileType === 'audio') {
|
||
|
content.msgtype = 'm.audio';
|
||
|
content.body = file.name || 'Audio';
|
||
|
} else {
|
||
|
content.msgtype = 'm.file';
|
||
|
content.body = file.name || 'File';
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
uploadData = await this.uploadFile(roomId, file, (data) => {
|
||
|
// data have two properties: data.loaded, data.total
|
||
|
this.emit(cons.events.roomsInput.UPLOAD_PROGRESS_CHANGES, roomId, data);
|
||
|
});
|
||
|
this.emit(cons.events.roomsInput.FILE_UPLOADED, roomId);
|
||
|
} catch (e) {
|
||
|
this.emit(cons.events.roomsInput.FILE_UPLOAD_CANCELED, roomId);
|
||
|
return;
|
||
|
}
|
||
|
if (this.matrixClient.isRoomEncrypted(roomId)) {
|
||
|
content.file = uploadData.file;
|
||
|
await this.matrixClient.sendMessage(roomId, content);
|
||
|
} else {
|
||
|
content.url = uploadData.url;
|
||
|
await this.matrixClient.sendMessage(roomId, content);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async uploadFile(roomId, file, progressHandler) {
|
||
|
const isEncryptedRoom = this.matrixClient.isRoomEncrypted(roomId);
|
||
|
|
||
|
let encryptInfo = null;
|
||
|
let encryptBlob = null;
|
||
|
|
||
|
if (isEncryptedRoom) {
|
||
|
const dataBuffer = await file.arrayBuffer();
|
||
|
if (typeof this.getInput(roomId).attachment === 'undefined') throw new Error('Attachment canceled');
|
||
|
const encryptedResult = await encrypt.encryptAttachment(dataBuffer);
|
||
|
if (typeof this.getInput(roomId).attachment === 'undefined') throw new Error('Attachment canceled');
|
||
|
encryptInfo = encryptedResult.info;
|
||
|
encryptBlob = new Blob([encryptedResult.data]);
|
||
|
}
|
||
|
|
||
|
const uploadingPromise = this.matrixClient.uploadContent(isEncryptedRoom ? encryptBlob : file, {
|
||
|
// don't send filename if room is encrypted.
|
||
|
includeFilename: !isEncryptedRoom,
|
||
|
progressHandler,
|
||
|
});
|
||
|
|
||
|
const input = this.getInput(roomId);
|
||
|
input.attachment.uploadingPromise = uploadingPromise;
|
||
|
this.roomIdToInput.set(roomId, input);
|
||
|
|
||
|
const url = await uploadingPromise;
|
||
|
|
||
|
delete input.attachment.uploadingPromise;
|
||
|
this.roomIdToInput.set(roomId, input);
|
||
|
|
||
|
if (isEncryptedRoom) {
|
||
|
encryptInfo.url = url;
|
||
|
if (file.type) encryptInfo.mimetype = file.type;
|
||
|
return { file: encryptInfo };
|
||
|
}
|
||
|
return { url };
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default RoomsInput;
|