summaryrefslogtreecommitdiffstats
path: root/comm/calendar/base/modules/calRecurrenceUtils.jsm
blob: 125f4298015e0f2c75d09fc6a20adacad82dd7b5 (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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* exported recurrenceStringFromItem, recurrenceRule2String, splitRecurrenceRules,
 *          checkRecurrenceRule, countOccurrences
 */

var { PluralForm } = ChromeUtils.importESModule("resource://gre/modules/PluralForm.sys.mjs");
var { XPCOMUtils } = ChromeUtils.importESModule("resource://gre/modules/XPCOMUtils.sys.mjs");
var { cal } = ChromeUtils.import("resource:///modules/calendar/calUtils.jsm");

const lazy = {};
XPCOMUtils.defineLazyModuleGetters(lazy, {
  CalRecurrenceDate: "resource:///modules/CalRecurrenceDate.jsm",
  CalRecurrenceRule: "resource:///modules/CalRecurrenceRule.jsm",
});

const EXPORTED_SYMBOLS = [
  "recurrenceStringFromItem",
  "recurrenceRule2String",
  "splitRecurrenceRules",
  "checkRecurrenceRule",
  "countOccurrences",
  "hasUnsupported",
];

/**
 * Given a calendar event or task, return a string that describes the item's
 * recurrence pattern. When the recurrence pattern is too complex, return a
 * "too complex" string by getting that string using the arguments provided.
 *
 * @param {calIEvent | calITodo} item   A calendar item.
 * @param {string} bundleName - Name of the properties file, e.g. "calendar-event-dialog".
 * @param {string} stringName - Name of the string within the properties file.
 * @param {string[]} [params] - (optional) Parameters to format the string.
 * @returns {string | null} A string describing the recurrence
 *                                        pattern or null if the item has no
 *                                        recurrence info.
 */
function recurrenceStringFromItem(item, bundleName, stringName, params) {
  // See the `parentItem` property of `calIItemBase`.
  let parent = item.parentItem;

  let recurrenceInfo = parent.recurrenceInfo;
  if (!recurrenceInfo) {
    return null;
  }

  let kDefaultTimezone = cal.dtz.defaultTimezone;

  let rawStartDate = parent.startDate || parent.entryDate;
  let rawEndDate = parent.endDate || parent.dueDate;

  let startDate = rawStartDate ? rawStartDate.getInTimezone(kDefaultTimezone) : null;
  let endDate = rawEndDate ? rawEndDate.getInTimezone(kDefaultTimezone) : null;

  return (
    recurrenceRule2String(recurrenceInfo, startDate, endDate, startDate.isDate) ||
    cal.l10n.getString(bundleName, stringName, params)
  );
}

/**
 * This function takes the recurrence info passed as argument and creates a
 * literal string representing the repeat pattern in natural language.
 *
 * @param recurrenceInfo    An item's recurrence info to parse.
 * @param startDate         The start date to base rules on.
 * @param endDate           The end date to base rules on.
 * @param allDay            If true, the pattern should assume an allday item.
 * @returns A human readable string describing the recurrence.
 */
function recurrenceRule2String(recurrenceInfo, startDate, endDate, allDay) {
  function getRString(name, args) {
    return cal.l10n.getString("calendar-event-dialog", name, args);
  }
  function day_of_week(day) {
    return Math.abs(day) % 8;
  }
  function day_position(day) {
    return ((Math.abs(day) - day_of_week(day)) / 8) * (day < 0 ? -1 : 1);
  }
  function nounClass(aDayString, aRuleString) {
    // Select noun class (grammatical gender) for rule string
    let nounClassStr = getRString(aDayString + "Nounclass");
    return aRuleString + nounClassStr.substr(0, 1).toUpperCase() + nounClassStr.substr(1);
  }
  function pluralWeekday(aDayString) {
    let plural = getRString("pluralForWeekdays") == "true";
    return plural ? aDayString + "Plural" : aDayString;
  }
  function everyWeekDay(aByDay) {
    // Checks if aByDay contains only values from 1 to 7 with any order.
    let mask = aByDay.reduce((value, item) => value | (1 << item), 1);
    return aByDay.length == 7 && mask == Math.pow(2, 8) - 1;
  }

  // Retrieve a valid recurrence rule from the currently
  // set recurrence info. Bail out if there's more
  // than a single rule or something other than a rule.
  recurrenceInfo = recurrenceInfo.clone();
  if (hasUnsupported(recurrenceInfo)) {
    return null;
  }

  let rrules = splitRecurrenceRules(recurrenceInfo);
  if (rrules[0].length == 1) {
    let rule = cal.wrapInstance(rrules[0][0], Ci.calIRecurrenceRule);
    // Currently we allow only for BYDAY, BYMONTHDAY, BYMONTH rules.
    let byparts = [
      "BYSECOND",
      "BYMINUTE",
      /* "BYDAY", */
      "BYHOUR",
      /* "BYMONTHDAY", */
      "BYYEARDAY",
      "BYWEEKNO",
      /* "BYMONTH", */
      "BYSETPOS",
    ];

    if (rule && !checkRecurrenceRule(rule, byparts)) {
      let dateFormatter = cal.dtz.formatter;
      let ruleString;
      if (rule.type == "DAILY") {
        if (checkRecurrenceRule(rule, ["BYDAY"])) {
          let days = rule.getComponent("BYDAY");
          let weekdays = [2, 3, 4, 5, 6];
          if (weekdays.length == days.length) {
            let i;
            for (i = 0; i < weekdays.length; i++) {
              if (weekdays[i] != days[i]) {
                break;
              }
            }
            if (i == weekdays.length) {
              ruleString = getRString("repeatDetailsRuleDaily4");
            }
          } else {
            return null;
          }
        } else {
          let dailyString = getRString("dailyEveryNth");
          ruleString = PluralForm.get(rule.interval, dailyString).replace("#1", rule.interval);
        }
      } else if (rule.type == "WEEKLY") {
        // weekly recurrence, currently we
        // support a single 'BYDAY'-rule only.
        if (checkRecurrenceRule(rule, ["BYDAY"])) {
          // create a string like 'Monday, Tuesday and Wednesday'
          let days = rule.getComponent("BYDAY");
          let weekdays = "";
          // select noun class (grammatical gender) according to the
          // first day of the list
          let weeklyString = nounClass("repeatDetailsDay" + days[0], "weeklyNthOn");
          for (let i = 0; i < days.length; i++) {
            if (rule.interval == 1) {
              weekdays += getRString(pluralWeekday("repeatDetailsDay" + days[i]));
            } else {
              weekdays += getRString("repeatDetailsDay" + days[i]);
            }
            if (days.length > 1 && i == days.length - 2) {
              weekdays += " " + getRString("repeatDetailsAnd") + " ";
            } else if (i < days.length - 1) {
              weekdays += ", ";
            }
          }

          weeklyString = getRString(weeklyString, [weekdays]);
          ruleString = PluralForm.get(rule.interval, weeklyString).replace("#2", rule.interval);
        } else {
          let weeklyString = getRString("weeklyEveryNth");
          ruleString = PluralForm.get(rule.interval, weeklyString).replace("#1", rule.interval);
        }
      } else if (rule.type == "MONTHLY") {
        if (checkRecurrenceRule(rule, ["BYDAY"])) {
          let byday = rule.getComponent("BYDAY");
          if (everyWeekDay(byday)) {
            // Rule every day of the month.
            ruleString = getRString("monthlyEveryDayOfNth");
            ruleString = PluralForm.get(rule.interval, ruleString).replace("#2", rule.interval);
          } else {
            // For rules with generic number of weekdays with and
            // without "position" prefix we build two separate
            // strings depending on the position and then join them.
            // Notice: we build the description string but currently
            // the UI can manage only rules with only one weekday.
            let weekdaysString_every = "";
            let weekdaysString_position = "";
            let firstDay = byday[0];
            for (let i = 0; i < byday.length; i++) {
              if (day_position(byday[i]) == 0) {
                if (!weekdaysString_every) {
                  firstDay = byday[i];
                }
                weekdaysString_every +=
                  getRString(pluralWeekday("repeatDetailsDay" + byday[i])) + ", ";
              } else {
                if (day_position(byday[i]) < -1 || day_position(byday[i]) > 5) {
                  // We support only weekdays with -1 as negative
                  // position ('THE LAST ...').
                  return null;
                }

                let duplicateWeekday = byday.some(element => {
                  return (
                    day_position(element) == 0 && day_of_week(byday[i]) == day_of_week(element)
                  );
                });
                if (duplicateWeekday) {
                  // Prevent to build strings such as for example:
                  // "every Monday and the second Monday...".
                  continue;
                }

                let ordinalString = "repeatOrdinal" + day_position(byday[i]);
                let dayString = "repeatDetailsDay" + day_of_week(byday[i]);
                ordinalString = nounClass(dayString, ordinalString);
                ordinalString = getRString(ordinalString);
                dayString = getRString(dayString);
                let stringOrdinalWeekday = getRString("ordinalWeekdayOrder", [
                  ordinalString,
                  dayString,
                ]);
                weekdaysString_position += stringOrdinalWeekday + ", ";
              }
            }
            let weekdaysString = weekdaysString_every + weekdaysString_position;
            weekdaysString = weekdaysString
              .slice(0, -2)
              .replace(/,(?= [^,]*$)/, " " + getRString("repeatDetailsAnd"));

            let monthlyString = weekdaysString_every
              ? "monthlyEveryOfEvery"
              : "monthlyRuleNthOfEvery";
            monthlyString = nounClass("repeatDetailsDay" + day_of_week(firstDay), monthlyString);
            monthlyString = getRString(monthlyString, [weekdaysString]);
            ruleString = PluralForm.get(rule.interval, monthlyString).replace("#2", rule.interval);
          }
        } else if (checkRecurrenceRule(rule, ["BYMONTHDAY"])) {
          let component = rule.getComponent("BYMONTHDAY");

          // First, find out if the 'BYMONTHDAY' component contains
          // any elements with a negative value lesser than -1 ("the
          // last day"). If so we currently don't support any rule
          if (component.some(element => element < -1)) {
            // we don't support any other combination for now...
            return getRString("ruleTooComplex");
          } else if (component.length == 1 && component[0] == -1) {
            // i.e. one day, the last day of the month
            let monthlyString = getRString("monthlyLastDayOfNth");
            ruleString = PluralForm.get(rule.interval, monthlyString).replace("#1", rule.interval);
          } else {
            // i.e. one or more monthdays every N months.

            // Build a string with a list of days separated with commas.
            let day_string = "";
            let lastDay = false;
            for (let i = 0; i < component.length; i++) {
              if (component[i] == -1) {
                lastDay = true;
                continue;
              }
              day_string += dateFormatter.formatDayWithOrdinal(component[i]) + ", ";
            }
            if (lastDay) {
              day_string += getRString("monthlyLastDay") + ", ";
            }
            day_string = day_string
              .slice(0, -2)
              .replace(/,(?= [^,]*$)/, " " + getRString("repeatDetailsAnd"));

            // Add the word "day" in plural form to the list of days then
            // compose the final string with the interval of months
            let monthlyDayString = getRString("monthlyDaysOfNth_day", [day_string]);
            monthlyDayString = PluralForm.get(component.length, monthlyDayString);
            let monthlyString = getRString("monthlyDaysOfNth", [monthlyDayString]);
            ruleString = PluralForm.get(rule.interval, monthlyString).replace("#2", rule.interval);
          }
        } else {
          let monthlyString = getRString("monthlyDaysOfNth", [startDate.day]);
          ruleString = PluralForm.get(rule.interval, monthlyString).replace("#2", rule.interval);
        }
      } else if (rule.type == "YEARLY") {
        let bymonthday = null;
        let bymonth = null;
        if (checkRecurrenceRule(rule, ["BYMONTHDAY"])) {
          bymonthday = rule.getComponent("BYMONTHDAY");
        }
        if (checkRecurrenceRule(rule, ["BYMONTH"])) {
          bymonth = rule.getComponent("BYMONTH");
        }
        if (
          (bymonth && bymonth.length > 1) ||
          (bymonthday && (bymonthday.length > 1 || bymonthday[0] < -1))
        ) {
          // Don't build a string for a recurrence rule that the UI
          // currently can't show completely (with more than one month
          // or than one monthday, or bymonthdays lesser than -1).
          return getRString("ruleTooComplex");
        }

        if (
          checkRecurrenceRule(rule, ["BYMONTHDAY"]) &&
          (checkRecurrenceRule(rule, ["BYMONTH"]) || !checkRecurrenceRule(rule, ["BYDAY"]))
        ) {
          // RRULE:FREQ=YEARLY;BYMONTH=x;BYMONTHDAY=y.
          // RRULE:FREQ=YEARLY;BYMONTHDAY=x (takes the month from the start date).
          let monthNumber = bymonth ? bymonth[0] : startDate.month + 1;
          let month = getRString("repeatDetailsMonth" + monthNumber);
          let monthDay =
            bymonthday[0] == -1
              ? getRString("monthlyLastDay")
              : dateFormatter.formatDayWithOrdinal(bymonthday[0]);
          let yearlyString = getRString("yearlyNthOn", [month, monthDay]);
          ruleString = PluralForm.get(rule.interval, yearlyString).replace("#3", rule.interval);
        } else if (checkRecurrenceRule(rule, ["BYMONTH"]) && checkRecurrenceRule(rule, ["BYDAY"])) {
          // RRULE:FREQ=YEARLY;BYMONTH=x;BYDAY=y1,y2,....
          let byday = rule.getComponent("BYDAY");
          let month = getRString("repeatDetailsMonth" + bymonth[0]);
          if (everyWeekDay(byday)) {
            // Every day of the month.
            let yearlyString = "yearlyEveryDayOf";
            yearlyString = getRString(yearlyString, [month]);
            ruleString = PluralForm.get(rule.interval, yearlyString).replace("#2", rule.interval);
          } else if (byday.length == 1) {
            let dayString = "repeatDetailsDay" + day_of_week(byday[0]);
            if (day_position(byday[0]) == 0) {
              // Every any weekday.
              let yearlyString = "yearlyOnEveryNthOfNth";
              yearlyString = nounClass(dayString, yearlyString);
              let day = getRString(pluralWeekday(dayString));
              yearlyString = getRString(yearlyString, [day, month]);
              ruleString = PluralForm.get(rule.interval, yearlyString).replace("#3", rule.interval);
            } else if (day_position(byday[0]) >= -1 || day_position(byday[0]) <= 5) {
              // The first|the second|...|the last  Monday, Tuesday, ..., day.
              let yearlyString = "yearlyNthOnNthOf";
              yearlyString = nounClass(dayString, yearlyString);
              let ordinalString = "repeatOrdinal" + day_position(byday[0]);
              ordinalString = nounClass(dayString, ordinalString);
              let ordinal = getRString(ordinalString);
              let day = getRString(dayString);
              yearlyString = getRString(yearlyString, [ordinal, day, month]);
              ruleString = PluralForm.get(rule.interval, yearlyString).replace("#4", rule.interval);
            } else {
              return getRString("ruleTooComplex");
            }
          } else {
            // Currently we don't support yearly rules with
            // more than one BYDAY element or exactly 7 elements
            // with all the weekdays (the "every day" case).
            return getRString("ruleTooComplex");
          }
        } else if (checkRecurrenceRule(rule, ["BYMONTH"])) {
          // RRULE:FREQ=YEARLY;BYMONTH=x (takes the day from the start date).
          let month = getRString("repeatDetailsMonth" + bymonth[0]);
          let yearlyString = getRString("yearlyNthOn", [month, startDate.day]);
          ruleString = PluralForm.get(rule.interval, yearlyString).replace("#3", rule.interval);
        } else {
          let month = getRString("repeatDetailsMonth" + (startDate.month + 1));
          let yearlyString = getRString("yearlyNthOn", [month, startDate.day]);
          ruleString = PluralForm.get(rule.interval, yearlyString).replace("#3", rule.interval);
        }
      }

      let kDefaultTimezone = cal.dtz.defaultTimezone;

      let detailsString;
      if (!endDate || allDay) {
        if (rule.isFinite) {
          if (rule.isByCount) {
            let countString = getRString("repeatCountAllDay", [
              ruleString,
              dateFormatter.formatDateShort(startDate),
            ]);

            detailsString = PluralForm.get(rule.count, countString).replace("#3", rule.count);
          } else {
            let untilDate = rule.untilDate.getInTimezone(kDefaultTimezone);
            detailsString = getRString("repeatDetailsUntilAllDay", [
              ruleString,
              dateFormatter.formatDateShort(startDate),
              dateFormatter.formatDateShort(untilDate),
            ]);
          }
        } else {
          detailsString = getRString("repeatDetailsInfiniteAllDay", [
            ruleString,
            dateFormatter.formatDateShort(startDate),
          ]);
        }
      } else if (rule.isFinite) {
        if (rule.isByCount) {
          let countString = getRString("repeatCount", [
            ruleString,
            dateFormatter.formatDateShort(startDate),
            dateFormatter.formatTime(startDate),
            dateFormatter.formatTime(endDate),
          ]);
          detailsString = PluralForm.get(rule.count, countString).replace("#5", rule.count);
        } else {
          let untilDate = rule.untilDate.getInTimezone(kDefaultTimezone);
          detailsString = getRString("repeatDetailsUntil", [
            ruleString,
            dateFormatter.formatDateShort(startDate),
            dateFormatter.formatDateShort(untilDate),
            dateFormatter.formatTime(startDate),
            dateFormatter.formatTime(endDate),
          ]);
        }
      } else {
        detailsString = getRString("repeatDetailsInfinite", [
          ruleString,
          dateFormatter.formatDateShort(startDate),
          dateFormatter.formatTime(startDate),
          dateFormatter.formatTime(endDate),
        ]);
      }
      return detailsString;
    }
  }
  return null;
}

/**
 * Used to test if the recurrence items of a calIRecurrenceInfo instance are
 * supported. We do not currently allow the "SECONDLY" or "MINUTELY" frequency
 * values.
 *
 * @param {calIRecurrenceInfo} recurrenceInfo
 * @returns {boolean}
 */
function hasUnsupported(recurrenceInfo) {
  return recurrenceInfo
    .getRecurrenceItems()
    .some(item => item.type == "SECONDLY" || item.type == "MINUTELY");
}

/**
 * Split rules into negative and positive rules.
 *
 * @param recurrenceInfo    An item's recurrence info to parse.
 * @returns An array with two elements: an array of positive
 *                            rules and an array of negative rules.
 */
function splitRecurrenceRules(recurrenceInfo) {
  let ritems = recurrenceInfo.getRecurrenceItems();
  let rules = [];
  let exceptions = [];
  for (let ritem of ritems) {
    if (ritem.isNegative) {
      exceptions.push(ritem);
    } else {
      rules.push(ritem);
    }
  }
  return [rules, exceptions];
}

/**
 * Check if a recurrence rule's component is valid.
 *
 * @see                     calIRecurrenceRule
 * @param aRule             The recurrence rule to check.
 * @param aArray            An array of component names to check.
 * @returns Returns true if the rule is valid.
 */
function checkRecurrenceRule(aRule, aArray) {
  for (let comp of aArray) {
    let ruleComp = aRule.getComponent(comp);
    if (ruleComp && ruleComp.length > 0) {
      return true;
    }
  }
  return false;
}

/**
 * Counts the occurrences of the parent item if any of a provided item
 *
 * @param  {(calIEvent|calIToDo)}  aItem  item to count for
 * @returns {(number|null)} number of occurrences or null if the
 *                                          passed item's parent item isn't a
 *                                          recurring item or its recurrence is
 *                                          infinite
 */
function countOccurrences(aItem) {
  let occCounter = null;
  let recInfo = aItem.parentItem.recurrenceInfo;
  if (recInfo && recInfo.isFinite) {
    occCounter = 0;
    let excCounter = 0;
    let byCount = false;
    let ritems = recInfo.getRecurrenceItems();
    for (let ritem of ritems) {
      if (ritem instanceof lazy.CalRecurrenceRule || ritem instanceof Ci.calIRecurrenceRule) {
        if (ritem.isByCount) {
          occCounter = occCounter + ritem.count;
          byCount = true;
        } else {
          // The rule is limited by an until date.
          let parentItem = aItem.parentItem;
          let startDate = parentItem.startDate ?? parentItem.entryDate;
          let endDate = parentItem.endDate ?? parentItem.dueDate ?? startDate;
          let from = startDate.clone();
          let until = endDate.clone();
          if (until.compare(ritem.untilDate) == -1) {
            until = ritem.untilDate.clone();
          }

          let exceptionIds = recInfo.getExceptionIds();
          for (let exceptionId of exceptionIds) {
            let recur = recInfo.getExceptionFor(exceptionId);
            let recurStartDate = recur.startDate ?? recur.entryDate;
            let recurEndDate = recur.endDate ?? recur.dueDate ?? recurStartDate;
            if (from.compare(recurStartDate) == 1) {
              from = recurStartDate.clone();
            }
            if (until.compare(recurEndDate) == -1) {
              until = recurEndDate.clone();
            }
          }

          // we add an extra day at beginning and end, so we don't
          // need to take care of any timezone conversion
          from.addDuration(cal.createDuration("-P1D"));
          until.addDuration(cal.createDuration("P1D"));

          let occurrences = recInfo.getOccurrences(from, until, 0);
          occCounter = occCounter + occurrences.length;
        }
      } else if (
        ritem instanceof lazy.CalRecurrenceDate ||
        ritem instanceof Ci.calIRecurrenceDate
      ) {
        if (ritem.isNegative) {
          // this is an exdate
          excCounter++;
        } else {
          // this is an (additional) rdate
          occCounter++;
        }
      }
    }

    if (byCount) {
      // for a rrule by count, we still need to subtract exceptions if any
      occCounter = occCounter - excCounter;
    }
  }
  return occCounter;
}