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
|
/* 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/. */
/*
* Implements a service used to access storage and communicate with content.
*
* A "fields" array is used to communicate with FormAutofillContent. Each item
* represents a single input field in the content page as well as its
* @autocomplete properties. The schema is as below. Please refer to
* FormAutofillContent.js for more details.
*
* [
* {
* section,
* addressType,
* contactType,
* fieldName,
* value,
* index
* },
* {
* // ...
* }
* ]
*/
"use strict";
// We expose a singleton from this module. Some tests may import the
// constructor via a backstage pass.
var EXPORTED_SYMBOLS = ["FormAutofillParent", "FormAutofillStatus"];
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
const { XPCOMUtils } = ChromeUtils.import(
"resource://gre/modules/XPCOMUtils.jsm"
);
const { FormAutofill } = ChromeUtils.import(
"resource://formautofill/FormAutofill.jsm"
);
XPCOMUtils.defineLazyModuleGetters(this, {
BrowserWindowTracker: "resource:///modules/BrowserWindowTracker.jsm",
CreditCard: "resource://gre/modules/CreditCard.jsm",
FormAutofillPreferences:
"resource://formautofill/FormAutofillPreferences.jsm",
FormAutofillDoorhanger: "resource://formautofill/FormAutofillDoorhanger.jsm",
FormAutofillUtils: "resource://formautofill/FormAutofillUtils.jsm",
OSKeyStore: "resource://gre/modules/OSKeyStore.jsm",
});
this.log = null;
FormAutofill.defineLazyLogGetter(this, EXPORTED_SYMBOLS[0]);
const {
ENABLED_AUTOFILL_ADDRESSES_PREF,
ENABLED_AUTOFILL_CREDITCARDS_PREF,
} = FormAutofill;
const {
ADDRESSES_COLLECTION_NAME,
CREDITCARDS_COLLECTION_NAME,
} = FormAutofillUtils;
let gMessageObservers = new Set();
let FormAutofillStatus = {
_initialized: false,
/**
* Cache of the Form Autofill status (considering preferences and storage).
*/
_active: null,
/**
* Initializes observers and registers the message handler.
*/
init() {
if (this._initialized) {
return;
}
this._initialized = true;
Services.obs.addObserver(this, "privacy-pane-loaded");
// Observing the pref and storage changes
Services.prefs.addObserver(ENABLED_AUTOFILL_ADDRESSES_PREF, this);
Services.obs.addObserver(this, "formautofill-storage-changed");
// Only listen to credit card related preference if it is available
if (FormAutofill.isAutofillCreditCardsAvailable) {
Services.prefs.addObserver(ENABLED_AUTOFILL_CREDITCARDS_PREF, this);
}
for (let win of Services.wm.getEnumerator("navigator:browser")) {
this.injectElements(win.document);
}
Services.wm.addListener(this);
Services.telemetry.setEventRecordingEnabled("creditcard", true);
},
/**
* Uninitializes FormAutofillStatus. This is for testing only.
*
* @private
*/
uninit() {
gFormAutofillStorage._saveImmediately();
if (!this._initialized) {
return;
}
this._initialized = false;
this._active = null;
Services.obs.removeObserver(this, "privacy-pane-loaded");
Services.prefs.removeObserver(ENABLED_AUTOFILL_ADDRESSES_PREF, this);
Services.wm.removeListener(this);
if (FormAutofill.isAutofillCreditCardsAvailable) {
Services.prefs.removeObserver(ENABLED_AUTOFILL_CREDITCARDS_PREF, this);
}
},
get formAutofillStorage() {
return gFormAutofillStorage;
},
/**
* Broadcast the status to frames when the form autofill status changes.
*/
onStatusChanged() {
log.debug("onStatusChanged: Status changed to", this._active);
Services.ppmm.sharedData.set("FormAutofill:enabled", this._active);
// Sync autofill enabled to make sure the value is up-to-date
// no matter when the new content process is initialized.
Services.ppmm.sharedData.flush();
},
/**
* Query preference and storage status to determine the overall status of the
* form autofill feature.
*
* @returns {boolean} whether form autofill is active (enabled and has data)
*/
computeStatus() {
const savedFieldNames = Services.ppmm.sharedData.get(
"FormAutofill:savedFieldNames"
);
return (
(Services.prefs.getBoolPref(ENABLED_AUTOFILL_ADDRESSES_PREF) ||
Services.prefs.getBoolPref(ENABLED_AUTOFILL_CREDITCARDS_PREF)) &&
savedFieldNames &&
savedFieldNames.size > 0
);
},
/**
* Update the status and trigger onStatusChanged, if necessary.
*/
updateStatus() {
log.debug("updateStatus");
let wasActive = this._active;
this._active = this.computeStatus();
if (this._active !== wasActive) {
this.onStatusChanged();
}
},
updateSavedFieldNames() {
log.debug("updateSavedFieldNames");
let savedFieldNames;
// Don't access the credit cards store unless it is enabled.
if (FormAutofill.isAutofillCreditCardsAvailable) {
savedFieldNames = new Set([
...gFormAutofillStorage.addresses.getSavedFieldNames(),
...gFormAutofillStorage.creditCards.getSavedFieldNames(),
]);
} else {
savedFieldNames = gFormAutofillStorage.addresses.getSavedFieldNames();
}
Services.ppmm.sharedData.set(
"FormAutofill:savedFieldNames",
savedFieldNames
);
Services.ppmm.sharedData.flush();
this.updateStatus();
},
injectElements(doc) {
Services.scriptloader.loadSubScript(
"chrome://formautofill/content/customElements.js",
doc.ownerGlobal
);
},
onOpenWindow(xulWindow) {
const win = xulWindow.docShell.domWindow;
win.addEventListener(
"load",
() => {
if (
win.document.documentElement.getAttribute("windowtype") ==
"navigator:browser"
) {
this.injectElements(win.document);
}
},
{ once: true }
);
},
onCloseWindow() {},
observe(subject, topic, data) {
log.debug("observe:", topic, "with data:", data);
switch (topic) {
case "privacy-pane-loaded": {
let formAutofillPreferences = new FormAutofillPreferences();
let document = subject.document;
let prefFragment = formAutofillPreferences.init(document);
let formAutofillGroupBox = document.getElementById(
"formAutofillGroupBox"
);
formAutofillGroupBox.appendChild(prefFragment);
break;
}
case "nsPref:changed": {
// Observe pref changes and update _active cache if status is changed.
this.updateStatus();
break;
}
case "formautofill-storage-changed": {
// Early exit if only metadata is changed
if (data == "notifyUsed") {
break;
}
this.updateSavedFieldNames();
break;
}
default: {
throw new Error(
`FormAutofillStatus: Unexpected topic observed: ${topic}`
);
}
}
},
};
// Lazily load the storage JSM to avoid disk I/O until absolutely needed.
// Once storage is loaded we need to update saved field names and inform content processes.
XPCOMUtils.defineLazyGetter(this, "gFormAutofillStorage", () => {
let { formAutofillStorage } = ChromeUtils.import(
"resource://formautofill/FormAutofillStorage.jsm"
);
log.debug("Loading formAutofillStorage");
formAutofillStorage.initialize().then(() => {
// Update the saved field names to compute the status and update child processes.
FormAutofillStatus.updateSavedFieldNames();
});
return formAutofillStorage;
});
class FormAutofillParent extends JSWindowActorParent {
constructor() {
super();
FormAutofillStatus.init();
}
static addMessageObserver(observer) {
gMessageObservers.add(observer);
}
static removeMessageObserver(observer) {
gMessageObservers.delete(observer);
}
/**
* Handles the message coming from FormAutofillContent.
*
* @param {string} message.name The name of the message.
* @param {object} message.data The data of the message.
*/
async receiveMessage({ name, data }) {
switch (name) {
case "FormAutofill:InitStorage": {
await gFormAutofillStorage.initialize();
break;
}
case "FormAutofill:GetRecords": {
return FormAutofillParent._getRecords(data);
}
case "FormAutofill:OnFormSubmit": {
this.notifyMessageObservers("onFormSubmitted", data);
await this._onFormSubmit(data);
break;
}
case "FormAutofill:OpenPreferences": {
const win = BrowserWindowTracker.getTopWindow();
win.openPreferences("privacy-form-autofill");
break;
}
case "FormAutofill:GetDecryptedString": {
let { cipherText, reauth } = data;
if (!FormAutofillUtils._reauthEnabledByUser) {
log.debug("Reauth is disabled");
reauth = false;
}
let string;
try {
string = await OSKeyStore.decrypt(cipherText, reauth);
} catch (e) {
if (e.result != Cr.NS_ERROR_ABORT) {
throw e;
}
log.warn("User canceled encryption login");
}
return string;
}
case "FormAutofill:UpdateWarningMessage":
this.notifyMessageObservers("updateWarningNote", data);
break;
case "FormAutofill:FieldsIdentified":
this.notifyMessageObservers("fieldsIdentified", data);
break;
// The remaining Save and Remove messages are invoked only by tests.
case "FormAutofill:SaveAddress": {
if (data.guid) {
await gFormAutofillStorage.addresses.update(data.guid, data.address);
} else {
await gFormAutofillStorage.addresses.add(data.address);
}
break;
}
case "FormAutofill:SaveCreditCard": {
if (!(await FormAutofillUtils.ensureLoggedIn()).authenticated) {
log.warn("User canceled encryption login");
return undefined;
}
await gFormAutofillStorage.creditCards.add(data.creditcard);
break;
}
case "FormAutofill:RemoveAddresses": {
data.guids.forEach(guid => gFormAutofillStorage.addresses.remove(guid));
break;
}
case "FormAutofill:RemoveCreditCards": {
data.guids.forEach(guid =>
gFormAutofillStorage.creditCards.remove(guid)
);
break;
}
}
return undefined;
}
notifyMessageObservers(callbackName, data) {
for (let observer of gMessageObservers) {
try {
if (callbackName in observer) {
observer[callbackName](
data,
this.manager.browsingContext.topChromeWindow
);
}
} catch (ex) {
Cu.reportError(ex);
}
}
}
/**
* Get the records from profile store and return results back to content
* process. It will decrypt the credit card number and append
* "cc-number-decrypted" to each record if OSKeyStore isn't set.
*
* This is static as a unit test calls this.
*
* @private
* @param {string} data.collectionName
* The name used to specify which collection to retrieve records.
* @param {string} data.searchString
* The typed string for filtering out the matched records.
* @param {string} data.info
* The input autocomplete property's information.
*/
static async _getRecords({ collectionName, searchString, info }) {
let collection = gFormAutofillStorage[collectionName];
if (!collection) {
return [];
}
let recordsInCollection = await collection.getAll();
if (!info || !info.fieldName || !recordsInCollection.length) {
return recordsInCollection;
}
let isCC = collectionName == CREDITCARDS_COLLECTION_NAME;
// We don't filter "cc-number"
if (isCC && info.fieldName == "cc-number") {
recordsInCollection = recordsInCollection.filter(
record => !!record["cc-number"]
);
return recordsInCollection;
}
let records = [];
let lcSearchString = searchString.toLowerCase();
for (let record of recordsInCollection) {
let fieldValue = record[info.fieldName];
if (!fieldValue) {
continue;
}
if (
collectionName == ADDRESSES_COLLECTION_NAME &&
record.country &&
!FormAutofill.supportedCountries.includes(record.country)
) {
// Address autofill isn't supported for the record's country so we don't
// want to attempt to potentially incorrectly fill the address fields.
continue;
}
if (
lcSearchString &&
!String(fieldValue)
.toLowerCase()
.startsWith(lcSearchString)
) {
continue;
}
records.push(record);
}
return records;
}
async _onAddressSubmit(address, browser, timeStartedFillingMS) {
let showDoorhanger = null;
if (!FormAutofill.isAutofillAddressesCaptureEnabled) {
return showDoorhanger;
}
if (address.guid) {
// Avoid updating the fields that users don't modify.
let originalAddress = await gFormAutofillStorage.addresses.get(
address.guid
);
for (let field in address.record) {
if (address.untouchedFields.includes(field) && originalAddress[field]) {
address.record[field] = originalAddress[field];
}
}
if (
!(await gFormAutofillStorage.addresses.mergeIfPossible(
address.guid,
address.record,
true
))
) {
this._recordFormFillingTime(
"address",
"autofill-update",
timeStartedFillingMS
);
showDoorhanger = async () => {
const description = FormAutofillUtils.getAddressLabel(address.record);
const state = await FormAutofillDoorhanger.show(
browser,
"updateAddress",
description
);
let changedGUIDs = await gFormAutofillStorage.addresses.mergeToStorage(
address.record,
true
);
switch (state) {
case "create":
if (!changedGUIDs.length) {
changedGUIDs.push(
await gFormAutofillStorage.addresses.add(address.record)
);
}
break;
case "update":
if (!changedGUIDs.length) {
await gFormAutofillStorage.addresses.update(
address.guid,
address.record,
true
);
changedGUIDs.push(address.guid);
} else {
gFormAutofillStorage.addresses.remove(address.guid);
}
break;
}
changedGUIDs.forEach(guid =>
gFormAutofillStorage.addresses.notifyUsed(guid)
);
};
// Address should be updated
Services.telemetry.scalarAdd(
"formautofill.addresses.fill_type_autofill_update",
1
);
} else {
this._recordFormFillingTime(
"address",
"autofill",
timeStartedFillingMS
);
gFormAutofillStorage.addresses.notifyUsed(address.guid);
// Address is merged successfully
Services.telemetry.scalarAdd(
"formautofill.addresses.fill_type_autofill",
1
);
}
} else {
let changedGUIDs = await gFormAutofillStorage.addresses.mergeToStorage(
address.record
);
if (!changedGUIDs.length) {
changedGUIDs.push(
await gFormAutofillStorage.addresses.add(address.record)
);
}
changedGUIDs.forEach(guid =>
gFormAutofillStorage.addresses.notifyUsed(guid)
);
this._recordFormFillingTime("address", "manual", timeStartedFillingMS);
// Show first time use doorhanger
if (FormAutofill.isAutofillAddressesFirstTimeUse) {
Services.prefs.setBoolPref(
FormAutofill.ADDRESSES_FIRST_TIME_USE_PREF,
false
);
showDoorhanger = async () => {
const description = FormAutofillUtils.getAddressLabel(address.record);
const state = await FormAutofillDoorhanger.show(
browser,
"firstTimeUse",
description
);
if (state !== "open-pref") {
return;
}
browser.ownerGlobal.openPreferences("privacy-address-autofill");
};
} else {
// We want to exclude the first time form filling.
Services.telemetry.scalarAdd(
"formautofill.addresses.fill_type_manual",
1
);
}
}
return showDoorhanger;
}
async _onCreditCardSubmit(creditCard, browser, timeStartedFillingMS) {
if (FormAutofill.isAutofillCreditCardsHideUI) {
return false;
}
// Updates the used status for shield/heartbeat to recognize users who have
// used Credit Card Autofill.
let setUsedStatus = status => {
if (FormAutofill.AutofillCreditCardsUsedStatus < status) {
Services.prefs.setIntPref(
FormAutofill.CREDITCARDS_USED_STATUS_PREF,
status
);
}
};
// Remove invalid cc-type values
if (
creditCard.record["cc-type"] &&
!CreditCard.isValidNetwork(creditCard.record["cc-type"])
) {
// Let's reset the credit card to empty, and then network auto-detect will
// pick it up.
creditCard.record["cc-type"] = "";
}
// If `guid` is present, the form has been autofilled.
if (creditCard.guid) {
// Indicate that the user has used Credit Card Autofill to fill in a form.
setUsedStatus(3);
let originalCCData = await gFormAutofillStorage.creditCards.get(
creditCard.guid
);
let recordUnchanged = true;
for (let field in creditCard.record) {
if (creditCard.record[field] === "" && !originalCCData[field]) {
continue;
}
// Avoid updating the fields that users don't modify, but skip number field
// because we don't want to trigger decryption here.
let untouched = creditCard.untouchedFields.includes(field);
if (untouched && field !== "cc-number") {
creditCard.record[field] = originalCCData[field];
}
// recordUnchanged will be false if one of the field is changed.
recordUnchanged &= untouched;
}
if (recordUnchanged) {
gFormAutofillStorage.creditCards.notifyUsed(creditCard.guid);
// Add probe to record credit card autofill(without modification).
Services.telemetry.scalarAdd(
"formautofill.creditCards.fill_type_autofill",
1
);
this._recordFormFillingTime(
"creditCard",
"autofill",
timeStartedFillingMS
);
return false;
}
// Add the probe to record credit card autofill with modification.
Services.telemetry.scalarAdd(
"formautofill.creditCards.fill_type_autofill_modified",
1
);
this._recordFormFillingTime(
"creditCard",
"autofill-update",
timeStartedFillingMS
);
} else {
// Add the probe to record credit card manual filling.
Services.telemetry.scalarAdd(
"formautofill.creditCards.fill_type_manual",
1
);
this._recordFormFillingTime("creditCard", "manual", timeStartedFillingMS);
let existingGuid = await gFormAutofillStorage.creditCards.getDuplicateGuid(
creditCard.record
);
if (existingGuid) {
creditCard.guid = existingGuid;
let originalCCData = await gFormAutofillStorage.creditCards.get(
creditCard.guid
);
gFormAutofillStorage.creditCards._normalizeRecord(creditCard.record);
// If the credit card record is a duplicate, check if the fields match the
// record.
let recordUnchanged = true;
for (let field in creditCard.record) {
if (field == "cc-number") {
continue;
}
if (creditCard.record[field] != originalCCData[field]) {
recordUnchanged = false;
break;
}
}
if (recordUnchanged) {
// Indicate that the user neither sees the doorhanger nor uses Autofill
// but somehow has a duplicate record in the storage. Will be reset to 2
// if the doorhanger actually shows below.
setUsedStatus(1);
gFormAutofillStorage.creditCards.notifyUsed(creditCard.guid);
return false;
}
}
}
// Indicate that the user has seen the doorhanger.
setUsedStatus(2);
return async () => {
// Suppress the pending doorhanger from showing up if user disabled credit card in previous doorhanger.
if (!FormAutofill.isAutofillCreditCardsEnabled) {
return;
}
let number =
creditCard.record["cc-number"] ||
creditCard.record["cc-number-decrypted"];
let name = creditCard.record["cc-name"];
const description = await CreditCard.getLabel({ name, number });
const telemetryObject = creditCard.guid
? "update_doorhanger"
: "capture_doorhanger";
Services.telemetry.recordEvent(
"creditcard",
"show",
telemetryObject,
creditCard.flowId
);
const state = await FormAutofillDoorhanger.show(
browser,
creditCard.guid ? "updateCreditCard" : "addCreditCard",
description
);
if (state == "cancel") {
Services.telemetry.recordEvent(
"creditcard",
"cancel",
telemetryObject,
creditCard.flowId
);
return;
}
if (state == "disable") {
Services.prefs.setBoolPref(
"extensions.formautofill.creditCards.enabled",
false
);
Services.telemetry.recordEvent(
"creditcard",
"disable",
telemetryObject,
creditCard.flowId
);
return;
}
if (!(await FormAutofillUtils.ensureLoggedIn()).authenticated) {
log.warn("User canceled encryption login");
return;
}
let changedGUIDs = [];
if (creditCard.guid) {
if (state == "update") {
Services.telemetry.recordEvent(
"creditcard",
"update",
telemetryObject,
creditCard.flowId
);
await gFormAutofillStorage.creditCards.update(
creditCard.guid,
creditCard.record,
true
);
changedGUIDs.push(creditCard.guid);
} else if ("create") {
Services.telemetry.recordEvent(
"creditcard",
"save",
telemetryObject,
creditCard.flowId
);
changedGUIDs.push(
await gFormAutofillStorage.creditCards.add(creditCard.record)
);
}
} else {
changedGUIDs.push(
...(await gFormAutofillStorage.creditCards.mergeToStorage(
creditCard.record
))
);
if (!changedGUIDs.length) {
Services.telemetry.recordEvent(
"creditcard",
"save",
telemetryObject,
creditCard.flowId
);
changedGUIDs.push(
await gFormAutofillStorage.creditCards.add(creditCard.record)
);
}
}
changedGUIDs.forEach(guid =>
gFormAutofillStorage.creditCards.notifyUsed(guid)
);
};
}
async _onFormSubmit(data) {
let {
profile: { address, creditCard },
timeStartedFillingMS,
} = data;
// Don't record filling time if any type of records has more than one section being
// populated. We've been recording the filling time, so the other cases that aren't
// recorded on the same basis should be out of the data samples. E.g. Filling time of
// populating one profile is different from populating two sections, therefore, we
// shouldn't record the later to regress the representation of existing statistics.
if (address.length > 1 || creditCard.length > 1) {
timeStartedFillingMS = null;
}
let browser = this.manager.browsingContext.top.embedderElement;
// Transmit the telemetry immediately in the meantime form submitted, and handle these pending
// doorhangers at a later.
await Promise.all(
[
await Promise.all(
address.map(addrRecord =>
this._onAddressSubmit(addrRecord, browser, timeStartedFillingMS)
)
),
await Promise.all(
creditCard.map(ccRecord =>
this._onCreditCardSubmit(ccRecord, browser, timeStartedFillingMS)
)
),
]
.map(pendingDoorhangers => {
return pendingDoorhangers.filter(
pendingDoorhanger =>
!!pendingDoorhanger && typeof pendingDoorhanger == "function"
);
})
.map(pendingDoorhangers =>
(async () => {
for (const showDoorhanger of pendingDoorhangers) {
await showDoorhanger();
}
})()
)
);
}
/**
* Set the probes for the filling time with specific filling type and form type.
*
* @private
* @param {string} formType
* 3 type of form (address/creditcard/address-creditcard).
* @param {string} fillingType
* 3 filling type (manual/autofill/autofill-update).
* @param {int|null} startedFillingMS
* Time that form started to filling in ms. Early return if start time is null.
*/
_recordFormFillingTime(formType, fillingType, startedFillingMS) {
if (!startedFillingMS) {
return;
}
let histogram = Services.telemetry.getKeyedHistogramById(
"FORM_FILLING_REQUIRED_TIME_MS"
);
histogram.add(`${formType}-${fillingType}`, Date.now() - startedFillingMS);
}
}
|