@webex/internal-plugin-calendar 3.0.0-beta.4 → 3.0.0-beta.400

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/calendar.js CHANGED
@@ -3,28 +3,28 @@
3
3
  */
4
4
 
5
5
  /**
6
- * Calendar Item Create Event
7
- * Emitted when a calendar item has been added
8
- * @event calendar:meeting:create
9
- * @instance
10
- * @memberof Calendar
11
- */
6
+ * Calendar Item Create Event
7
+ * Emitted when a calendar item has been added
8
+ * @event calendar:meeting:create
9
+ * @instance
10
+ * @memberof Calendar
11
+ */
12
12
 
13
13
  /**
14
- * Calendar Item Update Event
15
- * Emitted when a calendar item has been updated
16
- * @event calendar:meeting:update
17
- * @instance
18
- * @memberof Calendar
19
- */
14
+ * Calendar Item Update Event
15
+ * Emitted when a calendar item has been updated
16
+ * @event calendar:meeting:update
17
+ * @instance
18
+ * @memberof Calendar
19
+ */
20
20
 
21
21
  /**
22
- * Calendar Item Update Event
23
- * Emitted when a calendar item has been deleted
24
- * @event calendar:meeting:delete
25
- * @instance
26
- * @memberof Calendar
27
- */
22
+ * Calendar Item Update Event
23
+ * Emitted when a calendar item has been deleted
24
+ * @event calendar:meeting:delete
25
+ * @instance
26
+ * @memberof Calendar
27
+ */
28
28
 
29
29
  /**
30
30
  * Calendar Registered Event
@@ -41,12 +41,21 @@
41
41
  * @instance
42
42
  * @memberof Calendar
43
43
  */
44
-
45
- import btoa from 'btoa';
44
+ import {isArray} from 'lodash';
45
+ import {base64} from '@webex/common';
46
46
  import {WebexPlugin} from '@webex/webex-core';
47
47
 
48
48
  import CalendarCollection from './collection';
49
- import {CALENDAR_REGISTERED, CALENDAR_UNREGISTERED, CALENDAR_DELETE, CALENDAR_CREATE, CALENDAR_UPDATED} from './constants';
49
+ import {
50
+ CALENDAR_REGISTERED,
51
+ CALENDAR_UNREGISTERED,
52
+ CALENDAR_DELETE,
53
+ CALENDAR_CREATE,
54
+ CALENDAR_UPDATED,
55
+ } from './constants';
56
+
57
+ import EncryptHelper from './calendar.encrypt.helper';
58
+ import DecryptHelper from './calendar.decrypt.helper';
50
59
 
