This file is indexed.

/usr/lib/thunderbird-addons/extensions/{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}/modules/gdataUtils.jsm is in xul-ext-gdata-provider 1:52.7.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
 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
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
/* 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://gdata-provider/modules/shim/Loader.jsm").shimIt(this);
Components.utils.import("resource://gdata-provider/modules/shim/Calendar.jsm");
Components.utils.import("resource://gdata-provider/modules/gdataLogging.jsm");
Components.utils.import("resource://gdata-provider/modules/gdataRequest.jsm");
Components.utils.import("resource://gdata-provider/modules/timezoneMap.jsm");

CuImport("resource://gre/modules/Services.jsm", this);
CuImport("resource://gre/modules/Preferences.jsm", this);
CuImport("resource://gre/modules/Promise.jsm", this);
CuImport("resource://gre/modules/PromiseUtils.jsm", this);
CuImport("resource://gre/modules/Task.jsm", this);

CuImport("resource://calendar/modules/calUtils.jsm", this);
CuImport("resource://calendar/modules/calProviderUtils.jsm", this);

var cIE = Components.interfaces.calIErrors;

var FOUR_WEEKS_IN_MINUTES = 40320;

var EXPORTED_SYMBOLS = [
    "ItemToJSON", "JSONToItem", "ItemSaver",
    "checkResolveConflict", "getGoogleId",
    "getItemMetadata", "saveItemMetadata",
    "deleteItemMetadata", "migrateItemMetadata",
    "JSONToAlarm", "dateToJSON", "JSONToDate",
    "getProviderString", "monkeyPatch", "spinEventLoop"
];

/**
 * Retrives the Google ID associated with this event. This is either a simple
 * id or the id in combination with the recurrence id.
 *
 * @param aItem             The Item to get the id for.
 * @param aOfflineStorage   The offline storage that holds the metadata for this item.
 */
function getGoogleId(aItem, aOfflineStorage) {
    let meta = getItemMetadata(aOfflineStorage, aItem) ||
               getItemMetadata(aOfflineStorage, aItem.parentItem);
    let baseId = meta ? meta.path : aItem.id.replace("@google.com", "");
    if (aItem.recurrenceId) {
        let recSuffix = "_" + aItem.recurrenceId.getInTimezone(cal.UTC()).icalString;
        if (!baseId.endsWith(recSuffix)) {
            baseId += recSuffix;
        }
    }
    return baseId;
}

/**
 * Save metadata for the given hash id.
 *
 * @param aOfflineStorage   The offline storage that holds the metadata for this item.
 * @param aId               The hash id to save metadata with.
 * @param aMetadata         The metadata object to save.
 */
function saveItemMetadata(aOfflineStorage, aId, aMetadata) {
    // Save metadata using the same format as for the CalDAV provider, this
    // will make things easier when upgrading to the new item based metadata.
    let meta = [aMetadata.etag, aMetadata.path, false].join("\u001A");
    aOfflineStorage.setMetaData(aId, meta);
}

/**
 * Migrate item metadata from aOldItem to aNewItem. If aOldItem is a recurring
 * event and an exception was turned into an EXDATE, the metadata will be
 * updated accordingly.
 *
 * @param aOfflineStorage   The offline storage that holds the metadata for this item.
 * @param aOldItem          The item to migrate from.
 * @param aNewItem          The item to migrate to.
 * @param aMetadata         The metadata for this new item.
 */
function migrateItemMetadata(aOfflineStorage, aOldItem, aNewItem, aMetadata) {
    if (aNewItem.status == "CANCELLED") {
        deleteItemMetadata(aOfflineStorage, aNewItem);
    } else {
        saveItemMetadata(aOfflineStorage, aNewItem.hashId, aMetadata);
    }

    // If an exception was turned into an EXDATE, we need to clear its metadata
    if (aOldItem.recurrenceInfo && aNewItem.recurrenceInfo) {
        let newExIds = new Set(aNewItem.recurrenceInfo.getExceptionIds({}).map(function(x) { return x.icalString; }));
        for each (let exId in aOldItem.recurrenceInfo.getExceptionIds({})) {
            if (!newExIds.has(exId.icalString)) {
                let ex = aOldItem.recurrenceInfo.getExceptionFor(exId);
                deleteItemMetadata(aOfflineStorage, ex);
            }
        }
    }
}

/**
 * Delete metadata for the given item.
 *
 * @param aOfflineStorage   The offline storage that holds the metadata for this item.
 * @param aItem             The item to delete metadata for.
 */
function deleteItemMetadata(aOfflineStorage, aItem) {
    aOfflineStorage.deleteMetaData(aItem.hashId);
    if (aItem.recurrenceInfo) {
        let recInfo = aItem.recurrenceInfo;
        for each (let exId in recInfo.getExceptionIds({})) {
            let occ = recInfo.getExceptionFor(exId);
            aOfflineStorage.deleteMetaData(occ.hashId);
        }
    }
}

/**
 * Retrieve the item metadata for the given item
 *
 * @param aOfflineStorage   The offline storage that holds the metadata for this item.
 * @param aItem             The item to retrieve metadat for.
 */
function getItemMetadata(aOfflineStorage, aItem) {
    let data = null;
    let meta = aOfflineStorage.getMetaData(aItem.hashId);
    let parts = meta && meta.split("\u001A");
    if (parts && parts.length == 3) {
        data = { etag: parts[0], path: parts[1] };
    } else if (parts && parts.length == 1) {
        // Temporary migration for alpha versions of this provider.
        data = { etag: parts[0], path: aItem.getProperty("X-GOOGLE-ID") }
    }
    return data;
}

/**
 * Covnvert a calIDateTime date to the JSON object expected by Google.
 *
 * @param aDate     The date to convert.
 * @return          The converted JS Object.
 */
