fd2444cee335060cae18e270eea5402b94093bfd
[BackupPC.git] / lib / BackupPC / CGI / Summary.pm
1 #============================================================= -*-perl-*-
2 #
3 # BackupPC::CGI::Summary package
4 #
5 # DESCRIPTION
6 #
7 #   This module implements the Summary action for the CGI interface.
8 #
9 # AUTHOR
10 #   Craig Barratt  <cbarratt@users.sourceforge.net>
11 #
12 # COPYRIGHT
13 #   Copyright (C) 2003  Craig Barratt
14 #
15 #   This program is free software; you can redistribute it and/or modify
16 #   it under the terms of the GNU General Public License as published by
17 #   the Free Software Foundation; either version 2 of the License, or
18 #   (at your option) any later version.
19 #
20 #   This program is distributed in the hope that it will be useful,
21 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
22 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 #   GNU General Public License for more details.
24 #
25 #   You should have received a copy of the GNU General Public License
26 #   along with this program; if not, write to the Free Software
27 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28 #
29 #========================================================================
30 #
31 # Version 2.1.0beta0, released 20 Mar 2004.
32 #
33 # See http://backuppc.sourceforge.net.
34 #
35 #========================================================================
36
37 package BackupPC::CGI::Summary;
38
39 use strict;
40 use BackupPC::CGI::Lib qw(:all);
41
42 sub action
43 {
44     my($fullTot, $fullSizeTot, $incrTot, $incrSizeTot, $str,
45        $strNone, $strGood, $hostCntGood, $hostCntNone);
46
47     $hostCntGood = $hostCntNone = 0;
48     GetStatusInfo("hosts");
49     my $Privileged = CheckPermission();
50
51     foreach my $host ( GetUserHosts(1) ) {
52         my($fullDur, $incrCnt, $incrAge, $fullSize, $fullRate, $reasonHilite);
53         my($shortErr);
54         my @Backups = $bpc->BackupInfoRead($host);
55         my $fullCnt = $incrCnt = 0;
56         my $fullAge = $incrAge = -1;
57
58         $bpc->ConfigRead($host);
59         %Conf = $bpc->Conf();
60
61         if ( $Conf{XferMethod} eq "archive" ) {
62             next;
63         }
64
65         for ( my $i = 0 ; $i < @Backups ; $i++ ) {
66             if ( $Backups[$i]{type} eq "full" ) {
67                 $fullCnt++;
68                 if ( $fullAge < 0 || $Backups[$i]{startTime} > $fullAge ) {
69                     $fullAge  = $Backups[$i]{startTime};
70                     $fullSize = $Backups[$i]{size} / (1024 * 1024);
71                     $fullDur  = $Backups[$i]{endTime} - $Backups[$i]{startTime};
72                 }
73                 $fullSizeTot += $Backups[$i]{size} / (1024 * 1024);
74             } else {
75                 $incrCnt++;
76                 if ( $incrAge < 0 || $Backups[$i]{startTime} > $incrAge ) {
77                     $incrAge = $Backups[$i]{startTime};
78                 }
79                 $incrSizeTot += $Backups[$i]{size} / (1024 * 1024);
80             }
81         }
82         if ( $fullAge < 0 ) {
83             $fullAge = "";
84             $fullRate = "";
85         } else {
86             $fullAge = sprintf("%.1f", (time - $fullAge) / (24 * 3600));
87             $fullRate = sprintf("%.2f",
88                                 $fullSize / ($fullDur <= 0 ? 1 : $fullDur));
89         }
90         if ( $incrAge < 0 ) {
91             $incrAge = "";
92         } else {
93             $incrAge = sprintf("%.1f", (time - $incrAge) / (24 * 3600));
94         }
95         $fullTot += $fullCnt;
96         $incrTot += $incrCnt;
97         $fullSize = sprintf("%.2f", $fullSize / 1000);
98         $incrAge = "&nbsp;" if ( $incrAge eq "" );
99         $reasonHilite = $Conf{CgiStatusHilightColor}{$Status{$host}{reason}}
100                       || $Conf{CgiStatusHilightColor}{$Status{$host}{state}};
101         $reasonHilite = " bgcolor=\"$reasonHilite\"" if ( $reasonHilite ne "" );
102         if ( $Status{$host}{state} ne "Status_backup_in_progress"
103                 && $Status{$host}{state} ne "Status_restore_in_progress"
104                 && $Status{$host}{error} ne "" ) {
105             ($shortErr = $Status{$host}{error}) =~ s/(.{48}).*/$1.../;
106             $shortErr = " ($shortErr)";
107         }
108
109         $str = <<EOF;
110 <tr$reasonHilite><td class="border"> ${HostLink($host)} </td>
111     <td align="center" class="border"> ${UserLink(defined($Hosts->{$host})
112                                     ? $Hosts->{$host}{user} : "")} </td>
113     <td align="center" class="border"> $fullCnt </td>
114     <td align="center" class="border"> $fullAge </td>
115     <td align="center" class="border"> $fullSize </td>
116     <td align="center" class="border"> $fullRate </td>
117     <td align="center" class="border"> $incrCnt </td>
118     <td align="center" class="border"> $incrAge </td>
119     <td align="center" class="border"> $Lang->{$Status{$host}{state}} </td>
120     <td class="border"> $Lang->{$Status{$host}{reason}}$shortErr </td></tr>
121 EOF
122         if ( @Backups == 0 ) {
123             $hostCntNone++;
124             $strNone .= $str;
125         } else {
126             $hostCntGood++;
127             $strGood .= $str;
128         }
129     }
130     $fullSizeTot = sprintf("%.2f", $fullSizeTot / 1000);
131     $incrSizeTot = sprintf("%.2f", $incrSizeTot / 1000);
132     my $now      = timeStamp2(time);
133
134     my $content = eval ("qq{$Lang->{BackupPC_Summary}}");
135     Header($Lang->{BackupPC__Server_Summary}, $content);
136     Trailer();
137 }
138
139 1;