51
60
  const Calendar = WebexPlugin.extend({
52
61
  namespace: 'Calendar',
@@ -59,6 +68,65 @@ const Calendar = WebexPlugin.extend({
59
68
  */
60
69
  registered: false,
61
70
 
71
+ /**
72
+ * Cache all rpc event request locally
73
+ * */
74
+ rpcEventRequests: [],
75
+
76
+ /**
77
+ * Cache KMS encryptionKeyUrl
78
+ * */
79
+ encryptionKeyUrl: null,
80
+
81
+ /**
82
+ * Pre-fetch a KMS encryption key url to improve performance.
83
+ * Waits for the user to be authorized and skips if an unverified guest.
84
+ * @private
85
+ * @returns {void}
86
+ */
87
+ prefetchEncryptionKey() {
88
+ if (!this.webex.canAuthorize) {
89
+ this.listenToOnce(this.webex, 'change:canAuthorize', () => {
90
+ this.prefetchEncryptionKey();
91
+ });
92
+
93
+ return;
94
+ }
95
+
96
+ if (this.webex.credentials.isUnverifiedGuest) {
97
+ return;
98
+ }
99
+
100
+ this.webex.internal.encryption.kms.createUnboundKeys({count: 1}).then((keys) => {
101
+ const key = isArray(keys) ? keys[0] : keys;
102
+ this.encryptionKeyUrl = key ? key.uri : null;
103
+ this.logger.info('calendar->bind a KMS encryption key url');
104
+ this.webex.internal.encryption
105
+ .getKey(this.encryptionKeyUrl, {onBehalfOf: null})
106
+ .then((retrievedKey) => {
107
+ this.encryptionKeyUrl = retrievedKey ? retrievedKey.uri : null;
108
+ this.logger.info('calendar->retrieve the KMS encryption key url and cache it');
109
+ });
110
+ });
111
+ },
112
+
113
+ /**
114
+ * WebexPlugin initialize method. This triggers once Webex has completed its
115
+ * initialization workflow.
116
+ *
117
+ * If the plugin is meant to perform startup actions, place them in this
118
+ * `initialize()` method instead of the `constructor()` method.
119
+ * @private
120
+ * @returns {void}
121
+ */
122
+ initialize() {
123
+ // Used to perform actions after webex is fully qualified and ready for
124
+ // operation.
125
+ this.listenToOnce(this.webex, 'ready', () => {
126
+ this.prefetchEncryptionKey();
127
+ });
128
+ },
129
+
62
130
  /**
63
131
  * Explicitly sets up the calendar plugin by registering
64
132
  * the device, connecting to mercury, and listening for calendar events.
@@ -79,7 +147,8 @@ const Calendar = WebexPlugin.extend({
79
147
  return Promise.resolve();
80
148
  }
81
149
 
82
- return this.webex.internal.device.register()
150
+ return this.webex.internal.device
151
+ .register()
83
152
  .then(() => this.webex.internal.mercury.connect())
84
153
  .then(() => {
85
154
  this.listenForEvents();
@@ -110,7 +179,8 @@ const Calendar = WebexPlugin.extend({
110
179
 
111
180
  this.stopListeningForEvents();
112
181
 
113
- return this.webex.internal.mercury.disconnect()
182
+ return this.webex.internal.mercury
183
+ .disconnect()
114
184
  .then(() => this.webex.internal.device.unregister())
115
185
  .then(() => {
116
186
  this.trigger(CALENDAR_UNREGISTERED);
@@ -140,6 +210,9 @@ const Calendar = WebexPlugin.extend({
140
210
  this.webex.internal.mercury.on('event:calendar.meeting.delete', (envelope) => {
141
211
  this._handleDelete(envelope.data);
142
212
  });
213
+ this.webex.internal.mercury.on('event:calendar.free_busy', (envelope) => {
214
+ this._handleFreeBusy(envelope.data);
215
+ });
143
216
  },
144
217
 
145
218
  /**
@@ -153,6 +226,7 @@ const Calendar = WebexPlugin.extend({
153
226
  this.webex.internal.mercury.off('event:calendar.meeting.update');
154
227
  this.webex.internal.mercury.off('event:calendar.meeting.update.minimal');
155
228
  this.webex.internal.mercury.off('event:calendar.meeting.delete');
229
+ this.webex.internal.mercury.off('event:calendar.free_busy');
156
230
  },
157
231
 
158
232
  /**
@@ -191,6 +265,32 @@ const Calendar = WebexPlugin.extend({
191
265
  this.trigger(CALENDAR_DELETE, item);
192
266
  },
193
267
 
268
+ /**
269
+ * handles free_busy events
270
+ * @param {Object} data
271
+ * @returns {undefined}
272
+ * @private
273
+ */
274
+ _handleFreeBusy(data) {
275
+ DecryptHelper.decryptFreeBusyResponse(this, data).then(() => {
276
+ let response = {};
277
+ if (data && data.calendarFreeBusyScheduleResponse) {
278
+ response = data.calendarFreeBusyScheduleResponse;
279
+ }
280
+ if (response && response.requestId && response.requestId in this.rpcEventRequests) {
281
+ this.logger.log(
282
+ `webex.internal.calendar - receive requests, requestId: ${response.requestId}`
283
+ );
284
+ delete response.encryptionKeyUrl;
285
+ const {resolve} = this.rpcEventRequests[response.requestId];
286
+ resolve(response);
287
+ delete this.rpcEventRequests[response.requestId];
288
+ } else {
289
+ this.logger.log('webex.internal.calendar - receive other requests.');
290
+ }
291
+ });
292
+ },
293
+
194
294
  /**
195
295
  * Retrieves a collection of calendars based on the request parameters
196
296
  * Defaults to 1 day before and 7 days ahead
@@ -233,20 +333,30 @@ const Calendar = WebexPlugin.extend({
233
333
  * @returns {Promise} Resolves with a decrypted calendar event
234
334
  */
235
335
  processMeetingEvent(event) {
236
- return this.webex.transform('inbound', event)
237
- .then(() => event);
336
+ return this.webex.transform('inbound', event).then(() => event);
238
337
  },
239
338
 
240
339
  /**
241
- * Retrieves an array of meeting participants for the meeting id
242
- * @param {String} id
340
+ * Retrieves an array of meeting participants for the meeting participantsUrl
341
+ * @param {String} participantsUrl
243
342
  * @returns {Promise} Resolves with an object of meeting participants
244
343
  */
245
- getParticipants(id) {
344
+ getParticipants(participantsUrl) {
246
345
  return this.request({
247
346
  method: 'GET',
248
- service: 'calendar',
249
- resource: `calendarEvents/${btoa(id)}/participants`
347
+ uri: participantsUrl,
348
+ });
349
+ },
350
+
351
+ /**
352
+ * get meeting notes using notesUrl from meeting object.
353
+ * @param {String} notesUrl
354
+ * @returns {Promise} Resolves with an object of meeting notes
355
+ */
356
+ getNotesByUrl(notesUrl) {
357
+ return this.request({
358
+ method: 'GET',
359
+ uri: notesUrl,
250
360
  });
251
361
  },
252
362
 
@@ -259,7 +369,7 @@ const Calendar = WebexPlugin.extend({
259
369
  return this.request({
260
370
  method: 'GET',
261
371
  service: 'calendar',
262
- resource: `calendarEvents/${btoa(id)}/notes`
372
+ resource: `calendarEvents/${base64.encode(id)}/notes`,
263
373
  });
264
374
  },
265
375
 
@@ -273,40 +383,141 @@ const Calendar = WebexPlugin.extend({
273
383
  list(options) {
274
384
  options = options || {};
275
385
 
276
- return this.webex.request({
277
- method: 'GET',
278
- service: 'calendar',
279
- resource: 'calendarEvents',
280
- qs: options
281
- })
386
+ return this.webex
387
+ .request({
388
+ method: 'GET',
389
+ service: 'calendar',
390
+ resource: 'calendarEvents',
391
+ qs: options,
392
+ })
282
393
  .then((res) => {
283
394
  const meetingObjects = res.body.items;
284
395
  const promises = [];
285
396
 
286
397
  meetingObjects.forEach((meeting) => {
287
- if (!meeting.encryptedNotes) {
288
- promises.push(
289
- this.getNotes(meeting.id)
290
- .then((notesResponse) => {
291
- meeting.encryptedNotes = notesResponse.body && notesResponse.body.encryptedNotes;
292
- })
293
- );
294
- }
295
-
296
398
  if (!meeting.encryptedParticipants) {
297
399
  promises.push(
298
- this.getParticipants(meeting.id)
299
- .then((notesResponse) => {
300
- meeting.encryptedParticipants = notesResponse.body.encryptedParticipants;
301
- })
400
+ this.getParticipants(meeting.participantsUrl).then((notesResponse) => {
401
+ meeting.encryptedParticipants = notesResponse.body.encryptedParticipants;
402
+ })
302
403
  );
303
404
  }
304
405
  });
305
406
 
306
- return Promise.all(promises)
307
- .then(() => meetingObjects);
407
+ return Promise.all(promises).then(() => meetingObjects);
308
408
  });
309
- }
409
+ },
410
+
411
+ /**
412
+ * Create calendar event
413
+ * @param {object} [data] meeting payload data
414
+ * @param {object} [query] the query parameters for specific usage
415
+ * @returns {Promise} Resolves with creating calendar event response
416
+ * */
417
+ createCalendarEvent(data, query) {
418
+ return EncryptHelper.encryptCalendarEventRequest(this, data).then(() =>
419
+ this.request({
420
+ method: 'POST',
421
+ service: 'calendar',
422
+ body: data,
423
+ resource: 'calendarEvents/sync',
424
+ qs: query || {},
425
+ })
426
+ );
427
+ },
428
+
429
+ /**
430
+ * Update calendar event
431
+ * @param {string} [id] calendar event id
432
+ * @param {object} [data] meeting payload data
433
+ * @param {object} [query] the query parameters for specific usage
434
+ * @returns {Promise} Resolves with updating calendar event response
435
+ * */
436
+ updateCalendarEvent(id, data, query) {
437
+ return EncryptHelper.encryptCalendarEventRequest(this, data).then(() =>
438
+ this.request({
439
+ method: 'PATCH',
440
+ service: 'calendar',
441
+ body: data,
442
+ resource: `calendarEvents/${base64.encode(id)}/sync`,
443
+ qs: query || {},
444
+ })
445
+ );
446
+ },
447
+
448
+ /**
449
+ * Delete calendar event
450
+ * @param {string} [id] calendar event id
451
+ * @param {object} [query] the query parameters for specific usage
452
+ * @returns {Promise} Resolves with deleting calendar event response
453
+ * */
454
+ deleteCalendarEvent(id, query) {
455
+ return this.request({
456
+ method: 'DELETE',
457
+ service: 'calendar',
458
+ resource: `calendarEvents/${base64.encode(id)}/sync`,
459
+ qs: query || {},
460
+ });
461
+ },
462
+
463
+ /**
464
+ * @typedef QuerySchedulerDataOptions
465
+ * @param {string} [siteName] it is site full url, must have. Example: ccctest.dmz.webex.com
466
+ * @param {string} [id] it is seriesOrOccurrenceId. If present, the series/occurrence meeting ID to fetch data for.
467
+ * Example: 040000008200E00074C5B7101A82E008000000004A99F11A0841D9010000000000000000100000009EE499D4A71C1A46B51494C70EC7BFE5
468
+ * @param {string} [clientMeetingId] If present, the client meeting UUID to fetch data for.
469
+ * Example: 7f318aa9-887c-6e94-802a-8dc8e6eb1a0a
470
+ * @param {string} [scheduleTemplateId] it template id.
471
+ * @param {string} [sessionTypeId] it session type id.
472
+ * @param {string} [organizerCIUserId] required in schedule-on-behalf case. It is the organizer's CI UUID.
473
+ * @param {boolean} [usmPreference]
474
+ * @param {string} [webexMeetingId] webex side meeting UUID
475
+ * @param {string} [eventId] event ID.
476
+ * @param {string} [icalUid] icalendar UUID.
477
+ * @param {string} [thirdPartyType] third part type, such as: Microsoft
478
+ */
479
+ /**
480
+ * Get scheduler data from calendar service
481
+ * @param {QuerySchedulerDataOptions} [query] the command parameters for fetching scheduler data.
482
+ * @returns {Promise} Resolves with a decrypted scheduler data
483
+ * */
484
+ getSchedulerData(query) {
485
+ return this.request({
486
+ method: 'GET',
487
+ service: 'calendar',
488
+ resource: 'schedulerData',
489
+ qs: query || {},
490
+ }).then((response) => {
491
+ return DecryptHelper.decryptSchedulerDataResponse(this, response.body).then(() => response);
492
+ });
493
+ },
494
+
495
+ /**
496
+ * Get free busy status from calendar service
497
+ * @param {Object} [data] the command parameters for fetching free busy status.
498
+ * @param {object} [query] the query parameters for specific usage
499
+ * @returns {Promise} Resolves with a decrypted response
500
+ * */
501
+ getFreeBusy(data, query) {
502
+ return EncryptHelper.encryptFreeBusyRequest(this, data)
503
+ .then(() => {
504
+ return this.request({
505
+ method: 'POST',
506
+ service: 'calendar',
507
+ body: data,
508
+ resource: 'freebusy',
509
+ qs: query || {},
510
+ });
511
+ })
512
+ .then(() => {
513
+ return new Promise((resolve, reject) => {
514
+ this.rpcEventRequests[data.requestId] = {resolve, reject};
515
+ });
516
+ })
517
+ .catch((error) => {
518
+ throw error;
519
+ });
520
+ },
310
521
  });
311
522
 
312
523
  export default Calendar;
package/src/collection.js CHANGED
@@ -27,7 +27,7 @@ const CalendarCollection = {
27
27
  */
28
28
  getBy(key, value) {
29
29
  if (key && value) {
30
- return find(this.items, (item) => (item[key] === value));
30
+ return find(this.items, (item) => item[key] === value);
31
31
  }
32
32
 
33
33
  return null;
@@ -58,7 +58,6 @@ const CalendarCollection = {
58
58
  this.items = {};
59
59
  },
60
60
 
61
-
62
61
  /**
63
62
  * @param {Id} id is the id for the calendar item to be removed
64
63
  * @returns {Any} calendar item which got removed
@@ -95,8 +94,7 @@ const CalendarCollection = {
95
94
  */
96
95
  getAll() {
97
96
  return Object.values(this.items);
98
- }
99
-
97
+ },
100
98
  };
101
99
 
102
100
  export default CalendarCollection;
package/src/config.js CHANGED
@@ -5,6 +5,6 @@
5
5
  export default {
6
6
  calendar: {
7
7
  fromDate: new Date(new Date().setDate(new Date().getDate() - 1)),
8
- toDate: new Date(new Date().setDate(new Date().getDate() + 7))
9
- }
8
+ toDate: new Date(new Date().setDate(new Date().getDate() + 7)),
9
+ },
10
10
  };
package/src/index.js CHANGED
@@ -20,21 +20,37 @@ registerInternalPlugin('calendar', Calendar, {
20
20
  name: 'transformMeetingNotes',
21
21
  direction: 'inbound',
22
22
  test(ctx, response) {
23
- return Promise.resolve(has(response, 'body.encryptedNotes'));
23
+ return Promise.resolve(
24
+ has(response, 'body.encryptedNotes') &&
25
+ !(
26
+ response.options &&
27
+ response.options.service === 'calendar' &&
28
+ response.options.method === 'GET' &&
29
+ response.options.resource === 'schedulerData'
30
+ )
31
+ );
24
32
  },
25
33
  extract(response) {
26
34
  return Promise.resolve(response.body);
27
- }
35
+ },
28
36
  },
29
37
  {
30
38
  name: 'transformMeetingParticipants',
31
39
  direction: 'inbound',
32
40
  test(ctx, response) {
33
- return Promise.resolve(has(response, 'body.encryptedParticipants'));
41
+ return Promise.resolve(
42
+ has(response, 'body.encryptedParticipants') &&
43
+ !(
44
+ response.options &&
45
+ response.options.service === 'calendar' &&
46
+ response.options.method === 'GET' &&
47
+ response.options.resource === 'schedulerData'
48
+ )
49
+ );
34
50
  },
35
51
  extract(response) {
36
52
  return Promise.resolve(response.body);
37
- }
53
+ },
38
54
  },
39
55
  {
40
56
  name: 'transformMeetingArray',
@@ -44,17 +60,25 @@ registerInternalPlugin('calendar', Calendar, {
44
60
  },
45
61
  extract(response) {
46
62
  return Promise.resolve(response.body.items);
47
- }
63
+ },
48
64
  },
49
65
  {
50
66
  name: 'transformMeeting',
51
67
  direction: 'inbound',
52
68
  test(ctx, response) {
53
- return Promise.resolve(has(response, 'body.seriesId'));
69
+ return Promise.resolve(
70
+ has(response, 'body.seriesId') &&
71
+ !(
72
+ response.options &&
73
+ response.options.service === 'calendar' &&
74
+ response.options.method === 'GET' &&
75
+ response.options.resource === 'schedulerData'
76
+ )
77
+ );
54
78
  },
55
79
  extract(response) {
56
80
  return Promise.resolve(response.body);
57
- }
81
+ },
58
82
  },
59
83
  {
60
84
  name: 'transformMeeting',
@@ -64,15 +88,15 @@ registerInternalPlugin('calendar', Calendar, {
64
88
  },
65
89
  extract(response) {
66
90
  return Promise.resolve(response.calendarMeetingExternal);
67
- }
68
- }
91
+ },
92
+ },
69
93
  ],
