]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/report.php
8dc2c163dc7706f61a900e2abbdecfd386762988
[bacula/bacula] / gui / bacula-web / report.php
1 <?
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";
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 require("lang.php");
32
33 $dbSql = new Bweb();
34
35 if ( $_GET['default'] == 1) {                                                                                                   // Default params, 1 month
36         $dbSql->StartDate = strftime("%Y-%m-%d %H:%M:%S",time()-2678400);
37         $dbSql->EndDate = strftime("%Y-%m-%d %H:%M:%S",time());
38 }
39 else                                                                                                                                            // With params
40         $dbSql->PrepareDate($_GET['StartDateMonth'],$_GET['StartDateDay'],$_GET['StartDateYear'],$_GET['EndDateMonth'],$_GET['EndDateDay'],$_GET['EndDateYear']);
41         
42 $bytes = $dbSql->CalculateBytesPeriod($_GET['server'],$dbSql->StartDate,$dbSql->EndDate);
43 $files = $dbSql->CalculateFilesPeriod($_GET['server'],$dbSql->StartDate,$dbSql->EndDate);
44 $smarty->assign('startperiod',$dbSql->StartDate);
45 $smarty->assign('endperiod',$dbSql->EndDate); 
46 $smarty->assign('bytesperiod',$bytes);
47 $smarty->assign('filesperiod',$files);
48
49 // Array with jobs data
50 $a_jobs = array();
51 if ($dbSql->driver == "mysql")
52         $res_jobs = $dbSql->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")
53                 or die("Error query row 50");
54 else if ($dbSql->driver == "pgsql")
55         $res_jobs = $dbSql->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")
56                 or die("Error query row 56");
57
58 while ( $tmp = $res_jobs->fetchRow(DB_FETCHMODE_ASSOC) ) {
59         $tdate = explode (":",$tmp['elapsed']);                                                                           // Temporal "workaround" ;) Fix later
60         if ( $tdate[0] > 300000 )
61                 $tmp['elapsed'] = "00:00:00";
62         array_push($a_jobs,$tmp);
63 }
64 $smarty->assign('jobs',$a_jobs);
65
66 // report_select.tpl
67 $res = $dbSql->link->query("select Name from Job group by Name");
68 $a_jobs = array();
69 while ( $tmp = $res->fetchRow() )
70         array_push($a_jobs, $tmp[0]);
71 $smarty->assign('total_name_jobs',$a_jobs);
72 $res->free();
73 $smarty->assign('time2',( (time())-2678400) );                                  // Current time - 1 month. <select> date
74
75
76
77 $smarty->display('report.tpl');
78 ?>