wekan/server/publications/attachments.js

53 lines
1.2 KiB
JavaScript
Raw Normal View History

import Attachments from '/models/attachments';
import { ObjectID } from 'bson';
2022-04-08 00:27:56 +02:00
Meteor.publish('attachmentsList', function(limit) {
const userId = this.userId;
// Get boards the user has access to
const userBoards = ReactiveCache.getBoards({
$or: [
{ permission: 'public' },
{ members: { $elemMatch: { userId, isActive: true } } }
]
}).map(board => board._id);
if (userBoards.length === 0) {
// User has no access to any boards, return empty cursor
return this.ready();
}
// Get cards from those boards
const userCards = ReactiveCache.getCards({
boardId: { $in: userBoards },
archived: false
}).map(card => card._id);
if (userCards.length === 0) {
// No cards found, return empty cursor
return this.ready();
}
// Only return attachments for cards the user has access to
const ret = ReactiveCache.getAttachments(
{ 'meta.cardId': { $in: userCards } },
{
fields: {
_id: 1,
name: 1,
size: 1,
type: 1,
meta: 1,
2022-04-08 00:27:56 +02:00
path: 1,
versions: 1,
},
sort: {
name: 1,
},
2022-04-08 00:27:56 +02:00
limit: limit,
},
true,
).cursor;
return ret;
});