function dateToJSON(aDate) {
    let jsonData = {};
    let tzid = aDate.timezone.tzid;
    jsonData[aDate.isDate ? "date" : "dateTime"] = cal.toRFC3339(aDate);
    if (!aDate.isDate && tzid != "floating") {
        if (tzid in windowsTimezoneMap) {
            // A Windows timezone, likely an outlook invitation.
            jsonData.timeZone = windowsTimezoneMap[tzid];
        } else if (tzid.match(/^[^\/ ]+(\/[^\/ ]+){1,2}$/)) {
            // An Olson timezone id
            jsonData.timeZone = aDate.timezone.tzid;
        } else {
            // Uhh...something. Google requires a timezone id for recurring
            // events, we can fake it with Etc/ timezones.
            let full_tzoffset = aDate.timezoneOffset;
            let tzoffset_hr = Math.floor(Math.abs(full_tzoffset) / 3600);
            // sign for etc needs to be the opposite of the UTC tz offset sign
            let sign = (full_tzoffset > 0 ? "-" : "+");
            if (tzoffset_hr == 0) {
                jsonData.timeZone = "UTC";
            } else {
                jsonData.timeZone = "Etc/GMT" + sign + tzoffset_hr;
            }
        }

        if (jsonData.timeZone) {
            // Strip the timezone offset if a timeZone was specified.
            jsonData.dateTime = jsonData.dateTime.replace(/[+-]\d{2}:\d{2}$/, '');

            // Strip the Z for zones other than UTC, this usually happens for
            // unknown timezones.
            if (jsonData.timeZone != "UTC") {
                jsonData.dateTime = jsonData.dateTime.replace(/Z$/, "");
            }
        }
    }
    return jsonData;
}

/**
 * Convert a JSON date object as received by Google into a calIDateTime.
 *
 * @param aEntry                The JSON entry to convert.
 * @param aTimezone             The timezone the date/dateTime is specified in.
 * @return                      The converted calIDateTime.
 */
function JSONToDate(aEntry, aTimezone) {
    let dateTime = null;
    if (!aEntry) {
        return null;
    }

    // The entry is provided in the default zone and the timezone is
    // specified separately.
    let entryDate = aEntry.dateTime || aEntry.date;
    dateTime = fromRFC3339FixedZone(entryDate, aTimezone);

    if (!dateTime) {
        return null;
    }

    if ("timeZone" in aEntry) {
        // If a timezone was specified, convert to that zone
        let zone = cal.getTimezoneService().getTimezone(aEntry.timeZone);
        if (zone) {
            dateTime = dateTime.getInTimezone(zone);
        }
    }
    return dateTime;
}

/**
 * Like cal.fromRFC3339(), but assumes that the passed timezone is the timezone
 * for the date. A quick check is done to make sure the offset matches the
 * timezone.
 *
 * @param aStr          The RFC3339 compliant Date String
 * @param aTimezone     The timezone this date string is in
 * @return              A calIDateTime object
 */
function fromRFC3339FixedZone(aStr, aTimezone) {
    let dateTime = cal.createDateTime();
    let matches = fromRFC3339FixedZone.regex.exec(aStr);

    if (!matches) {
        return null;
    }

    dateTime.isDate = matches[4] == null;
    dateTime.year = matches[1];
    dateTime.month = matches[2] - 1; // Jan is 0
    dateTime.day = matches[3];

    if (!dateTime.isDate) {
        dateTime.hour = matches[5];
        dateTime.minute = matches[6];
        dateTime.second = matches[7];
    }

    dateTime.timezone = aTimezone;
    if (matches[9] != null) {
        let offset_in_s = 0;
        if (matches[10] != null) {
            offset_in_s = (matches[11] == "-" ? -1 : 1) *
                (matches[11] * 3600 + matches[12] * 60);
        }

        if (dateTime.timezoneOffset != offset_in_s) {
            // Warn here, since this shouldn't be happening. Then use the
            // original fromRFC3339, which goes through the timezone list and
            // finds the first matching zone.
            cal.WARN("[calGoogleCalendar] " + aStr + " does not match timezone offset for " + aTimezone.tzid);
            dateTime = cal.fromRFC3339(aStr, aTimezone);
        }
    }

    return dateTime;
}
fromRFC3339FixedZone.regex = new RegExp(
    "^([0-9]{4})-([0-9]{2})-([0-9]{2})" +
    "([Tt]([0-9]{2}):([0-9]{2}):([0-9]{2})(\\.[0-9]+)?)?" +
    "([Zz]|([+-])([0-9]{2}):([0-9]{2}))?"
);

/**
 * Like cal.toRFC3339, but include milliseconds. Google timestamps require
 * this.
 *
 * @param dt        The calIDateTime to convert.
 * @return          The RFC3339 string stamp.
 */
function toRFC3339Fraction(dt) {
    let str = cal.toRFC3339(dt);
    return str ? str.replace(/(Z?)$/, ".000$1") : null;
}

/**
 * Converts a calIEvent to a JS Object that can be serialized to JSON.
 *
 * @param aItem         The item to convert.
 * @return              A JS Object representing the item.
 */
