-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathSecureFiles.ts
98 lines (92 loc) · 2.57 KB
/
SecureFiles.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
import { BaseResource } from '@gitbeaker/requester-utils';
import { RequestHelper, endpoint } from '../infrastructure';
import type {
GitlabAPIResponse,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
export interface SecureFileSchema extends Record<string, unknown> {
id: number;
name: string;
checksum: string;
checksum_algorithm: string;
created_at: string;
expires_at?: string;
metadata?: {
id: string;
issuer: {
C: string;
O: string;
CN: string;
OU: string;
};
subject: {
C: string;
O: string;
CN: string;
OU: string;
UID: string;
};
expires_at: string;
};
}
export class SecureFiles<C extends boolean = false> extends BaseResource<C> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
projectId: string | number,
options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<SecureFileSchema[], C, E, P>> {
return RequestHelper.get<SecureFileSchema[]>()(
this,
endpoint`projects/${projectId}/secure_files`,
options,
);
}
create<E extends boolean = false>(
projectId: string | number,
name: string,
file: { content: Blob; filename: string },
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<SecureFileSchema, C, E, void>> {
return RequestHelper.post<SecureFileSchema>()(this, `projects/${projectId}/secure_files`, {
isForm: true,
...options,
file: [file.content, file.filename],
name,
});
}
download<E extends boolean = false>(
projectId: string | number,
secureFileId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<Blob, void, E, void>> {
return RequestHelper.get<Blob>()(
this,
endpoint`projects/${projectId}/secure_files/${secureFileId}/download`,
options,
);
}
remove<E extends boolean = false>(
projectId: string | number,
secureFileId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>> {
return RequestHelper.del()(
this,
endpoint`projects/${projectId}/secure_files/${secureFileId}`,
options,
);
}
show<E extends boolean = false>(
projectId: string | number,
secureFileId: string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<SecureFileSchema, C, E, void>> {
return RequestHelper.get<SecureFileSchema>()(
this,
endpoint`projects/${projectId}/secure_files/${secureFileId}`,
options,
);
}
}