This file is indexed.

/usr/lib/thunderbird-addons/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/calendar-js/calOutlookCSVImportExport.js is in xul-ext-lightning 1:24.4.0+build1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/* 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/. */

Components.utils.import("resource://calendar/modules/calAlarmUtils.jsm");
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");

const localeEn = {
    headTitle       : "Subject",
    headStartDate   : "Start Date",
    headStartTime   : "Start Time",
    headEndDate     : "End Date",
    headEndTime     : "End Time",
    headAllDayEvent : "All day event",
    headAlarm       : "Reminder on/off",
    headAlarmDate   : "Reminder Date",
    headAlarmTime   : "Reminder Time",
    headCategories  : "Categories",
    headDescription : "Description",
    headLocation    : "Location",
    headPrivate     : "Private",

    valueTrue       : "True",
    valueFalse      : "False",

    dateRe          : /^(\d+)\/(\d+)\/(\d+)$/,
    dateDayIndex    : 2,
    dateMonthIndex  : 1,
    dateYearIndex   : 3,
    dateFormat      : "%m/%d/%y",

    timeRe          : /^(\d+):(\d+):(\d+) (\w+)$/,
    timeHourIndex   : 1,
    timeMinuteIndex : 2,
    timeSecondIndex : 3,
    timeAmPmIndex   : 4,
    timeAmString    : "AM",
    timePmString    : "PM",
    timeFormat      : "%I:%M:%S %p"
};

const localeNl = {
    headTitle       : "Onderwerp",
    headStartDate   : "Begindatum",
    headStartTime   : "Begintijd",
    headEndDate     : "Einddatum",
    headEndTime     : "Eindtijd",
    headAllDayEvent : "Evenement, duurt hele dag",
    headAlarm       : "Herinneringen aan/uit",
    headAlarmDate   : "Herinneringsdatum",
    headAlarmTime   : "Herinneringstijd",
    headCategories  : "Categorieën",
    headDescription : "Beschrijving",
    headLocation    : "Locatie",
    headPrivate     : "Privé",

    valueTrue       : "Waar",
    valueFalse      : "Onwaar",

    dateRe          : /^(\d+)-(\d+)-(\d+)$/,
    dateDayIndex    : 1,
    dateMonthIndex  : 2,
    dateYearIndex   : 3,
    dateFormat      : "%d-%m-%y",

    timeRe          : /^(\d+):(\d+):(\d+)$/,
    timeHourIndex   : 1,
    timeMinuteIndex : 2,
    timeSecondIndex : 3,
    timeFormat      : "%H:%M:%S"
};

const locales = [localeEn, localeNl];

// Windows line endings, CSV files with LF only can't be read by Outlook.
const exportLineEnding = "\r\n";

// Shared functions
function getOutlookCsvFileTypes(aCount) {
    aCount.value = 1;
    let wildmat = '*.csv';
    let label = cal.calGetString("calendar", 'filterOutlookCsv', [wildmat]);
    return [{ defaultExtension: 'csv',
              extensionFilter: wildmat,
              description: label }];
}

