]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/report.php
bacula-web: Removed useless .gitignore file in main folder
[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 include_once( 'bweb.inc.php' );
19
20 $dbSql = new Bweb();
21
22 if ( $_GET['default'] == 1) {                                                                                                   // Default params, 1 month
23         $dbSql->StartDate = strftime("%Y-%m-%d %H:%M:%S",time()-2678400);
24         $dbSql->EndDate = strftime("%Y-%m-%d %H:%M:%S",time());
25 }
26 else                                                                                                                                            // With params
27         $dbSql->PrepareDate($_GET['StartDateMonth'],$_GET['StartDateDay'],$_GET['StartDateYear'],$_GET['EndDateMonth'],$_GET['EndDateDay'],$_GET['EndDateYear']);
28         
29 $bytes = $dbSql->CalculateBytesPeriod($_GET['server'],$dbSql->StartDate,$dbSql->EndDate);
30 $files = $dbSql->CalculateFilesPeriod($_GET['server'],$dbSql->StartDate,$dbSql->EndDate);
31 $smarty->assign('startperiod',$dbSql->StartDate);
32 $smarty->assign('endperiod',$dbSql->EndDate); 
33 $smarty->assign('bytesperiod',$dbSql->human_file_size( $bytes ) );
34 $smarty->assign('filesperiod',$files);
35
36 // Array with jobs data
37 $a_jobs = array();
38 if ($dbSql->driver == "mysql")
39         $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")
40                 or die("Error query row 50");
41 else if ($dbSql->driver == "pgsql")
42         $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")
43                 or die("Error query row 56");
44
45 while ( $tmp = $res_jobs->fetchRow(DB_FETCHMODE_ASSOC) ) {
46         $tdate = explode (":",$tmp['elapsed']);         // Temporal "workaround" ;) Fix later
47         if ( $tdate[0] > 300000 )
48                 $tmp['elapsed'] = "00:00:00";
49                 $tmp['JobBytes'] = $dbSql->human_file_size( $tmp['JobBytes'] );
50         array_push($a_jobs,$tmp);
51 }
52 $smarty->assign('jobs',$a_jobs);
53
54 // report_select.tpl
55 $res = $dbSql->db_link->query("select Name from Job group by Name");
56 $a_jobs = array();
57 while ( $tmp = $res->fetchRow() )
58         array_push($a_jobs, $tmp[0]);
59 $smarty->assign('total_name_jobs',$a_jobs);
60 $res->free();
61 $smarty->assign('time2',( (time())-2678400) );                                  // Current time - 1 month. <select> date
62
63
64
65 $dbSql->tpl->display('report.tpl');
66 ?>