deno.land / x / jose@v5.2.4 / runtime / fetch_jwks.ts

نووسراو ببینە
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
import type { FetchFunction } from './interfaces.d.ts'import { JOSEError, JWKSTimeout } from '../util/errors.ts'
type AcceptedRequestOptions = Pick<RequestInit, 'headers'>
const fetchJwks: FetchFunction = async ( url: URL, timeout: number, options: AcceptedRequestOptions,) => { let controller!: AbortController let id!: ReturnType<typeof setTimeout> let timedOut = false if (typeof AbortController === 'function') { controller = new AbortController() id = setTimeout(() => { timedOut = true controller.abort() }, timeout) }
const response = await fetch(url.href, { signal: controller ? controller.signal : undefined, redirect: 'manual', headers: options.headers, }).catch((err) => { if (timedOut) throw new JWKSTimeout() throw err })
if (id !== undefined) clearTimeout(id)
if (response.status !== 200) { throw new JOSEError('Expected 200 OK from the JSON Web Key Set HTTP response') }
try { return await response.json() } catch { throw new JOSEError('Failed to parse the JSON Web Key Set HTTP response as JSON') }}export default fetchJwks
jose

Version Info

Tagged at
a month ago