summaryrefslogtreecommitdiffstats
path: root/browser/extensions/webcompat/shims/firebase.js
blob: 8ac049c5e40f10d292b85e5d6bcf067c0fe27e62 (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
/* 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";

/**
 * Bug 1767407 - Shim Firebase
 *
 * Sites relying on firebase-messaging.js will break in Private
 * browsing mode because it assumes that they require service
 * workers and indexedDB, when they generally do not.
 */

/* globals cloneInto */

(function () {
  const win = window.wrappedJSObject;
  const emptyObj = new win.Object();
  const emptyArr = new win.Array();
  const emptyMsg = cloneInto({ message: "" }, window);
  const noOpFn = cloneInto(function () {}, window, { cloneFunctions: true });

  if (!win.indexedDB) {
    const idb = {
      open: () => win.Promise.reject(emptyMsg),
    };

    Object.defineProperty(win, "indexedDB", {
      value: cloneInto(idb, window, { cloneFunctions: true }),
    });
  }

  // bug 1778993
  for (const name of [
    "IDBCursor",
    "IDBDatabase",
    "IDBIndex",
    "IDBOpenDBRequest",
    "IDBRequest",
    "IDBTransaction",
  ]) {
    if (!win[name]) {
      Object.defineProperty(win, name, { value: emptyObj });
    }
  }

  if (!win.serviceWorker) {
    const sw = {
      addEventListener() {},
      getRegistrations: () => win.Promise.resolve(emptyArr),
      register: () => win.Promise.reject(emptyMsg),
    };

    Object.defineProperty(navigator.wrappedJSObject, "serviceWorker", {
      value: cloneInto(sw, window, { cloneFunctions: true }),
    });

    // bug 1779536
    Object.defineProperty(navigator.wrappedJSObject.serviceWorker, "ready", {
      value: new win.Promise(noOpFn),
    });
  }

  // bug 1750699
  if (!win.PushManager) {
    Object.defineProperty(win, "PushManager", { value: emptyObj });
  }

  // bug 1750699
  if (!win.PushSubscription) {
    const ps = {
      prototype: {
        getKey() {},
      },
    };

    Object.defineProperty(win, "PushSubscription", {
      value: cloneInto(ps, window, { cloneFunctions: true }),
    });
  }

  // bug 1750699
  if (!win.ServiceWorkerRegistration) {
    const swr = {
      prototype: {
        showNotification() {},
      },
    };

    Object.defineProperty(win, "ServiceWorkerRegistration", {
      value: cloneInto(swr, window, { cloneFunctions: true }),
    });
  }
})();