// Importer
function calOutlookCSVImporter() {
    this.wrappedJSObject = this;
}
const calOutlookCSVImporterClassID = Components.ID("{64a5d17a-0497-48c5-b54f-72b15c9e9a14}");
const calOutlookCSVImporterInterfaces = [Components.interfaces.calIImporter];
calOutlookCSVImporter.prototype = {
    classID: calOutlookCSVImporterClassID,
    QueryInterface: XPCOMUtils.generateQI(calOutlookCSVImporterInterfaces),
    classInfo: XPCOMUtils.generateCI({
        classID: calOutlookCSVImporterClassID,
        contractID: "@mozilla.org/calendar/import;1?type=csv",
        classDescription: "Calendar Outlook CSV Importer",
        interfaces: calOutlookCSVImporterInterfaces
    }),

    getFileTypes: getOutlookCsvFileTypes,

    /**
     * Takes a text block of Outlook-exported Comma Separated Values and tries to
     * parse that into individual events.
     *
     * First line is field names, all quoted with double quotes.  Field names are
     * locale dependendent.  In English the recognized field names are:
     *   "Title","Start Date","Start Time","End Date","End Time","All day event",
     *   "Reminder on/off","Reminder Date","Reminder Time","Categories",
     *   "Description","Location","Private"
     *  The fields "Title" and "Start Date" are mandatory. If "Start Time" misses
     *  the event is set as all day event. If "End Date" or "End Time" miss the
     *  default durations are set.
     *
     * The rest of the lines are events, one event per line, with fields in the
     * order descibed by the first line.   All non-empty values must be quoted.
     *
     * Returns: an array of parsed calendarEvents.
     *   If the parse is cancelled, a zero length array is returned.
     */
    importFromStream: function csv_importFromStream(aStream, aCount) {
        let scriptableInputStream = Components.classes["@mozilla.org/scriptableinputstream;1"]
                                              .createInstance(Components.interfaces.nsIScriptableInputStream);
        scriptableInputStream.init(aStream);
        let str = scriptableInputStream.read(-1);

        parse: {
            // parse header line of quoted comma separated column names.
            let trimEndQuotesRegExp = /^"(.*)"$/m;
            let trimResults = trimEndQuotesRegExp.exec( str );
            let header = trimResults && trimResults[1].split(/","/);
            if (header == null) {
                break parse;
            }

            //strip header from string
            str = str.slice(trimResults[0].length);

            let args = {};
            //args.fieldList contains the field names from the first row of CSV
            args.fieldList = header;

            let locale;
            let i;
            let knownIndxs;
            for (i in locales) {
                locale = locales[i];
                knownIndxs = 0;
                args.titleIndex = 0;
                args.startDateIndex = 0;
                for (let i = 1; i <= header.length; ++i) {
                    switch( header[i-1] ) {
                        case locale.headTitle:        args.titleIndex = i;       knownIndxs++; break;
                        case locale.headStartDate:    args.startDateIndex = i;   knownIndxs++; break;
                        case locale.headStartTime:    args.startTimeIndex = i;   knownIndxs++; break;
                        case locale.headEndDate:      args.endDateIndex = i;     knownIndxs++; break;
                        case locale.headEndTime:      args.endTimeIndex = i;     knownIndxs++; break;
                        case locale.headAllDayEvent:  args.allDayIndex = i;      knownIndxs++; break;
                        case locale.headAlarm:        args.alarmIndex = i;       knownIndxs++; break;
                        case locale.headAlarmDate:    args.alarmDateIndex = i;   knownIndxs++; break;
                        case locale.headAlarmTime:    args.alarmTimeIndex = i;   knownIndxs++; break;
                        case locale.headCategories:   args.categoriesIndex = i;  knownIndxs++; break;
                        case locale.headDescription:  args.descriptionIndex = i; knownIndxs++; break;
                        case locale.headLocation:     args.locationIndex = i;    knownIndxs++; break;
                        case locale.headPrivate:      args.privateIndex = i;     knownIndxs++; break;
                    }
                }
                // Were both mandatory fields recognized?
                if (args.titleIndex != 0 && args.startDateIndex != 0) {
                    break;
                }
            }

            if (knownIndxs == 0 && header.length == 22) {
                // set default indexes for a default Outlook2000 CSV file
                args.titleIndex = 1;
                args.startDateIndex = 2;
                args.startTimeIndex = 3;
                args.endDateIndex = 4;
                args.endTimeIndex = 5;
                args.allDayIndex = 6;
                args.alarmIndex = 7;
                args.alarmDateIndex = 8;
                args.alarmTimeIndex = 9;
                args.categoriesIndex = 15;
                args.descriptionIndex = 16;
                args.locationIndex = 17;
                args.privateIndex = 20;
            }

            if (args.titleIndex == 0 || args.startDateIndex == 0) {
                dump("Can't import. Life sucks\n")
                break parse;
            }

            // Construct event regexp according to field indexes. The regexp can
            // be made stricter, if it seems this matches too loosely.
            let regExpStr = "^";
            for (i = 1; i <= header.length; i++) {
                if (i > 1)
                    regExpStr += ",";
                regExpStr += "(?:\"((?:[^\"]|\"\")*)\")?";
            }
            regExpStr += "$";

            // eventRegExp: regexp for reading events (this one'll be constructed on fly)
            const eventRegExp = new RegExp(regExpStr, "gm");

            // match first line
            let eventFields = eventRegExp.exec(str);

            if (eventFields == null)
                break parse;

            args.boolStr = localeEn.valueTrue;
            args.boolIsTrue = true;

            let dateParseConfirmed = false;
            let eventArray = new Array();
            do {
                // At this point eventFields contains following fields. Position
                // of fields is in args.[fieldname]Index.
                //    subject, start date, start time, end date, end time,
                //    all day, alarm on, alarm date, alarm time,
                //    Description, Categories, Location, Private
                // Unused fields (could maybe be copied to Description):
                //    Meeting Organizer, Required Attendees, Optional Attendees,
                //    Meeting Resources, Billing Information, Mileage, Priority,
                //    Sensitivity, Show time as

                let title = ("titleIndex" in args
                             ? this.parseTextField(eventFields[args.titleIndex]) : "");
                let sDate = this.parseDateTime(eventFields[args.startDateIndex],
                                               eventFields[args.startTimeIndex],
                                               locale);
                let eDate = this.parseDateTime(eventFields[args.endDateIndex],
                                               eventFields[args.endTimeIndex],
                                               locale);
                // Create an event only if we have a startDate. No more checks
                // on sDate needed in the following process.
                if (sDate) {
                    let event = cal.createEvent();

                    // Use column head in brackets if event title misses in data.
                    if (title) {
                        event.title = title;
                    } else {
                        event.title = "[" + locale.headTitle + "]";
                    }

                    // Check data for all day event. Additionally sDate.isDate
                    // may have been set in parseDateTime() if no time was found
                    if (eventFields[args.allDayIndex] == locale.valueTrue) {
                        sDate.isDate = true;
                    }
                    if (locale.valueTrue == eventFields[args.privateIndex]) {
                        event.privacy = "PRIVATE";
                    }

                    if (!eDate) {
                        // No endDate was found. All day events last one day and
                        // timed events last the default length.
                        eDate = sDate.clone();
                        if (sDate.isDate) {
                            // end date is exclusive, so set to next day after start.
                            eDate.day += 1;
                        } else {
                            eDate.minute += cal.getPrefSafe("calendar.event.defaultlength", 60);
                        }
                    } else {
                        // An endDate was found.
                        if (sDate.isDate) {
                            // A time part for the startDate is missing or was
                            // not recognized. We have to throw away the endDates
                            // time part too for obtaining a valid event.
                            eDate.isDate = true;
                            // Correct the eDate if duration is less than one day.
                            if (1 > eDate.subtractDate(sDate).days) {
                                eDate = sDate.clone();
                                eDate.day += 1;
                            }
                        } else {
                            // We now have a timed startDate and an endDate. If the
                            // end time is invalid set it to 23:59:00
                            if (eDate.isDate) {
                                eDate.isDate = false;
                                eDate.hour   = 23;
                                eDate.minute = 59;
                            }
                            // Correct the duration to 0 seconds if it is negative.
                            if (eDate.subtractDate(sDate).isNegative ) {
                                eDate = sDate.clone();
                            }
                        }
                    }
                    event.startDate = sDate;
                    event.endDate = eDate;

                    // Exists an alarm true/false column?
                    if ("alarmIndex" in args) {
                        // Is an alarm wanted for this event?
                        if (locale.valueTrue == eventFields[args.alarmIndex]) {
                            let alarmDate =
                                    this.parseDateTime(eventFields[args.alarmDateIndex],
                                                       eventFields[args.alarmTimeIndex],
                                                       locale);
                            // Only set the alarm if a date was parsed
                            if (alarmDate) {
                                let alarm = cal.createAlarm();
                                alarm.related = alarm.ALARM_RELATED_ABSOLUTE;
                                alarm.alarmDate = alarmDate;
                                event.addAlarm(alarm);
                            } else {
                                // XXX Is this really wanted here?
                                cal.alarms.setDefaultValues(event);
                            }
                        }
                    }

                    // Using the "Private" field only for getting privacy status.
                    // "Sensitivity" is neglected for now.
                    if ("privateIndex" in args) {
                        if (locale.valueTrue == eventFields[args.privateIndex]) {
                            event.privacy = "PRIVATE";
                        }
                    }

                    // Avoid setting empty properties
                    let txt = "";
                    if ("descriptionIndex" in args) {
                        txt = this.parseTextField(eventFields[args.descriptionIndex])
                        if (txt) {
                            event.setProperty("DESCRIPTION", txt);
                        }
                    }
                    if ("categoriesIndex" in args) {
                        txt = this.parseTextField(eventFields[args.categoriesIndex])
                        if (txt) {
                            let categories = cal.categoriesStringToArray(txt);
                            event.setCategories(categories.length, categories);
                        }
                    }
                    if ("locationIndex" in args) {
                        txt = this.parseTextField(eventFields[args.locationIndex])
                        if (txt) {
                            event.setProperty("LOCATION", txt);
                        }
                    }

                    //save the event into return array
                    eventArray.push(event);
                }

                //get next events fields
                eventFields = eventRegExp.exec(str);

            } while (eventRegExp.lastIndex != 0);

            // return results
            aCount.value = eventArray.length;
            return eventArray;

        } // end parse

        // The parse was cancelled, return an empty array of events.
        aCount.value = 0;
        return [];
    },

    parseDateTime: function parseDateTime(aDate, aTime, aLocale) {
        let dt = cal.createDateTime();

        //XXX Can we do better?
        dt.timezone = cal.floating();

        let rd = aLocale.dateRe.exec(aDate);
        let rt = aLocale.timeRe.exec(aTime);

        if (!rd || !rt) {
            return null;
        }

        dt.year = rd[aLocale.dateYearIndex];
        dt.month = rd[aLocale.dateMonthIndex] - 1;
        dt.day = rd[aLocale.dateDayIndex];
        if (rt) {
            dt.hour = Number(rt[aLocale.timeHourIndex]);
            dt.minute = rt[aLocale.timeMinuteIndex];
            dt.second = rt[aLocale.timeSecondIndex];
        } else {
            dt.isDate = true;
        }

        if (rt && aLocale.timeAmPmIndex &&
            rt[aLocale.timeAmPmIndex] != aLocale.timePmString) {
            // AM
            if (dt.hour == 12) {
                dt.hour = 0;
            }
        } else {
            // PM
            if (dt.hour < 12) {
               dt.hour += 12;
            }
        }
        return dt;
    },

    parseTextField: function parseTextField(aTextField) {
        return aTextField ? aTextField.replace(/""/g, "\"") : "";
    }
};