function EventToJSON(aItem, aOfflineStorage, aIsImport) {
    function addExtendedProperty(aName, aValue, aPrivate) {
        if (!aValue) {
            // We unset an extended prop by not adding it
            return;
        }

        if (!("extendedProperties" in itemData)) {
            itemData.extendedProperties = {};
        }
        if (aPrivate) {
            if (!("private" in itemData.extendedProperties)) {
                itemData.extendedProperties.private = {};
            }
            itemData.extendedProperties.private[aName] = aValue;
        } else {
            if (!("shared" in itemData.extendedProperties)) {
                itemData.extendedProperties.shared = {};
            }
            itemData.extendedProperties.shared[aName] = aValue;
        }
    }
    function setIf(data, prop, value) {
        if (value) data[prop] = value;
    }

    let itemData = {};

    itemData.start = dateToJSON(aItem.startDate);
    itemData.end = dateToJSON(aItem.endDate);

    if (aIsImport && aItem.id) {
        itemData.iCalUID = aItem.id;
        setIf(itemData, "created", toRFC3339Fraction(aItem.creationDate));
        setIf(itemData, "updated", toRFC3339Fraction(aItem.lastModifiedTime));
    }

    setIf(itemData, "summary", aItem.title);
    setIf(itemData, "description", aItem.getProperty("DESCRIPTION"));
    setIf(itemData, "location", aItem.getProperty("LOCATION"));
    setIf(itemData, "transparency", aItem.getProperty("TRANSP") && aItem.getProperty("TRANSP").toLowerCase());
    setIf(itemData, "visibility", aItem.privacy && aItem.privacy.toLowerCase());
    setIf(itemData, "sequence", aItem.getProperty("SEQUENCE"));

    // eventStatus
    let status = aItem.status && aItem.status.toLowerCase();
    if (status == "cancelled") {
        // If the status is canceled, then the event will be deleted. Since the
        // user didn't choose to delete the event, we will protect him and not
        // allow this status to be set
        throw new Components.Exception("The status CANCELLED is reserved, delete the event instead!",
                                       Components.results.NS_ERROR_LOSS_OF_SIGNIFICANT_DATA);
    } else if (status == "none") {
        status = null;
    }
    setIf(itemData, "status", status);

    // Google does not support categories natively, but allows us to store data
    // as an "extendedProperty", so we do here
    let categories = cal.categoriesArrayToString(aItem.getCategories({}));
    addExtendedProperty("X-MOZ-CATEGORIES", categories);

    // Only parse attendees if they are enabled, due to bug 407961
    if (Preferences.get("calendar.google.enableAttendees", false)) {
        let createAttendee = function(attendee) {
            const statusMap = {
                "NEEDS-ACTION": "needsAction",
                "DECLINED": "declined",
                "TENTATIVE": "tentative",
                "ACCEPTED": "accepted"
            };

            let attendeeData = {};
            if (aItem.organizer && aItem.organizer.id == attendee.id) {
                needsOrganizer = false;
            }
            let lowerId = attendee.id.toLowerCase();
            if (lowerId.startsWith("mailto:")) {
                attendeeData.email = attendee.id.replace(/^mailto:/i, "");
            } else if (lowerId.startsWith("urn:id:")) {
                attendeeData.id = attendee.id.replace(/^urn:id:/i, "");
            }

            setIf(attendeeData, "displayName", attendee.commonName);
            setIf(attendeeData, "optional", attendee.role && attendee.role != "REQ-PARTICIPANT");
            setIf(attendeeData, "responseStatus", statusMap[attendee.participationStatus]);
            setIf(attendeeData, "comment", attendee.getProperty("COMMENT"));
            setIf(attendeeData, "resource", attendee.userType && attendee.userType != "INDIVIDUAL");
            setIf(attendeeData, "additionalGuests", attendee.getProperty("X-NUM-GUESTS"));
            return attendeeData;
        };

        let needsOrganizer = true;
        let attendeeData = aItem.getAttendees({}).map(createAttendee);

        if (aItem.organizer) {
            itemData.organizer = createAttendee(aItem.organizer);
            if (needsOrganizer) {
                attendeeData.push(itemData.organizer);
            }
        }

        if (attendeeData.length) itemData.attendees = attendeeData;
    }

    // reminder
    let alarms = aItem.getAlarms({});
    let actionMap = {
        DISPLAY: "popup",
        EMAIL: "email",
        SMS: "sms"
    };

    itemData.reminders = { overrides: [], useDefault: false };
    for (let i = 0; i < 5 && i < alarms.length; i++) {
        let alarm = alarms[i];
        let alarmOffset;
        let alarmData = {};

        if (alarm.getProperty("X-DEFAULT-ALARM")) {
            // This is a default alarm, it shouldn't be set as an override
            itemData.reminders.useDefault = true;
            continue;
        }

        alarmData.method = actionMap[alarm.action] || "popup";

        if (alarm.related == alarm.ALARM_RELATED_ABSOLUTE) {
            alarmOffset = aItem.startDate.subtractDate(alarm.alarmDate);
        } else {
            if (alarm.related == alarm.ALARM_RELATED_END) {
                // Google always uses an alarm offset related to the start time
                // for relative alarms.
                alarmOffset = alarm.alarmOffset.clone();
                alarmOffset.addDuration(aItem.endDate.subtractDate(aItem.startDate));
            } else {
                alarmOffset = alarm.offset;
            }
        }
        alarmData.minutes = -alarmOffset.inSeconds / 60;

        // Google doesn't allow alarms after the event starts, or more than 4
        // weeks before the event. Make sure the minutes are within range.
        alarmData.minutes = Math.min(Math.max(0, alarmData.minutes), FOUR_WEEKS_IN_MINUTES);

        itemData.reminders.overrides.push(alarmData);
    }

    if (!alarms.length && aItem.getProperty("X-DEFAULT-ALARM") == "TRUE") {
        delete itemData.reminders.overrides;
        itemData.reminders.useDefault = true;
    }

    // gd:extendedProperty (alarmLastAck)
    addExtendedProperty("X-MOZ-LASTACK", cal.toRFC3339(aItem.alarmLastAck), true);

    // XXX While Google now supports multiple alarms and alarm values, we still
    // need to fix bug 353492 first so we can better take care of finding out
    // what alarm is used for snoozing.

    // gd:extendedProperty (snooze time)
    let itemSnoozeTime = aItem.getProperty("X-MOZ-SNOOZE-TIME");
    let icalSnoozeTime = null;
    if (itemSnoozeTime) {
        // The propery is saved as a string, translate back to calIDateTime.
        icalSnoozeTime = cal.createDateTime();
        icalSnoozeTime.icalString = itemSnoozeTime;
    }
    addExtendedProperty("X-MOZ-SNOOZE-TIME", cal.toRFC3339(icalSnoozeTime), true);

    // gd:extendedProperty (snooze recurring alarms)
    let snoozeValue = "";
    if (aItem.recurrenceInfo) {
        // This is an evil workaround since we don't have a really good system
        // to save the snooze time for recurring alarms or even retrieve them
        // from the event. This should change when we have multiple alarms
        // support.
        let snoozeObj = {};
        let enumerator = aItem.propertyEnumerator;
        while (enumerator.hasMoreElements()) {
            let prop = enumerator.getNext().QueryInterface(Components.interfaces.nsIProperty);
            if (prop.name.substr(0, 18) == "X-MOZ-SNOOZE-TIME-") {
                // We have a snooze time for a recurring event, add it to our object
                snoozeObj[prop.name.substr(18)] = prop.value;
            }
        }
        if (Object.keys(snoozeObj).length > 0) {
            snoozeValue = JSON.stringify(snoozeObj);
        }
    }
    // Now save the snooze object in source format as an extended property. Do
    // so always, since its currently impossible to unset extended properties.
    addExtendedProperty("X-GOOGLE-SNOOZE-RECUR", snoozeValue, true);

    // recurrence information
    if (aItem.recurrenceInfo) {
        itemData.recurrence = [];
        let recurrenceItems = aItem.recurrenceInfo.getRecurrenceItems({});
        for each (let ritem in recurrenceItems) {
            let prop = ritem.icalProperty;
            if (ritem instanceof Components.interfaces.calIRecurrenceDate) {
                // EXDATES require special casing, since they might contain
                // a TZID. To avoid the need for conversion of TZID strings,
                // convert to UTC before serialization.
                prop.valueAsDatetime = ritem.date.getInTimezone(cal.UTC());
            }
            itemData.recurrence.push(prop.icalString.trim());
        }
    } else if (aItem.recurrenceId) {
        itemData.originalStartTime = dateToJSON(aItem.recurrenceId);
        let parentMeta = getItemMetadata(aOfflineStorage, aItem.parentItem);
        itemData.recurringEventId = parentMeta ? parentMeta.path : aItem.id.replace("@google.com", "");
    }

    return itemData;
}

