-
Notifications
You must be signed in to change notification settings - Fork 266
/
actions.js
418 lines (328 loc) · 10.2 KB
/
actions.js
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
import https from 'https';
import { addParam, parse as parseUrl, stringify as unParseUrl } from '@shell/utils/url';
import { handleSpoofedRequest, loadSchemas } from '@shell/plugins/dashboard-store/actions';
import { set } from '@shell/utils/object';
import { deferred } from '@shell/utils/promise';
import { streamJson, streamingSupported } from '@shell/utils/stream';
import isObject from 'lodash/isObject';
import { classify } from '@shell/plugins/dashboard-store/classify';
import { NAMESPACE } from '@shell/config/types';
import jsyaml from 'js-yaml';
export default {
// Need to override this, so that the 'this' context is correct (this class not the base class)
async loadSchemas(ctx, watch = true) {
return await loadSchemas(ctx, watch);
},
async request({ state, dispatch, rootGetters }, pOpt ) {
const opt = pOpt.opt || pOpt;
const spoofedRes = await handleSpoofedRequest(rootGetters, 'cluster', opt);
if (spoofedRes) {
return spoofedRes;
}
opt.url = opt.url.replace(/\/*$/g, '');
// FIXME: RC Standalone - Tech Debt move this to steve store get/set prependPath
// Cover cases where the steve store isn't actually going out to steve (epinio standalone)
const prependPath = this.$config.rancherEnv === 'epinio' ? `/pp/v1/epinio/rancher` : '';
if (prependPath) {
if (opt.url.startsWith('/')) {
opt.url = prependPath + opt.url;
} else {
const url = parseUrl(opt.url);
if (!url.path.startsWith(prependPath)) {
url.path = prependPath + url.path;
opt.url = unParseUrl(url);
}
}
}
opt.httpsAgent = new https.Agent({ rejectUnauthorized: false });
const method = (opt.method || 'get').toLowerCase();
const headers = (opt.headers || {});
const key = JSON.stringify(headers) + method + opt.url;
let waiting;
if ( (method === 'get') ) {
waiting = state.deferredRequests[key];
if ( waiting ) {
const later = deferred();
waiting.push(later);
// console.log('Deferred request for', key, waiting.length);
return later.promise;
} else {
// Set it to something so that future requests know to defer.
waiting = [];
state.deferredRequests[key] = waiting;
}
}
if ( opt.stream && state.allowStreaming && state.config.supportsStream && streamingSupported() ) {
// console.log('Using Streaming for', opt.url);
return streamJson(opt.url, opt, opt.onData).then(() => {
return { finishDeferred: finishDeferred.bind(null, key, 'resolve') };
}).catch((err) => {
return onError(err);
});
} else {
// console.log('NOT Using Streaming for', opt.url);
}
let paginatedResult;
while (true) {
try {
const out = await makeRequest(this, opt);
if (!opt.depaginate) {
return out;
}
if (!paginatedResult) {
// First result, so store it
paginatedResult = out;
} else {
// Subsequent request, so add to it
paginatedResult.data = paginatedResult.data.concat(out.data);
}
if (out?.pagination?.next) {
// More results to come, update options
opt.url = out.pagination.next;
} else {
// No more results, so clear out the pagination section (which will be stale from the first request)
delete paginatedResult.pagination?.first;
delete paginatedResult.pagination?.last;
delete paginatedResult.pagination?.next;
delete paginatedResult.pagination?.partial;
return paginatedResult;
}
} catch (err) {
return onError(err);
}
}
function makeRequest(that, opt) {
return that.$axios(opt).then((res) => {
let out;
if ( opt.responseType ) {
out = res;
} else {
out = responseObject(res);
}
finishDeferred(key, 'resolve', out);
return out;
});
}
function finishDeferred(key, action = 'resolve', res) {
const waiting = state.deferredRequests[key] || [];
// console.log('Resolving deferred for', key, waiting.length);
while ( waiting.length ) {
waiting.pop()[action](res);
}
delete state.deferredRequests[key];
}
function responseObject(res) {
let out = res.data;
const fromHeader = res.headers['x-api-cattle-auth'];
if ( fromHeader && fromHeader !== rootGetters['auth/fromHeader'] ) {
dispatch('auth/gotHeader', fromHeader, { root: true });
}
if ( res.status === 204 || out === null ) {
out = {};
}
if ( typeof out !== 'object' ) {
out = { data: out };
}
Object.defineProperties(out, {
_status: { value: res.status },
_statusText: { value: res.statusText },
_headers: { value: res.headers },
_req: { value: res.request },
_url: { value: opt.url },
});
return out;
}
function onError(err) {
let out = err;
if ( err?.response ) {
const res = err.response;
// Go to the logout page for 401s, unless redirectUnauthorized specifically disables (for the login page)
if ( opt.redirectUnauthorized !== false && res.status === 401 ) {
dispatch('auth/logout', opt.logoutOnError, { root: true });
}
if ( typeof res.data !== 'undefined' ) {
out = responseObject(res);
}
}
finishDeferred(key, 'reject', out);
return Promise.reject(out);
}
},
promptMove({ commit, state }, resources) {
commit('action-menu/togglePromptMove', resources, { root: true });
},
promptRestore({ commit, state }, resources ) {
commit('action-menu/togglePromptRestore', resources, { root: true });
},
assignTo({ commit, state }, resources = []) {
commit('action-menu/toggleAssignTo', resources, { root: true });
},
async resourceAction({ getters, dispatch }, {
resource, actionName, body, opt,
}) {
opt = opt || {};
if ( !opt.url ) {
opt.url = resource.actionLinkFor(actionName);
// opt.url = (resource.actions || resource.actionLinks)[actionName];
}
opt.method = 'post';
opt.data = body;
const res = await dispatch('request', { opt });
if ( opt.load !== false && res.type === 'collection' ) {
await dispatch('loadMulti', res.data);
return res.data.map(x => getters.byId(x.type, x.id) || x);
} else if ( opt.load !== false && res.type && res.id ) {
return dispatch('load', { data: res });
} else {
return res;
}
},
promptUpdate({ commit, state }, resources = []) {
commit('action-menu/togglePromptUpdate', resources, { root: true });
},
async collectionAction({ getters, dispatch }, {
type, actionName, body, opt
}) {
opt = opt || {};
if ( !opt.url ) {
// Cheating, but cheaper than loading the whole collection...
const schema = getters['schemaFor'](type);
opt.url = addParam(schema.links.collection, 'action', actionName);
}
opt.method = 'post';
opt.data = body;
const res = await dispatch('request', { opt });
if ( opt.load !== false && res.type === 'collection' ) {
await dispatch('loadMulti', res.data);
return res.data.map(x => getters.byId(x.type, x.id) || x);
} else if ( opt.load !== false && res.type && res.id ) {
return dispatch('load', { data: res });
} else {
return res;
}
},
createNamespace(ctx, obj) {
return classify(ctx, {
type: NAMESPACE,
metadata: { name: obj.name }
});
},
cleanForNew(ctx, obj) {
const m = obj.metadata || {};
dropKeys(obj, newRootKeys);
dropKeys(m, newMetadataKeys);
dropCattleKeys(m.annotations);
dropCattleKeys(m.labels);
m.name = '';
if ( obj?.spec?.crd?.spec?.names?.kind ) {
obj.spec.crd.spec.names.kind = '';
}
return obj;
},
cleanForDiff(ctx, obj) {
const m = obj.metadata || {};
if ( !m.labels ) {
m.labels = {};
}
if ( !m.annotations ) {
m.annotations = {};
}
dropUnderscores(obj);
dropKeys(obj, diffRootKeys);
dropKeys(m, diffMetadataKeys);
dropCattleKeys(m.annotations);
dropCattleKeys(m.labels);
return obj;
},
cleanForDetail(ctx, resource) {
// Ensure labels & annotations exists, since lots of things need them
if ( !resource.metadata ) {
set(resource, 'metadata', {});
}
if ( !resource.metadata.annotations ) {
set(resource, 'metadata.annotations', {});
}
if ( !resource.metadata.labels ) {
set(resource, 'metadata.labels', {});
}
return resource;
},
// remove fields added by steve before showing/downloading yamls
cleanForDownload(ctx, yaml) {
if (!yaml) {
return;
}
const rootKeys = [
'id',
'links',
'type',
'actions'
];
const metadataKeys = [
'fields',
'relationships',
'state',
];
const conditionKeys = [
'error',
'transitioning',
];
const obj = jsyaml.load(yaml);
dropKeys(obj, rootKeys);
dropKeys(obj?.metadata, metadataKeys);
(obj?.status?.conditions || []).forEach(condition => dropKeys(condition, conditionKeys));
return jsyaml.dump(obj);
}
};
const diffRootKeys = [
'actions', 'links', 'status', '__rehydrate', '__clone'
];
const diffMetadataKeys = [
'ownerReferences',
'selfLink',
'creationTimestamp',
'deletionTimestamp',
'state',
'fields',
'relationships',
'generation',
'managedFields',
'resourceVersion',
];
const newRootKeys = [
'actions', 'links', 'status', 'id'
];
const newMetadataKeys = [
...diffMetadataKeys,
'uid',
];
function dropUnderscores(obj) {
for ( const k in obj ) {
if ( k.startsWith('__') ) {
delete obj[k];
} else {
const v = obj[k];
if ( isObject(v) ) {
dropUnderscores(v);
}
}
}
}
function dropKeys(obj, keys) {
if ( !obj ) {
return;
}
for ( const k of keys ) {
delete obj[k];
}
}
function dropCattleKeys(obj) {
if ( !obj ) {
return;
}
Object.keys(obj).forEach((key) => {
if ( !!key.match(/(^|field\.)cattle\.io(\/.*|$)/) ) {
delete obj[key];
}
});
}