| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 | // Activities don't need a schema because they are always set from the a trusted// environment - the server - and there is no risk that a user change the logic// we use with this collection. Moreover using a schema for this collection// would be difficult (different activities have different fields) and wouldn't// bring any direct advantage.//// XXX The activities API is not so nice and need some functionalities. For// instance if a user archive a card, and un-archive it a few seconds later we// should remove both activities assuming it was an error the user decided to// revert.Activities = new Mongo.Collection('activities');Activities.helpers({  board() {    return Boards.findOne(this.boardId);  },  user() {    return Users.findOne(this.userId);  },  member() {    return Users.findOne(this.memberId);  },  list() {    return Lists.findOne(this.listId);  },  swimlane() {    return Swimlanes.findOne(this.swimlaneId);  },  oldList() {    return Lists.findOne(this.oldListId);  },  card() {    return Cards.findOne(this.cardId);  },  comment() {    return CardComments.findOne(this.commentId);  },  attachment() {    return Attachments.findOne(this.attachmentId);  },  checklist() {    return Checklists.findOne(this.checklistId);  },  checklistItem() {    return ChecklistItems.findOne(this.checklistItemId);  },  subtasks() {    return Cards.findOne(this.subtaskId);  },  customField() {    return CustomFields.findOne(this.customFieldId);  },});Activities.before.insert((userId, doc) => {  doc.createdAt = new Date();});if (Meteor.isServer) {  // For efficiency create indexes on the date of creation, and on the date of  // creation in conjunction with the card or board id, as corresponding views  // are largely used in the App. See #524.  Meteor.startup(() => {    Activities._collection._ensureIndex({ createdAt: -1 });    Activities._collection._ensureIndex({ cardId: 1, createdAt: -1 });    Activities._collection._ensureIndex({ boardId: 1, createdAt: -1 });    Activities._collection._ensureIndex({ commentId: 1 }, { partialFilterExpression: { commentId: { $exists: true } } });    Activities._collection._ensureIndex({ attachmentId: 1 }, { partialFilterExpression: { attachmentId: { $exists: true } } });    Activities._collection._ensureIndex({ customFieldId: 1 }, { partialFilterExpression: { customFieldId: { $exists: true } } });  });  Activities.after.insert((userId, doc) => {    const activity = Activities._transform(doc);    let participants = [];    let watchers = [];    let title = 'act-activity-notify';    let board = null;    const description = `act-${activity.activityType}`;    const params = {      activityId: activity._id,    };    if (activity.userId) {      // No need send notification to user of activity      // participants = _.union(participants, [activity.userId]);      params.user = activity.user().getName();      params.userId = activity.userId;    }    if (activity.boardId) {      board = activity.board();      params.board = board.title;      title = 'act-withBoardTitle';      params.url = board.absoluteUrl();      params.boardId = activity.boardId;    }    if (activity.memberId) {      participants = _.union(participants, [activity.memberId]);      params.member = activity.member().getName();    }    if (activity.listId) {      const list = activity.list();      watchers = _.union(watchers, list.watchers || []);      params.list = list.title;      params.listId = activity.listId;    }    if (activity.oldListId) {      const oldList = activity.oldList();      watchers = _.union(watchers, oldList.watchers || []);      params.oldList = oldList.title;      params.oldListId = activity.oldListId;    }    if (activity.cardId) {      const card = activity.card();      participants = _.union(participants, [card.userId], card.members || []);      watchers = _.union(watchers, card.watchers || []);      params.card = card.title;      title = 'act-withCardTitle';      params.url = card.absoluteUrl();      params.cardId = activity.cardId;    }    if (activity.commentId) {      const comment = activity.comment();      params.comment = comment.text;      params.commentId = comment._id;    }    if (activity.attachmentId) {      const attachment = activity.attachment();      params.attachment = attachment._id;    }    if (activity.checklistId) {      const checklist = activity.checklist();      params.checklist = checklist.title;    }    if (activity.checklistItemId) {      const checklistItem = activity.checklistItem();      params.checklistItem = checklistItem.title;    }    if (activity.customFieldId) {      const customField = activity.customField();      params.customField = customField.name;    }    if (board) {      const watchingUsers = _.pluck(_.where(board.watchers, {level: 'watching'}), 'userId');      const trackingUsers = _.pluck(_.where(board.watchers, {level: 'tracking'}), 'userId');      const mutedUsers = _.pluck(_.where(board.watchers, {level: 'muted'}), 'userId');      switch(board.getWatchDefault()) {      case 'muted':        participants = _.intersection(participants, trackingUsers);        watchers = _.intersection(watchers, trackingUsers);        break;      case 'tracking':        participants = _.difference(participants, mutedUsers);        watchers = _.difference(watchers, mutedUsers);        break;      }      watchers = _.union(watchers, watchingUsers || []);    }    Notifications.getUsers(participants, watchers).forEach((user) => {      Notifications.notify(user, title, description, params);    });    const integrations = Integrations.find({ boardId: board._id, type: 'outgoing-webhooks', enabled: true, activities: { '$in': [description, 'all'] } }).fetch();    if (integrations.length > 0) {      Meteor.call('outgoingWebhooks', integrations, description, params);    }  });}
 |