]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/index.php
bacula-web: Modified usage of Get_ElapsedTime() function to TimeUtils::Get_Elapsed_Time()
[bacula/bacula] / gui / bacula-web / index.php
1 <?php
2 /* 
3 +-------------------------------------------------------------------------+
4 | Copyright (C) 2004 Juan Luis Francés Jiménez                                                    |
5 | Copyright 2010-2011, Davide Franco                                              |
6 |                                                                         |
7 | This program is free software; you can redistribute it and/or           |
8 | modify it under the terms of the GNU General Public License             |
9 | as published by the Free Software Foundation; either version 2          |
10 | of the License, or (at your option) any later version.                  |
11 |                                                                         |
12 | This program is distributed in the hope that it will be useful,         |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of          |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
15 | GNU General Public License for more details.                            |
16 +-------------------------------------------------------------------------+ 
17 */
18 session_start();
19 include_once( 'config.inc.php' );
20
21 $dbSql = new Bweb();
22
23 // Assign to template catalogs number
24 //$dbSql->tpl->assign( "dbs", $dbSql->bwcfg->Count_Catalogs() );
25 // Assign dbs
26 /*
27 if ( count($dbSql->dbs) >1 ) {
28   $smarty->assign("dbs", $dbSql->dbs);
29   $smarty->assign("dbs_now", $_SESSION['DATABASE']);
30 }
31 */
32 // Catalog count
33 $catalog_nb = $dbSql->catalog_nb;
34 $dbSql->tpl->assign( 'catalog_nb', $catalog_nb );
35
36 // Stored files number 
37 $totalfiles = $dbSql->GetStoredFiles( ALL );
38 $dbSql->tpl->assign('stored_files',$totalfiles);
39   
40 // Database size
41 $dbSql->tpl->assign('database_size', $dbSql->GetDbSize());
42
43 // Overall stored bytes
44 $result = $dbSql->GetStoredBytes( ALL );
45 $dbSql->tpl->assign('stored_bytes', Utils::Get_Human_Size( $result['stored_bytes'] ) );
46
47 // Total stored bytes since last 24 hours
48 $result = $dbSql->GetStoredBytes( LAST_DAY );
49 $dbSql->tpl->assign('bytes_last', Utils::Get_Human_Size( $result['stored_bytes'] ) );
50
51 // Total stored files since last 24 hours
52 $files_last = $dbSql->GetStoredFiles( LAST_DAY );
53 $dbSql->tpl->assign('files_last', $files_last );
54
55
56 // Number of clients
57 $nb_clients = $dbSql->Get_Nb_Clients();
58 $dbSql->tpl->assign('clientes_totales',$nb_clients["nb_client"] );
59
60 // Backup Job list for report.tpl and last_run_report.tpl
61 $dbSql->tpl->assign( 'jobs_list', $dbSql->Get_BackupJob_Names() );
62
63 // Get volumes list (volumes.tpl)
64 $dbSql->tpl->assign('pools', $dbSql->GetVolumeList() );
65
66 // Last 24 hours completed jobs number
67 $dbSql->tpl->assign( 'completed_jobs', $dbSql->CountJobs( LAST_DAY, 'completed' ) );
68
69 // Last 24 hours failed jobs number
70 $dbSql->tpl->assign( 'failed_jobs', $dbSql->CountJobs( LAST_DAY, 'failed' ) );
71
72 // Last 24 hours waiting jobs number
73 $dbSql->tpl->assign( 'waiting_jobs', $dbSql->CountJobs( LAST_DAY, 'waiting' ) );
74
75 // Last 24 hours Job Levels
76 $dbSql->tpl->assign( 'incr_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'I') );
77 $dbSql->tpl->assign( 'diff_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'D') );
78 $dbSql->tpl->assign( 'full_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'F') );
79
80 // Last 24 hours Job status graph
81 $data   = array();  
82 $status = array( 'completed', 'terminated_errors', 'failed', 'waiting', 'created', 'running', 'error' );
83
84 foreach( $status as $job_status ) {
85         array_push( $data, $dbSql->GetJobsStatistics( $job_status ) );
86 }
87
88 $graph = new BGraph( "graph.png" );
89 $graph->SetData( $data, 'pie', 'text-data-single' );
90 $graph->SetGraphSize( 400, 230 );
91
92 $graph->Render();
93 $dbSql->tpl->assign('graph_jobs', $graph->Get_Image_file() );
94 unset($graph);
95
96 // Pool and volumes graph
97 $data = array();
98 $graph = new BGraph( "graph1.png" );
99
100 $pools = $dbSql->Get_Pools_List();
101
102 foreach( $pools as $pool ) {
103         array_push( $data, $dbSql->CountVolumesByPool( $pool ) );
104 }
105
106 $graph->SetData( $data, 'pie', 'text-data-single' );
107 $graph->SetGraphSize( 400, 230 );
108
109 $graph->Render();
110 $dbSql->tpl->assign('graph_pools', $graph->Get_Image_file() );
111
112 // Last 7 days stored Bytes graph
113 $data  = array();
114 $graph = new BGraph( "graph2.png" );
115 $days  = array();
116
117 // Get the last 7 days interval (start and end)
118 for( $c = 6 ; $c >= 0 ; $c-- ) {
119         $today = ( mktime() - ($c * LAST_DAY) );
120         array_push( $days, array( 'start' => date( "Y-m-d 00:00:00", $today ), 'end' => date( "Y-m-d 23:59:00", $today ) ) );
121 }
122
123 $days_stored_bytes = array();
124
125 foreach( $days as $day ) {
126   array_push( $days_stored_bytes, $dbSql->GetStoredBytesByInterval( $day['start'], $day['end'] ) );
127 }
128
129 $graph->SetData( $days_stored_bytes, 'bars', 'text-data' );
130 $graph->SetGraphSize( 400, 230 );
131 $graph->SetYTitle( "GB" );
132
133 $graph->Render();
134 $dbSql->tpl->assign('graph_stored_bytes', $graph->Get_Image_file() );
135
136 // Last 15 used volumes
137 $vol_list = array();
138
139 $query  = "SELECT DISTINCT Media.Volumename, Media.Lastwritten, Media.VolStatus, Job.JobId FROM Job ";
140 $query .= "LEFT JOIN JobMedia ON Job.JobId = JobMedia.JobId ";
141 $query .= "LEFT JOIN Media ON JobMedia.MediaId = Media.MediaId ";
142 $query .= "ORDER BY Job.JobId DESC ";
143 $query .= "LIMIT 10 ";
144
145 $result = $dbSql->db_link->query( $query );
146
147 if ( PEAR::isError( $result ) )
148         die( "Unable to get last used volumes from catalog \n " . $result->getMessage() );
149 else {
150         while ( $vol = $result->fetchRow( DB_FETCHMODE_ASSOC ) ) 
151                 array_push( $vol_list, $vol );
152 }
153 $dbSql->tpl->assign( 'volume_list', $vol_list );        
154
155 //if ($_GET['Full_popup'] == "yes" || $_GET['pop_graph1'] == "yes" || $_GET['pop_graph2'] == "yes")
156 //        $smarty->display('full_popup.tpl');
157 //else
158
159 // Render template
160 $dbSql->tpl->display('index.tpl');
161 ?>