]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/index.php
bacula-web: Fixed typo in last 24 hours job status graph
[bacula/bacula] / gui / bacula-web / index.php
1 <?php
2 /* 
3 +-------------------------------------------------------------------------+
4 | Copyright (C) 2004 Juan Luis Francés Jiménez                            |
5 |                                                                         |
6 | This program is free software; you can redistribute it and/or           |
7 | modify it under the terms of the GNU General Public License             |
8 | as published by the Free Software Foundation; either version 2          |
9 | of the License, or (at your option) any later version.                  |
10 |                                                                         |
11 | This program is distributed in the hope that it will be useful,         |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of          |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
14 | GNU General Public License for more details.                            |
15 +-------------------------------------------------------------------------+ 
16 */
17 session_start();
18 require ("paths.php");
19 require($smarty_path."Smarty.class.php");
20 include "bweb.inc.php";
21
22 $smarty = new Smarty();     
23 $dbSql = new Bweb();
24
25 require("lang.php");
26
27 $mode = "";                             
28
29 $smarty->compile_check = true;
30 $smarty->debugging = false;
31 $smarty->force_compile = true;
32
33 $smarty->template_dir = "./templates";
34 $smarty->compile_dir = "./templates_c";
35 $smarty->config_dir     = "./configs";
36
37 /*
38 $smarty->config_load("bacula.conf");                                                                                    // Load config file
39 $mode = $smarty->get_config_vars("mode");     
40 */                                                                          // Lite o Extend?
41
42 // Getting mode from config file
43 $mode = $dbSql->get_config_param("mode");
44 if( $mode == false )
45         $mode = "Lite";
46
47 $smarty->assign( "mode", $mode );
48
49 // Determine which template to show
50 $indexreport = $dbSql->get_config_param( "IndexReport" );
51
52 if( $indexreport == 0 ) {
53         $smarty->assign( "last_report", "last_run_report.tpl" );
54 }else {
55         $smarty->assign( "last_report", "report_select.tpl" );
56 }
57
58 // Assign to template catalogs number
59 $smarty->assign( "dbs", $dbSql->Get_Nb_Catalogs() );
60
61 //Assign dbs
62 /*
63 if ( count($dbSql->dbs) >1 ) {
64   $smarty->assign("dbs", $dbSql->dbs);
65   $smarty->assign("dbs_now", $_SESSION['DATABASE']);
66 }
67 */
68
69 // generaldata.tpl & last_run_report.tpl ( Last 24 hours report )
70 $last24bytes = "";
71 $query = "";
72
73 // Stored files number 
74 $totalfiles = $dbSql->GetStoredFiles();
75 $smarty->assign('files_totales',$totalfiles);
76   
77 // Database size
78 $smarty->assign('database_size', $dbSql->GetDbSize());
79
80 // Overall stored bytes
81 $result = $dbSql->GetStoredBytes( ALL );
82 $smarty->assign('stored_bytes', $dbSql->human_file_size($result['stored_bytes']) );
83
84 // Total stored bytes since last 24 hours
85 $result = $dbSql->GetStoredBytes( LAST_DAY );
86 $smarty->assign('bytes_totales', $dbSql->human_file_size($result['stored_bytes']) );
87
88 // Number of clients
89 $nb_clients = $dbSql->Get_Nb_Clients();
90 $smarty->assign('clientes_totales',$nb_clients["nb_client"] );
91
92 // Backup Job list for report.tpl and last_run_report.tpl
93 $smarty->assign( 'total_name_jobs', $dbSql->Get_BackupJob_Names() );
94
95 // Get volumes list (volumes.tpl)
96 $smarty->assign('pools', $dbSql->GetVolumeList() );
97
98 // Last 24 hours completed jobs number (last_run_report.tpl)
99 //$completed_jobs = $dbSql->GetLastJobs();
100 //$smarty->assign( 'completed_jobs', $completed_jobs['completed_jobs'] );
101
102 // Last 24 hours completed jobs number (last_run_report.tpl)
103 $smarty->assign( 'completed_jobs', $dbSql->CountJobs( LAST_DAY, 'completed' ) );
104
105 // Last 24 hours failed jobs number (last_run_report.tpl)
106 $smarty->assign( 'failed_jobs', $dbSql->CountJobs( LAST_DAY, 'failed' ) );
107
108 // Last 24 hours elapsed time (last_run_report.tpl)
109 $smarty->assign( 'elapsed_jobs', $dbSql->Get_ElapsedTime_Job() );
110
111 // Last 24 hours Job status graph
112 $data   = array();  
113 $status = array( 'completed', 'terminated_errors', 'failed', 'waiting', 'created', 'running', 'error' );
114
115 foreach( $status as $job_status ) {
116         array_push( $data, $dbSql->GetJobsStatistics( $job_status ) );
117 }
118
119 $graph = new BGraph( "graph.png" );
120 $graph->SetData( $data, 'pie', 'text-data-single' );
121 $graph->SetGraphSize( 400, 230 );
122
123 $graph->Render();
124 $smarty->assign('graph_jobs', $graph->Get_Image_file() );
125 unset($graph);
126
127 // Pool and volumes graph
128 $data = array();
129 $graph = new BGraph( "graph1.png" );
130
131 $pools = $dbSql->Get_Pools_List();
132
133 foreach( $pools as $pool ) {
134         array_push( $data, $dbSql->GetPoolsStatistics( $pool ) );
135 }
136
137 $graph->SetData( $data, 'pie', 'text-data-single' );
138 $graph->SetGraphSize( 400, 230 );
139
140 $graph->Render();
141 $smarty->assign('graph_pools', $graph->Get_Image_file() );
142
143 // Last 7 days stored Bytes graph
144 $data  = array();
145 $graph = new BGraph( "graph2.png" );
146 $days  = array();
147
148 // Get the last 7 days interval (start and end)
149 for( $c = 6 ; $c >= 0 ; $c-- ) {
150         $today = ( mktime() - ($c * 86400) );
151         array_push( $days, array( 'start' => date( "Y-m-d 00:00:00", $today ), 'end' => date( "Y-m-d 23:59:00", $today ) ) );
152 }
153
154 $days_stored_bytes = array();
155
156 foreach( $days as $day ) {
157   array_push( $days_stored_bytes, $dbSql->GetStoredBytesByInterval( $day['start'], $day['end'] ) );
158 }
159
160 $graph->SetData( $days_stored_bytes, 'bars', 'text-data' );
161 $graph->SetGraphSize( 400, 230 );
162
163 $graph->Render();
164 $smarty->assign('graph_stored_bytes', $graph->Get_Image_file() );
165
166 if ($_GET['Full_popup'] == "yes" || $_GET['pop_graph1'] == "yes" || $_GET['pop_graph2'] == "yes")
167         $smarty->display('full_popup.tpl');
168 else
169         $smarty->display('index.tpl');
170 ?>