-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathindex.ts
66 lines (52 loc) · 1.69 KB
/
index.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
export * from './indexer.gen'
import { Indexer as IndexerRpc } from './indexer.gen'
const fetch = typeof global === 'object' ? global.fetch : window.fetch
export interface SequenceIndexerOpts {
JWTAuth?: string
ProjectAccessKey?: string
}
export class SequenceIndexer extends IndexerRpc {
public jwtAuth?: string
public projectAccessKey?: string
constructor(
hostname: string,
opts: SequenceIndexerOpts
);
constructor(
hostname: string,
projectAccessKey?: string,
jwtAuth?: string
);
constructor(
hostname: string,
...args: any[]
) {
super(hostname.endsWith('/') ? hostname.slice(0, -1) : hostname, fetch)
if (args.length === 1 && typeof args[0] === 'object') {
const opts = args[0] as SequenceIndexerOpts
this.projectAccessKey = opts.ProjectAccessKey
this.jwtAuth = opts.JWTAuth
} else {
const [projectAccessKey, jwtAuth] = args
this.projectAccessKey = projectAccessKey || undefined
this.jwtAuth = jwtAuth || undefined
}
this.fetch = this._fetch
}
_fetch = (input: RequestInfo, init?: RequestInit): Promise<Response> => {
// automatically include jwt and access key auth header to requests
// if its been set on the api client
const headers: { [key: string]: any } = {}
const jwtAuth = this.jwtAuth
const projectAccessKey = this.projectAccessKey
if (jwtAuth && jwtAuth.length > 0) {
headers['Authorization'] = `BEARER ${jwtAuth}`
}
if (projectAccessKey && projectAccessKey.length > 0) {
headers['X-Access-Key'] = projectAccessKey
}
// before the request is made
init!.headers = { ...init!.headers, ...headers }
return fetch(input, init)
}
}