-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathgitea.ts
68 lines (56 loc) · 1.91 KB
/
gitea.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
import is from '@sindresorhus/is';
import { resolveBaseUrl } from '../url';
import type { HttpOptions, HttpResponse, InternalHttpOptions } from './types';
import { Http } from '.';
let baseUrl: string;
export const setBaseUrl = (newBaseUrl: string): void => {
baseUrl = newBaseUrl.replace(/\/*$/, '/'); // TODO #12875
};
export interface GiteaHttpOptions extends HttpOptions {
paginate?: boolean;
}
function getPaginationContainer<T = unknown>(body: unknown): T[] | null {
if (is.array(body) && body.length) {
return body as T[];
}
if (is.plainObject(body) && is.array(body?.data) && body.data.length) {
return body.data as T[];
}
return null;
}
function resolveUrl(path: string, base: string): URL {
const resolvedUrlString = resolveBaseUrl(base, path);
return new URL(resolvedUrlString);
}
export class GiteaHttp extends Http<GiteaHttpOptions> {
constructor(hostType?: string, options?: HttpOptions) {
super(hostType ?? 'gitea', options);
}
protected override async request<T>(
path: string,
options?: InternalHttpOptions & GiteaHttpOptions,
): Promise<HttpResponse<T>> {
const resolvedUrl = resolveUrl(path, options?.baseUrl ?? baseUrl);
const opts = {
baseUrl,
...options,
};
const res = await super.request<T>(resolvedUrl, opts);
const pc = getPaginationContainer<T>(res.body);
if (opts.paginate && pc) {
const total = parseInt(res.headers['x-total-count'] as string, 10);
let nextPage = parseInt(resolvedUrl.searchParams.get('page') ?? '1', 10);
while (total && pc.length < total) {
nextPage += 1;
resolvedUrl.searchParams.set('page', nextPage.toString());
const nextRes = await super.request<T>(resolvedUrl.toString(), opts);
const nextPc = getPaginationContainer<T>(nextRes.body);
if (nextPc === null) {
break;
}
pc.push(...nextPc);
}
}
return res;
}
}