summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/import/content/importDialog.js
blob: cf029d4989c7592092d91af936dc5967cb5bcb11 (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
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
/* -*- Mode: Javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 *
 * 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/. */

"use strict";

/* import-globals-from ../../extensions/newsblog/feed-subscriptions.js */

var { MailServices } = ChromeUtils.import(
  "resource:///modules/MailServices.jsm"
);
var { MailUtils } = ChromeUtils.import("resource:///modules/MailUtils.jsm");

var gImportType = null;
var gImportMsgsBundle;
var gFeedsBundle;
var gImportService = null;
var gSuccessStr = null;
var gErrorStr = null;
var gInputStr = null;
var gProgressInfo = null;
var gSelectedModuleName = null;
var gAddInterface = null;
var gNewFeedAcctCreated = false;

window.addEventListener("DOMContentLoaded", OnLoadImportDialog);
window.addEventListener("unload", OnUnloadImportDialog);

function OnLoadImportDialog() {
  gImportMsgsBundle = document.getElementById("bundle_importMsgs");
  gFeedsBundle = document.getElementById("bundle_feeds");
  gImportService = Cc["@mozilla.org/import/import-service;1"].getService(
    Ci.nsIImportService
  );

  gProgressInfo = {};
  gProgressInfo.progressWindow = null;
  gProgressInfo.importInterface = null;
  gProgressInfo.mainWindow = window;
  gProgressInfo.intervalState = 0;
  gProgressInfo.importSuccess = false;
  gProgressInfo.importType = null;
  gProgressInfo.localFolderExists = false;

  gSuccessStr = Cc["@mozilla.org/supports-string;1"].createInstance(
    Ci.nsISupportsString
  );
  gErrorStr = Cc["@mozilla.org/supports-string;1"].createInstance(
    Ci.nsISupportsString
  );
  gInputStr = Cc["@mozilla.org/supports-string;1"].createInstance(
    Ci.nsISupportsString
  );

  // look in arguments[0] for parameters
  if (
    "arguments" in window &&
    window.arguments.length >= 1 &&
    "importType" in window.arguments[0] &&
    window.arguments[0].importType
  ) {
    // keep parameters in global for later
    gImportType = window.arguments[0].importType;
    gProgressInfo.importType = gImportType;
  } else {
    gImportType = "all";
    gProgressInfo.importType = "all";
  }

  SetUpImportType();

  // on startup, set the focus to the control element
  // for accessibility reasons.
  // if we used the wizardOverlay, we would get this for free.
  // see bug #101874
  document.getElementById("importFields").focus();
}

/**
 * After importing, need to restart so that imported address books and mail
 * accounts can show up.
 */
function OnUnloadImportDialog() {
  let nextButton = document.getElementById("forward");
  if (
    gImportType == "settings" &&
    !gErrorStr.data &&
    nextButton.label == nextButton.getAttribute("finishedval")
  ) {
    MailUtils.restartApplication();
  }
}

function SetUpImportType() {
  // set dialog title
  document.getElementById("importFields").value = gImportType;

  // Mac migration not working right now, so disable it.
  if (Services.appinfo.OS == "Darwin") {
    document.getElementById("allRadio").setAttribute("disabled", "true");
    if (gImportType == "all") {
      document.getElementById("importFields").value = "addressbook";
    }
  }

  let fileLabel = document.getElementById("fileLabel");
  let accountLabel = document.getElementById("accountLabel");
  if (gImportType == "feeds") {
    accountLabel.hidden = false;
    fileLabel.hidden = true;
    ListFeedAccounts();
  } else {
    accountLabel.hidden = true;
    fileLabel.hidden = false;
    ListModules();
  }
}

function SetDivText(id, text) {
  var div = document.getElementById(id);

  if (div) {
    if (!div.hasChildNodes()) {
      var textNode = document.createTextNode(text);
      div.appendChild(textNode);
    } else if (div.childNodes.length == 1) {
      div.firstChild.nodeValue = text;
    }
  }
}

function CheckIfLocalFolderExists() {
  try {
    if (MailServices.accounts.localFoldersServer) {
      gProgressInfo.localFolderExists = true;
    }
  } catch (ex) {
    gProgressInfo.localFolderExists = false;
  }
}

function showWizardBox(index) {
  let stateBox = document.getElementById("stateBox");
  for (let i = 0; i < stateBox.children.length; i++) {
    stateBox.children[i].hidden = i != index;
  }
}

function getWizardBoxIndex() {
  let selectedIndex = 0;
  for (let element of document.getElementById("stateBox").children) {
    if (!element.hidden) {
      return selectedIndex;
    }
    selectedIndex++;
  }
  return selectedIndex - 1;
}

async function ImportDialogOKButton() {
  var listbox = document.getElementById("moduleList");
  var header = document.getElementById("header");
  var progressMeterEl = document.getElementById("progressMeter");
  progressMeterEl.value = 0;
  var progressStatusEl = document.getElementById("progressStatus");
  var progressTitleEl = document.getElementById("progressTitle");

  // better not mess around with navigation at this point
  var nextButton = document.getElementById("forward");
  nextButton.setAttribute("disabled", "true");
  var backButton = document.getElementById("back");
  backButton.setAttribute("disabled", "true");

  if (listbox && listbox.selectedCount == 1) {
    let module = "";
    let name = "";
    gImportType = document.getElementById("importFields").value;
    let index = listbox.selectedItem.getAttribute("list-index");
    if (index == -1) {
      return false;
    }
    if (gImportType == "feeds") {
      module = "Feeds";
    } else {
      module = gImportService.GetModule(gImportType, index);
      name = gImportService.GetModuleName(gImportType, index);
    }
    gSelectedModuleName = name;
    if (module) {
      // Fix for Bug 57839 & 85219
      // We use localFoldersServer(in nsIMsgAccountManager) to check if Local Folder exists.
      // We need to check localFoldersServer before importing "mail", "settings", or "filters".
      // Reason: We will create an account with an incoming server of type "none" after
      // importing "mail", so the localFoldersServer is valid even though the Local Folder
      // is not created.
      if (
        gImportType == "mail" ||
        gImportType == "settings" ||
        gImportType == "filters"
      ) {
        CheckIfLocalFolderExists();
      }

      let meterText = "";
      let error = {};
      switch (gImportType) {
        case "mail":
          if (await ImportMail(module, gSuccessStr, gErrorStr)) {
            // We think it was a success, either, we need to
            // wait for the import to finish
            // or we are done!
            if (gProgressInfo.importInterface == null) {
              ShowImportResults(true, "Mail");
              return true;
            }

            meterText = gImportMsgsBundle.getFormattedString(
              "MailProgressMeterText",
              [name]
            );
            header.setAttribute("description", meterText);

            progressStatusEl.setAttribute("label", "");
            progressTitleEl.setAttribute("label", meterText);

            showWizardBox(2);
            gProgressInfo.progressWindow = window;
            gProgressInfo.intervalState = setInterval(
              ContinueImportCallback,
              100
            );
            return true;
          }

          ShowImportResults(false, "Mail");
          // Re-enable the next button, as we are here, because the user cancelled the picking.
          // Enable next, so they can try again.
          nextButton.removeAttribute("disabled");
          // Also enable back button so that users can pick other import options.
          backButton.removeAttribute("disabled");
          return false;

        case "feeds":
          if (await ImportFeeds()) {
            // Successful completion of pre processing and launch of async import.
            meterText = document.getElementById("description").textContent;
            header.setAttribute("description", meterText);

            progressStatusEl.setAttribute("label", "");
            progressTitleEl.setAttribute("label", meterText);
            progressMeterEl.removeAttribute("value");

            showWizardBox(2);
            return true;
          }

          // Re-enable the next button, as we are here, because the user cancelled the picking.
          // Enable next, so they can try again.
          nextButton.removeAttribute("disabled");
          // Also enable back button so that users can pick other import options.
          backButton.removeAttribute("disabled");
          return false;

        case "addressbook":
          if (await ImportAddress(module, gSuccessStr, gErrorStr)) {
            // We think it was a success, either, we need to
            // wait for the import to finish
            // or we are done!
            if (gProgressInfo.importInterface == null) {
              ShowImportResults(true, "Address");
              return true;
            }

            meterText = gImportMsgsBundle.getFormattedString(
              "AddrProgressMeterText",
              [name]
            );
            header.setAttribute("description", meterText);

            progressStatusEl.setAttribute("label", "");
            progressTitleEl.setAttribute("label", meterText);

            showWizardBox(2);
            gProgressInfo.progressWindow = window;
            gProgressInfo.intervalState = setInterval(
              ContinueImportCallback,
              100
            );

            return true;
          }

          ShowImportResults(false, "Address");
          // Re-enable the next button, as we are here, because the user cancelled the picking.
          // Enable next, so they can try again.
          nextButton.removeAttribute("disabled");
          // Also enable back button so that users can pick other import options.
          backButton.removeAttribute("disabled");
          return false;

        case "settings":
          error.value = null;
          let newAccount = {};
          if (!(await ImportSettings(module, newAccount, error))) {
            if (error.value) {
              ShowImportResultsRaw(
                gImportMsgsBundle.getString("ImportSettingsFailed"),
                null,
                false
              );
            }
            // Re-enable the next button, as we are here, because the user cancelled the picking.
            // Enable next, so they can try again.
            nextButton.removeAttribute("disabled");
            // Also enable back button so that users can pick other import options.
            backButton.removeAttribute("disabled");
            return false;
          }
          ShowImportResultsRaw(
            gImportMsgsBundle.getFormattedString("ImportSettingsSuccess", [
              name,
            ]),
            null,
            true
          );
          break;

        case "filters":
          error.value = null;
          if (!ImportFilters(module, error)) {
            if (error.value) {
              ShowImportResultsRaw(
                gImportMsgsBundle.getFormattedString("ImportFiltersFailed", [
                  name,
                ]),
                error.value,
                false
              );
            }
            // Re-enable the next button, as we are here, because the user cancelled the picking.
            // Enable next, so they can try again.
            nextButton.removeAttribute("disabled");
            // Also enable back button so that users can pick other import options.
            backButton.removeAttribute("disabled");
            return false;
          }

          if (error.value) {
            ShowImportResultsRaw(
              gImportMsgsBundle.getFormattedString("ImportFiltersPartial", [
                name,
              ]),
              error.value,
              true
            );
          } else {
            ShowImportResultsRaw(
              gImportMsgsBundle.getFormattedString("ImportFiltersSuccess", [
                name,
              ]),
              null,
              true
            );
          }

          break;
      }
    }
  }

  return true;
}

function SetStatusText(val) {
  var progressStatus = document.getElementById("progressStatus");
  progressStatus.setAttribute("label", val);
}

function SetProgress(val) {
  var progressMeter = document.getElementById("progressMeter");
  progressMeter.value = val;
}

function ContinueImportCallback() {
  gProgressInfo.mainWindow.ContinueImport(gProgressInfo);
}

function ImportSelectionChanged() {
  let listbox = document.getElementById("moduleList");
  let acctNameBox = document.getElementById("acctName-box");
  if (listbox && listbox.selectedCount == 1) {
    let index = listbox.selectedItem.getAttribute("list-index");
    if (index == -1) {
      return;
    }
    acctNameBox.setAttribute("style", "visibility: hidden;");
    if (gImportType == "feeds") {
      if (index == 0) {
        SetDivText(
          "description",
          gFeedsBundle.getString("ImportFeedsNewAccount")
        );
        let defaultName = gFeedsBundle.getString("feeds-accountname");
        document.getElementById("acctName").value = defaultName;
        acctNameBox.removeAttribute("style");
      } else {
        SetDivText(
          "description",
          gFeedsBundle.getString("ImportFeedsExistingAccount")
        );
      }
    } else {
      SetDivText(
        "description",
        gImportService.GetModuleDescription(gImportType, index)
      );
    }
  }
}

function CompareImportModuleName(a, b) {
  if (a.name > b.name) {
    return 1;
  }
  if (a.name < b.name) {
    return -1;
  }
  return 0;
}

function ListModules() {
  if (gImportService == null) {
    return;
  }

  var body = document.getElementById("moduleList");
  while (body.hasChildNodes()) {
    body.lastChild.remove();
  }

  var count = gImportService.GetModuleCount(gImportType);
  var i;

  var moduleArray = new Array(count);
  for (i = 0; i < count; i++) {
    moduleArray[i] = {
      name: gImportService.GetModuleName(gImportType, i),
      index: i,
    };
  }

  // sort the array of modules by name, so that they'll show up in the right order
  moduleArray.sort(CompareImportModuleName);

  for (i = 0; i < count; i++) {
    AddModuleToList(moduleArray[i].name, moduleArray[i].index);
  }
}

function AddModuleToList(moduleName, index) {
  var body = document.getElementById("moduleList");

  let item = document.createXULElement("richlistitem");
  let label = document.createXULElement("label");
  label.setAttribute("value", moduleName);
  item.appendChild(label);
  item.setAttribute("list-index", index);
  body.appendChild(item);
}

function ListFeedAccounts() {
  let body = document.getElementById("moduleList");
  while (body.hasChildNodes()) {
    body.lastChild.remove();
  }

  // Add item to allow for new account creation.
  let item = document.createXULElement("richlistitem");
  let label = document.createXULElement("label");
  label.setAttribute(
    "value",
    gFeedsBundle.getString("ImportFeedsCreateNewListItem")
  );
  item.appendChild(label);
  item.setAttribute("list-index", 0);
  body.appendChild(item);

  let index = 0;
  let feedRootFolders = FeedUtils.getAllRssServerRootFolders();

  feedRootFolders.forEach(function (rootFolder) {
    item = document.createXULElement("richlistitem");
    let label = document.createXULElement("label");
    label.setAttribute("value", rootFolder.prettyName);
    item.appendChild(label);
    item.setAttribute("list-index", ++index);
    item.server = rootFolder.server;
    body.appendChild(item);
  }, this);

  if (index) {
    // If there is an existing feed account, select the first one.
    body.selectedIndex = 1;
  }
}

function ContinueImport(info) {
  var isMail = info.importType == "mail";
  var clear = true;
  var pcnt;

  if (info.importInterface) {
    if (!info.importInterface.ContinueImport()) {
      info.importSuccess = false;
      clearInterval(info.intervalState);
      if (info.progressWindow != null) {
        showWizardBox(3);
        info.progressWindow = null;
      }

      ShowImportResults(false, isMail ? "Mail" : "Address");
    } else if ((pcnt = info.importInterface.GetProgress()) < 100) {
      clear = false;
      if (info.progressWindow != null) {
        if (pcnt < 5) {
          pcnt = 5;
        }
        SetProgress(pcnt);
        if (isMail) {
          let mailName = info.importInterface.GetData("currentMailbox");
          if (mailName) {
            mailName = mailName.QueryInterface(Ci.nsISupportsString);
            if (mailName) {
              SetStatusText(mailName.data);
            }
          }
        }
      }
    } else {
      dump("*** WARNING! sometimes this shows results too early. \n");
      dump("    something screwy here. this used to work fine.\n");
      clearInterval(info.intervalState);
      info.importSuccess = true;
      if (info.progressWindow) {
        showWizardBox(3);
        info.progressWindow = null;
      }

      ShowImportResults(true, isMail ? "Mail" : "Address");
    }
  }
  if (clear) {
    info.intervalState = null;
    info.importInterface = null;
  }
}

function ShowResults(doesWantProgress, result) {
  if (result) {
    if (doesWantProgress) {
      let header = document.getElementById("header");
      let progressStatusEl = document.getElementById("progressStatus");
      let progressTitleEl = document.getElementById("progressTitle");

      let meterText = gImportMsgsBundle.getFormattedString(
        "AddrProgressMeterText",
        [name]
      );
      header.setAttribute("description", meterText);

      progressStatusEl.setAttribute("label", "");
      progressTitleEl.setAttribute("label", meterText);

      showWizardBox(2);
      gProgressInfo.progressWindow = window;
      gProgressInfo.intervalState = setInterval(ContinueImportCallback, 100);
    } else {
      ShowImportResults(true, "Address");
    }
  } else {
    ShowImportResults(false, "Address");
  }

  return true;
}

function ShowImportResults(good, module) {
  // String keys for ImportSettingsSuccess, ImportSettingsFailed,
  // ImportMailSuccess, ImportMailFailed, ImportAddressSuccess,
  // ImportAddressFailed, ImportFiltersSuccess, and ImportFiltersFailed.
  var modSuccess = "Import" + module + "Success";
  var modFailed = "Import" + module + "Failed";

  // The callers seem to set 'good' to true even if there's something
  // in the error log. So we should only make it a success case if
  // error log/str is empty.
  var results, title;
  var moduleName = gSelectedModuleName ? gSelectedModuleName : "";
  if (good && !gErrorStr.data) {
    title = gImportMsgsBundle.getFormattedString(modSuccess, [moduleName]);
    results = gSuccessStr.data;
  } else if (gErrorStr.data) {
    title = gImportMsgsBundle.getFormattedString(modFailed, [moduleName]);
    results = gErrorStr.data;
  }

  if (results && title) {
    ShowImportResultsRaw(title, results, good);
  }
}

function ShowImportResultsRaw(title, results, good) {
  SetDivText("status", title);
  var header = document.getElementById("header");
  header.setAttribute("description", title);
  dump("*** results = " + results + "\n");
  attachStrings("results", results);
  showWizardBox(3);
  var nextButton = document.getElementById("forward");
  nextButton.label = nextButton.getAttribute("finishedval");
  nextButton.removeAttribute("disabled");
  var cancelButton = document.getElementById("cancel");
  cancelButton.setAttribute("disabled", "true");
  var backButton = document.getElementById("back");
  backButton.setAttribute("disabled", "true");

  // If the Local Folder doesn't exist, create it after successfully
  // importing "mail" and "settings"
  var checkLocalFolder =
    gProgressInfo.importType == "mail" ||
    gProgressInfo.importType == "settings";
  if (good && checkLocalFolder && !gProgressInfo.localFolderExists) {
    MailServices.accounts.createLocalMailAccount();
  }
}

function attachStrings(aNode, aString) {
  var attachNode = document.getElementById(aNode);
  if (!aString) {
    attachNode.parentNode.setAttribute("hidden", "true");
    return;
  }
  var strings = aString.split("\n");
  for (let string of strings) {
    if (string) {
      let currNode = document.createTextNode(string);
      attachNode.appendChild(currNode);
      let br = document.createElementNS("http://www.w3.org/1999/xhtml", "br");
      attachNode.appendChild(br);
    }
  }
}

/**
 * Show the file picker.
 *
 * @returns {Promise} the selected file, or null
 */
function promptForFile(fp) {
  return new Promise(resolve => {
    fp.open(rv => {
      if (rv != Ci.nsIFilePicker.returnOK || !fp.file) {
        resolve(null);
        return;
      }
      resolve(fp.file);
    });
  });
}

/*
  Import Settings from a specific module, returns false if it failed
  and true if successful.  A "local mail" account is returned in newAccount.
  This is only useful in upgrading - import the settings first, then
  import mail into the account returned from ImportSettings, then
  import address books.
  An error string is returned as error.value
*/
async function ImportSettings(module, newAccount, error) {
  var setIntf = module.GetImportInterface("settings");
  if (!(setIntf instanceof Ci.nsIImportSettings)) {
    error.value = gImportMsgsBundle.getString("ImportSettingsBadModule");
    return false;
  }

  // determine if we can auto find the settings or if we need to ask the user
  var location = {};
  var description = {};
  var result = setIntf.AutoLocate(description, location);
  if (!result) {
    // In this case, we couldn't find the settings
    if (location.value != null) {
      // Settings were not found, however, they are specified
      // in a file, so ask the user for the settings file.
      let filePicker = Cc["@mozilla.org/filepicker;1"].createInstance();
      if (filePicker instanceof Ci.nsIFilePicker) {
        let file = null;
        try {
          filePicker.init(
            window,
            gImportMsgsBundle.getString("ImportSelectSettings"),
            filePicker.modeOpen
          );
          filePicker.appendFilters(filePicker.filterAll);

          file = await promptForFile(filePicker);
        } catch (ex) {
          console.error(ex);
          error.value = null;
          return false;
        }
        if (file != null) {
          setIntf.SetLocation(file);
        } else {
          error.value = null;
          return false;
        }
      } else {
        error.value = gImportMsgsBundle.getString("ImportSettingsNotFound");
        return false;
      }
    } else {
      error.value = gImportMsgsBundle.getString("ImportSettingsNotFound");
      return false;
    }
  }

  // interesting, we need to return the account that new
  // mail should be imported into?
  // that's really only useful for "Upgrade"
  result = setIntf.Import(newAccount);
  if (!result) {
    error.value = gImportMsgsBundle.getString("ImportSettingsFailed");
  }
  return result;
}

async function ImportMail(module, success, error) {
  if (gProgressInfo.importInterface || gProgressInfo.intervalState) {
    error.data = gImportMsgsBundle.getString("ImportAlreadyInProgress");
    return false;
  }

  gProgressInfo.importSuccess = false;

  var mailInterface = module.GetImportInterface("mail");
  if (!(mailInterface instanceof Ci.nsIImportGeneric)) {
    error.data = gImportMsgsBundle.getString("ImportMailBadModule");
    return false;
  }

  var loc = mailInterface.GetData("mailLocation");

  if (loc == null) {
    // No location found, check to see if we can ask the user.
    if (mailInterface.GetStatus("canUserSetLocation") != 0) {
      let filePicker = Cc["@mozilla.org/filepicker;1"].createInstance();
      if (filePicker instanceof Ci.nsIFilePicker) {
        try {
          filePicker.init(
            window,
            gImportMsgsBundle.getString("ImportSelectMailDir"),
            filePicker.modeGetFolder
          );
          filePicker.appendFilters(filePicker.filterAll);
          let file = await promptForFile(filePicker);
          if (!file) {
            return false;
          }
          mailInterface.SetData("mailLocation", file);
        } catch (ex) {
          console.error(ex);
          // don't show an error when we return!
          return false;
        }
      } else {
        error.data = gImportMsgsBundle.getString("ImportMailNotFound");
        return false;
      }
    } else {
      error.data = gImportMsgsBundle.getString("ImportMailNotFound");
      return false;
    }
  }

  if (mailInterface.WantsProgress()) {
    if (mailInterface.BeginImport(success, error)) {
      gProgressInfo.importInterface = mailInterface;
      // intervalState = setInterval(ContinueImport, 100);
      return true;
    }
    return false;
  }
  return mailInterface.BeginImport(success, error);
}

// The address import!  A little more complicated than the mail import
// due to field maps...
async function ImportAddress(module, success, error) {
  if (gProgressInfo.importInterface || gProgressInfo.intervalState) {
    error.data = gImportMsgsBundle.getString("ImportAlreadyInProgress");
    return false;
  }

  gProgressInfo.importSuccess = false;

  gAddInterface = module.GetImportInterface("addressbook");
  if (!(gAddInterface instanceof Ci.nsIImportGeneric)) {
    error.data = gImportMsgsBundle.getString("ImportAddressBadModule");
    return false;
  }

  var loc = gAddInterface.GetStatus("autoFind");
  if (loc == 0) {
    loc = gAddInterface.GetData("addressLocation");
    if (loc instanceof Ci.nsIFile && !loc.exists) {
      loc = null;
    }
  }

  if (loc == null) {
    // Couldn't find the address book, see if we can
    // as the user for the location or not?
    if (gAddInterface.GetStatus("canUserSetLocation") == 0) {
      // an autofind address book that could not be found!
      error.data = gImportMsgsBundle.getString("ImportAddressNotFound");
      return false;
    }

    let filePicker = Cc["@mozilla.org/filepicker;1"].createInstance();
    if (!(filePicker instanceof Ci.nsIFilePicker)) {
      error.data = gImportMsgsBundle.getString("ImportAddressNotFound");
      return false;
    }

    // The address book location was not found.
    // Determine if we need to ask for a directory
    // or a single file.
    let file = null;
    let fileIsDirectory = false;
    if (gAddInterface.GetStatus("supportsMultiple") != 0) {
      // ask for dir
      try {
        filePicker.init(
          window,
          gImportMsgsBundle.getString("ImportSelectAddrDir"),
          filePicker.modeGetFolder
        );
        filePicker.appendFilters(filePicker.filterAll);
        file = await promptForFile(filePicker);
        if (file && file.path) {
          fileIsDirectory = true;
        }
      } catch (ex) {
        console.error(ex);
        file = null;
      }
    } else {
      // ask for file
      try {
        filePicker.init(
          window,
          gImportMsgsBundle.getString("ImportSelectAddrFile"),
          filePicker.modeOpen
        );
        let addressbookBundle = document.getElementById("bundle_addressbook");
        if (
          gSelectedModuleName ==
          document
            .getElementById("bundle_vcardImportMsgs")
            .getString("vCardImportName")
        ) {
          filePicker.appendFilter(
            addressbookBundle.getString("VCFFiles"),
            "*.vcf"
          );
        } else if (
          gSelectedModuleName ==
          document
            .getElementById("bundle_morkImportMsgs")
            .getString("morkImportName")
        ) {
          filePicker.appendFilter(
            document
              .getElementById("bundle_morkImportMsgs")
              .getString("MABFiles"),
            "*.mab"
          );
        } else {
          filePicker.appendFilter(
            addressbookBundle.getString("LDIFFiles"),
            "*.ldi; *.ldif"
          );
          filePicker.appendFilter(
            addressbookBundle.getString("CSVFiles"),
            "*.csv"
          );
          filePicker.appendFilter(
            addressbookBundle.getString("TABFiles"),
            "*.tab; *.txt"
          );
          filePicker.appendFilter(
            addressbookBundle.getString("SupportedABFiles"),
            "*.csv; *.ldi; *.ldif; *.tab; *.txt"
          );
          filePicker.appendFilters(filePicker.filterAll);
          // Use "Supported Address Book Files" as default file filter.
          filePicker.filterIndex = 3;
        }

        file = await promptForFile(filePicker);
      } catch (ex) {
        console.error(ex);
        file = null;
      }
    }

    if (!file) {
      return false;
    }

    if (!fileIsDirectory && file.fileSize == 0) {
      let errorText = gImportMsgsBundle.getFormattedString(
        "ImportEmptyAddressBook",
        [file.leafName]
      );

      Services.prompt.alert(window, document.title, errorText);
      return false;
    }
    gAddInterface.SetData("addressLocation", file);
  }

  var map = gAddInterface.GetData("fieldMap");
  if (map instanceof Ci.nsIImportFieldMap) {
    let result = {};
    result.ok = false;
    window.openDialog(
      "chrome://messenger/content/fieldMapImport.xhtml",
      "",
      "chrome,modal,titlebar",
      {
        fieldMap: map,
        addInterface: gAddInterface,
        result,
      }
    );

    if (!result.ok) {
      return false;
    }
  }

  if (gAddInterface.WantsProgress()) {
    if (gAddInterface.BeginImport(success, error)) {
      gProgressInfo.importInterface = gAddInterface;
      // intervalState = setInterval(ContinueImport, 100);
      return true;
    }
    return false;
  }

  return gAddInterface.BeginImport(success, error);
}

/*
  Import filters from a specific module.
  Returns false if it failed and true if it succeeded.
  An error string is returned as error.value.
*/
function ImportFilters(module, error) {
  if (gProgressInfo.importInterface || gProgressInfo.intervalState) {
    error.data = gImportMsgsBundle.getString("ImportAlreadyInProgress");
    return false;
  }

  gProgressInfo.importSuccess = false;

  var filtersInterface = module.GetImportInterface("filters");
  if (!(filtersInterface instanceof Ci.nsIImportFilters)) {
    error.data = gImportMsgsBundle.getString("ImportFiltersBadModule");
    return false;
  }

  return filtersInterface.Import(error);
}

/*
  Import feeds.
*/
async function ImportFeeds() {
  // Get file and file url to open from filepicker.
  let [openFile, openFileUrl] = await FeedSubscriptions.opmlPickOpenFile();

  let acctName;
  let acctNewExist = gFeedsBundle.getString("ImportFeedsExisting");
  let fileName = openFile.path;
  let server = document.getElementById("moduleList").selectedItem.server;
  gNewFeedAcctCreated = false;

  if (!server) {
    // Create a new Feeds account.
    acctName = document.getElementById("acctName").value;
    server = FeedUtils.createRssAccount(acctName).incomingServer;
    acctNewExist = gFeedsBundle.getString("ImportFeedsNew");
    gNewFeedAcctCreated = true;
  }

  acctName = server.rootFolder.prettyName;

  let callback = function (aStatusReport, aLastFolder, aFeedWin) {
    let message = gFeedsBundle.getFormattedString("ImportFeedsDone", [
      fileName,
      acctNewExist,
      acctName,
    ]);
    ShowImportResultsRaw(message + "  " + aStatusReport, null, true);
    document.getElementById("back").removeAttribute("disabled");

    let subscriptionsWindow = Services.wm.getMostRecentWindow(
      "Mail:News-BlogSubscriptions"
    );
    if (subscriptionsWindow) {
      let feedWin = subscriptionsWindow.FeedSubscriptions;
      if (aLastFolder) {
        feedWin.FolderListener.folderAdded(aLastFolder);
      }

      feedWin.mActionMode = null;
      feedWin.updateButtons(feedWin.mView.currentItem);
      feedWin.clearStatusInfo();
      feedWin.updateStatusItem("statusText", aStatusReport);
    }
  };

  if (
    !(await FeedSubscriptions.importOPMLFile(
      openFile,
      openFileUrl,
      server,
      callback
    ))
  ) {
    return false;
  }

  let subscriptionsWindow = Services.wm.getMostRecentWindow(
    "Mail:News-BlogSubscriptions"
  );
  if (subscriptionsWindow) {
    let feedWin = subscriptionsWindow.FeedSubscriptions;
    feedWin.mActionMode = feedWin.kImportingOPML;
    feedWin.updateButtons(null);
    let statusReport = gFeedsBundle.getString("subscribe-loading");
    feedWin.updateStatusItem("statusText", statusReport);
    feedWin.updateStatusItem("progressMeter", "?");
  }

  return true;
}

function SwitchType(newType) {
  if (gImportType == newType) {
    return;
  }

  gImportType = newType;
  gProgressInfo.importType = newType;

  SetUpImportType();

  SetDivText("description", "");
}

function next() {
  switch (getWizardBoxIndex()) {
    case 0:
      let backButton = document.getElementById("back");
      backButton.removeAttribute("disabled");
      let radioGroup = document.getElementById("importFields");

      if (radioGroup.value == "all") {
        let args = { closeMigration: true };
        let SEAMONKEY_ID = "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}";
        if (Services.appinfo.ID == SEAMONKEY_ID) {
          window.openDialog(
            "chrome://communicator/content/migration/migration.xhtml",
            "",
            "chrome,dialog,modal,centerscreen"
          );
        } else {
          // Running as Thunderbird or its clone.
          window.openDialog(
            "chrome://messenger/content/migration/migration.xhtml",
            "",
            "chrome,dialog,modal,centerscreen",
            null,
            null,
            null,
            args
          );
        }
        if (args.closeMigration) {
          close();
        }
      } else {
        SwitchType(radioGroup.value);
        showWizardBox(1);
        let moduleBox = document.getElementById("moduleBox");
        let noModuleLabel = document.getElementById("noModuleLabel");
        if (document.getElementById("moduleList").itemCount > 0) {
          moduleBox.hidden = false;
          noModuleLabel.hidden = true;
        } else {
          moduleBox.hidden = true;
          noModuleLabel.hidden = false;
        }
        SelectFirstItem();
        enableAdvance();
      }
      break;
    case 1:
      ImportDialogOKButton();
      break;
    case 3:
      close();
      break;
  }
}

function SelectFirstItem() {
  var listbox = document.getElementById("moduleList");
  if (listbox.selectedIndex == -1 && listbox.itemCount > 0) {
    listbox.selectedIndex = 0;
  }
  ImportSelectionChanged();
}

function enableAdvance() {
  var listbox = document.getElementById("moduleList");
  var nextButton = document.getElementById("forward");
  if (listbox.selectedCount > 0) {
    nextButton.removeAttribute("disabled");
  } else {
    nextButton.setAttribute("disabled", "true");
  }
}

function back() {
  var backButton = document.getElementById("back");
  var nextButton = document.getElementById("forward");
  switch (getWizardBoxIndex()) {
    case 1:
      backButton.setAttribute("disabled", "true");
      nextButton.label = nextButton.getAttribute("nextval");
      nextButton.removeAttribute("disabled");
      showWizardBox(0);
      break;
    case 3:
      // Clear out the results box.
      let results = document.getElementById("results");
      while (results.hasChildNodes()) {
        results.lastChild.remove();
      }

      // Reset the next button.
      nextButton.label = nextButton.getAttribute("nextval");
      nextButton.removeAttribute("disabled");

      // Enable the cancel button again.
      document.getElementById("cancel").removeAttribute("disabled");

      // If a new Feed account has been created, rebuild the list.
      if (gNewFeedAcctCreated) {
        ListFeedAccounts();
      }

      // Now go back to the second page.
      showWizardBox(1);
      break;
  }
}