/**
 * Converts a calITodo to a JS Object that can be serialized to JSON.
 *
 * @param aItem         The item to convert.
 * @return              A JS Object representing the item.
 */
function TaskToJSON(aItem, aOfflineStorage, aIsImport) {
    function setIf(data, prop, value) {
        if (value) data[prop] = value;
    }

    let itemData = {};

    setIf(itemData, "id", aItem.id);
    setIf(itemData, "title", aItem.title);
    setIf(itemData, "notes", aItem.getProperty("DESCRIPTION"));
    setIf(itemData, "position", aItem.getProperty("X-SORTKEY"));
    itemData.status = (aItem.isCompleted ? "completed" : "needsAction");

    if (aItem.dueDate) {
        let dueDate = aItem.dueDate.getInTimezone(cal.UTC());
        dueDate.isDate = false;
        itemData.due = cal.toRFC3339(dueDate);
    }
    setIf(itemData, "completed", cal.toRFC3339(aItem.completedDate));

    for each (let relation in aItem.getRelations({})) {
        if (relation.relId &&
            (!relation.relType || relation.relType == "PARENT")) {
            itemData.parent = relation.relId;
            break;
        }
    }

    let attachments = aItem.getAttachments({});
    if (attachments.length) itemData.links = [];
    for each (let attach in aItem.getAttachments({})) {
        let attachData = {};
        attachData.link = attach.uri.spec;
        attachData.description = attach.getParameter("FILENAME");
        attachData.type = attach.getParameter("X-TYPE");
        itemData.links.push(attachData);
    }

    return itemData;
}

/**
 * Convenience function to convert any item type (task/event) to its JSON
 * representation
 *
 * @param aItem         The item to convert
 * @return              A JS Object representing the item.
 */
function ItemToJSON(aItem, aOfflineStorage, aIsImport) {
    if (cal.isEvent(aItem)) {
        return EventToJSON(aItem, aOfflineStorage, aIsImport);
    } else if (cal.isToDo(aItem)) {
        return TaskToJSON(aItem, aOfflineStorage, aIsImport);
    } else {
        cal.ERROR("[calGoogleCalendar] Invalid item type: " + aItem.icalString);
        return null;
    }
}

/**
 * Sets up the recurrence info on the item
 *
 * @param aItem              The item to setup recurrence for.
 * @param aRecurrence        The JSON entry describing recurrence.
 */
function setupRecurrence(aItem, aRecurrence, aTimezone) {
    if (!aRecurrence) {
        return;
    }

    if (!aItem.recurrenceInfo) {
        aItem.recurrenceInfo = cal.createRecurrenceInfo(aItem);
    } else {
        aItem.recurrenceInfo.clearRecurrenceItems();
    }

    let rootComp;
    try {
        let vevent = "BEGIN:VEVENT\r\n" + aRecurrence.join("\r\n") + "\r\nEND:VEVENT";
        rootComp = cal.getIcsService().parseICS(vevent, null);
    } catch (e) {
        cal.ERROR("[calGoogleCalendar] Unable to parse recurrence item: " + vevent);
    }

    let hasRecurringRules = false;
    for (let prop = rootComp.getFirstProperty("ANY");
         prop;
         prop = rootComp.getNextProperty("ANY")) {
       switch (prop.propertyName) {
            case "RDATE":
            case "EXDATE":
                let recItem = Components.classes["@mozilla.org/calendar/recurrence-date;1"]
                              .createInstance(Components.interfaces.calIRecurrenceDate);
                try {
                    recItem.icalProperty = prop;
                    aItem.recurrenceInfo.appendRecurrenceItem(recItem);
                    hasRecurringRules = true;
                } catch (e) {
                    cal.ERROR("[calGoogleCalendar] Error parsing " +
                              prop.propertyName + " (" +
                              prop.icalString + "):" + e);
                }
                break;
            case "RRULE":
                let recRule = cal.createRecurrenceRule();
                try {
                    recRule.icalProperty = prop;
                    aItem.recurrenceInfo.appendRecurrenceItem(recRule);
                    hasRecurringRules = true;
                } catch (e) {
                    cal.ERROR("[calGoogleCalendar] Error parsing RRULE (" +
                              prop.icalString + "):" + e);
                }
                break;
        }
    }

    if (!hasRecurringRules) {
        // If there were no parsable recurrence items, then clear the
        // recurrence info.
        aItem.recurrenceInfo = null;
    }
}

/**
 * Create an alarm from the JSON reminder entry
 *
 * @param aEntry            The JSON reminder entry.
 * @param aDefault          (optional) If true, this is a default alarm.
 * @return                  The translated calIAlarm.
 */
function JSONToAlarm(aEntry, aDefault) {
    const alarmActionMap = {
        email: "EMAIL",
        popup: "DISPLAY",
        sms: "SMS"
    };
    let alarm = cal.createAlarm();
    let alarmOffset = cal.createDuration();
    alarm.action = alarmActionMap[aEntry.method] || "DISPLAY";
    alarm.related = Components.interfaces.calIAlarm.ALARM_RELATED_START;
    alarmOffset.inSeconds = -aEntry.minutes * 60;
    alarmOffset.normalize();
    alarm.offset = alarmOffset;

    if (aDefault) {
        alarm.setProperty("X-DEFAULT-ALARM", "TRUE");
    }
    return alarm;
}

/**
 * Converts a JS Object representing the event to a calIEvent.
 *
 * @param aEntry            The JS Object representation of the item.
 * @param aCalendar         The calendar this item will belong to.
 * @param aDefaultReminders An array of default reminders, as a JS Object.
 * @param aMetadata         (optional,out) Item metadata that should be set.
 * @return                  The calIEvent with the item data.
 */
