blob: 03b2dae7e5d1dc9a17a05008f7b3e1de600cab6e (
plain) (
blame)
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
|
/** @type {import('./nginx.d.ts')} */
/** @param {NginxHTTPRequest} request */
async function validate(request) {
if (request.status !== 0) return;
const token = request.variables.cookie___proxy_token;
if (token == undefined) {
// missing token
request.return(401);
return;
}
const cache = ngx.shared.auth_token_cache;
if (cache === undefined) throw "missing shared js cache";
const requiredScope = request.variables.required_scope;
if (requiredScope === undefined) throw "missing required scope variable";
let scopes = cache.get(token);
if (scopes === undefined) {
const subrequest = await request.subrequest(`/.nginx/scopes`, {
args: `token=${token}`
});
if (subrequest.status !== 200) {
// invalid token
return request.return(401);
}
scopes = subrequest.responseText.split("\n");
cache.set(token, scopes.join(","));
} else {
scopes = scopes.split(",");
}
if (scopes.indexOf(requiredScope) === -1) {
return request.return(403);
}
return request.return(200);
}
export default {
validate,
}
|