forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogViewer.js
533 lines (453 loc) · 20.4 KB
/
logViewer.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
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
'use strict';
/*jshint -W030 */
angular.module('openshiftConsole')
.directive('logViewer', [
'$sce',
'$timeout',
'$window',
'$filter',
'AuthService',
'APIService',
'APIDiscovery',
'DataService',
'ModalsService',
'logLinks',
'BREAKPOINTS',
function($sce, $timeout, $window, $filter, AuthService, APIService, APIDiscovery, DataService, ModalsService, logLinks, BREAKPOINTS) {
// cache the jQuery win, but not clobber angular's $window
var $win = $(window);
// Based on https://github.com/drudru/ansi_up/blob/v1.3.0/ansi_up.js#L93-L97
// and https://github.com/angular/angular.js/blob/v1.5.8/src/ngSanitize/filter/linky.js#L131-L132
// The AngularJS `linky` regex will avoid matching special characters like `"` at the end of the URL.
// Like `ansi_up.linkify`, assumes `text` is already HTML escaped.
// Opens the link in a new window.
var linkify = function(text) {
return text.replace(/https?:\/\/[A-Za-z0-9._%+-]+\S*[^\s.;,(){}<>"\u201d\u2019]/gm, function(str) {
return "<a href=\"" + str + "\" target=\"_blank\">" + str + "</a>";
});
};
// Keep a reference the DOM node rather than the jQuery object for cloneNode.
var logLineTemplate =
$('<tr class="log-line">' +
'<td class="log-line-number"></td>' +
'<td class="log-line-text"></td>' +
'</tr>').get(0);
var buildLogLineNode = function(lineNumber, text) {
var line = logLineTemplate.cloneNode(true);
// Set the line number as a data attribute and display it using the
// ::before pseudo-element in CSS so it isn't copied. Works around
// this webkit bug with user-select: none;
// https://bugs.webkit.org/show_bug.cgi?id=80159
line.firstChild.setAttribute('data-line-number', lineNumber);
// Escape ANSI color codes
var escaped = ansi_up.escape_for_html(text);
var html = ansi_up.ansi_to_html(escaped);
var linkifiedHTML = linkify(html);
line.lastChild.innerHTML = linkifiedHTML;
return line;
};
return {
restrict: 'AE',
transclude: true,
templateUrl: 'views/directives/logs/_log-viewer.html',
scope: {
followAffixTop: '=?',
followAffixBottom: '=?',
object: '=',
fullLogUrl: '=?',
name: '=',
context: '=',
options: '=?',
fixedHeight: '=?',
chromeless: '=?',
empty: '=?', // boolean, let the parent know when the log is empty
run: '=?' // boolean, logs will not run until this is truthy
},
controller: [
'$scope',
function($scope) {
// cached node's are set by the directive's postLink fn after render (see link: func below)
// A jQuery wrapped version is cached in var of same name w/$
var cachedLogNode;
var cachedScrollableNode;
var $cachedScrollableNode;
var scrollableDOMNode;
var $affixableNode;
var html = document.documentElement;
$scope.logViewerID = _.uniqueId('log-viewer');
$scope.empty = true;
var logSubresource, name;
if ($scope.object.kind === "ReplicationController") {
logSubresource = "deploymentconfigs/log";
name = $filter('annotation')($scope.object, 'deploymentConfig');
}
else {
logSubresource = APIService.kindToResource($scope.object.kind) + "/log";
name = $scope.object.metadata.name;
}
// are we going to scroll the window, or the DOM node?
var detectScrollableNode = function() {
if(window.innerWidth < BREAKPOINTS.screenSmMin && !$scope.fixedHeight) {
scrollableDOMNode = null;
} else {
scrollableDOMNode = cachedScrollableNode;
}
};
// is just toggling show/hide, nothing else.
var updateScrollLinksVisibility = function() {
$scope.$apply(function() {
// Show scroll links if the top or bottom of the log is off screen.
var r = cachedLogNode.getBoundingClientRect();
if ($scope.fixedHeight) {
$scope.showScrollLinks = r && (r.height > $scope.fixedHeight);
}
else {
$scope.showScrollLinks = r && ((r.top < 0) || (r.bottom > html.clientHeight));
}
});
};
// Set to true before auto-scrolling.
var autoScrollingNow = false;
var onScroll = function() {
// Determine if the user scrolled or we auto-scrolled.
if (autoScrollingNow) {
// Reset the value.
autoScrollingNow = false;
} else {
// If the user scrolled the window manually, stop auto-scrolling.
$scope.$evalAsync(function() {
$scope.autoScrollActive = false;
});
}
};
var attachScrollEvents = function() {
// always clear all scroll listeners before reattaching
$cachedScrollableNode.off('scroll', onScroll);
$win.off('scroll', onScroll);
// only add the appropriate event
if(window.innerWidth <= BREAKPOINTS.screenSmMin && !$scope.fixedHeight) {
$win.on('scroll', onScroll);
} else {
$cachedScrollableNode.on('scroll', onScroll);
}
};
// the class .target-logger-node is needed to adjust some
// css when the target is not the window.
// TODO: resize event breaks the affix, even with this if/else.
// however, on first load of either mobile or non this works fine.
var affix = function() {
// don't affix for a fixed height scroll window
if ($scope.fixedHeight) {
return;
}
if(window.innerWidth < BREAKPOINTS.screenSmMin && !$scope.fixedHeight) {
$affixableNode
.removeClass('target-logger-node')
.affix({
target: window,
offset: {
top: $scope.followAffixTop || 0, // 390,
bottom: $scope.followAffixBottom || 0 // 90
}
});
} else {
$affixableNode
.addClass('target-logger-node')
.affix({
target: $cachedScrollableNode,
offset: {
top: $scope.followAffixTop || 0, // 390,
bottom: $scope.followAffixBottom || 0 // 90
}
});
}
};
var fillHeight = function(animate) {
var content = $("#" + $scope.logViewerID + ' .log-view-output');
var contentTop = content.offset().top;
if (contentTop < 0) {
// Content top is off the page already.
return;
}
var pulserHeight = $('.ellipsis-pulser').outerHeight(true);
var fill = $scope.fixedHeight ? $scope.fixedHeight : Math.floor($(window).height() - contentTop - pulserHeight);
if (!$scope.chromeless && !$scope.fixedHeight) {
// Add some bottom margin if not chromeless.
fill = fill - 35;
}
if (animate) {
content.animate({ 'min-height': fill +'px' }, 'fast');
} else {
content.css('min-height', fill + 'px');
}
if($scope.fixedHeight) {
content.css('max-height', fill);
}
};
// roll up & debounce the various fns to call on resize
var onResize = _.debounce(function() {
fillHeight(true);
// update scroll handlers
detectScrollableNode();
attachScrollEvents();
updateScrollLinksVisibility(); // toggles show/hide
affix();
// toggle off the follow behavior if the user resizes the window
onScroll();
}, 100);
$win.on('resize', onResize);
// STREAMER & DOM NODE HANDLING ------------------------------------
var autoScrollBottom = function() {
// Tell the scroll listener this is an auto-scroll. The listener
// will reset it to false.
autoScrollingNow = true;
logLinks.scrollBottom(scrollableDOMNode);
};
var toggleAutoScroll = function() {
$scope.autoScrollActive = !$scope.autoScrollActive;
if ($scope.autoScrollActive) {
// Scroll immediately. Don't wait the next message.
autoScrollBottom();
}
};
var buffer = document.createDocumentFragment();
var update = _.debounce(function() {
cachedLogNode.appendChild(buffer);
buffer = document.createDocumentFragment();
// Follow the bottom of the log if auto-scroll is on.
if ($scope.autoScrollActive) {
autoScrollBottom();
}
if (!$scope.showScrollLinks) {
updateScrollLinksVisibility(); // toggles show/hide
}
}, 100, { maxWait: 300 });
// maintaining one streamer reference & ensuring its closed before we open a new,
// since the user can (potentially) swap between multiple containers
var streamer;
var stopStreaming = function(keepContent) {
if (streamer) {
streamer.stop();
streamer = null;
}
if (!keepContent) {
// Cancel any pending updates. (No-op if none pending.)
update.cancel();
cachedLogNode && (cachedLogNode.innerHTML = '');
buffer = document.createDocumentFragment();
}
};
var streamLogs = function() {
// Stop any active streamer.
stopStreaming();
if(!$scope.run) {
return;
}
angular.extend($scope, {
loading: true,
autoScroll: false,
limitReached: false,
showScrollLinks: false
});
var options = angular.extend({
follow: true,
tailLines: 5000,
limitBytes: 10 * 1024 * 1024 // Limit log size to 10 MiB
}, $scope.options);
streamer = DataService.createStream(logSubresource, name, $scope.context, options);
var lastLineNumber = 0;
var addLine = function(text) {
lastLineNumber++;
// Append the line to the document fragment buffer.
buffer.appendChild(buildLogLineNode(lastLineNumber, text));
update();
};
streamer.onMessage(function(msg, raw, cumulativeBytes) {
// ensures the digest loop will catch the state change.
$scope.$evalAsync(function() {
$scope.empty = false;
if($scope.state !== 'logs') {
$scope.state = 'logs';
// setTimeout so that the log content is visible to correctly calculate fill height.
setTimeout(fillHeight);
}
});
// Completely empty messages (without even a newline character) should not add lines
if (!msg) {
return;
}
if (options.limitBytes && cumulativeBytes >= options.limitBytes) {
$scope.$evalAsync(function() {
$scope.limitReached = true;
$scope.loading = false;
});
stopStreaming(true);
}
addLine(msg);
// Warn the user if we might be showing a partial log.
if (!$scope.largeLog && lastLineNumber >= options.tailLines) {
$scope.$evalAsync(function() {
$scope.largeLog = true;
});
}
});
streamer.onClose(function() {
streamer = null;
$scope.$evalAsync(function() {
$scope.autoScrollActive = false;
// - if no logs, they have already been archived.
// - if emptyStateMessage has already been set, it means the onError
// callback has already fired. onError message takes priority in severity.
// - at present we are using the same error message in both onError and onClose
// because we dont have enough information to give the user something better.
if((lastLineNumber === 0) && (!$scope.emptyStateMessage)) {
$scope.state = 'empty';
$scope.emptyStateMessage = 'The logs are no longer available or could not be loaded.';
}
});
// Wrap in a timeout so that content displays before we remove the loading ellipses.
$timeout(function() {
$scope.loading = false;
}, 100);
});
streamer.onError(function() {
streamer = null;
$scope.$evalAsync(function() {
angular.extend($scope, {
loading: false,
autoScroll: false
});
// if logs err before we get anything, will show an empty state message
if(lastLineNumber === 0) {
$scope.state = 'empty';
$scope.emptyStateMessage = 'The logs are no longer available or could not be loaded.';
} else {
// if logs were running but something went wrong, will
// show what we have & give option to retry
$scope.errorWhileRunning = true;
}
});
});
streamer.start();
};
// Kibana archives -------------------------------------------------
APIDiscovery
.getLoggingURL()
.then(function(url) {
var projectName = _.get($scope.context, 'project.metadata.name');
var containerName = _.get($scope.options, 'container');
if(!(projectName && containerName && name && url)) {
return;
}
// 3 things needed:
// - kibanaAuthUrl to authorize user
// - access_token
// - kibanaArchiveUrl for the final destination once auth'd
angular.extend($scope, {
kibanaAuthUrl: $sce.trustAsResourceUrl(URI(url)
.segment('auth').segment('token')
.normalizePathname().toString()),
access_token: AuthService.UserStore().getToken()
});
$scope.$watchGroup(['context.project.metadata.name', 'options.container', 'name'], function() {
angular.extend($scope, {
// The archive URL violates angular's built in same origin policy.
// Need to explicitly tell it to trust this location or it will throw errors.
kibanaArchiveUrl: $sce.trustAsResourceUrl(logLinks.archiveUri({
namespace: $scope.context.project.metadata.name,
namespaceUid: $scope.context.project.metadata.uid,
podname: name,
containername: $scope.options.container,
backlink: URI.encode($window.location.href)
}))
});
});
});
// PUBLIC API ----------------------------------------------------
// scrollable node is a parent div#container-main, but may be window
// if we are currently mobile
this.cacheScrollableNode = function(node) {
cachedScrollableNode = node;
$cachedScrollableNode = $(cachedScrollableNode);
};
this.cacheLogNode = function(node) {
cachedLogNode = node; // no jQuery, optimized
};
this.cacheAffixable = function(node) {
$affixableNode = $(node); // jQuery is fine
};
this.start = function() {
detectScrollableNode();
attachScrollEvents();
affix();
};
// initial $scope setup --------------------------------------------
angular.extend($scope, {
ready: true,
loading: true,
autoScroll: false,
state: false, // show nothing initially to avoid flicker
onScrollBottom: function() {
logLinks.scrollBottom(scrollableDOMNode);
},
onScrollTop: function() {
$scope.autoScrollActive = false;
logLinks.scrollTop(scrollableDOMNode);
},
toggleAutoScroll: toggleAutoScroll,
goChromeless: logLinks.chromelessLink,
restartLogs: streamLogs
});
// tear down -------------------------------------------------------
$scope.$on('$destroy', function() {
// close streamer or no-op
stopStreaming();
// clean up all the listeners
$win.off('resize', onResize);
$win.off('scroll', onScroll);
$cachedScrollableNode.off('scroll', onScroll);
});
// decide whether we should request the logs ------------------------
if (logSubresource === 'deploymentconfigs/logs' && !name) {
$scope.state = 'empty';
$scope.emptyStateMessage = 'Logs are not available for this replication controller because it was not generated from a deployment configuration.';
// don't even attempt to continue since we can't fetch the logs for these RCs
return;
}
$scope.$watchGroup(['name', 'options.container', 'run'], streamLogs);
}
],
require: 'logViewer',
link: function($scope, $elem, $attrs, ctrl) {
// TODO:
// unfortuntely this directive has to search for a parent elem to use as scrollable :(
// would be better if 'scrollable' was a directive on a parent div
// and we were sending it messages telling it when to scroll.
$timeout(function() {
ctrl.cacheScrollableNode(document.getElementById($scope.fixedHeight ? ($scope.logViewerID + '-fixed-scrollable') : 'container-main'));
ctrl.cacheLogNode(document.getElementById($scope.logViewerID+'-logContent'));
ctrl.cacheAffixable(document.getElementById($scope.logViewerID+'-affixedFollow'));
ctrl.start();
}, 0);
var saveLog = function() {
var text = $($elem).find('.log-line-text').text();
var filename = _.get($scope, 'object.metadata.name', 'openshift') + '.log';
var blob = new Blob([text], { type: "text/plain;charset=utf-8" });
saveAs(blob, filename);
};
// Detect if we can save files.
// https://github.com/eligrey/FileSaver.js#supported-browsers
$scope.canSave = !!new Blob();
$scope.saveLog = function() {
// Save without confirmation if we're showing the complete log.
if (!$scope.largeLog) {
saveLog();
return;
}
// Prompt if this is a partial log.
ModalsService.confirmSaveLog($scope.object).then(saveLog);
};
}
};
}
]);