70
94
  transforms: [
71
95
  {
72
96
  name: 'transformMeetingArray',
73
97
  fn(ctx, array) {
74
98
  return Promise.all(array.map((item) => ctx.transform('transformMeeting', item)));
75
- }
99
+ },
76
100
  },
77
101
  {
78
102
  name: 'transformMeeting',
@@ -87,33 +111,78 @@ registerInternalPlugin('calendar', Calendar, {
87
111
  }
88
112
 
89
113
  // Decrypt participant properties if meeting object contains participants
90
- const decryptedParticipants = object.encryptedParticipants ? object.encryptedParticipants.map((participant) => Promise.all([
91
- ctx.transform('decryptTextProp', 'encryptedEmailAddress', object.encryptionKeyUrl, participant),
92
- ctx.transform('decryptTextProp', 'encryptedName', object.encryptionKeyUrl, participant)
93
- ])) : [];
114
+ const decryptedParticipants = object.encryptedParticipants
115
+ ? object.encryptedParticipants.map((participant) =>
116
+ Promise.all([
117
+ ctx.transform(
118
+ 'decryptTextProp',
119
+ 'encryptedEmailAddress',
120
+ object.encryptionKeyUrl,
121
+ participant
122
+ ),
123
+ ctx.transform(
124
+ 'decryptTextProp',
125
+ 'encryptedName',
126
+ object.encryptionKeyUrl,
127
+ participant
128
+ ),
129
+ ])
130
+ )
131
+ : [];
94
132
 
95
133
  // Decrypt meetingJoinInfo properties if meeting object contains meetingJoinInfo
96
- const decryptedMeetingJoinInfo = object.meetingJoinInfo ? Promise.all([
97
- ctx.transform('decryptTextProp', 'meetingJoinURI', object.encryptionKeyUrl, object.meetingJoinInfo),
98
- ctx.transform('decryptTextProp', 'meetingJoinURL', object.encryptionKeyUrl, object.meetingJoinInfo)
99
- ]) : [];
134
+ const decryptedMeetingJoinInfo = object.meetingJoinInfo
135
+ ? Promise.all([
136
+ ctx.transform(
137
+ 'decryptTextProp',
138
+ 'meetingJoinURI',
139
+ object.encryptionKeyUrl,
140
+ object.meetingJoinInfo
141
+ ),
142
+ ctx.transform(
143
+ 'decryptTextProp',
144
+ 'meetingJoinURL',
145
+ object.encryptionKeyUrl,
146
+ object.meetingJoinInfo
147
+ ),
148
+ ])
149
+ : [];
100
150
 
101
- const decryptedOrganizer = object.encryptedOrganizer ? Promise.all([
102
- ctx.transform('decryptTextProp', 'encryptedEmailAddress', object.encryptionKeyUrl, object.encryptedOrganizer),
103
- ctx.transform('decryptTextProp', 'encryptedName', object.encryptionKeyUrl, object.encryptedOrganizer)
104
- ]) : [];
151
+ const decryptedOrganizer = object.encryptedOrganizer
152
+ ? Promise.all([
153
+ ctx.transform(
154
+ 'decryptTextProp',
155
+ 'encryptedEmailAddress',
156
+ object.encryptionKeyUrl,
157
+ object.encryptedOrganizer
158
+ ),
159
+ ctx.transform(
160
+ 'decryptTextProp',
161
+ 'encryptedName',
162
+ object.encryptionKeyUrl,
163
+ object.encryptedOrganizer
164
+ ),
165
+ ])
166
+ : [];
105
167
 
106
- return Promise.all([
107
- ctx.transform('decryptTextProp', 'encryptedSubject', object.encryptionKeyUrl, object),
108
- ctx.transform('decryptTextProp', 'encryptedLocation', object.encryptionKeyUrl, object),
109
- ctx.transform('decryptTextProp', 'encryptedNotes', object.encryptionKeyUrl, object),
110
- ctx.transform('decryptTextProp', 'webexURI', object.encryptionKeyUrl, object),
111
- ctx.transform('decryptTextProp', 'webexURL', object.encryptionKeyUrl, object),
112
- ctx.transform('decryptTextProp', 'spaceMeetURL', object.encryptionKeyUrl, object),
113
- ctx.transform('decryptTextProp', 'spaceURI', object.encryptionKeyUrl, object),
114
- ctx.transform('decryptTextProp', 'spaceURL', object.encryptionKeyUrl, object)
115
- ].concat(decryptedOrganizer, decryptedParticipants, decryptedMeetingJoinInfo));
116
- }
168
+ return Promise.all(
169
+ [
170
+ ctx.transform('decryptTextProp', 'encryptedSubject', object.encryptionKeyUrl, object),
171
+ ctx.transform(
172
+ 'decryptTextProp',
173
+ 'encryptedLocation',
174
+ object.encryptionKeyUrl,
175
+ object
176
+ ),
177
+ ctx.transform('decryptTextProp', 'encryptedNotes', object.encryptionKeyUrl, object),
178
+ ctx.transform('decryptTextProp', 'webexURI', object.encryptionKeyUrl, object),
179
+ ctx.transform('decryptTextProp', 'webexURL', object.encryptionKeyUrl, object),
180
+ ctx.transform('decryptTextProp', 'spaceMeetURL', object.encryptionKeyUrl, object),
181
+ ctx.transform('decryptTextProp', 'spaceURI', object.encryptionKeyUrl, object),
182
+ ctx.transform('decryptTextProp', 'spaceURL', object.encryptionKeyUrl, object),
183
+ ].concat(decryptedOrganizer, decryptedParticipants, decryptedMeetingJoinInfo)
184
+ );
185
+ },
117
186
  },