function JSONToEvent(aEntry, aCalendar, aDefaultReminders, aReferenceItem, aMetadata) {
    aDefaultReminders = aDefaultReminders || [];
    aMetadata = aMetadata || {};
    let item = aReferenceItem || cal.createEvent();
    item.calendar = aCalendar.superCalendar;
    let privateProps = ("extendedProperties" in aEntry && aEntry.extendedProperties.private) || {};
    let sharedProps = ("extendedProperties" in aEntry && aEntry.extendedProperties.shared) || {};
    let accessRole = aCalendar.getProperty("settings.accessRole");

    LOGverbose("[calGoogleCalendar] Parsing entry:\n" +
               JSON.stringify(aEntry, null, " ") + "\n");

    if (!aEntry || !("kind" in aEntry) || aEntry.kind != "calendar#event") {
        cal.ERROR("[calGoogleCalendar] Attempt to decode invalid event: " +
                  (aEntry && JSON.stringify(aEntry, null, " ")));
        return null;
    }

    let tzs = cal.getTimezoneService();
    let calendarZoneName = aCalendar.getProperty("settings.timeZone");
    let calendarZone = calendarZoneName ? tzs.getTimezone(calendarZoneName) : cal.calendarDefaultTimezone();

    try {
        item.id = aEntry.iCalUID || ((aEntry.recurringEventId || aEntry.id) + "@google.com");
        item.recurrenceId = JSONToDate(aEntry.originalStartTime, calendarZone);
        if (!item.recurrenceId) {
            // Sometimes recurring event instances don't have recurringEventId
            // set, but are still instances. work around by detecting the ID.
            // http://code.google.com/a/google.com/p/apps-api-issues/issues/detail?id=3199
            let hack = aEntry.id.match(/([^_]*)_(\d{8}(T\d{6}Z)?)$/);
            item.recurrenceId = hack ? cal.createDateTime(hack[2]) : null;
        }
        item.status = (aEntry.status ? aEntry.status.toUpperCase() : null);
        item.title = aEntry.summary;
        if (accessRole == "freeBusyReader") {
            item.title = getProviderString("busyTitle", aCalendar.name);
        }
        item.privacy = (aEntry.visibility ? aEntry.visibility.toUpperCase() : null);

        item.setProperty("URL", aEntry.htmlLink && aCalendar.uri.schemeIs("https") ? aEntry.htmlLink.replace(/^http:/, "https:") : aEntry.htmlLink);
        item.setProperty("CREATED", (aEntry.created ? cal.fromRFC3339(aEntry.created, calendarZone).getInTimezone(cal.UTC()) : null));
        item.setProperty("DESCRIPTION", aEntry.description);
        item.setProperty("LOCATION", aEntry.location);
        item.setProperty("TRANSP", (aEntry.transparency ? aEntry.transparency.toUpperCase() : null));
        item.setProperty("SEQUENCE", aEntry.sequence);
        aMetadata.etag = aEntry.etag;
        aMetadata.path = aEntry.id;

        // organizer
        if (aEntry.organizer) {
            let organizer = cal.createAttendee();
            if (aEntry.organizer.email) {
                organizer.id = "mailto:" + aEntry.organizer.email;
            } else {
                organizer.id = "urn:id:" + aEntry.organizer.id;
            }
            organizer.commonName = aEntry.organizer.displayName;
            organizer.isOrganizer = true;
            item.organizer = organizer;

            if (aEntry.organizer.self && aCalendar.session) {
                // Remember the display name, we found ourselves!
                aCalendar.setProperty("organizerCN", aEntry.organizer.displayName);
            }
        } else {
            item.organizer = null;
        }

        // start and end
        item.startDate = JSONToDate(aEntry.start, calendarZone);
        item.endDate = JSONToDate(aEntry.end, calendarZone);

        // recurrence
        setupRecurrence(item, aEntry.recurrence, calendarZone);

        // attendees
        item.removeAllAttendees();
        if (aEntry.attendees) {
            const statusMap = {
                needsAction: "NEEDS-ACTION",
                declined: "DECLINED",
                tentative: "TENTATIVE",
                accepted: "ACCEPTED"
            };
            for each (let attendeeEntry in aEntry.attendees) {
                let attendee = cal.createAttendee();
                if (attendeeEntry.email) {
                    attendee.id = "mailto:" + attendeeEntry.email;
                } else {
                    attendee.id = "urn:id:" + attendeeEntry.id;
                }
                attendee.commonName = attendeeEntry.displayName;

                if (attendeeEntry.optional) {
                    attendee.role = "OPT-PARTICIPANT";
                } else {
                    attendee.role = "REQ-PARTICIPANT";
                }

                attendee.participationStatus = statusMap[attendeeEntry.responseStatus];

                if (attendeeEntry.resource) {
                    attendee.userType = "RESOURCE";
                } else {
                    attendee.userType = "INDIVIDUAL";
                }

                item.addAttendee(attendee);
            }
        }

        // reminders
        item.clearAlarms();

        if (aEntry.reminders) {
            if (aEntry.reminders.useDefault) {
                aDefaultReminders.forEach(item.addAlarm, item);

                if (aDefaultReminders.length) {
                    item.deleteProperty("X-DEFAULT-ALARM");
                } else {
                    // Nothing to make clear we are using default reminders.
                    // Set an X-PROP until VALARM extensions are supported
                    item.setProperty("X-DEFAULT-ALARM", "TRUE");
                }
            }

            if (aEntry.reminders.overrides) {
                for each (let reminderEntry in aEntry.reminders.overrides) {
                    item.addAlarm(JSONToAlarm(reminderEntry));
                }
            }
        }

        // extendedProperty (alarmLastAck)
        item.alarmLastAck = cal.fromRFC3339(privateProps["X-MOZ-LASTACK"], calendarZone);

        // extendedProperty (snooze time)
        let dtSnoozeTime = cal.fromRFC3339(privateProps["X-MOZ-SNOOZE-TIME"], calendarZone);
        let snoozeProperty = (dtSnoozeTime ? dtSnoozeTime.icalString : null);
        item.setProperty("X-MOZ-SNOOZE-TIME", snoozeProperty);

        // extendedProperty (snooze recurring alarms)
        if (item.recurrenceInfo) {
            // Transform back the string into our snooze properties
            let snoozeObj;
            try {
                let snoozeString = privateProps["X-GOOGLE-SNOOZE-RECUR"];
                snoozeObj = JSON.parse(snoozeString);
            } catch (e) {
                // Just swallow parsing errors, not so important.
            }

            if (snoozeObj) {
                for (let rid in snoozeObj) {
                    item.setProperty("X-MOZ-SNOOZE-TIME-" + rid, snoozeObj[rid]);
                }
            }
        }

        // Google does not support categories natively, but allows us to store
        // data as an "extendedProperty", and here it's going to be retrieved
        // again
        let categories = cal.categoriesStringToArray(sharedProps["X-MOZ-CATEGORIES"]);
        item.setCategories(categories.length, categories);

        // updated (This must be set last!)
        if (aEntry.updated) {
            let updated = cal.fromRFC3339(aEntry.updated, calendarZone).getInTimezone(cal.UTC());
            item.setProperty("DTSTAMP", updated);
            item.setProperty("LAST-MODIFIED", updated);
        }
    } catch (e) {
        cal.ERROR(stringException(e));
        throw e;
    }
    return item;
}

