2020-09-13 19:15:45 -05:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import { FilesCollection } from 'meteor/ostrio:files';
|
2022-08-19 14:30:22 +02:00
|
|
|
import { isFileValid } from './fileValidation';
|
2022-04-22 01:19:43 +03:00
|
|
|
import { createBucket } from './lib/grid/createBucket';
|
|
|
|
import fs from 'fs';
|
2022-01-30 15:26:11 +03:00
|
|
|
import path from 'path';
|
2023-01-16 15:11:31 +02:00
|
|
|
import { AttachmentStoreStrategyFilesystem, AttachmentStoreStrategyGridFs, AttachmentStoreStrategyS3 } from '/models/lib/attachmentStoreStrategy';
|
|
|
|
import FileStoreStrategyFactory, {moveToStorage, rename, STORAGE_NAME_FILESYSTEM, STORAGE_NAME_GRIDFS, STORAGE_NAME_S3} from '/models/lib/fileStoreStrategy';
|
2020-09-13 19:15:45 -05:00
|
|
|
|
2022-08-15 21:09:46 +02:00
|
|
|
let attachmentUploadExternalProgram;
|
2022-08-03 12:53:07 +02:00
|
|
|
let attachmentUploadMimeTypes = [];
|
|
|
|
let attachmentUploadSize = 0;
|
2020-09-16 14:39:30 -05:00
|
|
|
let attachmentBucket;
|
2022-04-08 08:52:48 +02:00
|
|
|
let storagePath;
|
2022-08-03 12:53:07 +02:00
|
|
|
|
2020-09-16 14:39:30 -05:00
|
|
|
if (Meteor.isServer) {
|
|
|
|
attachmentBucket = createBucket('attachments');
|
2022-08-03 12:53:07 +02:00
|
|
|
|
|
|
|
if (process.env.ATTACHMENTS_UPLOAD_MIME_TYPES) {
|
|
|
|
attachmentUploadMimeTypes = process.env.ATTACHMENTS_UPLOAD_MIME_TYPES.split(',');
|
|
|
|
attachmentUploadMimeTypes = attachmentUploadMimeTypes.map(value => value.trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (process.env.ATTACHMENTS_UPLOAD_MAX_SIZE) {
|
|
|
|
attachmentUploadSize = parseInt(process.env.ATTACHMENTS_UPLOAD_MAX_SIZE);
|
|
|
|
|
|
|
|
if (isNaN(attachmentUploadSize)) {
|
|
|
|
attachmentUploadSize = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-15 21:09:46 +02:00
|
|
|
if (process.env.ATTACHMENTS_UPLOAD_EXTERNAL_PROGRAM) {
|
|
|
|
attachmentUploadExternalProgram = process.env.ATTACHMENTS_UPLOAD_EXTERNAL_PROGRAM;
|
|
|
|
|
|
|
|
if (!attachmentUploadExternalProgram.includes("{file}")) {
|
|
|
|
attachmentUploadExternalProgram = undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-08 08:52:48 +02:00
|
|
|
storagePath = path.join(process.env.WRITABLE_PATH, 'attachments');
|
2020-09-16 14:39:30 -05:00
|
|
|
}
|
2020-09-13 19:15:45 -05:00
|
|
|
|
2022-04-08 00:27:56 +02:00
|
|
|
export const fileStoreStrategyFactory = new FileStoreStrategyFactory(AttachmentStoreStrategyFilesystem, storagePath, AttachmentStoreStrategyGridFs, attachmentBucket);
|
2020-09-14 01:07:17 -05:00
|
|
|
|
2020-09-13 19:15:45 -05:00
|
|
|
// XXX Enforce a schema for the Attachments FilesCollection
|
|
|
|
// see: https://github.com/VeliovGroup/Meteor-Files/wiki/Schema
|
|
|
|
|
2020-09-16 18:40:11 -05:00
|
|
|
Attachments = new FilesCollection({
|
2020-09-13 19:15:45 -05:00
|
|
|
debug: false, // Change to `true` for debugging
|
|
|
|
collectionName: 'attachments',
|
2020-09-16 20:22:20 -05:00
|
|
|
allowClientCode: true,
|
2022-04-01 23:09:59 +02:00
|
|
|
namingFunction(opts) {
|
2022-07-12 00:04:16 +02:00
|
|
|
let filenameWithoutExtension = ""
|
|
|
|
let fileId = "";
|
|
|
|
if (opts?.name) {
|
|
|
|
// Client
|
|
|
|
filenameWithoutExtension = opts.name.replace(/(.+)\..+/, "$1");
|
|
|
|
fileId = opts.meta.fileId;
|
|
|
|
delete opts.meta.fileId;
|
|
|
|
} else if (opts?.file?.name) {
|
|
|
|
// Server
|
2022-08-18 21:12:33 +02:00
|
|
|
if (opts.file.extension) {
|
|
|
|
filenameWithoutExtension = opts.file.name.replace(new RegExp(opts.file.extensionWithDot + "$"), "")
|
|
|
|
} else {
|
|
|
|
// file has no extension, so don't replace anything, otherwise the last character is removed (because extensionWithDot = '.')
|
|
|
|
filenameWithoutExtension = opts.file.name;
|
|
|
|
}
|
2022-07-12 00:04:16 +02:00
|
|
|
fileId = opts.fileId;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// should never reach here
|
|
|
|
filenameWithoutExtension = Math.random().toString(36).slice(2);
|
|
|
|
fileId = Math.random().toString(36).slice(2);
|
|
|
|
}
|
2023-04-17 23:13:06 +03:00
|
|
|
|
|
|
|
// OLD:
|
|
|
|
//const ret = fileId + "-original-" + filenameWithoutExtension;
|
|
|
|
// NEW: Save file only with filename of ObjectID, not including filename.
|
|
|
|
// Fixes https://github.com/wekan/wekan/issues/4416#issuecomment-1510517168
|
|
|
|
const ret = fileId;
|
2022-04-01 23:09:59 +02:00
|
|
|
// remove fileId from meta, it was only stored there to have this information here in the namingFunction function
|
|
|
|
return ret;
|
|
|
|
},
|
2022-08-18 17:30:46 +02:00
|
|
|
sanitize(str, max, replacement) {
|
|
|
|
// keep the original filename
|
|
|
|
return str;
|
|
|
|
},
|
2022-01-30 15:26:11 +03:00
|
|
|
storagePath() {
|
2022-04-08 08:52:48 +02:00
|
|
|
const ret = fileStoreStrategyFactory.storagePath;
|
2022-04-03 15:14:38 +02:00
|
|
|
return ret;
|
2022-01-30 15:26:11 +03:00
|
|
|
},
|
2022-03-25 14:08:37 +01:00
|
|
|
onAfterUpload(fileObj) {
|
2022-04-03 23:44:02 +02:00
|
|
|
// current storage is the filesystem, update object and database
|
2022-03-25 14:08:37 +01:00
|
|
|
Object.keys(fileObj.versions).forEach(versionName => {
|
2022-04-04 00:08:07 +02:00
|
|
|
fileObj.versions[versionName].storage = STORAGE_NAME_FILESYSTEM;
|
2022-04-03 23:44:02 +02:00
|
|
|
});
|
2022-08-03 12:53:07 +02:00
|
|
|
|
2023-04-21 21:15:00 +03:00
|
|
|
this._now = new Date();
|
2022-04-03 23:44:02 +02:00
|
|
|
Attachments.update({ _id: fileObj._id }, { $set: { "versions" : fileObj.versions } });
|
2023-04-14 15:16:50 +03:00
|
|
|
Attachments.update({ _id: fileObj.uploadedAtOstrio }, { $set: { "uploadedAtOstrio" : this._now() } });
|
2022-08-03 12:53:07 +02:00
|
|
|
|
2022-08-15 21:09:46 +02:00
|
|
|
let storageDestination = fileObj.meta.copyStorage || STORAGE_NAME_GRIDFS;
|
|
|
|
Meteor.defer(() => Meteor.call('validateAttachmentAndMoveToStorage', fileObj._id, storageDestination));
|
2020-09-13 19:15:45 -05:00
|
|
|
},
|
2022-03-25 14:08:37 +01:00
|
|
|
interceptDownload(http, fileObj, versionName) {
|
2022-04-07 23:06:16 +02:00
|
|
|
const ret = fileStoreStrategyFactory.getFileStrategy(fileObj, versionName).interceptDownload(http, this.cacheControl);
|
2022-03-25 14:08:37 +01:00
|
|
|
return ret;
|
2020-09-13 19:15:45 -05:00
|
|
|
},
|
2022-03-25 14:08:37 +01:00
|
|
|
onAfterRemove(files) {
|
2020-09-14 01:07:17 -05:00
|
|
|
files.forEach(fileObj => {
|
2022-03-25 14:08:37 +01:00
|
|
|
Object.keys(fileObj.versions).forEach(versionName => {
|
2022-04-07 23:06:16 +02:00
|
|
|
fileStoreStrategyFactory.getFileStrategy(fileObj, versionName).onAfterRemove();
|
2022-03-25 14:08:37 +01:00
|
|
|
});
|
2020-09-13 19:15:45 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
// We authorize the attachment download either:
|
|
|
|
// - if the board is public, everyone (even unconnected) can download it
|
|
|
|
// - if the board is private, only board members can download it
|
2020-09-14 01:07:17 -05:00
|
|
|
protected(fileObj) {
|
2022-08-03 12:53:07 +02:00
|
|
|
// file may have been deleted already again after upload validation failed
|
|
|
|
if (!fileObj) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-14 01:07:17 -05:00
|
|
|
const board = Boards.findOne(fileObj.meta.boardId);
|
2020-09-13 19:15:45 -05:00
|
|
|
if (board.isPublic()) {
|
|
|
|
return true;
|
|
|
|
}
|
2022-08-03 12:53:07 +02:00
|
|
|
|
2020-10-20 17:44:04 -05:00
|
|
|
return board.hasMember(this.userId);
|
2020-09-13 19:15:45 -05:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (Meteor.isServer) {
|
|
|
|
Attachments.allow({
|
2020-09-14 01:07:17 -05:00
|
|
|
insert(userId, fileObj) {
|
|
|
|
return allowIsBoardMember(userId, Boards.findOne(fileObj.boardId));
|
2020-09-13 19:15:45 -05:00
|
|
|
},
|
2020-09-14 01:07:17 -05:00
|
|
|
update(userId, fileObj) {
|
|
|
|
return allowIsBoardMember(userId, Boards.findOne(fileObj.boardId));
|
2020-09-13 19:15:45 -05:00
|
|
|
},
|
2020-09-14 01:07:17 -05:00
|
|
|
remove(userId, fileObj) {
|
|
|
|
return allowIsBoardMember(userId, Boards.findOne(fileObj.boardId));
|
2020-09-13 19:15:45 -05:00
|
|
|
},
|
2020-09-14 01:07:17 -05:00
|
|
|
fetch: ['meta'],
|
2020-05-25 17:54:51 +03:00
|
|
|
});
|
|
|
|
|
2022-03-25 14:08:37 +01:00
|
|
|
Meteor.methods({
|
2022-04-07 22:49:13 +02:00
|
|
|
moveAttachmentToStorage(fileObjId, storageDestination) {
|
2022-03-25 14:08:37 +01:00
|
|
|
check(fileObjId, String);
|
|
|
|
check(storageDestination, String);
|
|
|
|
|
|
|
|
const fileObj = Attachments.findOne({_id: fileObjId});
|
2022-04-07 22:49:13 +02:00
|
|
|
moveToStorage(fileObj, storageDestination, fileStoreStrategyFactory);
|
2022-03-25 14:08:37 +01:00
|
|
|
},
|
2022-04-24 17:12:31 +02:00
|
|
|
renameAttachment(fileObjId, newName) {
|
|
|
|
check(fileObjId, String);
|
|
|
|
check(newName, String);
|
2023-02-21 21:27:34 +02:00
|
|
|
|
|
|
|
const fileObj = Attachments.findOne({_id: fileObjId});
|
|
|
|
rename(fileObj, newName, fileStoreStrategyFactory);
|
2022-04-24 17:12:31 +02:00
|
|
|
},
|
2022-08-15 21:09:46 +02:00
|
|
|
validateAttachment(fileObjId) {
|
|
|
|
check(fileObjId, String);
|
|
|
|
|
|
|
|
const fileObj = Attachments.findOne({_id: fileObjId});
|
2022-08-19 14:30:22 +02:00
|
|
|
const isValid = Promise.await(isFileValid(fileObj, attachmentUploadMimeTypes, attachmentUploadSize, attachmentUploadExternalProgram));
|
2022-08-15 21:09:46 +02:00
|
|
|
|
|
|
|
if (!isValid) {
|
|
|
|
Attachments.remove(fileObjId);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
validateAttachmentAndMoveToStorage(fileObjId, storageDestination) {
|
|
|
|
check(fileObjId, String);
|
|
|
|
check(storageDestination, String);
|
|
|
|
|
2022-08-19 14:30:22 +02:00
|
|
|
Meteor.call('validateAttachment', fileObjId);
|
2022-08-15 21:09:46 +02:00
|
|
|
|
|
|
|
const fileObj = Attachments.findOne({_id: fileObjId});
|
|
|
|
|
|
|
|
if (fileObj) {
|
2022-08-16 22:27:22 +03:00
|
|
|
Meteor.defer(() => Meteor.call('moveAttachmentToStorage', fileObjId, storageDestination));
|
2022-08-15 21:09:46 +02:00
|
|
|
}
|
|
|
|
},
|
2022-03-25 14:08:37 +01:00
|
|
|
});
|
|
|
|
|
2020-09-13 19:15:45 -05:00
|
|
|
Meteor.startup(() => {
|
2022-04-22 11:27:03 +02:00
|
|
|
Attachments.collection.createIndex({ 'meta.cardId': 1 });
|
|
|
|
const storagePath = fileStoreStrategyFactory.storagePath;
|
|
|
|
if (!fs.existsSync(storagePath)) {
|
|
|
|
console.log("create storagePath because it doesn't exist: " + storagePath);
|
|
|
|
fs.mkdirSync(storagePath, { recursive: true });
|
|
|
|
}
|
2019-08-10 00:48:05 -04:00
|
|
|
});
|
|
|
|
}
|
2019-06-26 17:47:27 -05:00
|
|
|
|
|
|
|
export default Attachments;
|