]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/report.php
bacula-web: Change filename in stats.php and report.php
[bacula/bacula] / gui / bacula-web / report.php
1 <?php
2 /* 
3 +-------------------------------------------------------------------------+
4 | Copyright (C) 2004-2005 Juan Luis Frances Jiminez                       |
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 "classes.inc.php";
21
22 $smarty = new Smarty;
23
24 //$smarty->compile_check = true;
25 //$smarty->debugging = true;
26
27 $smarty->template_dir   = "./templates";
28 $smarty->compile_dir    = "./templates_c";
29 $smarty->config_dir     = "./configs";
30 $smarty->config_load("bacula.conf");
31
32 $dbSql = new Bweb();
33
34 require("lang.php");
35
36 if ( $_GET['default'] == 1) {                                                                                                   // Default params, 1 month
37         $dbSql->StartDate = strftime("%Y-%m-%d %H:%M:%S",time()-2678400);
38         $dbSql->EndDate = strftime("%Y-%m-%d %H:%M:%S",time());
39 }
40 else                                                                                                                                            // With params
41         $dbSql->PrepareDate($_GET['StartDateMonth'],$_GET['StartDateDay'],$_GET['StartDateYear'],$_GET['EndDateMonth'],$_GET['EndDateDay'],$_GET['EndDateYear']);
42         
43 $bytes = $dbSql->CalculateBytesPeriod($_GET['server'],$dbSql->StartDate,$dbSql->EndDate);
44 $files = $dbSql->CalculateFilesPeriod($_GET['server'],$dbSql->StartDate,$dbSql->EndDate);
45 $smarty->assign('startperiod',$dbSql->StartDate);
46 $smarty->assign('endperiod',$dbSql->EndDate); 
47 $smarty->assign('bytesperiod',$dbSql->human_file_size( $bytes ) );
48 $smarty->assign('filesperiod',$files);
49
50 // Array with jobs data
51 $a_jobs = array();
52 if ($dbSql->driver == "mysql")
53         $res_jobs = $dbSql->db_link->query("select *,SEC_TO_TIME( UNIX_TIMESTAMP(Job.EndTime)-UNIX_TIMESTAMP(Job.StartTime) ) as elapsed from Job where EndTime < '$dbSql->EndDate' and EndTime > '$dbSql->StartDate' and Name='$_GET[server]' order by EndTime")
54                 or die("Error query row 50");
55 else if ($dbSql->driver == "pgsql")
56         $res_jobs = $dbSql->db_link->query("select jobid as \"JobId\",job as \"Job\",name as \"Name\",type as \"Type\",level as \"Level\",clientid as \"ClientId\",jobstatus as \"JobStatus\",schedtime as \"SchedTime\",starttime as \"StartTime\",endtime as \"EndTime\",jobtdate as \"JobtDate\",volsessionid as \"VolSessionId\",volsessiontime as \"VolSessionTime\",jobfiles as \"JobFiles\",jobbytes as \"JobBytes\",joberrors as \"JobErrors\",jobmissingfiles as \"JobMissingFiles\",poolid as \"PoolId\",filesetid as \"FilesetId\",purgedfiles as \"PurgedFiles\",hasbase,Job.EndTime::timestamp-Job.StartTime::timestamp as elapsed from Job where EndTime < '$dbSql->EndDate' and EndTime > '$dbSql->StartDate' and Name='$_GET[server]' order by EndTime")
57                 or die("Error query row 56");
58
59 while ( $tmp = $res_jobs->fetchRow(DB_FETCHMODE_ASSOC) ) {
60         $tdate = explode (":",$tmp['elapsed']);         // Temporal "workaround" ;) Fix later
61         if ( $tdate[0] > 300000 )
62                 $tmp['elapsed'] = "00:00:00";
63                 $tmp['JobBytes'] = $dbSql->human_file_size( $tmp['JobBytes'] );
64         array_push($a_jobs,$tmp);
65 }
66 $smarty->assign('jobs',$a_jobs);
67
68 // report_select.tpl
69 $res = $dbSql->db_link->query("select Name from Job group by Name");
70 $a_jobs = array();
71 while ( $tmp = $res->fetchRow() )
72         array_push($a_jobs, $tmp[0]);
73 $smarty->assign('total_name_jobs',$a_jobs);
74 $res->free();
75 $smarty->assign('time2',( (time())-2678400) );                                  // Current time - 1 month. <select> date
76
77
78
79 $smarty->display('report.tpl');
80 ?>