// Exporter
function calOutlookCSVExporter() {
}
const calOutlookCSVExporterClassID = Components.ID("{48e6d3a6-b41b-4052-9ed2-40b27800bd4b}");
const calOutlookCSVExporterInterfaces = [Components.interfaces.calIExporter];
calOutlookCSVExporter.prototype = {
    classID: calOutlookCSVExporterClassID,
    QueryInterface: XPCOMUtils.generateQI(calOutlookCSVExporterInterfaces),
    classInfo: XPCOMUtils.generateCI({
        classID: calOutlookCSVExporterClassID,
        contractID: "@mozilla.org/calendar/export;1?type=csv",
        classDescription: "Calendar Outlook CSV Exporter",
        interfaces: calOutlookCSVExporterInterfaces
    }),

    getFileTypes: getOutlookCsvFileTypes,

    exportToStream: function csv_exportToStream(aStream, aCount, aItems) {
        // Helper functions
        function dateString(aDateTime) aDateTime.jsDate.toLocaleFormat(localeEn.dateFormat);
        function timeString(aDateTime) aDateTime.jsDate.toLocaleFormat(localeEn.timeFormat);
        function txtString(aString) aString || "";

        let str = "";
        let headers = [];
        // Not using a loop here, since we need to be sure the order here matches
        // with the orders the field data is added later on
        headers.push(localeEn['headTitle']);
        headers.push(localeEn['headStartDate']);
        headers.push(localeEn['headStartTime']);
        headers.push(localeEn['headEndDate']);
        headers.push(localeEn['headEndTime']);
        headers.push(localeEn['headAllDayEvent']);
        headers.push(localeEn['headAlarm']);
        headers.push(localeEn['headAlarmDate']);
        headers.push(localeEn['headAlarmTime']);
        headers.push(localeEn['headCategories']);
        headers.push(localeEn['headDescription']);
        headers.push(localeEn['headLocation']);
        headers.push(localeEn['headPrivate']);
        headers = headers.map(function(v) {
            return '"' + v + '"';
        });
        str = headers.join(',');
        str += exportLineEnding;
        aStream.write(str, str.length);

        for each (let item in aItems) {
            if (!cal.isEvent(item)) {
                // XXX TODO: warn the user (once) that tasks are not supported
                // (bug 336175)
                continue;
            }
            let line = [];
            line.push(item.title);
            line.push(dateString(item.startDate));
            line.push(timeString(item.startDate));
            line.push(dateString(item.endDate));
            line.push(timeString(item.endDate));
            line.push(item.startDate.isDate ? localeEn.valueTrue : localeEn.valueFalse);
            let alarmDate;
            let alarms = item.getAlarms({});
            if (alarms.length) {
                alarmDate = cal.alarms.calculateAlarmDate(item, alarms[0]);
            }
            line.push(alarmDate ? localeEn.valueTrue : localeEn.valueFalse);
            line.push(alarmDate ? dateString(alarmDate) : "");
            line.push(alarmDate ? timeString(alarmDate) : "");
            line.push(txtString(cal.categoriesArrayToString(item.getCategories({})))); // xxx todo: what's the correct way to encode ',' in csv?, how are multi-values expressed?
            line.push(txtString(item.getProperty("DESCRIPTION")));
            line.push(txtString(item.getProperty("LOCATION")));
            line.push((item.privacy=="PRIVATE") ? localeEn.valueTrue : localeEn.valueFalse);

            line = line.map(function(v) {
                v = String(v).replace(/"/g,'""');
                return '"'+v+'"';
            })
            str = line.join(',') + exportLineEnding;
            aStream.write(str, str.length);
        }
    }
};