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
|
/**
* Hachette querying page settings with regard to wildcard records
*
* Copyright (C) 2021 Wojtek Kosior
* Redistribution terms are gathered in the `copyright' file.
*/
/*
* IMPORTS_START
* IMPORT TYPE_PREFIX
* IMPORT for_each_possible_pattern
* IMPORTS_END
*/
function check_pattern(storage, pattern, multiple, matched)
{
const settings = storage.get(TYPE_PREFIX.PAGE, pattern);
if (settings === undefined)
return;
matched.push([pattern, settings]);
if (!multiple)
return false;
}
function query(storage, url, multiple)
{
const matched = [];
const cb = p => check_pattern(storage, p, multiple, matched);
for_each_possible_pattern(url, cb);
return multiple ? matched : (matched[0] || [undefined, undefined]);
}
function query_best(storage, url)
{
return query(storage, url, false);
}
function query_all(storage, url)
{
return query(storage, url, true);
}
/*
* EXPORTS_START
* EXPORT query_best
* EXPORT query_all
* EXPORTS_END
*/
|