@@ -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
@@ -385,7 +386,6 @@ angular.module('openshiftConsole')
385
386
streamer . start ( ) ;
386
387
} ;
387
388
388
-
389
389
// Kibana archives -------------------------------------------------
390
390
391
391
APIDiscovery
@@ -505,6 +505,28 @@ angular.module('openshiftConsole')
505
505
ctrl . cacheAffixable ( document . getElementById ( $scope . logViewerID + '-affixedFollow' ) ) ;
506
506
ctrl . start ( ) ;
507
507
} , 0 ) ;
508
+
509
+ var saveLog = function ( ) {
510
+ var text = $ ( $elem ) . find ( '.log-line-text' ) . text ( ) ;
511
+ var filename = _ . get ( $scope , 'object.metadata.name' , 'openshift' ) + '.log' ;
512
+ var blob = new Blob ( [ text ] , { type : "text/plain;charset=utf-8" } ) ;
513
+ saveAs ( blob , filename ) ;
514
+ } ;
515
+
516
+ // Detect if we can save files.
517
+ // https://github.com/eligrey/FileSaver.js#supported-browsers
518
+ $scope . canSave = ! ! new Blob ( ) ;
519
+
520
+ $scope . saveLog = function ( ) {
521
+ // Save without confirmation if we're showing the complete log.
522
+ if ( ! $scope . largeLog ) {
523
+ saveLog ( ) ;
524
+ return ;
525
+ }
526
+
527
+ // Prompt if this is a partial log.
528
+ ModalsService . confirmSaveLog ( $scope . object ) . then ( saveLog ) ;
529
+ } ;
508
530
}
509
531
} ;
510
532
}
0 commit comments