@@ -11,9 +11,10 @@ angular.module('openshiftConsole')
11
11
'APIService' ,
12
12
'APIDiscovery' ,
13
13
'DataService' ,
14
+ 'ModalsService' ,
14
15
'logLinks' ,
15
16
'BREAKPOINTS' ,
16
- function ( $sce , $timeout , $window , $filter , AuthService , APIService , APIDiscovery , DataService , logLinks , BREAKPOINTS ) {
17
+ function ( $sce , $timeout , $window , $filter , AuthService , APIService , APIDiscovery , DataService , ModalsService , logLinks , BREAKPOINTS ) {
17
18
// cache the jQuery win, but not clobber angular's $window
18
19
var $win = $ ( window ) ;
19
20
@@ -295,7 +296,11 @@ angular.module('openshiftConsole')
295
296
var options = angular . extend ( {
296
297
follow : true ,
297
298
tailLines : 5000 ,
298
- limitBytes : 10 * 1024 * 1024 // Limit log size to 10 MiB
299
+ // Limit log size to 10 MiB. Note: This can't be more than 500 MiB,
300
+ // otherwise save log will break because we'll exceed the max Blob
301
+ // size for some browsers.
302
+ // https://github.com/eligrey/FileSaver.js#supported-browsers
303
+ limitBytes : 10 * 1024 * 1024
299
304
} , $scope . options ) ;
300
305
301
306
streamer = DataService . createStream ( logSubresource , name , $scope . context , options ) ;
@@ -385,7 +390,6 @@ angular.module('openshiftConsole')
385
390
streamer . start ( ) ;
386
391
} ;
387
392
388
-
389
393
// Kibana archives -------------------------------------------------
390
394
391
395
APIDiscovery
@@ -505,6 +509,28 @@ angular.module('openshiftConsole')
505
509
ctrl . cacheAffixable ( document . getElementById ( $scope . logViewerID + '-affixedFollow' ) ) ;
506
510
ctrl . start ( ) ;
507
511
} , 0 ) ;
512
+
513
+ var saveLog = function ( ) {
514
+ var text = $ ( $elem ) . find ( '.log-line-text' ) . text ( ) ;
515
+ var filename = _ . get ( $scope , 'object.metadata.name' , 'openshift' ) + '.log' ;
516
+ var blob = new Blob ( [ text ] , { type : "text/plain;charset=utf-8" } ) ;
517
+ saveAs ( blob , filename ) ;
518
+ } ;
519
+
520
+ // Detect if we can save files.
521
+ // https://github.com/eligrey/FileSaver.js#supported-browsers
522
+ $scope . canSave = ! ! new Blob ( ) ;
523
+
524
+ $scope . saveLog = function ( ) {
525
+ // Save without confirmation if we're showing the complete log.
526
+ if ( ! $scope . largeLog ) {
527
+ saveLog ( ) ;
528
+ return ;
529
+ }
530
+
531
+ // Prompt if this is a partial log.
532
+ ModalsService . confirmSaveLog ( $scope . object ) . then ( saveLog ) ;
533
+ } ;
508
534
}
509
535
} ;
510
536
}
0 commit comments