forked from Apicurio/apicurio-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseAdminService.ts
286 lines (255 loc) · 12.6 KB
/
useAdminService.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
import { AuthService, useAuth } from "@apicurio/common-ui-components";
import { ConfigService, useConfigService } from "@services/useConfigService.ts";
import { ArtifactTypeInfo } from "@models/artifactTypeInfo.model.ts";
import { Rule } from "@models/rule.model.ts";
import { RoleMapping } from "@models/roleMapping.model.ts";
import { DownloadRef } from "@models/downloadRef.model.ts";
import { ConfigurationProperty } from "@models/configurationProperty.model.ts";
import { UpdateConfigurationProperty } from "@models/updateConfigurationProperty.model.ts";
import {
createAuthOptions,
createEndpoint,
httpDelete,
httpGet, httpPost,
httpPostWithReturn, httpPut,
httpPutWithReturn
} from "@utils/rest.utils.ts";
import { Paging } from "@services/useGroupsService.ts";
import { RoleMappingSearchResults } from "@models/roleMappingSearchResults.model.ts";
const getArtifactTypes = async (config: ConfigService, auth: AuthService): Promise<ArtifactTypeInfo[]> => {
console.info("[AdminService] Getting the global list of artifactTypes.");
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/config/artifactTypes");
return httpGet<ArtifactTypeInfo[]>(endpoint, options);
};
const getRules = async (config: ConfigService, auth: AuthService): Promise<Rule[]> => {
console.info("[AdminService] Getting the global list of rules.");
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/rules");
return httpGet<string[]>(endpoint, options).then( ruleTypes => {
return Promise.all(ruleTypes.map(rt => getRule(config, auth, rt)));
});
};
const getRule = async (config: ConfigService, auth: AuthService, type: string): Promise<Rule> => {
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/rules/:rule", {
rule: type
});
return httpGet<Rule>(endpoint, options);
};
const createRule = async (config: ConfigService, auth: AuthService, type: string, configValue: string): Promise<Rule> => {
console.info("[AdminService] Creating global rule:", type);
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/rules");
const body: Rule = {
config: configValue,
type
};
return httpPostWithReturn(endpoint, body, options);
};
const updateRule = async (config: ConfigService, auth: AuthService, type: string, configValue: string): Promise<Rule|null> => {
console.info("[AdminService] Updating global rule:", type);
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/rules/:rule", {
"rule": type
});
const body: Rule = { config: configValue, type };
return httpPutWithReturn<Rule, Rule>(endpoint, body, options);
};
const deleteRule = async (config: ConfigService, auth: AuthService, type: string): Promise<null> => {
console.info("[AdminService] Deleting global rule:", type);
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/rules/:rule", {
"rule": type
});
return httpDelete(endpoint, options);
};
const getRoleMappings = async (config: ConfigService, auth: AuthService, paging: Paging): Promise<RoleMappingSearchResults> => {
console.info("[AdminService] Getting the list of role mappings.");
const start: number = (paging.page - 1) * paging.pageSize;
const end: number = start + paging.pageSize;
const queryParams: any = {
limit: end,
offset: start
};
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/roleMappings", {}, queryParams);
return httpGet<RoleMappingSearchResults>(endpoint, options);
};
const getRoleMapping = async (config: ConfigService, auth: AuthService, principalId: string): Promise<RoleMapping> => {
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/roleMappings/:principalId", {
principalId
});
return httpGet<RoleMapping>(endpoint, options);
};
const createRoleMapping = async (config: ConfigService, auth: AuthService, principalId: string, role: string, principalName: string): Promise<RoleMapping> => {
console.info("[AdminService] Creating a role mapping:", principalId, role, principalName);
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/roleMappings");
const body: RoleMapping = { principalId, role, principalName };
return httpPost(endpoint, body, options).then(() => {
return body;
});
};
const updateRoleMapping = async (config: ConfigService, auth: AuthService, principalId: string, role: string): Promise<RoleMapping> => {
console.info("[AdminService] Updating role mapping:", principalId, role);
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/roleMappings/:principalId", {
principalId
});
const body: any = { role };
return httpPut<any>(endpoint, body, options).then(() => {
return { principalId, role, principalName: principalId };
});
};
const deleteRoleMapping = async (config: ConfigService, auth: AuthService, principalId: string): Promise<null> => {
console.info("[AdminService] Deleting role mapping for:", principalId);
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/roleMappings/:principalId", {
principalId
});
return httpDelete(endpoint, options);
};
const exportAs = async (config: ConfigService, auth: AuthService, filename: string): Promise<DownloadRef> => {
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
options.headers = {
...options.headers,
"Accept": "application/zip"
}
const endpoint: string = createEndpoint(baseHref, "/admin/export", {}, {
forBrowser: true
});
return httpGet<DownloadRef>(endpoint, options).then(ref => {
if (ref.href.startsWith("/apis/registry/v2")) {
ref.href = ref.href.replace("/apis/registry/v2", baseHref);
ref.href = ref.href + "/" + filename;
} else if (ref.href.startsWith("/apis/registry/v3")) {
ref.href = ref.href.replace("/apis/registry/v3", baseHref);
ref.href = ref.href + "/" + filename;
}
return ref;
});
};
const importFrom = async (config: ConfigService, auth: AuthService, file: string | File, progressFunction: (progressEvent: any) => void): Promise<void> => {
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
options.headers = {
...options.headers,
"Accept": "application/zip"
}
const endpoint: string = createEndpoint(baseHref, "/admin/import");
return httpPost(endpoint, file, options,undefined, progressFunction);
};
const listConfigurationProperties = async (config: ConfigService, auth: AuthService): Promise<ConfigurationProperty[]> => {
console.info("[AdminService] Getting the dynamic config properties.");
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/config/properties");
return httpGet<ConfigurationProperty[]>(endpoint, options);
};
const setConfigurationProperty = async (config: ConfigService, auth: AuthService, propertyName: string, newValue: string): Promise<void> => {
console.info("[AdminService] Setting a config property: ", propertyName);
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/config/properties/:propertyName", {
propertyName
});
const body: UpdateConfigurationProperty = {
value: newValue
};
return httpPut<UpdateConfigurationProperty>(endpoint, body, options);
};
const resetConfigurationProperty = async (config: ConfigService, auth: AuthService, propertyName: string): Promise<void> => {
console.info("[AdminService] Resetting a config property: ", propertyName);
const baseHref: string = config.artifactsUrl();
const options = await createAuthOptions(auth);
const endpoint: string = createEndpoint(baseHref, "/admin/config/properties/:propertyName", {
propertyName
});
return httpDelete(endpoint, options);
};
export interface AdminService {
getArtifactTypes(): Promise<ArtifactTypeInfo[]>;
getRules(): Promise<Rule[]>;
getRule(type: string): Promise<Rule>;
createRule(type: string, config: string): Promise<Rule>;
updateRule(type: string, config: string): Promise<Rule|null>;
deleteRule(type: string): Promise<null>;
getRoleMappings(paging: Paging): Promise<RoleMappingSearchResults>;
getRoleMapping(principalId: string): Promise<RoleMapping>;
createRoleMapping(principalId: string, role: string, principalName: string): Promise<RoleMapping>;
updateRoleMapping(principalId: string, role: string): Promise<RoleMapping>;
deleteRoleMapping(principalId: string): Promise<null>;
exportAs(filename: string): Promise<DownloadRef>;
importFrom(file: string | File, progressFunction: (progressEvent: any) => void): Promise<void>;
listConfigurationProperties(): Promise<ConfigurationProperty[]>;
setConfigurationProperty(propertyName: string, newValue: string): Promise<void>;
resetConfigurationProperty(propertyName: string): Promise<void>;
}
export const useAdminService: () => AdminService = (): AdminService => {
const config: ConfigService = useConfigService();
const auth: AuthService = useAuth();
return {
getArtifactTypes(): Promise<ArtifactTypeInfo[]> {
return getArtifactTypes(config, auth);
},
getRules(): Promise<Rule[]> {
return getRules(config, auth);
},
getRule(type: string): Promise<Rule> {
return getRule(config, auth, type);
},
createRule(type: string, configValue: string): Promise<Rule> {
return createRule(config, auth, type, configValue);
},
updateRule(type: string, configValue: string): Promise<Rule|null> {
return updateRule(config, auth, type, configValue);
},
deleteRule(type: string): Promise<null> {
return deleteRule(config, auth, type);
},
getRoleMappings(paging: Paging): Promise<RoleMappingSearchResults> {
return getRoleMappings(config, auth, paging);
},
getRoleMapping(principalId: string): Promise<RoleMapping> {
return getRoleMapping(config, auth, principalId);
},
createRoleMapping(principalId: string, role: string, principalName: string): Promise<RoleMapping> {
return createRoleMapping(config, auth, principalId, role, principalName);
},
updateRoleMapping(principalId: string, role: string): Promise<RoleMapping> {
return updateRoleMapping(config, auth, principalId, role);
},
deleteRoleMapping(principalId: string): Promise<null> {
return deleteRoleMapping(config, auth, principalId);
},
exportAs(filename: string): Promise<DownloadRef> {
return exportAs(config, auth, filename);
},
importFrom(file: string | File, progressFunction: (progressEvent: any) => void): Promise<void> {
return importFrom(config, auth, file, progressFunction);
},
listConfigurationProperties(): Promise<ConfigurationProperty[]> {
return listConfigurationProperties(config, auth);
},
setConfigurationProperty(propertyName: string, newValue: string): Promise<void> {
return setConfigurationProperty(config, auth, propertyName, newValue);
},
resetConfigurationProperty(propertyName: string): Promise<void> {
return resetConfigurationProperty(config, auth, propertyName);
}
};
};