-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
api.ts
233 lines (205 loc) · 6.79 KB
/
api.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
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { HttpSetup } from 'src/core/public';
import {
ESUpgradeStatus,
CloudBackupStatus,
ClusterUpgradeState,
ResponseError,
SystemIndicesMigrationStatus,
} from '../../../common/types';
import {
API_BASE_PATH,
CLUSTER_UPGRADE_STATUS_POLL_INTERVAL_MS,
DEPRECATION_LOGS_COUNT_POLL_INTERVAL_MS,
CLOUD_BACKUP_STATUS_POLL_INTERVAL_MS,
} from '../../../common/constants';
import {
UseRequestConfig,
SendRequestConfig,
SendRequestResponse,
sendRequest as _sendRequest,
useRequest as _useRequest,
} from '../../shared_imports';
type ClusterUpgradeStateListener = (clusterUpgradeState: ClusterUpgradeState) => void;
export class ApiService {
private client: HttpSetup | undefined;
private clusterUpgradeStateListeners: ClusterUpgradeStateListener[] = [];
private handleClusterUpgradeError(error: ResponseError | null) {
const isClusterUpgradeError = Boolean(error && error.statusCode === 426);
if (isClusterUpgradeError) {
const clusterUpgradeState = error!.attributes!.allNodesUpgraded
? 'isUpgradeComplete'
: 'isUpgrading';
this.clusterUpgradeStateListeners.forEach((listener) => listener(clusterUpgradeState));
}
}
private useRequest<R = any>(config: UseRequestConfig) {
if (!this.client) {
throw new Error('API service has not been initialized.');
}
const response = _useRequest<R, ResponseError>(this.client, config);
// NOTE: This will cause an infinite render loop in any component that both
// consumes the hook calling this useRequest function and also handles
// cluster upgrade errors. Note that sendRequest doesn't have this problem.
//
// This is due to React's fundamental expectation that hooks be idempotent,
// so it can render a component as many times as necessary and thereby call
// the hook on each render without worrying about that triggering subsequent
// renders.
//
// In this case we call handleClusterUpgradeError every time useRequest is
// called, which is on every render. If handling the cluster upgrade error
// causes a state change in the consuming component, that will trigger a
// render, which will call useRequest again, calling handleClusterUpgradeError,
// causing a state change in the consuming component, and so on.
this.handleClusterUpgradeError(response.error);
return response;
}
private async sendRequest<R = any>(
config: SendRequestConfig
): Promise<SendRequestResponse<R, ResponseError>> {
if (!this.client) {
throw new Error('API service has not been initialized.');
}
const response = await _sendRequest<R, ResponseError>(this.client, config);
this.handleClusterUpgradeError(response.error);
return response;
}
public setup(httpClient: HttpSetup): void {
this.client = httpClient;
}
public onClusterUpgradeStateChange(listener: ClusterUpgradeStateListener) {
this.clusterUpgradeStateListeners.push(listener);
}
public useLoadClusterUpgradeStatus() {
return this.useRequest({
path: `${API_BASE_PATH}/cluster_upgrade_status`,
method: 'get',
pollIntervalMs: CLUSTER_UPGRADE_STATUS_POLL_INTERVAL_MS,
});
}
public useLoadCloudBackupStatus() {
return this.useRequest<CloudBackupStatus>({
path: `${API_BASE_PATH}/cloud_backup_status`,
method: 'get',
pollIntervalMs: CLOUD_BACKUP_STATUS_POLL_INTERVAL_MS,
});
}
public useLoadSystemIndicesMigrationStatus() {
return this.useRequest<SystemIndicesMigrationStatus>({
path: `${API_BASE_PATH}/system_indices_migration`,
method: 'get',
});
}
public async migrateSystemIndices() {
const result = await this.sendRequest({
path: `${API_BASE_PATH}/system_indices_migration`,
method: 'post',
});
return result;
}
public useLoadEsDeprecations() {
return this.useRequest<ESUpgradeStatus>({
path: `${API_BASE_PATH}/es_deprecations`,
method: 'get',
});
}
public useLoadDeprecationLogging() {
return this.useRequest<{
isDeprecationLogIndexingEnabled: boolean;
isDeprecationLoggingEnabled: boolean;
}>({
path: `${API_BASE_PATH}/deprecation_logging`,
method: 'get',
});
}
public async updateDeprecationLogging(loggingData: { isEnabled: boolean }) {
return await this.sendRequest({
path: `${API_BASE_PATH}/deprecation_logging`,
method: 'put',
body: JSON.stringify(loggingData),
});
}
public getDeprecationLogsCount(from: string) {
return this.useRequest<{
count: number;
}>({
path: `${API_BASE_PATH}/deprecation_logging/count`,
method: 'get',
query: { from },
pollIntervalMs: DEPRECATION_LOGS_COUNT_POLL_INTERVAL_MS,
});
}
public deleteDeprecationLogsCache() {
return this.sendRequest({
path: `${API_BASE_PATH}/deprecation_logging/cache`,
method: 'delete',
});
}
public async updateIndexSettings(indexName: string, settings: string[]) {
return await this.sendRequest({
path: `${API_BASE_PATH}/${indexName}/index_settings`,
method: 'post',
body: {
settings: JSON.stringify(settings),
},
});
}
public async upgradeMlSnapshot(body: { jobId: string; snapshotId: string }) {
return await this.sendRequest({
path: `${API_BASE_PATH}/ml_snapshots`,
method: 'post',
body,
});
}
public async deleteMlSnapshot({ jobId, snapshotId }: { jobId: string; snapshotId: string }) {
return await this.sendRequest({
path: `${API_BASE_PATH}/ml_snapshots/${jobId}/${snapshotId}`,
method: 'delete',
});
}
public async getMlSnapshotUpgradeStatus({
jobId,
snapshotId,
}: {
jobId: string;
snapshotId: string;
}) {
return await this.sendRequest({
path: `${API_BASE_PATH}/ml_snapshots/${jobId}/${snapshotId}`,
method: 'get',
});
}
public useLoadMlUpgradeMode() {
return this.useRequest<{
mlUpgradeModeEnabled: boolean;
}>({
path: `${API_BASE_PATH}/ml_upgrade_mode`,
method: 'get',
});
}
public async getReindexStatus(indexName: string) {
return await this.sendRequest({
path: `${API_BASE_PATH}/reindex/${indexName}`,
method: 'get',
});
}
public async startReindexTask(indexName: string) {
return await this.sendRequest({
path: `${API_BASE_PATH}/reindex/${indexName}`,
method: 'post',
});
}
public async cancelReindexTask(indexName: string) {
return await this.sendRequest({
path: `${API_BASE_PATH}/reindex/${indexName}/cancel`,
method: 'post',
});
}
}
export const apiService = new ApiService();