2018-05-18 15:20:20 +03:00
|
|
|
Attachments = new FS.Collection('attachments', {
|
|
|
|
stores: [
|
|
|
|
// XXX Add a new store for cover thumbnails so we don't load big images in
|
|
|
|
// the general board view
|
|
|
|
new FS.Store.GridFS('attachments', {
|
|
|
|
// 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`.
|
2019-06-28 12:52:09 -05:00
|
|
|
beforeWrite: fileObj => {
|
2018-05-18 15:20:20 +03:00
|
|
|
if (!fileObj.isImage()) {
|
|
|
|
return {
|
|
|
|
type: 'application/octet-stream',
|
|
|
|
};
|
2017-08-31 22:02:11 +01:00
|
|
|
}
|
2018-05-18 15:20:20 +03:00
|
|
|
return {};
|
2017-08-31 22:02:11 +01:00
|
|
|
},
|
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(() => {
|
|
|
|
Attachments.files._ensureIndex({ cardId: 1 });
|
|
|
|
});
|
|
|
|
|
2018-05-18 15:20:20 +03:00
|
|
|
Attachments.allow({
|
|
|
|
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
|
|
|
|
2018-05-18 15:20:20 +03:00
|
|
|
// XXX Enforce a schema for the Attachments CollectionFS
|
|
|
|
|
|
|
|
if (Meteor.isServer) {
|
|
|
|
Attachments.files.after.insert((userId, doc) => {
|
|
|
|
// 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-06-26 17:47:27 -05:00
|
|
|
Attachments.update(
|
|
|
|
{
|
|
|
|
_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-06-11 13:11:35 +03:00
|
|
|
Attachments.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
|
|
|
|
|
|
|
Attachments.files.after.remove((userId, doc) => {
|
|
|
|
Activities.remove({
|
|
|
|
attachmentId: doc._id,
|
|
|
|
});
|
|
|
|
});
|
2018-05-18 15:20:20 +03:00
|
|
|
}
|
2019-06-26 17:47:27 -05:00
|
|
|
|
|
|
|
export default Attachments;
|