]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/index.php
070347ac38a53ce9859079a242e7f36ef5a82790
[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 include_once( 'bweb.inc.php' );
19
20 $dbSql = new Bweb();
21
22 $mode = "";                             
23
24 /*
25 // Getting mode from config file
26 $mode = $dbSql->get_config_param("mode");
27 if( $mode == false )
28         $mode = "Lite";
29
30 $smarty->assign( "mode", $mode );
31 */
32
33 // Assign to template catalogs number
34 $dbSql->tpl->assign( "dbs", $dbSql->Get_Nb_Catalogs() );
35
36 //Assign dbs
37 /*
38 if ( count($dbSql->dbs) >1 ) {
39   $smarty->assign("dbs", $dbSql->dbs);
40   $smarty->assign("dbs_now", $_SESSION['DATABASE']);
41 }
42 */
43
44 // Stored files number 
45 $totalfiles = $dbSql->GetStoredFiles( ALL );
46 $dbSql->tpl->assign('stored_files',$totalfiles);
47   
48 // Database size
49 $dbSql->tpl->assign('database_size', $dbSql->GetDbSize());
50
51 // Overall stored bytes
52 $result = $dbSql->GetStoredBytes( ALL );
53 $dbSql->tpl->assign('stored_bytes', $dbSql->human_file_size($result['stored_bytes']) );
54
55 // Total stored bytes since last 24 hours
56 $result = $dbSql->GetStoredBytes( LAST_DAY );
57 $dbSql->tpl->assign('bytes_last', $dbSql->human_file_size($result['stored_bytes']) );
58
59 // Total stored files since last 24 hours
60 $files_last = $dbSql->GetStoredFiles( LAST_DAY );
61 $dbSql->tpl->assign('files_last', $files_last );
62
63
64 // Number of clients
65 $nb_clients = $dbSql->Get_Nb_Clients();
66 $dbSql->tpl->assign('clientes_totales',$nb_clients["nb_client"] );
67
68 // Backup Job list for report.tpl and last_run_report.tpl
69 $dbSql->tpl->assign( 'jobs_list', $dbSql->Get_BackupJob_Names() );
70
71 // Get volumes list (volumes.tpl)
72 $dbSql->tpl->assign('pools', $dbSql->GetVolumeList() );
73
74 // Last 24 hours completed jobs number
75 $dbSql->tpl->assign( 'completed_jobs', $dbSql->CountJobs( LAST_DAY, 'completed' ) );
76
77 // Last 24 hours failed jobs number
78 $dbSql->tpl->assign( 'failed_jobs', $dbSql->CountJobs( LAST_DAY, 'failed' ) );
79
80 // Last 24 hours waiting jobs number
81 $dbSql->tpl->assign( 'waiting_jobs', $dbSql->CountJobs( LAST_DAY, 'waiting' ) );
82
83 // Last 24 hours elapsed time (last_run_report.tpl)
84 //$smarty->assign( 'elapsed_jobs', $dbSql->Get_ElapsedTime_Job() );
85
86 // Last 24 hours Job Levels
87 $dbSql->tpl->assign( 'incr_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'I') );
88 $dbSql->tpl->assign( 'diff_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'D') );
89 $dbSql->tpl->assign( 'full_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'F') );
90
91 // Last 24 hours Job status graph
92 $data   = array();  
93 $status = array( 'completed', 'terminated_errors', 'failed', 'waiting', 'created', 'running', 'error' );
94
95 foreach( $status as $job_status ) {
96         array_push( $data, $dbSql->GetJobsStatistics( $job_status ) );
97 }
98
99 $graph = new BGraph( "graph.png" );
100 $graph->SetData( $data, 'pie', 'text-data-single' );
101 $graph->SetGraphSize( 400, 230 );
102
103 $graph->Render();
104 $dbSql->tpl->assign('graph_jobs', $graph->Get_Image_file() );
105 unset($graph);
106
107 // Pool and volumes graph
108 $data = array();
109 $graph = new BGraph( "graph1.png" );
110
111 $pools = $dbSql->Get_Pools_List();
112
113 foreach( $pools as $pool ) {
114         array_push( $data, $dbSql->GetPoolsStatistics( $pool ) );
115 }
116
117 $graph->SetData( $data, 'pie', 'text-data-single' );
118 $graph->SetGraphSize( 400, 230 );
119
120 $graph->Render();
121 $dbSql->tpl->assign('graph_pools', $graph->Get_Image_file() );
122
123 // Last 7 days stored Bytes graph
124 $data  = array();
125 $graph = new BGraph( "graph2.png" );
126 $days  = array();
127
128 // Get the last 7 days interval (start and end)
129 for( $c = 6 ; $c >= 0 ; $c-- ) {
130         $today = ( mktime() - ($c * LAST_DAY) );
131         array_push( $days, array( 'start' => date( "Y-m-d 00:00:00", $today ), 'end' => date( "Y-m-d 23:59:00", $today ) ) );
132 }
133
134 $days_stored_bytes = array();
135
136 foreach( $days as $day ) {
137   array_push( $days_stored_bytes, $dbSql->GetStoredBytesByInterval( $day['start'], $day['end'] ) );
138 }
139
140 $graph->SetData( $days_stored_bytes, 'bars', 'text-data' );
141 $graph->SetGraphSize( 400, 230 );
142
143 $graph->Render();
144 $dbSql->tpl->assign('graph_stored_bytes', $graph->Get_Image_file() );
145
146 // Last 15 used volumes
147 $vol_list = array();
148
149 $query  = "SELECT DISTINCT Media.Volumename, Media.Lastwritten, Media.VolStatus, Job.JobId FROM Job ";
150 $query .= "LEFT JOIN JobMedia ON Job.JobId = JobMedia.JobId ";
151 $query .= "LEFT JOIN Media ON JobMedia.MediaId = Media.MediaId ";
152 $query .= "ORDER BY Job.JobId DESC ";
153 $query .= "LIMIT 10 ";
154
155 $result = $dbSql->db_link->query( $query );
156
157 if ( PEAR::isError( $result ) )
158         die( "Unable to get last used volumes from catalog \n " . $result->getMessage() );
159 else {
160         while ( $vol = $result->fetchRow( DB_FETCHMODE_ASSOC ) ) 
161                 array_push( $vol_list, $vol );
162 }
163 $dbSql->tpl->assign( 'volume_list', $vol_list );        
164
165 //if ($_GET['Full_popup'] == "yes" || $_GET['pop_graph1'] == "yes" || $_GET['pop_graph2'] == "yes")
166 //        $smarty->display('full_popup.tpl');
167 //else
168
169 // Render template
170 $dbSql->tpl->display('index.tpl');
171 ?>