2019-11-18 01:47:26 +00:00
|
|
|
import { FilesCollection } from 'meteor/ostrio:files';
|
|
|
|
|
|
|
|
Attachments = new FilesCollection({
|
|
|
|
storagePath: storagePath(),
|
|
|
|
debug: true, // FIXME: Remove debug mode
|
|
|
|
collectionName: 'attachments2',
|
2019-11-20 10:40:09 +00:00
|
|
|
allowClientCode: true, // FIXME: Permissions
|
2019-11-18 01:47:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (Meteor.isServer) {
|
|
|
|
Meteor.startup(() => {
|
|
|
|
Attachments.collection._ensureIndex({ cardId: 1 });
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO: Permission related
|
|
|
|
// TODO: Add Activity update
|
|
|
|
// TODO: publish and subscribe
|
2019-11-20 10:40:09 +00:00
|
|
|
Meteor.publish('attachments', function() {
|
|
|
|
return Attachments.find().cursor;
|
|
|
|
});
|
2019-11-18 01:47:26 +00:00
|
|
|
} else {
|
2019-11-20 10:40:09 +00:00
|
|
|
Meteor.subscribe('attachments');
|
2019-11-18 01:47:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------- Deprecated fallback ---------- //
|
|
|
|
|
2019-08-08 16:24:58 -04:00
|
|
|
const localFSStore = process.env.ATTACHMENTS_STORE_PATH;
|
|
|
|
const storeName = 'attachments';
|
|
|
|
const defaultStoreOptions = {
|
|
|
|
beforeWrite: fileObj => {
|
|
|
|
if (!fileObj.isImage()) {
|
|
|
|
return {
|
|
|
|
type: 'application/octet-stream',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
};
|
2019-08-10 00:48:05 -04:00
|
|
|
let store;
|
|
|
|
if (localFSStore) {
|
|
|
|
// have to reinvent methods from FS.Store.GridFS and FS.Store.FileSystem
|
|
|
|
const fs = Npm.require('fs');
|
|
|
|
const path = Npm.require('path');
|
|
|
|
const mongodb = Npm.require('mongodb');
|
|
|
|
const Grid = Npm.require('gridfs-stream');
|
|
|
|
// calulate the absolute path here, because FS.Store.FileSystem didn't expose the aboslutepath or FS.Store didn't expose api calls :(
|
|
|
|
let pathname = localFSStore;
|
|
|
|
/*eslint camelcase: ["error", {allow: ["__meteor_bootstrap__"]}] */
|
|
|
|
|
|
|
|
if (!pathname && __meteor_bootstrap__ && __meteor_bootstrap__.serverDir) {
|
|
|
|
pathname = path.join(
|
|
|
|
__meteor_bootstrap__.serverDir,
|
|
|
|
`../../../cfs/files/${storeName}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pathname)
|
|
|
|
throw new Error('FS.Store.FileSystem unable to determine path');
|
|
|
|
|
|
|
|
// Check if we have '~/foo/bar'
|
|
|
|
if (pathname.split(path.sep)[0] === '~') {
|
|
|
|
const homepath =
|
|
|
|
process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE;
|
|
|
|
if (homepath) {
|
|
|
|
pathname = pathname.replace('~', homepath);
|
|
|
|
} else {
|
|
|
|
throw new Error('FS.Store.FileSystem unable to resolve "~" in path');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set absolute path
|
|
|
|
const absolutePath = path.resolve(pathname);
|
|
|
|
|
|
|
|
const _FStore = new FS.Store.FileSystem(storeName, {
|
|
|
|
path: localFSStore,
|
|
|
|
...defaultStoreOptions,
|
|
|
|
});
|
|
|
|
const GStore = {
|
|
|
|
fileKey(fileObj) {
|
|
|
|
const key = {
|
|
|
|
_id: null,
|
|
|
|
filename: null,
|
|
|
|
};
|
|
|
|
|
|
|
|
// If we're passed a fileObj, we retrieve the _id and filename from it.
|
|
|
|
if (fileObj) {
|
|
|
|
const info = fileObj._getInfo(storeName, {
|
|
|
|
updateFileRecordFirst: false,
|
|
|
|
});
|
|
|
|
key._id = info.key || null;
|
|
|
|
key.filename =
|
|
|
|
info.name ||
|
|
|
|
fileObj.name({ updateFileRecordFirst: false }) ||
|
|
|
|
`${fileObj.collectionName}-${fileObj._id}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If key._id is null at this point, createWriteStream will let GridFS generate a new ID
|
|
|
|
return key;
|
|
|
|
},
|
|
|
|
db: undefined,
|
|
|
|
mongoOptions: { useNewUrlParser: true },
|
|
|
|
mongoUrl: process.env.MONGO_URL,
|
|
|
|
init() {
|
|
|
|
this._init(err => {
|
|
|
|
this.inited = !err;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
_init(callback) {
|
|
|
|
const self = this;
|
|
|
|
mongodb.MongoClient.connect(self.mongoUrl, self.mongoOptions, function(
|
|
|
|
err,
|
|
|
|
db,
|
|
|
|
) {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
self.db = db;
|
|
|
|
return callback(null);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
},
|
|
|
|
createReadStream(fileKey, options) {
|
|
|
|
const self = this;
|
|
|
|
if (!self.inited) {
|
|
|
|
self.init();
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
options = options || {};
|
|
|
|
|
|
|
|
// Init GridFS
|
|
|
|
const gfs = new Grid(self.db, mongodb);
|
|
|
|
|
|
|
|
// Set the default streamning settings
|
|
|
|
const settings = {
|
|
|
|
_id: new mongodb.ObjectID(fileKey._id),
|
|
|
|
root: `cfs_gridfs.${storeName}`,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Check if this should be a partial read
|
|
|
|
if (
|
|
|
|
typeof options.start !== 'undefined' &&
|
|
|
|
typeof options.end !== 'undefined'
|
|
|
|
) {
|
|
|
|
// Add partial info
|
|
|
|
settings.range = {
|
|
|
|
startPos: options.start,
|
|
|
|
endPos: options.end,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return gfs.createReadStream(settings);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
GStore.init();
|
|
|
|
const CRS = 'createReadStream';
|
|
|
|
const _CRS = `_${CRS}`;
|
|
|
|
const FStore = _FStore._transform;
|
|
|
|
FStore[_CRS] = FStore[CRS].bind(FStore);
|
|
|
|
FStore[CRS] = function(fileObj, options) {
|
|
|
|
let stream;
|
|
|
|
try {
|
|
|
|
const localFile = path.join(
|
|
|
|
absolutePath,
|
|
|
|
FStore.storage.fileKey(fileObj),
|
|
|
|
);
|
|
|
|
const state = fs.statSync(localFile);
|
|
|
|
if (state) {
|
|
|
|
stream = FStore[_CRS](fileObj, options);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
// file is not there, try GridFS ?
|
|
|
|
stream = undefined;
|
|
|
|
}
|
|
|
|
if (stream) return stream;
|
|
|
|
else {
|
|
|
|
try {
|
|
|
|
const stream = GStore[CRS](GStore.fileKey(fileObj), options);
|
|
|
|
return stream;
|
|
|
|
} catch (e) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}.bind(FStore);
|
|
|
|
store = _FStore;
|
|
|
|
} else {
|
|
|
|
store = new FS.Store.GridFS(localFSStore ? `G${storeName}` : storeName, {
|
|
|
|
// XXX Add a new store for cover thumbnails so we don't load big images in
|
|
|
|
// the general board view
|
|
|
|
// If the uploaded document is not an image we need to enforce browser
|
|
|
|
// download instead of execution. This is particularly important for HTML
|
|
|
|
// files that the browser will just execute if we don't serve them with the
|
|
|
|
// appropriate `application/octet-stream` MIME header which can lead to user
|
|
|
|
// data leaks. I imagine other formats (like PDF) can also be attack vectors.
|
|
|
|
// See https://github.com/wekan/wekan/issues/99
|
|
|
|
// XXX Should we use `beforeWrite` option of CollectionFS instead of
|
|
|
|
// collection-hooks?
|
|
|
|
// We should use `beforeWrite`.
|
|
|
|
...defaultStoreOptions,
|
|
|
|
});
|
|
|
|
}
|
2019-11-18 01:47:26 +00:00
|
|
|
DeprecatedAttachs = new FS.Collection('attachments', {
|
2019-08-10 00:48:05 -04:00
|
|
|
stores: [store],
|
2018-05-18 15:20:20 +03:00
|
|
|
});
|
Renaissance
_,,ad8888888888bba,_
,ad88888I888888888888888ba,
,88888888I88888888888888888888a,
,d888888888I8888888888888888888888b,
d88888PP"""" ""YY88888888888888888888b,
,d88"'__,,--------,,,,.;ZZZY8888888888888,
,8IIl'" ;;l"ZZZIII8888888888,
,I88l;' ;lZZZZZ888III8888888,
,II88Zl;. ;llZZZZZ888888I888888,
,II888Zl;. .;;;;;lllZZZ888888I8888b
,II8888Z;; `;;;;;''llZZ8888888I8888,
II88888Z;' .;lZZZ8888888I888b
II88888Z; _,aaa, .,aaaaa,__.l;llZZZ88888888I888
II88888IZZZZZZZZZ, .ZZZZZZZZZZZZZZ;llZZ88888888I888,
II88888IZZ<'(@@>Z| |ZZZ<'(@@>ZZZZ;;llZZ888888888I88I
,II88888; `""" ;| |ZZ; `""" ;;llZ8888888888I888
II888888l `;; .;llZZ8888888888I888,
,II888888Z; ;;; .;;llZZZ8888888888I888I
III888888Zl; .., `;; ,;;lllZZZ88888888888I888
II88888888Z;;...;(_ _) ,;;;llZZZZ88888888888I888,
II88888888Zl;;;;;' `--'Z;. .,;;;;llZZZZ88888888888I888b
]I888888888Z;;;;' ";llllll;..;;;lllZZZZ88888888888I8888,
II888888888Zl.;;"Y88bd888P";;,..;lllZZZZZ88888888888I8888I
II8888888888Zl;.; `"PPP";;;,..;lllZZZZZZZ88888888888I88888
II888888888888Zl;;. `;;;l;;;;lllZZZZZZZZW88888888888I88888
`II8888888888888Zl;. ,;;lllZZZZZZZZWMZ88888888888I88888
II8888888888888888ZbaalllZZZZZZZZZWWMZZZ8888888888I888888,
`II88888888888888888b"WWZZZZZWWWMMZZZZZZI888888888I888888b
`II88888888888888888;ZZMMMMMMZZZZZZZZllI888888888I8888888
`II8888888888888888 `;lZZZZZZZZZZZlllll888888888I8888888,
II8888888888888888, `;lllZZZZllllll;;.Y88888888I8888888b,
,II8888888888888888b .;;lllllll;;;.;..88888888I88888888b,
II888888888888888PZI;. .`;;;.;;;..; ...88888888I8888888888,
II888888888888PZ;;';;. ;. .;. .;. .. Y8888888I88888888888b,
,II888888888PZ;;' `8888888I8888888888888b,
II888888888' 888888I8888888888888888
,II888888888 ,888888I8888888888888888
,d88888888888 d888888I8888888888ZZZZZZ
,ad888888888888I 8888888I8888ZZZZZZZZZZZZ
888888888888888' 888888IZZZZZZZZZZZZZZZZZ
8888888888P'8P' Y888ZZZZZZZZZZZZZZZZZZZZ
888888888, " ,ZZZZZZZZZZZZZZZZZZZZZZZ
8888888888, ,ZZZZZZZZZZZZZZZZZZZZZZZZZZ
888888888888a, _ ,ZZZZZZZZZZZZZZZZZZZZ88888888
888888888888888ba,_d' ,ZZZZZZZZZZZZZZZZZ8888888888888
8888888888888888888888bbbaaa,,,______,ZZZZZZZZZZZZZZZ88888888888888888
88888888888888888888888888888888888ZZZZZZZZZZZZZZZ88888888888888888888
8888888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888
888888888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888888888
8888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888
88888888888888888888888888888ZZZZZZZZZZZZZZ888888888888888888888888888
8888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888 Normand 8
88888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888 Veilleux 8
8888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888888888
2015-05-12 19:20:58 +02:00
|
|
|
|
2018-05-18 15:20:20 +03:00
|
|
|
if (Meteor.isServer) {
|
2019-02-28 11:44:29 -06:00
|
|
|
Meteor.startup(() => {
|
2019-11-18 01:47:26 +00:00
|
|
|
DeprecatedAttachs.files._ensureIndex({ cardId: 1 });
|
2019-02-28 11:44:29 -06:00
|
|
|
});
|
|
|
|
|
2019-11-18 01:47:26 +00:00
|
|
|
DeprecatedAttachs.allow({
|
2018-05-18 15:20:20 +03:00
|
|
|
insert(userId, doc) {
|
|
|
|
return allowIsBoardMember(userId, Boards.findOne(doc.boardId));
|
|
|
|
},
|
|
|
|
update(userId, doc) {
|
|
|
|
return allowIsBoardMember(userId, Boards.findOne(doc.boardId));
|
|
|
|
},
|
|
|
|
remove(userId, doc) {
|
|
|
|
return allowIsBoardMember(userId, Boards.findOne(doc.boardId));
|
|
|
|
},
|
|
|
|
// 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
|
|
|
|
download(userId, doc) {
|
|
|
|
const board = Boards.findOne(doc.boardId);
|
|
|
|
if (board.isPublic()) {
|
|
|
|
return true;
|
2017-07-30 04:27:38 +01:00
|
|
|
} else {
|
2018-05-18 15:20:20 +03:00
|
|
|
return board.hasMember(userId);
|
2017-07-30 04:27:38 +01:00
|
|
|
}
|
2018-05-18 15:20:20 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
fetch: ['boardId'],
|
|
|
|
});
|
|
|
|
}
|
Renaissance
_,,ad8888888888bba,_
,ad88888I888888888888888ba,
,88888888I88888888888888888888a,
,d888888888I8888888888888888888888b,
d88888PP"""" ""YY88888888888888888888b,
,d88"'__,,--------,,,,.;ZZZY8888888888888,
,8IIl'" ;;l"ZZZIII8888888888,
,I88l;' ;lZZZZZ888III8888888,
,II88Zl;. ;llZZZZZ888888I888888,
,II888Zl;. .;;;;;lllZZZ888888I8888b
,II8888Z;; `;;;;;''llZZ8888888I8888,
II88888Z;' .;lZZZ8888888I888b
II88888Z; _,aaa, .,aaaaa,__.l;llZZZ88888888I888
II88888IZZZZZZZZZ, .ZZZZZZZZZZZZZZ;llZZ88888888I888,
II88888IZZ<'(@@>Z| |ZZZ<'(@@>ZZZZ;;llZZ888888888I88I
,II88888; `""" ;| |ZZ; `""" ;;llZ8888888888I888
II888888l `;; .;llZZ8888888888I888,
,II888888Z; ;;; .;;llZZZ8888888888I888I
III888888Zl; .., `;; ,;;lllZZZ88888888888I888
II88888888Z;;...;(_ _) ,;;;llZZZZ88888888888I888,
II88888888Zl;;;;;' `--'Z;. .,;;;;llZZZZ88888888888I888b
]I888888888Z;;;;' ";llllll;..;;;lllZZZZ88888888888I8888,
II888888888Zl.;;"Y88bd888P";;,..;lllZZZZZ88888888888I8888I
II8888888888Zl;.; `"PPP";;;,..;lllZZZZZZZ88888888888I88888
II888888888888Zl;;. `;;;l;;;;lllZZZZZZZZW88888888888I88888
`II8888888888888Zl;. ,;;lllZZZZZZZZWMZ88888888888I88888
II8888888888888888ZbaalllZZZZZZZZZWWMZZZ8888888888I888888,
`II88888888888888888b"WWZZZZZWWWMMZZZZZZI888888888I888888b
`II88888888888888888;ZZMMMMMMZZZZZZZZllI888888888I8888888
`II8888888888888888 `;lZZZZZZZZZZZlllll888888888I8888888,
II8888888888888888, `;lllZZZZllllll;;.Y88888888I8888888b,
,II8888888888888888b .;;lllllll;;;.;..88888888I88888888b,
II888888888888888PZI;. .`;;;.;;;..; ...88888888I8888888888,
II888888888888PZ;;';;. ;. .;. .;. .. Y8888888I88888888888b,
,II888888888PZ;;' `8888888I8888888888888b,
II888888888' 888888I8888888888888888
,II888888888 ,888888I8888888888888888
,d88888888888 d888888I8888888888ZZZZZZ
,ad888888888888I 8888888I8888ZZZZZZZZZZZZ
888888888888888' 888888IZZZZZZZZZZZZZZZZZ
8888888888P'8P' Y888ZZZZZZZZZZZZZZZZZZZZ
888888888, " ,ZZZZZZZZZZZZZZZZZZZZZZZ
8888888888, ,ZZZZZZZZZZZZZZZZZZZZZZZZZZ
888888888888a, _ ,ZZZZZZZZZZZZZZZZZZZZ88888888
888888888888888ba,_d' ,ZZZZZZZZZZZZZZZZZ8888888888888
8888888888888888888888bbbaaa,,,______,ZZZZZZZZZZZZZZZ88888888888888888
88888888888888888888888888888888888ZZZZZZZZZZZZZZZ88888888888888888888
8888888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888
888888888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888888888
8888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888
88888888888888888888888888888ZZZZZZZZZZZZZZ888888888888888888888888888
8888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888 Normand 8
88888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888 Veilleux 8
8888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888888888
2015-05-12 19:20:58 +02:00
|
|
|
|
2019-11-18 01:47:26 +00:00
|
|
|
// XXX Enforce a schema for the DeprecatedAttachs CollectionFS
|
2018-05-18 15:20:20 +03:00
|
|
|
|
|
|
|
if (Meteor.isServer) {
|
2019-11-18 01:47:26 +00:00
|
|
|
DeprecatedAttachs.files.after.insert((userId, doc) => {
|
2018-05-18 15:20:20 +03:00
|
|
|
// If the attachment doesn't have a source field
|
|
|
|
// or its source is different than import
|
|
|
|
if (!doc.source || doc.source !== 'import') {
|
|
|
|
// Add activity about adding the attachment
|
|
|
|
Activities.insert({
|
|
|
|
userId,
|
|
|
|
type: 'card',
|
|
|
|
activityType: 'addAttachment',
|
2017-09-02 07:17:42 +01:00
|
|
|
attachmentId: doc._id,
|
2018-05-18 15:20:20 +03:00
|
|
|
boardId: doc.boardId,
|
|
|
|
cardId: doc.cardId,
|
2019-04-06 12:45:31 +03:00
|
|
|
listId: doc.listId,
|
|
|
|
swimlaneId: doc.swimlaneId,
|
2017-09-02 07:17:42 +01:00
|
|
|
});
|
2018-05-18 15:20:20 +03:00
|
|
|
} else {
|
|
|
|
// Don't add activity about adding the attachment as the activity
|
|
|
|
// be imported and delete source field
|
2019-11-18 01:47:26 +00:00
|
|
|
DeprecatedAttachs.update(
|
2019-06-26 17:47:27 -05:00
|
|
|
{
|
|
|
|
_id: doc._id,
|
2018-05-18 15:20:20 +03:00
|
|
|
},
|
2019-06-26 17:47:27 -05:00
|
|
|
{
|
|
|
|
$unset: {
|
|
|
|
source: '',
|
|
|
|
},
|
2019-06-28 12:52:09 -05:00
|
|
|
},
|
2019-06-26 17:47:27 -05:00
|
|
|
);
|
2018-05-18 15:20:20 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-11-18 01:47:26 +00:00
|
|
|
DeprecatedAttachs.files.before.remove((userId, doc) => {
|
2018-08-16 17:18:55 +02:00
|
|
|
Activities.insert({
|
2018-09-16 01:50:36 +03:00
|
|
|
userId,
|
|
|
|
type: 'card',
|
|
|
|
activityType: 'deleteAttachment',
|
2019-06-11 13:11:35 +03:00
|
|
|
attachmentId: doc._id,
|
2018-09-16 01:50:36 +03:00
|
|
|
boardId: doc.boardId,
|
|
|
|
cardId: doc.cardId,
|
2019-04-06 12:45:31 +03:00
|
|
|
listId: doc.listId,
|
|
|
|
swimlaneId: doc.swimlaneId,
|
2018-09-16 01:50:36 +03:00
|
|
|
});
|
2018-05-18 15:20:20 +03:00
|
|
|
});
|
2019-06-11 13:11:35 +03:00
|
|
|
|
2019-11-18 01:47:26 +00:00
|
|
|
DeprecatedAttachs.files.after.remove((userId, doc) => {
|
2019-06-11 13:11:35 +03:00
|
|
|
Activities.remove({
|
|
|
|
attachmentId: doc._id,
|
|
|
|
});
|
|
|
|
});
|
2018-05-18 15:20:20 +03:00
|
|
|
}
|
2019-06-26 17:47:27 -05:00
|
|
|
|
2019-11-18 01:47:26 +00:00
|
|
|
function storagePath(defaultPath) {
|
|
|
|
const storePath = process.env.ATTACHMENTS_STORE_PATH;
|
|
|
|
return storePath ? storePath : defaultPath;
|
|
|
|
}
|
|
|
|
|
2019-06-26 17:47:27 -05:00
|
|
|
export default Attachments;
|