/**
 * Converts a JS Object representing the task to a calITodo.
 *
 * @param aEntry            The JS Object representation of the item.
 * @param aCalendar         The calendar this item will belong to.
 * @param aMetadata         (optional,out) Item metadata that should be set.
 * @return                  The calITodo with the item data.
 */
function JSONToTask(aEntry, aCalendar, aDefaultReminders, aReferenceItem, aMetadata) {
    aDefaultReminders = aDefaultReminders || [];
    aMetadata = aMetadata || {};
    if (!aEntry || !("kind" in aEntry) || aEntry.kind != "tasks#task") {
        cal.ERROR("[calGoogleCalendar] Attempt to decode invalid task: " +
                  (aEntry && JSON.stringify(aEntry, null, " ")));
        return null;
    }
    let item = cal.createTodo();
    item.calendar = aCalendar.superCalendar;

    let tzs = cal.getTimezoneService();
    let calendarZoneName = aCalendar.getProperty("settings.timeZone");
    let calendarZone = calendarZoneName ? tzs.getTimezone(calendarZoneName) : cal.calendarDefaultTimezone();

    try {
        item.id = aEntry.id;
        item.title = aEntry.title || "";
        item.setProperty("DESCRIPTION", aEntry.notes);
        item.setProperty("X-GOOGLE-SORTKEY", aEntry.position);
        item.isCompleted = (aEntry.status == "completed");

        aMetadata.etag = aEntry.etag;
        aMetadata.path = aEntry.id;

        // Google Tasks don't have a due time, but still use 0:00 UTC. They
        // should really be using floating time.
        item.dueDate = cal.fromRFC3339(aEntry.due, cal.floating())
        if (item.dueDate) {
            item.dueDate.timezone = cal.floating();
            item.dueDate.isDate = true;
        }
        item.completedDate = cal.fromRFC3339(aEntry.completed, calendarZone);
        if (aEntry.deleted) {
            item.status = "CANCELLED";
        } else if (aEntry.status == "needsAction") {
            item.status = "NEEDS-ACTION";
        } else {
            item.status = "COMPLETED";
        }

        if (aEntry.parent) {
            let relation = cal.createRelation();
            relation.relType = "PARENT";
            relation.relId = aEntry.parent;
            item.addRelation(relation);
        }

        if (aEntry.links) {
            for each (let link in aEntry.links) {
                let attach = cal.createAttachment();
                attach.uri = Services.io.newURI(link.link, null, null);
                attach.setParameter("FILENAME", link.description);
                attach.setParameter("X-GOOGLE-TYPE", link.type);
                item.addAttachment(attach);
            }
        }

        // updated (This must be set last!)
        item.setProperty("DTSTAMP", cal.fromRFC3339(aEntry.updated, calendarZone).getInTimezone(cal.UTC()));
        item.setProperty("LAST-MODIFIED", cal.fromRFC3339(aEntry.updated, calendarZone).getInTimezone(cal.UTC()));
    } catch (e) {
        cal.ERROR("[calGoogleCalendar] Error parsing JSON tasks stream: " + stringException(e));
        throw e;
    }

    return item;
}

/**
 * Convenience function to convert any JSON reply (task/event) to a calendar
 * item.
 *
 * @param aEntry            The JS Object representation of the item.
 * @param aCalendar         The calendar this item will belong to.
 * @param aMetadata         (optional,out) Item metadata that should be set.
 * @return                  The specialized calIItemBase with the item data.
 */
function JSONToItem(aEntry, aCalendar, aDefaultReminders, aReferenceItem, aMetadata) {
    aDefaultReminders = aDefaultReminders || [];
    aMetadata = aMetadata || {};
    if (aEntry.kind == "tasks#task") {
        return JSONToTask.apply(null, arguments);
    } else if (aEntry.kind == "calendar#event") {
        return JSONToEvent.apply(null, arguments);
    } else {
        cal.ERROR("[calGoogleCalendar] Invalid item type: " + (aEntry ? aEntry.kind : "<no entry>"));
        return null;
    }
}

/**
 * Save items spread over multiple pages to the calendar's offline storage.
 *
 * @param aCalendar     The calendar the events belong to.
 */
