summaryrefslogtreecommitdiffstats
path: root/services/settings/SharedUtils.sys.mjs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /services/settings/SharedUtils.sys.mjs
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'services/settings/SharedUtils.sys.mjs')
-rw-r--r--services/settings/SharedUtils.sys.mjs51
1 files changed, 51 insertions, 0 deletions
diff --git a/services/settings/SharedUtils.sys.mjs b/services/settings/SharedUtils.sys.mjs
new file mode 100644
index 0000000000..1eeaf0bed9
--- /dev/null
+++ b/services/settings/SharedUtils.sys.mjs
@@ -0,0 +1,51 @@
+/* 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/. */
+
+/**
+ * Common logic shared by RemoteSettingsWorker.js (Worker) and the main thread.
+ */
+
+export var SharedUtils = {
+ /**
+ * Check that the specified content matches the expected size and SHA-256 hash.
+ * @param {ArrayBuffer} buffer binary content
+ * @param {Number} size expected file size
+ * @param {String} size expected file SHA-256 as hex string
+ * @returns {boolean}
+ */
+ async checkContentHash(buffer, size, hash) {
+ const bytes = new Uint8Array(buffer);
+ // Has expected size? (saves computing hash)
+ if (bytes.length !== size) {
+ return false;
+ }
+ // Has expected content?
+ const hashBuffer = await crypto.subtle.digest("SHA-256", bytes);
+ const hashBytes = new Uint8Array(hashBuffer);
+ const toHex = b => b.toString(16).padStart(2, "0");
+ const hashStr = Array.from(hashBytes, toHex).join("");
+ return hashStr == hash;
+ },
+
+ /**
+ * Load (from disk) the JSON file distributed with the release for this collection.
+ * @param {String} bucket
+ * @param {String} collection
+ */
+ async loadJSONDump(bucket, collection) {
+ // When using the preview bucket, we still want to load the main dump.
+ // But we store it locally in the preview bucket.
+ const jsonBucket = bucket.replace("-preview", "");
+ const fileURI = `resource://app/defaults/settings/${jsonBucket}/${collection}.json`;
+ let response;
+ try {
+ response = await fetch(fileURI);
+ } catch (e) {
+ // Return null if file is missing.
+ return { data: null, timestamp: null };
+ }
+ // Will throw if JSON is invalid.
+ return response.json();
+ },
+};