-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathattributes.controller.ts
544 lines (501 loc) · 18.5 KB
/
attributes.controller.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
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
namespace Jmx {
const PROPERTIES_COLUMN_DEFS = [
{
field: 'name',
displayName: 'Attribute'
},
{
field: 'value',
displayName: 'Value'
}
];
const FOLDERS_COLUMN_DEFS = [
{
field: 'title',
displayName: 'Name'
}
];
export function AttributesController(
$scope,
$location: ng.ILocationService,
workspace: Workspace,
localStorage: Storage,
$uibModal: angular.ui.bootstrap.IModalService,
attributesService: AttributesService) {
'ngInject';
let gridData = [];
$scope.nid = 'empty';
$scope.selectedItems = [];
$scope.lastKey = null;
$scope.attributesInfoCache = null;
$scope.entity = {};
$scope.attributeSchema = {};
$scope.gridData = [];
$scope.columnDefs = [];
const ATTRIBUTE_SCHEMA_BASIC = {
properties: {
'key': {
type: 'string',
readOnly: 'true'
},
'description': {
description: 'Description',
type: 'string',
formTemplate: "<textarea class='form-control' rows='2' readonly='true'></textarea>"
},
'type': {
type: 'string',
readOnly: 'true'
},
'jolokia': {
label: 'Jolokia URL',
type: 'string',
formTemplate: `
<div class="hawtio-clipboard-container">
<button hawtio-clipboard="#attribute-jolokia-url" class="btn btn-default">
<i class="fa fa-clipboard" aria-hidden="true"></i>
</button>
<input type="text" id="attribute-jolokia-url" class='form-control' style="padding-right: 26px" value="{{entity.jolokia}}" readonly='true'>
</div>
`
}
}
};
// clear selection if we clicked the jmx nav bar button
// otherwise we may show data from Camel/ActiveMQ or other plugins that
// reuse the JMX plugin for showing tables (#884)
let currentUrl = $location.url();
if (_.endsWith(currentUrl, "/jmx/attributes")) {
log.debug("Reset selection in JMX plugin");
workspace.selection = null;
$scope.lastKey = null;
}
$scope.nid = $location.search()['nid'];
log.debug("attribute - nid: ", $scope.nid);
let updateTable = _.debounce(updateTableContents, 50, { leading: false, trailing: true });
$scope.$on(TreeEvent.Updated, updateTable);
updateTable();
$scope.onClick = item => {
if ($scope.columnDefs === FOLDERS_COLUMN_DEFS) {
gotoFolder(item);
} else if ($scope.columnDefs === PROPERTIES_COLUMN_DEFS) {
onViewAttribute(item);
}
};
function onViewAttribute(
row: { summary: string, key: string, attrDesc: string, type: string, rw: boolean }): void {
if (!row.summary) {
return;
}
if (row.rw) {
// for writable attribute, we need to check RBAC
attributesService.canInvoke(workspace.getSelectedMBeanName(), row.key, row.type)
.then((canInvoke) => showAttributeDialog(row, canInvoke));
} else {
showAttributeDialog(row, false);
}
}
function showAttributeDialog(
row: { summary: string, key: string, attrDesc: string, type: string },
rw: boolean): void {
// create entity and populate it with data from the selected row
$scope.entity = {
key: row.key,
description: row.attrDesc,
type: row.type,
jolokia: attributesService.buildJolokiaUrl(workspace.getSelectedMBeanName(), row.key),
rw: rw
};
let rows = numberOfRows(row);
let readOnly = !$scope.entity.rw;
if (readOnly) {
// if the value is empty its a as we need this for the table to allow us to click on the empty row
if (row.summary === ' ') {
$scope.entity["attrValueView"] = '';
} else {
$scope.entity["attrValueView"] = row.summary;
}
initAttributeSchemaView($scope, rows);
} else {
// if the value is empty its a as we need this for the table to allow us to click on the empty row
if (row.summary === ' ') {
$scope.entity["attrValueEdit"] = '';
} else {
$scope.entity["attrValueEdit"] = row.summary;
}
initAttributeSchemaEdit($scope, rows);
}
$uibModal.open({
templateUrl: 'attributeModal.html',
scope: $scope,
size: 'lg'
})
.result.then(() => {
// update the attribute on the mbean
let mbean = workspace.getSelectedMBeanName();
if (mbean) {
let value = $scope.entity["attrValueEdit"];
let key = $scope.entity["key"];
attributesService.update(mbean, key, value);
}
$scope.entity = {};
})
.catch(() => {
$scope.entity = {};
});
}
function numberOfRows(row: { summary: string }): number {
// calculate a textare with X number of rows that usually fit the value to display
let len = row.summary.length;
let rows = (len / 40) + 1;
if (rows > 10) {
// cap at most 10 rows to not make the dialog too large
rows = 10;
}
return rows;
}
function initAttributeSchemaView($scope, rows: number): void {
// clone from the basic schema to the new schema we create on-the-fly
// this is needed as the dialog have problems if reusing the schema, and changing the schema afterwards
// so its safer to create a new schema according to our needs
$scope.attributeSchemaView = {};
for (let key in ATTRIBUTE_SCHEMA_BASIC) {
$scope.attributeSchemaView[key] = ATTRIBUTE_SCHEMA_BASIC[key];
}
// and add the new attrValue which is dynamic computed
$scope.attributeSchemaView.properties.attrValueView = {
description: 'Value',
label: "Value",
type: 'string',
formTemplate: `<textarea id="attribute-value" class='form-control' style="overflow-y: scroll" rows='${rows}' readonly='true'></textarea>
`
};
// just to be safe, then delete not needed part of the schema
if ($scope.attributeSchemaView) {
delete $scope.attributeSchemaView.properties.attrValueEdit;
}
}
function initAttributeSchemaEdit($scope, rows: number): void {
// clone from the basic schema to the new schema we create on-the-fly
// this is needed as the dialog have problems if reusing the schema, and changing the schema afterwards
// so its safer to create a new schema according to our needs
$scope.attributeSchemaEdit = {};
for (let key in ATTRIBUTE_SCHEMA_BASIC) {
$scope.attributeSchemaEdit[key] = ATTRIBUTE_SCHEMA_BASIC[key];
}
// and add the new attrValue which is dynamic computed
$scope.attributeSchemaEdit.properties.attrValueEdit = {
description: 'Value',
label: "Value",
type: 'string',
formTemplate: `<textarea id="attribute-value" class='form-control' style="overflow-y: scroll" rows='${rows}'></textarea>`
};
// just to be safe, then delete not needed part of the schema
if ($scope.attributeSchemaEdit) {
delete $scope.attributeSchemaEdit.properties.attrValueView;
}
}
function updateTableContents(): void {
let mbean = workspace.getSelectedMBeanName();
if (mbean && $scope.attributesInfoCache === null) {
attributesService.listMBean(mbean, Core.onSuccess((response) => {
$scope.attributesInfoCache = response.value;
log.debug("Updated attributes info cache for mbean", mbean, $scope.attributesInfoCache);
updateScope();
}));
} else {
updateScope();
}
}
function updateScope(): void {
// lets clear any previous queries just in case!
attributesService.unregisterJolokia($scope);
$scope.gridData = [];
$scope.mbeanIndex = null;
let mbean = workspace.getSelectedMBeanName();
let node = workspace.selection;
let request = null;
if (mbean) {
request = { type: 'read', mbean: mbean };
if (_.isNil(node) || node.key !== $scope.lastKey) {
$scope.columnDefs = PROPERTIES_COLUMN_DEFS;
}
} else if (node) {
if (node.key !== $scope.lastKey) {
$scope.columnDefs = [];
}
// lets query each child's details
let children = node.children;
if (children) {
let childNodes = children.map((child) => child.objectName);
let mbeans = childNodes.filter((mbean) => FilterHelpers.search(mbean, ''));
let maxFolderSize = localStorage["jmxMaxFolderSize"];
mbeans = mbeans.slice(0, maxFolderSize);
if (mbeans) {
let typeNames = Jmx.getUniqueTypeNames(children);
if (typeNames.length <= 1) {
let query = mbeans.map((mbean) => {
return { type: "READ", mbean: mbean, ignoreErrors: true };
});
if (query.length > 0) {
request = query;
// deal with multiple results
$scope.mbeanIndex = {};
$scope.mbeanRowCounter = 0;
$scope.mbeanCount = mbeans.length;
}
} else {
log.debug("Too many type names ", typeNames);
}
}
}
}
if (request) {
$scope.request = request;
attributesService.registerJolokia($scope, request, Core.onSuccess(render));
} else if (node) {
if (node.key !== $scope.lastKey) {
$scope.columnDefs = FOLDERS_COLUMN_DEFS;
}
$scope.gridData = node.children;
}
if (node) {
$scope.lastKey = node.key;
$scope.title = node.text;
}
Core.$apply($scope);
}
function render(response: { request: any, value: any }): void {
let data = response.value;
let mbeanIndex = $scope.mbeanIndex;
let mbean = response.request['mbean'];
if (mbean) {
// lets store the mbean in the row for later
data["_id"] = mbean;
}
if (mbeanIndex) {
if (mbean) {
let idx = mbeanIndex[mbean];
if (!angular.isDefined(idx)) {
idx = $scope.mbeanRowCounter;
mbeanIndex[mbean] = idx;
$scope.mbeanRowCounter += 1;
}
if (idx === 0) {
// this is to force the table to repaint
$scope.selectedIndices = $scope.selectedItems.map((item) => $scope.gridData.indexOf(item));
gridData = [];
if (!$scope.columnDefs.length) {
// lets update the column definitions based on any configured defaults
let key = workspace.selectionConfigKey();
let defaultDefs = _.clone(workspace.attributeColumnDefs[key]) || [];
let defaultSize = defaultDefs.length;
let map = {};
angular.forEach(defaultDefs, (value, key) => {
let field = value.field;
if (field) {
map[field] = value
}
});
let extraDefs = [];
_.forEach(data, (value, key) => {
if (includePropertyValue(key, value)) {
if (!map[key]) {
extraDefs.push({
field: key,
displayName: key === '_id' ? 'Object name' : Core.humanizeValue(key),
visible: defaultSize === 0
});
}
}
});
// the additional columns (which are not pre-configured), should be sorted
// so the column menu has a nice sorted list instead of random ordering
extraDefs = extraDefs.sort((def, def2) => {
// make sure _id is last
if (_.startsWith(def.field, '_')) {
return 1;
} else if (_.startsWith(def2.field, '_')) {
return -1;
}
return def.field.localeCompare(def2.field);
});
extraDefs.forEach(e => defaultDefs.push(e));
if (extraDefs.length > 0) {
$scope.hasExtraColumns = true;
}
$scope.columnDefs = defaultDefs;
}
}
// mask attribute read error
_.forEach(data, (value, key) => {
if (includePropertyValue(key, value)) {
data[key] = maskReadError(value);
}
});
// assume 1 row of data per mbean
gridData[idx] = data;
let count = $scope.mbeanCount;
if (!count || idx + 1 >= count) {
// only cause a refresh on the last row
let newSelections = $scope.selectedIndices.map((idx) => $scope.gridData[idx]).filter((row) => row);
$scope.selectedItems.splice(0, $scope.selectedItems.length);
$scope.selectedItems.push.apply($scope.selectedItems, newSelections);
$scope.gridData = gridData;
Core.$apply($scope);
}
// if the last row, then fire an event
} else {
log.info("No mbean name in request", JSON.stringify(response.request));
}
} else {
$scope.columnDefs = PROPERTIES_COLUMN_DEFS;
let showAllAttributes = true;
if (_.isObject(data)) {
let properties = [];
_.forEach(data, (value, key) => {
if (showAllAttributes || includePropertyValue(key, value)) {
// always skip keys which start with _
if (!_.startsWith(key, "_")) {
// lets format the ObjectName nicely dealing with objects with
// nested object names or arrays of object names
if (key === "ObjectName") {
value = unwrapObjectName(value);
}
// lets unwrap any arrays of object names
if (_.isArray(value)) {
value = value.map((v) => unwrapObjectName(v));
}
// the value must be string as the sorting/filtering of the table relies on that
let type = lookupAttributeType(key);
let data = {
key: key,
name: Core.humanizeValue(key),
value: maskReadError(Core.safeNullAsString(value, type))
};
generateSummaryAndDetail(key, data);
properties.push(data);
}
}
});
if (!_.some(properties, (p) => {
return p['key'] === 'ObjectName';
})) {
let objectName = {
key: "ObjectName",
name: "Object Name",
value: mbean
};
generateSummaryAndDetail(objectName.key, objectName);
properties.push(objectName);
}
properties = _.sortBy(properties, 'name');
$scope.selectedItems = [data];
data = properties;
}
$scope.gridData = data;
Core.$apply($scope);
}
}
function maskReadError(value: any): any {
if (typeof value !== 'string') {
return value;
}
let forbidden = /^ERROR: Reading attribute .+ \(class java\.lang\.SecurityException\)$/;
let unsupported = /^ERROR: java\.lang\.UnsupportedOperationException: .+ \(class javax\.management\.RuntimeMBeanException\)$/;
if (value.match(forbidden)) {
return "**********";
} else if (value.match(unsupported)) {
return "(Not supported)";
} else {
return value;
}
}
$scope.folderIconClass = (item: any): string => {
if ($scope.columnDefs === FOLDERS_COLUMN_DEFS) {
if (!item.objectName) {
return 'pficon pficon-folder-close';
}
let mbean = item.mbean;
return _.isNil(mbean) || _.isNil(mbean.canInvoke) || mbean.canInvoke ? 'fa fa-cog' : 'fa fa-lock';
} else {
return '';
}
}
function gotoFolder(item: any): void {
if (item.key) {
$location.search('nid', item.key);
}
}
function unwrapObjectName(value: any): any {
if (!_.isObject(value)) {
return value;
}
let keys = Object.keys(value);
if (keys.length === 1 && keys[0] === "objectName") {
return value["objectName"];
}
return value;
}
function generateSummaryAndDetail(key, data): void {
let value = Core.escapeHtml(data.value);
if (!angular.isArray(value) && angular.isObject(value)) {
let detailHtml = "<table class='table table-striped'>";
let summary = "";
let object = value;
let keys = Object.keys(value).sort();
angular.forEach(keys, (key) => {
let value = object[key];
detailHtml += `<tr><td>${Core.humanizeValue(key)}</td><td>${value}</td></tr>`;
summary += `${Core.humanizeValue(key)}: ${value} `;
});
detailHtml += "</table>";
data.summary = summary;
data.detailHtml = detailHtml;
data.tooltip = summary;
} else {
let text = value;
// if the text is empty then use a no-break-space so the table allows us to click on the row,
// otherwise if the text is empty, then you cannot click on the row
if (text === '') {
text = ' ';
data.tooltip = "";
} else {
data.tooltip = text;
}
data.summary = `${text}`;
data.detailHtml = `<pre>${text}</pre>`;
if (angular.isArray(value)) {
let html = "<ul>";
angular.forEach(value, (item) => html += `<li>${item}</li>`);
html += "</ul>";
data.detailHtml = html;
}
}
// enrich the data with information if the attribute is read-only/read-write, and the JMX attribute description (if any)
data.rw = false;
data.attrDesc = data.name;
data.type = "string";
if ($scope.attributesInfoCache != null && 'attr' in $scope.attributesInfoCache) {
let info = $scope.attributesInfoCache.attr[key];
if (angular.isDefined(info)) {
data.rw = info.rw;
data.attrDesc = info.desc;
data.type = info.type;
}
}
}
function lookupAttributeType(key: string): string {
if ($scope.attributesInfoCache != null && 'attr' in $scope.attributesInfoCache) {
let info = $scope.attributesInfoCache.attr[key];
if (angular.isDefined(info)) {
return info.type;
}
}
return null;
}
function includePropertyValue(key: string, value: any): boolean {
return !_.isObject(value);
}
}
}