forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeployKeys.ts
116 lines (105 loc) · 3.26 KB
/
DeployKeys.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
import { BaseResource } from '@gitbeaker/requester-utils';
import { RequestHelper, endpoint } from '../infrastructure';
import type {
BaseRequestOptions,
GitlabAPIResponse,
OneOrNoneOf,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
import type { SimpleProjectSchema } from './Projects';
export interface CondensedDeployKeySchema extends Record<string, unknown> {
id: number;
title: string;
key: string;
created_at: string;
}
export interface DeployKeySchema extends CondensedDeployKeySchema {
fingerprint: string;
fingerprint_sha256: string;
expires_at?: string;
can_push?: boolean;
}
export interface ExpandedDeployKeySchema extends DeployKeySchema {
projects_with_write_access?: SimpleProjectSchema[];
}
export class DeployKeys<C extends boolean = false> extends BaseResource<C> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
{
projectId,
userId,
...options
}: OneOrNoneOf<{ projectId: string | number; userId: string | number }> & {
public?: boolean;
} & PaginationRequestOptions<P> &
BaseRequestOptions<E> = {} as any,
): Promise<GitlabAPIResponse<ExpandedDeployKeySchema[], C, E, P>> {
let url: string;
if (projectId) {
url = endpoint`projects/${projectId}/deploy_keys`;
} else if (userId) {
url = endpoint`users/${userId}/project_deploy_keys`;
} else {
url = 'deploy_keys';
}
return RequestHelper.get<ExpandedDeployKeySchema[]>()(this, url, options);
}
create<E extends boolean = false>(
projectId: string | number,
title: string,
key: string,
options?: { canPush?: boolean } & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<DeployKeySchema, C, E, void>> {
return RequestHelper.post<DeployKeySchema>()(
this,
endpoint`projects/${projectId}/deploy_keys`,
{
title,
key,
...options,
},
);
}
edit<E extends boolean = false>(
projectId: string | number,
keyId: number,
options?: { canPush?: boolean; title?: string } & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<DeployKeySchema, C, E, void>> {
return RequestHelper.put<DeployKeySchema>()(
this,
endpoint`projects/${projectId}/deploy_keys/${keyId}`,
options,
);
}
enable<E extends boolean = false>(
projectId: string | number,
keyId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<CondensedDeployKeySchema, C, E, void>> {
return RequestHelper.post<CondensedDeployKeySchema>()(
this,
endpoint`projects/${projectId}/deploy_keys/${keyId}/enable`,
options,
);
}
remove<E extends boolean = false>(
projectId: string | number,
keyId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>> {
return RequestHelper.del()(this, endpoint`projects/${projectId}/deploy_keys/${keyId}`, options);
}
show<E extends boolean = false>(
projectId: string | number,
keyId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<DeployKeySchema, C, E, void>> {
return RequestHelper.get<DeployKeySchema>()(
this,
endpoint`projects/${projectId}/deploy_keys/${keyId}`,
options,
);
}
}