summaryrefslogtreecommitdiffstats
path: root/server/notifications/outgoing.js
blob: 850b3acd0ba62cd2c84bf685e9371bddec54df03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const postCatchError = Meteor.wrapAsync((url, options, resolve) => {
  HTTP.post(url, options, (err, res) => {
    if (err) {
      resolve(null, err.response);
    } else {
      resolve(null, res);
    }
  });
});

const Lock = {
  _lock: {},
  has(id) {
    return !!this._lock[id];
  },
  set(id) {
    this._lock[id] = 1;
  },
  unset(id) {
    delete this._lock[id];
  },
};

const webhooksAtbts = (process.env.WEBHOOKS_ATTRIBUTES &&
  process.env.WEBHOOKS_ATTRIBUTES.split(',')) || [
  'cardId',
  'listId',
  'oldListId',
  'boardId',
  'comment',
  'user',
  'card',
  'commentId',
  'swimlaneId',
];
const responseFunc = 'reactOnHookResponse';
Meteor.methods({
  [responseFunc](data) {
    check(data, Object);
    const paramCommentId = data.commentId;
    const paramCardId = data.cardId;
    const paramBoardId = data.boardId;
    const newComment = data.comment;
    if (paramCardId && paramBoardId && newComment) { // only process data with the cardid, boardid and comment text, TODO can expand other functions here to react on returned data
      const comment = CardComments.findOne({
        _id: paramCommentId,
        cardId: paramCardId,
        boardId: paramBoardId,
      });
      if (comment) {
        CardComments.update(comment._id, {
          $set: {
            text: newComment,
          },
        });
      } else {
        CardComments.insert({
          text: newComment,
          cardId,
          boardId,
        });
      }
    }
  },
  outgoingWebhooks(integration, description, params) {
    check(integration, Object);
    check(description, String);
    check(params, Object);
    this.unblock();

    // label activity did not work yet, see wekan/models/activities.js
    const quoteParams = _.clone(params);
    const clonedParams = _.clone(params);
    [
      'card',
      'list',
      'oldList',
      'board',
      'oldBoard',
      'comment',
      'checklist',
      'swimlane',
      'oldSwimlane',
      'label',
      'attachment',
    ].forEach(key => {
      if (quoteParams[key]) quoteParams[key] = `"${params[key]}"`;
    });

    const userId = params.userId ? params.userId : integrations[0].userId;
    const user = Users.findOne(userId);
    const text = `${params.user} ${TAPi18n.__(
      description,
      quoteParams,
      user.getLanguage(),
    )}\n${params.url}`;

    if (text.length === 0) return;

    const value = {
      text: `${text}`,
    };

    webhooksAtbts.forEach(key => {
      if (params[key]) value[key] = params[key];
    });
    value.description = description;
    //integrations.forEach(integration => {
    const is2way = integration.type === Integrations.Const.TWOWAY;
    const token = integration.token || '';
    const headers = {
      'Content-Type': 'application/json',
    };
    if (token) headers['X-Wekan-Token'] = token;
    const options = {
      headers,
      data: is2way ? clonedParams : value,
    };
    const url = integration.url;
    const response = postCatchError(url, options);

    if (response && response.statusCode && response.statusCode === 200) {
      if (is2way) {
        const cid = params.commentId;
        const tooSoon = Lock.has(cid); // if an activity happens to fast, notification shouldn't fire with the same id
        if (!tooSoon) {
          let clearNotification = () => {};
          if (cid) {
            Lock.set(cid);
            const clearNotificationFlagTimeout = 1000;
            clearNotification = () => Lock.unset(cid);
            Meteor.setTimeout(clearNotification, clearNotificationFlagTimeout);
          }
          const data = response.data; // only an JSON encoded response will be actioned
          if (data) {
            Meteor.call(responseFunc, data, () => {
              clearNotification();
            });
          }
        }
      }
      return response; // eslint-disable-line consistent-return
    } else {
      throw new Meteor.Error('error-invalid-webhook-response');
    }
    //});
  },
});