-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.ts
201 lines (170 loc) · 8.46 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
import axios, { AxiosInstance, AxiosRequestConfig, AxiosError, AxiosResponse } from 'axios'
import { CreateNoteOptions, GetMe, GetUserHistory, GetUserNotes, GetUserNote, CreateUserNote, GetUserTeams, GetTeamNotes, CreateTeamNote, SingleNote } from './type'
import * as HackMDErrors from './error'
export type RequestOptions = {
unwrapData?: boolean
}
const defaultOption: RequestOptions = {
unwrapData: true,
}
type OptionReturnType<Opt, T> = Opt extends { unwrapData: false } ? AxiosResponse<T> : Opt extends { unwrapData: true } ? T : T
export type APIClientOptions = {
wrapResponseErrors: boolean;
timeout?: number;
retryConfig?: {
maxRetries: number;
baseDelay: number;
};
}
export class API {
private axios: AxiosInstance
constructor (
readonly accessToken: string,
public hackmdAPIEndpointURL: string = "https://api.hackmd.io/v1",
public options: APIClientOptions = {
wrapResponseErrors: true,
timeout: 30000,
retryConfig: {
maxRetries: 3,
baseDelay: 100,
},
}
) {
if (!accessToken) {
throw new HackMDErrors.MissingRequiredArgument('Missing access token when creating HackMD client')
}
this.axios = axios.create({
baseURL: hackmdAPIEndpointURL,
headers:{
"Content-Type": "application/json",
},
timeout: options.timeout
})
this.axios.interceptors.request.use(
(config: AxiosRequestConfig) =>{
config.headers!.Authorization = `Bearer ${accessToken}`
return config
},
(err: AxiosError) => {
return Promise.reject(err)
}
)
if (options.wrapResponseErrors) {
this.axios.interceptors.response.use(
(response: AxiosResponse) => {
return response
},
async (err: AxiosError) => {
if (!err.response) {
return Promise.reject(err)
}
if (err.response.status >= 500) {
throw new HackMDErrors.InternalServerError(
`HackMD internal error (${err.response.status} ${err.response.statusText})`,
err.response.status,
err.response.statusText,
)
} else if (err.response.status === 429) {
throw new HackMDErrors.TooManyRequestsError(
`Too many requests (${err.response.status} ${err.response.statusText})`,
err.response.status,
err.response.statusText,
parseInt(err.response.headers['x-ratelimit-userlimit'], 10),
parseInt(err.response.headers['x-ratelimit-userremaining'], 10),
parseInt(err.response.headers['x-ratelimit-userreset'], 10),
)
} else {
throw new HackMDErrors.HttpResponseError(
`Received an error response (${err.response.status} ${err.response.statusText}) from HackMD`,
err.response.status,
err.response.statusText,
);
}
}
);
}
if (options.retryConfig) {
this.createRetryInterceptor(this.axios, options.retryConfig.maxRetries, options.retryConfig.baseDelay);
}
}
private exponentialBackoff(retries: number, baseDelay: number): number {
return Math.pow(2, retries) * baseDelay;
}
private isRetryableError(error: AxiosError): boolean {
return (
!error.response ||
(error.response.status >= 500 && error.response.status < 600) ||
error.response.status === 429
);
}
private createRetryInterceptor(axiosInstance: AxiosInstance, maxRetries: number, baseDelay: number): void {
let retryCount = 0;
axiosInstance.interceptors.response.use(
response => response,
async error => {
if (retryCount < maxRetries && this.isRetryableError(error)) {
const remainingCredits = parseInt(error.response?.headers['x-ratelimit-userremaining'], 10);
if (isNaN(remainingCredits) || remainingCredits > 0) {
retryCount++;
const delay = this.exponentialBackoff(retryCount, baseDelay);
console.warn(`Retrying request... attempt #${retryCount} after delay of ${delay}ms`);
await new Promise(resolve => setTimeout(resolve, delay));
return axiosInstance(error.config);
}
}
retryCount = 0; // Reset retry count after a successful request or when not retrying
return Promise.reject(error);
}
);
}
async getMe<Opt extends RequestOptions> (options = defaultOption as Opt): Promise<OptionReturnType<Opt, GetMe>> {
return this.unwrapData(this.axios.get<GetMe>("me"), options.unwrapData) as unknown as OptionReturnType<Opt, GetMe>
}
async getHistory<Opt extends RequestOptions> (options = defaultOption as Opt): Promise<OptionReturnType<Opt, GetUserHistory>> {
return this.unwrapData(this.axios.get<GetUserHistory>("history"), options.unwrapData) as unknown as OptionReturnType<Opt, GetUserHistory>
}
async getNoteList<Opt extends RequestOptions> (options = defaultOption as Opt): Promise<OptionReturnType<Opt, GetUserNotes>> {
return this.unwrapData(this.axios.get<GetUserNotes>("notes"), options.unwrapData) as unknown as OptionReturnType<Opt, GetUserNotes>
}
async getNote<Opt extends RequestOptions> (noteId: string, options = defaultOption as Opt): Promise<OptionReturnType<Opt, GetUserNote>> {
return this.unwrapData(this.axios.get<GetUserNote>(`notes/${noteId}`), options.unwrapData) as unknown as OptionReturnType<Opt, GetUserNote>
}
async createNote<Opt extends RequestOptions> (payload: CreateNoteOptions, options = defaultOption as Opt): Promise<OptionReturnType<Opt, CreateUserNote>> {
return this.unwrapData(this.axios.post<CreateUserNote>("notes", payload), options.unwrapData) as unknown as OptionReturnType<Opt, CreateUserNote>
}
async updateNoteContent<Opt extends RequestOptions> (noteId: string, content?: string, options = defaultOption as Opt): Promise<OptionReturnType<Opt, SingleNote>> {
return this.unwrapData(this.axios.patch<SingleNote>(`notes/${noteId}`, { content }), options.unwrapData) as unknown as OptionReturnType<Opt, SingleNote>
}
async updateNote<Opt extends RequestOptions> (noteId: string, payload: Partial<Pick<SingleNote, 'content' | 'readPermission' | 'writePermission' | 'permalink'>>, options = defaultOption as Opt): Promise<OptionReturnType<Opt, SingleNote>> {
return this.unwrapData(this.axios.patch<SingleNote>(`notes/${noteId}`, payload), options.unwrapData) as unknown as OptionReturnType<Opt, SingleNote>
}
async deleteNote<Opt extends RequestOptions> (noteId: string, options = defaultOption as Opt): Promise<OptionReturnType<Opt, SingleNote>> {
return this.unwrapData(this.axios.delete<SingleNote>(`notes/${noteId}`), options.unwrapData) as unknown as OptionReturnType<Opt, SingleNote>
}
async getTeams<Opt extends RequestOptions> (options = defaultOption as Opt): Promise<OptionReturnType<Opt, GetUserTeams>> {
return this.unwrapData(this.axios.get<GetUserTeams>("teams"), options.unwrapData) as unknown as OptionReturnType<Opt, GetUserTeams>
}
async getTeamNotes<Opt extends RequestOptions> (teamPath: string, options = defaultOption as Opt): Promise<OptionReturnType<Opt, GetTeamNotes>> {
return this.unwrapData(this.axios.get<GetTeamNotes>(`teams/${teamPath}/notes`), options.unwrapData) as unknown as OptionReturnType<Opt, GetTeamNotes>
}
async createTeamNote<Opt extends RequestOptions> (teamPath: string, payload: CreateNoteOptions, options = defaultOption as Opt): Promise<OptionReturnType<Opt, CreateTeamNote>> {
return this.unwrapData(this.axios.post<CreateTeamNote>(`teams/${teamPath}/notes`, payload), options.unwrapData) as unknown as OptionReturnType<Opt, CreateTeamNote>
}
async updateTeamNoteContent (teamPath: string, noteId: string, content?: string): Promise<AxiosResponse> {
return this.axios.patch<AxiosResponse>(`teams/${teamPath}/notes/${noteId}`, { content })
}
async updateTeamNote (teamPath: string, noteId: string, options: Partial<Pick<SingleNote, 'content' | 'readPermission' | 'writePermission' | 'permalink'>>): Promise<AxiosResponse> {
return this.axios.patch<AxiosResponse>(`teams/${teamPath}/notes/${noteId}`, options)
}
async deleteTeamNote (teamPath: string, noteId: string): Promise<AxiosResponse> {
return this.axios.delete<AxiosResponse>(`teams/${teamPath}/notes/${noteId}`)
}
private unwrapData<T> (reqP: Promise<AxiosResponse<T>>, unwrap = true) {
if (unwrap) {
return reqP.then(response => response.data)
} else {
return reqP
}
}
}
export default API