function ItemSaver(aCalendar) {
    this.calendar = aCalendar;
    this.offlineStorage = this.calendar.offlineStorage;
    this.promiseOfflineStorage = promisifyCalendar(this.calendar.offlineStorage);
    this.missingParents = [];
    this.masterItems = Object.create(null);
    this.metaData = Object.create(null);
    this.activity = new ActivityShell(aCalendar);
}
ItemSaver.prototype = {
    masterItems: null,
    missingParents: null,

    /**
     * Convenience function to apply a list of items (task/event) in JSON form to
     * the given calendar.
     *
     * @param aData         The JS Object from the list response.
     * @return              A promise resolved when completed.
     */
    parseItemStream: function(aData) {
        if (aData.kind == "calendar#events") {
            this.activity.type = "Event";
            return this.parseEventStream(aData);
        } else if (aData.kind == "tasks#tasks") {
            this.activity.type = "Task";
            return this.parseTaskStream(aData);
        } else {
            let message = "Invalid Stream type: " + (aData ? aData.kind || aData.toSource() : null);
            throw new Components.Exception(message, Components.results.NS_ERROR_FAILURE);
        }
    },

    /**
     * Parse the response from Google's list command into tasks and modify the
     * calendar's offline storage to reflect those changes.
     *
     * @param aData         The JS Object from the list response.
     * @return              A promise resolved when completed.
     */
    parseTaskStream: function(aData) {
        return Task.spawn(function() {
            if (!aData.items || !aData.items.length) {
                cal.LOG("[calGoogleCalendar] No tasks have been changed on " + this.calendar.name);
            } else {
                cal.LOG("[calGoogleCalendar] Parsing " + aData.items.length + " received tasks");

                let total = aData.items.length;
                let committedUnits = 0;
                this.activity.addTotal(total);

                for (let cur = 0; cur < total; cur++) {
                    let entry = aData.items[cur];
                    //let metaData = Object.create(null);
                    let metaData = {};
                    let item = JSONToTask(entry, this.calendar, null, null, metaData);
                    this.metaData[item.hashId] = metaData;

                    yield this.commitItem(item);

                    if (yield spinEventLoop()) {
                        this.activity.addProgress(cur - committedUnits);
                        committedUnits = cur;
                    }
                }
            }
        }.bind(this));
    },

    /**
     * Parse the response from Google's list command into events.
     *
     * @param aData         The JS Object from the list response.
     * @return              A promise resolved when completed.
     */
    parseEventStream: function(aData) {
        return Task.spawn(function() {
            if (aData.timeZone) {
                cal.LOG("[calGoogleCalendar] Timezone for " + this.calendar.name + " is " + aData.timeZone);
                this.calendar.setProperty("settings.timeZone", aData.timeZone);
            }

            if (!aData.items || !aData.items.length) {
                cal.LOG("[calGoogleCalendar] No events have been changed on " + this.calendar.name);
                return;
            } else {
                cal.LOG("[calGoogleCalendar] Parsing " + aData.items.length + " received events");
            }

            let exceptionItems = [];
            let defaultReminders = (aData.defaultReminders || []).map(function(x) { return JSONToAlarm(x, true); });

            // In the first pass, we go through the data and sort into master items and
            // exception items, as the master item might be after the exception in the
            // stream.

            let total = aData.items.length;
            let committedUnits = 0;
            this.activity.addTotal(total);

            for (let cur = 0; cur < total; cur++) {
                let entry = aData.items[cur];
                let metaData = Object.create(null);
                let item = JSONToEvent(entry, this.calendar, defaultReminders, null, metaData);
                LOGitem(item);

                this.metaData[item.hashId] = metaData;

                if (item.recurrenceId) {
                    exceptionItems.push(item);
                } else {
                    this.masterItems[item.id] = item;
                    yield this.commitItem(item);
                }

                if (yield spinEventLoop()) {
                    this.activity.addProgress(cur - committedUnits);
                    committedUnits = cur;
                }
            }

            // Go through all exceptions and attempt to find the master item in the
            // item stream. If it can't be found there, the offline storage is asked
            // for the parent item. If it still can't be found, then we have to do
            // this at the end.
            for each (let exc in exceptionItems) {
                // If we have the master item in our cache then use it. Otherwise
                // attempt to get it from the offline storage.
                let item;
                if (exc.id in this.masterItems) {
                    item = this.masterItems[exc.id];
                } else {
                    item = (yield this.promiseOfflineStorage.getItem(exc.id))[0];
                }

                // If an item was found, we can process this exception. Otherwise
                // save it for later, maybe its on the next page of the request.
                if (item) {
                    if (!item.isMutable) {
                        item = item.clone();
                    }
                    yield this.processException(exc, item);
                } else {
                    this.missingParents.push(exc);
                }

                yield this.commitException(exc);
            }
        }.bind(this));
    },

    /**
     * Handle the exception for the given item by committing it to the
     * calendar.
     *
     * @param exc       The exception to process.
     * @param item      The item the exception belongs to.
     * @return          A promise resolved when the item is added to the
     *                    calendar.
     */
    processException: function(exc, item) {
        if (item.status == "CANCELLED") {
            // Cancelled master items don't have the full amount of
            // information, specifically no recurrence info. Since they are
            // cancelled anyway, we can just ignore processing this exception.
            return Promise.resolve();
        }

        exc.parentItem = item;
        if (exc.status == "CANCELLED") {
            // Canceled means the occurrence is an EXDATE.
            item.recurrenceInfo.removeOccurrenceAt(exc.recurrenceId);
        } else {
            // Not canceled means the occurrence was modified.
            item.recurrenceInfo.modifyException(exc, true);
        }
        this.masterItems[item.id] = item;
        return this.commitItem(item);
    },

    /**
     * Handle final tasks for the exception. This means saving the metadat for the exception.
     *
     * @param exc       The exception to process.
     */
    commitException: function(exc) {
        // Make sure we also save the etag of the exception for a future request.
        if (exc.hashId in this.metaData) {
            saveItemMetadata(this.offlineStorage, exc.hashId, this.metaData[exc.hashId]);
        }
    },

    /**
     * Handle adding the item to the calendar, or removing it if its a cancelled item.
     *
     * @param item      The item to process.
     * @return          A promise resolved when the process is completed.
     */
    commitItem: function(item) {
        return Task.spawn(function() {
            // This is a normal item. If it was canceled, then it should be
            // deleted, otherwise it should be either added or modified. The
            // relaxed mode of the destination calendar takes care of the latter
            // two cases.
            if (item.status == "CANCELLED") {
                yield this.promiseOfflineStorage.deleteItem(item);
            } else {
                yield this.promiseOfflineStorage.modifyItem(item, null);
            }

            if (item.hashId in this.metaData) {
                // Make sure the metadata is up to date for the next request
                saveItemMetadata(this.offlineStorage, item.hashId, this.metaData[item.hashId]);
            }
        }.bind(this));
    },

    /**
     * Complete the item saving, this will take care of all steps required
     * after the last request.
     */
    complete: function() {
        return this.processRemainingExceptions().then(function() {
            this.activity.complete();
        }.bind(this));
    },

    /**
     * Handle all remaining exceptions in the item saver. Ensures that any
     * missing master items are searched for or created.
     *
     * @return          A promise resolved on completion
     */
    processRemainingExceptions: function() {
        return Task.spawn(function() {
            for each (let exc in this.missingParents) {
                let item = (yield this.promiseOfflineStorage.getItem(exc.id))[0];
                if (item) {
                    yield this.processException(exc, item);
                } else if (exc.status != "CANCELLED") {
                    // If the item could not be found, it could be that the
                    // user is invited to an instance of a recurring event.
                    // Unless this is a cancelled exception, create a mock
                    // parent item with one positive RDATE.
                    let item = exc.clone();
                    item.recurrenceId = null;
                    item.calendar = this.calendar.superCalendar;
                    item.startDate = exc.recurrenceId.clone();
                    item.setProperty("X-MOZ-FAKED-MASTER", "1");
                    if (!item.id) {
                        // Exceptions often don't have the iCalUID field set,
                        // we need to fake it from the google id.
                        let meta = this.metaData[exc.hashId];
                        item.id = meta.path + "@google.com";
                    }
                    item.recurrenceInfo = cal.createRecurrenceInfo(item);
                    let rdate = Components.classes["@mozilla.org/calendar/recurrence-date;1"]
                                          .createInstance(Components.interfaces.calIRecurrenceDate);
                    rdate.date = exc.recurrenceId;
                    item.recurrenceInfo.appendRecurrenceItem(rdate);
                    yield this.commitItem(item);
                }
            }
        }.bind(this));
    }
};

