aboutsummaryrefslogtreecommitdiff
path: root/common/storage_raw.js
blob: 9ce3980035eb1a77fcbd309104ce7e525dbc645a (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
/**
 * part of Hachette
 * Basic wrappers for storage API functions.
 *
 * Copyright (C) 2021 Wojtek Kosior
 * Redistribution terms are gathered in the `copyright' file.
 */

/*
 * IMPORTS_START
 * IMPORT TYPE_PREFIX
 * IMPORT browser
 * IMPORT is_chrome
 * IMPORTS_END
 */

async function get(key)
{
    /* Fix for fact that Chrome does not use promises here */
    const promise = is_chrome ?
	  new Promise(resolve => chrome.storage.local.get(key, resolve)) :
	  browser.storage.local.get(key);

    return (await promise)[key];
}

async function set(key_or_object, value)
{
    return browser.storage.local.set(typeof key_or_object === "object" ?
				     key_or_object : {[key]: value});
}

async function set_var(name, value)
{
    return set(TYPE_PREFIX.VAR + name, value);
}

async function get_var(name)
{
    return get(TYPE_PREFIX.VAR + name);
}

const raw_storage = {get, set, get_var, set_var};

/*
 * EXPORTS_START
 * EXPORT raw_storage
 * EXPORTS_END
 */