]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/backupjob-report.php
e5facc22bb0e73a9e29191a9d9cef283bc31e38a
[bacula/bacula] / gui / bacula-web / backupjob-report.php
1 <?php
2   session_start();
3   require_once ("paths.php");
4   require_once ($smarty_path."Smarty.class.php");
5   require_once ("bweb.inc.php");
6   require_once ("config.inc.php");  
7
8   $smarty = new Smarty();     
9   $dbSql = new Bweb();
10
11   require("lang.php");
12
13   // Smarty configuration
14   $smarty->compile_check = true;
15   $smarty->debugging = false;
16   $smarty->force_compile = true;
17
18   $smarty->template_dir = "./templates";
19   $smarty->compile_dir = "./templates_c";
20   $smarty->config_dir     = "./configs";
21
22   $backupjob_name = "";
23   $days  = array();
24
25   // Get Backup Job name from GET or POST
26   if( isset( $_POST["backupjob_name"] ) )
27     $backupjob_name = $_POST["backupjob_name"];
28   elseif( isset( $_GET["backupjob_name"] ) )
29         $backupjob_name = $_GET["backupjob_name"];
30   else
31         die( "Please specify a backup job name " );
32
33   // Get the last 7 days interval (start and end)
34   for( $c = 6 ; $c >= 0 ; $c-- ) {
35           $today = ( mktime() - ($c * LAST_DAY) );
36           array_push( $days, array( 'start' => date( "Y-m-d 00:00:00", $today ), 'end' => date( "Y-m-d 23:59:00", $today ) ) );
37   }
38   
39   // Last 7 days stored Bytes graph
40   $graph = new BGraph( "graph2.png" );
41
42   $days_stored_bytes    = array();
43   $backupjob_bytes              = 0;
44
45   foreach( $days as $day )
46     array_push( $days_stored_bytes, $dbSql->GetStoredBytesByJob( $backupjob_name, $day['start'], $day['end'] ) );
47  
48   // Calculate total bytes for this period
49   foreach( $days_stored_bytes as $day )
50         $backupjob_bytes += $day[1];
51         
52   $graph->SetData( $days_stored_bytes, 'bars', 'text-data' );
53   $graph->SetGraphSize( 400, 230 );
54
55   $graph->Render();
56   $smarty->assign('graph_stored_bytes', $graph->Get_Image_file() );     
57   
58   // Getting last 7 days stored files graph
59   $graph = new BGraph("graph3.png" );
60   
61   $days_stored_files    = array();
62   $backupjob_files              = 0;
63   
64   foreach( $days as $day )
65     array_push( $days_stored_files, $dbSql->GetStoredFilesByJob( $backupjob_name, $day['start'], $day['end'] ) );
66
67   // Calculate total files for this period      
68   foreach( $days_stored_files as $day )
69         $backupjob_files += $day[1];
70   
71   $graph->SetData( $days_stored_files, 'bars', 'text-data' );
72   $graph->SetGraphSize( 400, 230 );
73
74   $graph->Render();
75   $smarty->assign('graph_stored_files', $graph->Get_Image_file() );  
76   
77   $smarty->assign('backupjob_name', $backupjob_name );
78   $smarty->assign('backupjob_bytes', $backupjob_bytes );
79   $smarty->assign('backupjob_files', $backupjob_files );
80   
81   // Process and display the template 
82   $smarty->display('backupjob-report.tpl'); 
83   
84 ?>