/**
 * A wrapper for nsIActivity to handle the synchronization process.
 *
 * @param aCalendar     The calendar for this activity.
 */
function ActivityShell(aCalendar) {
    this.calendar = aCalendar;

    if ('@mozilla.org/activity-process;1' in Components.classes) {
        this.init();
    }
}

ActivityShell.prototype = {
    act: null,
    actMgr: null,
    calendar: null,
    type: null,

    init: function() {
        this.actMgr = Components.classes['@mozilla.org/activity-manager;1']
                                .getService(Components.interfaces.nsIActivityManager);
        this.act =  Components.classes['@mozilla.org/activity-process;1']
                              .createInstance(Components.interfaces.nsIActivityProcess);
        this.act.init(getProviderString("syncStatus", this.calendar.name), this);
        this.act.iconClass = "syncMail";
        this.act.contextType = "gdata-calendar";
        this.act.contextObj = this.calendar;
        this.act.contextDisplayText = this.calendar.name;
        this.act.state = Components.interfaces.nsIActivityProcess.STATE_INPROGRESS;

        this.actMgr.addActivity(this.act);
    },

    addProgress: function(units) {
        if (!this.act) {
            return;
        }
        this.setProgress(this.act.workUnitComplete + units, this.act.totalWorkUnits);
    },

    addTotal: function(units) {
        if (!this.act) {
            return;
        }
        this.setProgress(this.act.workUnitComplete, this.act.totalWorkUnits + units);
    },

    setProgress: function(cur, total) {
        if (!this.act) {
            return;
        }
        let str = getProviderString("syncProgress" + this.type, this.calendar.name, cur, total);
        this.act.setProgress(str, cur, total);
    },

    complete: function() {
        if (!this.act) {
            return;
        }
        let total = this.act.totalWorkUnits;
        this.act.setProgress("", total, total);
        this.act.state = Components.interfaces.nsIActivityProcess.STATE_COMPLETED;
        this.actMgr.removeActivity(this.act.id);
    }
};

/**
 * Check if the response is a conflict and handle asking the user what to do
 * about it. Will resolve if there is no conflict or with new item data.
 * where status is a conflict status, see the end of this function.
 *
 * @param aOperation        The operation to check.
 * @param aCalendar         The calendar this operation happens in
 * @param aItem             The item that was passed to the server
 * @return                  A promise resolved when the conflict has been resolved
 */
function checkResolveConflict(aOperation, aCalendar, aItem) {
    return Task.spawn(function() {
        cal.LOG("[calGoogleCalendar] A conflict occurred for " + aItem.title);

        let method = (aOperation.type == aOperation.DELETE ? "delete" : "modify")
        let overwrite = cal.promptOverwrite(method, aItem);
        if (overwrite) {
            // The user has decided to overwrite the server version. Send again
            // overwriting the server version with If-Match: *
            cal.LOG("[calGoogleCalendar] Resending " + method + " and ignoring ETag");
            aOperation.addRequestHeader("If-Match", "*");
            try {
                throw new Task.Result(yield aCalendar.session.asyncItemRequest(aOperation));
            } catch (e) {
                if (e.result == calGoogleRequest.RESOURCE_GONE &&
                    aOperation.type == aOperation.DELETE) {
                    // The item was deleted on the server and locally, we don't need to
                    // notify the user about this.
                    throw new Task.Result(null);
                } else {
                    throw e;
                }
            }
        } else {
            // The user has decided to throw away changes, use our existing
            // means to update the item locally.
            cal.LOG("[calGoogleCalendar] Reload requested, cancelling change of " + aItem.title);
            aCalendar.superCalendar.refresh();
            throw Components.Exception(null, cIE.OPERATION_CANCELLED);
        }
    });
}

/**
 * Get a string from the gdata properties file
 *
 * @param aStringName  The name of the string within the properties file
 * @param ...aParams   Optional parameters to format the string
 * @return             The localized string value.
 */
function getProviderString(aStringName /*...aParams */) {
    let aParams = Array.slice(arguments, 1);
    return cal.calGetString("gdata", aStringName, aParams, "gdata-provider");
}

/**
 * Monkey patch the function with the name x on obj and overwrite it with func.
 * The first parameter of this function is the original function that can be
 * called at any time.
 *
 * @param obj           The object the function is on.
 * @param name          The string name of the function.
 * @param func          The function to monkey patch with.
 */
function monkeyPatch(obj, x, func) {
    let old = obj[x];
    obj[x] = function() {
        let parent = old.bind(obj);
        let args = Array.slice(arguments);
        args.unshift(parent);
        try {
            return func.apply(obj, args);
        } catch (e) {
            Components.utils.reportError(e);
            throw e;
        }
    }
}

/**
 * Returns a promise that resolves after pending events have been processed.
 */
function spinEventLoop() {
    let diff = new Date() - spinEventLoop.lastSpin;
    if (diff < Preferences.get("calendar.threading.latency", 250)) {
        return Promise.resolve(false);
    }
    spinEventLoop.lastSpin = new Date();

    let deferred = PromiseUtils.defer();
    Services.tm.currentThread.dispatch({ run: function() { return deferred.resolve(true); } }, 0);
    return deferred.promise;
}
spinEventLoop.lastSpin = new Date();