mirror of https://github.com/sualko/cloud_bbb
76 lines
2.0 KiB
TypeScript
76 lines
2.0 KiB
TypeScript
import axios from '@nextcloud/axios';
|
|
import { generateOcsUrl, generateUrl } from '@nextcloud/router';
|
|
import { api } from './Common/Api';
|
|
|
|
declare const OCA: any;
|
|
|
|
const mimeTypes = [
|
|
'application/pdf',
|
|
'application/vnd.oasis.opendocument.presentation',
|
|
'application/vnd.oasis.opendocument.text',
|
|
'application/vnd.oasis.opendocument.spreadsheet',
|
|
'application/vnd.oasis.opendocument.graphics',
|
|
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
'application/msword',
|
|
'application/vnd.ms-powerpoint',
|
|
'application/vnd.ms-excel',
|
|
'image/jpeg',
|
|
'image/png',
|
|
'text/plain',
|
|
'text/rtf',
|
|
];
|
|
|
|
async function createDirectShare(fileId: number): Promise<string> {
|
|
const url = generateOcsUrl('apps/dav/api/v1', 1) + 'direct';
|
|
const createResponse = await axios.post(url, {
|
|
fileId,
|
|
});
|
|
|
|
return createResponse.data?.ocs?.data?.url;
|
|
}
|
|
|
|
async function share(fileId: number, filename: string, roomUid) {
|
|
const shareUrl = await createDirectShare(fileId);
|
|
const joinUrl = generateUrl('/apps/bbb/b/{uid}?u={url}&filename={filename}', {
|
|
uid: roomUid,
|
|
url: shareUrl,
|
|
filename,
|
|
});
|
|
|
|
window.open(joinUrl, '_blank', 'noopener,noreferrer');
|
|
}
|
|
|
|
function registerFileAction(mime, id, uid, name) {
|
|
OCA.Files.fileActions.registerAction({
|
|
name: 'bbb-' + id,
|
|
displayName: name,
|
|
mime,
|
|
permissions: OC.PERMISSION_SHARE,
|
|
icon: OC.imagePath('bbb', 'app-dark.svg'),
|
|
actionHandler: (fileName, context) => {
|
|
share(context.fileInfoModel.id, fileName, uid);
|
|
},
|
|
});
|
|
}
|
|
|
|
function addRoomsAsFileAction() {
|
|
if (!OCA?.Files?.fileActions) {
|
|
console.warn('[BBB] "OCA.Files.fileActions" not available');
|
|
|
|
return;
|
|
}
|
|
|
|
api.getRooms().then(rooms => {
|
|
rooms.forEach(room => {
|
|
mimeTypes.forEach(mime => registerFileAction(mime, room.id, room.uid, room.name));
|
|
});
|
|
});
|
|
}
|
|
|
|
if (document.readyState === 'complete') {
|
|
addRoomsAsFileAction();
|
|
} else {
|
|
document.addEventListener('DOMContentLoaded', addRoomsAsFileAction);
|
|
} |