summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/addrbook/content/abCardDAVDialog.js
blob: 8ccce896802e445ddb0da98508d135a60cf2fd31 (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
/* 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/. */

var { XPCOMUtils } = ChromeUtils.importESModule(
  "resource://gre/modules/XPCOMUtils.sys.mjs"
);

XPCOMUtils.defineLazyModuleGetters(this, {
  CardDAVUtils: "resource:///modules/CardDAVUtils.jsm",
  MailServices: "resource:///modules/MailServices.jsm",
});

var log = console.createInstance({
  prefix: "carddav.setup",
  maxLogLevel: "Warn",
  maxLogLevelPref: "carddav.setup.loglevel",
});

var oAuth = null;
var callbacks = null;
var uiElements = {};
var userContextId;

window.addEventListener(
  "DOMContentLoaded",
  () => {
    for (let id of [
      "username",
      "location",
      "statusArea",
      "statusImage",
      "statusMessage",
      "resultsArea",
      "availableBooks",
    ]) {
      uiElements[id] = document.getElementById("carddav-" + id);
    }
  },
  { once: true }
);
window.addEventListener(
  "DOMContentLoaded",
  async () => {
    await document.l10n.translateRoots();
    fillLocationPlaceholder();
    setStatus();
  },
  { once: true }
);

/**
 * Update the placeholder text for the network location field. If the username
 * is a valid email address use the domain part of the username, otherwise use
 * the default placeholder.
 */
function fillLocationPlaceholder() {
  let parts = uiElements.username.value.split("@");
  let domain = parts.length == 2 && parts[1] ? parts[1] : null;

  if (domain) {
    uiElements.location.setAttribute("placeholder", domain);
  } else {
    uiElements.location.setAttribute(
      "placeholder",
      uiElements.location.getAttribute("default-placeholder")
    );
  }
}

function handleCardDAVURLInput(event) {
  changeCardDAVURL();
}

function changeCardDAVURL() {
  uiElements.resultsArea.hidden = true;
  setStatus();
}

function handleCardDAVURLBlur(event) {
  if (
    uiElements.location.validity.typeMismatch &&
    !uiElements.location.value.match(/^https?:\/\//)
  ) {
    uiElements.location.value = `https://${uiElements.location.value}`;
  }
}

async function check() {
  // We might be accepting the dialog by pressing Enter in the URL input.
  handleCardDAVURLBlur();

  let username = uiElements.username.value;

  if (!uiElements.location.validity.valid && !username.split("@")[1]) {
    log.error(`Invalid URL: "${uiElements.location.value}"`);
    return;
  }

  let url = uiElements.location.value || username.split("@")[1];
  if (!url.match(/^https?:\/\//)) {
    url = "https://" + url;
  }

  setStatus("loading", "carddav-loading");
  while (uiElements.availableBooks.lastChild) {
    uiElements.availableBooks.lastChild.remove();
  }

  let foundBooks;
  try {
    foundBooks = await CardDAVUtils.detectAddressBooks(
      username,
      undefined,
      url,
      true
    );
  } catch (ex) {
    if (ex.result == Cr.NS_ERROR_NOT_AVAILABLE) {
      setStatus("error", "carddav-known-incompatible", {
        url: new URL(url).hostname,
      });
    } else {
      log.error(ex);
      setStatus("error", "carddav-connection-error");
    }
    return;
  }

  // Create a list of CardDAV directories that already exist.
  let existing = [];
  for (let d of MailServices.ab.directories) {
    if (d.dirType == Ci.nsIAbManager.CARDDAV_DIRECTORY_TYPE) {
      existing.push(d.getStringValue("carddav.url", ""));
    }
  }

  // Display a checkbox for each directory that doesn't already exist.
  let alreadyAdded = 0;
  for (let book of foundBooks) {
    if (existing.includes(book.url.href)) {
      alreadyAdded++;
      continue;
    }
    let checkbox = uiElements.availableBooks.appendChild(
      document.createXULElement("checkbox")
    );
    checkbox.setAttribute("label", book.name);
    checkbox.checked = true;
    checkbox.value = book.url.href;
    checkbox._book = book;
  }

  if (uiElements.availableBooks.childElementCount == 0) {
    if (alreadyAdded > 0) {
      setStatus("error", "carddav-already-added");
    } else {
      setStatus("error", "carddav-none-found");
    }
  } else {
    uiElements.resultsArea.hidden = false;
    setStatus();
  }
}

function setStatus(status, message, args) {
  uiElements.username.disabled = status == "loading";
  uiElements.location.disabled = status == "loading";

  switch (status) {
    case "loading":
      uiElements.statusImage.setAttribute(
        "src",
        "chrome://global/skin/icons/loading.png"
      );
      uiElements.statusImage.setAttribute(
        "srcset",
        "chrome://global/skin/icons/loading@2x.png 2x"
      );
      break;
    case "error":
      uiElements.statusImage.setAttribute(
        "src",
        "chrome://global/skin/icons/warning.svg"
      );
      uiElements.statusImage.removeAttribute("srcset");
      break;
    default:
      uiElements.statusImage.removeAttribute("src");
      uiElements.statusImage.removeAttribute("srcset");
      break;
  }

  if (status) {
    uiElements.statusArea.setAttribute("status", status);
    document.l10n.setAttributes(uiElements.statusMessage, message, args);
  } else {
    uiElements.statusArea.removeAttribute("status");
    uiElements.statusMessage.removeAttribute("data-l10n-id");
    uiElements.statusMessage.textContent = "";
  }

  // Grow to fit the list of books. Uses `resizeBy` because it has special
  // handling in SubDialog.jsm that the other resize functions don't have.
  window.resizeBy(0, Math.min(250, uiElements.availableBooks.scrollHeight));
  window.dispatchEvent(new CustomEvent("status-changed"));
}

window.addEventListener("dialogaccept", event => {
  if (uiElements.resultsArea.hidden) {
    event.preventDefault();
    check();
    return;
  }

  if (uiElements.availableBooks.childElementCount == 0) {
    return;
  }

  for (let checkbox of uiElements.availableBooks.children) {
    if (checkbox.checked) {
      let book = checkbox._book.create();
      if (window.arguments[0]) {
        // Pass the UID of the book back to the opening window.
        window.arguments[0].newDirectoryUID = book.UID;
      }
    }
  }
});