118
187
  {
119
188
  name: 'transformMeetingNotes',
@@ -128,9 +197,9 @@ registerInternalPlugin('calendar', Calendar, {
128
197
  }
129
198
 
130
199
  return Promise.all([
131
- ctx.transform('decryptTextProp', 'encryptedNotes', object.encryptionKeyUrl, object)
200
+ ctx.transform('decryptTextProp', 'encryptedNotes', object.encryptionKeyUrl, object),
132
201
  ]);
133
- }
202
+ },
134
203
  },
135
204
  {
136
205
  name: 'transformMeetingParticipants',
@@ -145,16 +214,28 @@ registerInternalPlugin('calendar', Calendar, {
145
214
  }
146
215
 
147
216
  // Decrypt participant properties
148
- const decryptedParticipants = object.encryptedParticipants.map((participant) => Promise.all([
149
- ctx.transform('decryptTextProp', 'encryptedEmailAddress', object.encryptionKeyUrl, participant),
150
- ctx.transform('decryptTextProp', 'encryptedName', object.encryptionKeyUrl, participant)
151
- ]));
217
+ const decryptedParticipants = object.encryptedParticipants.map((participant) =>
218
+ Promise.all([
219
+ ctx.transform(
220
+ 'decryptTextProp',
221
+ 'encryptedEmailAddress',
222
+ object.encryptionKeyUrl,
223
+ participant
224
+ ),
225
+ ctx.transform(
226
+ 'decryptTextProp',
227
+ 'encryptedName',
228
+ object.encryptionKeyUrl,
229
+ participant
230
+ ),
231
+ ])
232
+ );
152
233
 
153
234
  return Promise.all(decryptedParticipants);
154
- }
155
- }
156
- ]
157
- }
235
+ },
236
+ },
237
+ ],
238
+ },
158
239
  });
159
240
 
160
241
  export {default} from './calendar';