]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/backup.cgi
The hplip tool was added for printing with HP.
[ipfire-2.x.git] / html / cgi-bin / backup.cgi
CommitLineData
cf29614f 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (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# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
cf29614f
CS
21
22use strict;
23# enable only the following on debugging purpose
a609bfb0
CS
24use warnings;
25use CGI::Carp 'fatalsToBrowser';
8e8bbd9d 26use File::Copy;
cf29614f
CS
27
28require '/var/ipfire/general-functions.pl';
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31
32my %color = ();
33my %mainsettings = ();
8e8bbd9d 34my %cgiparams=();
cf29614f
CS
35my %checked = ();
36my $message = "";
37my $errormessage = "";
cf29614f 38
8e8bbd9d 39$a = new CGI;
cf29614f
CS
40
41&General::readhash("${General::swroot}/main/settings", \%mainsettings);
42&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
43
8e8bbd9d
CS
44$cgiparams{'ACTION'} = '';
45$cgiparams{'FILE'} = '';
46$cgiparams{'UPLOAD'} = '';
47$cgiparams{'BACKUPLOGS'} = '';
69addbb8 48
8e8bbd9d 49&Header::getcgihash(\%cgiparams);
cf29614f 50
a609bfb0
CS
51############################################################################################################################
52################################################ Workaround for Directories ################################################
53
54system("/usr/local/bin/backupctrl makedirs >/dev/null 2>&1 ") unless ( -e '/var/ipfire/backup/addons');
55
cf29614f 56############################################################################################################################
69addbb8 57############################################## System calls ohne Http Header ###############################################
cf29614f 58
69addbb8
CS
59
60if ( $cgiparams{'ACTION'} eq "download" )
8e8bbd9d 61{
901a50cf
CS
62 open(DLFILE, "</var/ipfire/backup/$cgiparams{'FILE'}") or die "Unable to open $cgiparams{'FILE'}: $!";
63 my @fileholder = <DLFILE>;
64 print "Content-Type:application/x-download\n";
65 print "Content-Disposition:attachment;filename=$cgiparams{'FILE'}\n\n";
66 print @fileholder;
67 exit (0);
8e8bbd9d 68}
5ad5a6bc
MT
69if ( $cgiparams{'ACTION'} eq "downloadaddon" )
70{
71 open(DLFILE, "</var/ipfire/backup/addons/backup/$cgiparams{'FILE'}") or die "Unable to open $cgiparams{'FILE'}: $!";
72 my @fileholder = <DLFILE>;
73 print "Content-Type:application/x-download\n";
74 print "Content-Disposition:attachment;filename=$cgiparams{'FILE'}\n\n";
75 print @fileholder;
76 exit (0);
77}
8e8bbd9d
CS
78elsif ( $cgiparams{'ACTION'} eq "restore" )
79{
901a50cf
CS
80 my $upload = $a->param("UPLOAD");
81 open UPLOADFILE, ">/tmp/restore.ipf";
82 binmode $upload;
83 while ( <$upload> ) {
84 print UPLOADFILE;
85 }
86 close UPLOADFILE;
87 system("/usr/local/bin/backupctrl restore >/dev/null 2>&1");
8e8bbd9d 88}
5ad5a6bc
MT
89elsif ( $cgiparams{'ACTION'} eq "restoreaddon" )
90{
91 my $upload = $a->param("UPLOAD");
30945c78 92 open UPLOADFILE, ">/tmp/$cgiparams{'UPLOAD'}";
5ad5a6bc
MT
93 binmode $upload;
94 while ( <$upload> ) {
95 print UPLOADFILE;
96 }
97 close UPLOADFILE;
30945c78 98 system("/usr/local/bin/backupctrl restoreaddon $cgiparams{'UPLOAD'} >/dev/null 2>&1");
5ad5a6bc 99}
cf29614f 100
8e8bbd9d 101&Header::showhttpheaders();
69addbb8
CS
102
103sub refreshpage{&Header::openbox( 'Waiting', 1, "<meta http-equiv='refresh' content='1;'>" );print "<center><img src='/images/clock.gif' alt='' /><br/><font color='red'>$Lang::tr{'pagerefresh'}</font></center>";&Header::closebox();}
104
8e8bbd9d
CS
105&Header::openpage($Lang::tr{'backup'}, 1, "");
106&Header::openbigbox('100%', 'left', '', $errormessage);
107
69addbb8
CS
108############################################################################################################################
109################################################### Default System calls ###################################################
110
111if ( $cgiparams{'ACTION'} eq "backup" )
112{
901a50cf
CS
113 if ( $cgiparams{'BACKUPLOGS'} eq "include" ){system("/usr/local/bin/backupctrl include >/dev/null 2>&1");}
114 else {system("/usr/local/bin/backupctrl exclude >/dev/null 2>&1");}
115}
116if ( $cgiparams{'ACTION'} eq "addonbackup" )
117{
5ad5a6bc 118 system("/usr/local/bin/backupctrl addonbackup $cgiparams{'ADDON'} >/dev/null 2>&1");
69addbb8
CS
119}
120elsif ( $cgiparams{'ACTION'} eq "delete" )
121{
901a50cf 122 system("/usr/local/bin/backupctrl $cgiparams{'FILE'} >/dev/null 2>&1");
69addbb8
CS
123}
124
125############################################################################################################################
901a50cf 126############################################ Backups des Systems erstellen #################################################
69addbb8 127
8e8bbd9d
CS
128if ( $message ne "" ){
129 &Header::openbox('100%','left',$Lang::tr{'error messages'});
130 print "<font color='red'>$message</font>\n";
131 &Header::closebox();
132}
cf29614f 133
901a50cf
CS
134my @backups = `cd /var/ipfire/backup/ && ls *.ipf 2>/dev/null`;
135
cf29614f
CS
136&Header::openbox('100%', 'center', $Lang::tr{'backup'});
137
138print <<END
139<form method='post' action='$ENV{'SCRIPT_NAME'}'>
140<table width='95%' cellspacing='0'>
901a50cf
CS
141<tr><td align='left' width='40%'>$Lang::tr{'logs'}</td><td align='left'>include Logfiles
142 <input type='radio' name='BACKUPLOGS' value='include'/>/
143 <input type='radio' name='BACKUPLOGS' value='exclude' checked='checked'/> exclude Logfiles
144</td></tr>
145<tr><td align='center' colspan='2'>
146 <input type='hidden' name='ACTION' value='backup' />
147 <input type='image' alt='$Lang::tr{'backup'}' title='$Lang::tr{'backup'}' src='/images/document-save.png' />
148</td></tr>
cf29614f
CS
149</table>
150</form>
151END
152;
153&Header::closebox();
154
901a50cf
CS
155############################################################################################################################
156############################################ Backups des Systems downloaden ################################################
157
cf29614f
CS
158&Header::openbox('100%', 'center', $Lang::tr{'backups'});
159
160print <<END
cf29614f
CS
161<table width='95%' cellspacing='0'>
162END
163;
164foreach (@backups){
8e8bbd9d 165chomp($_);
69addbb8 166my $Datei = "/var/ipfire/backup/".$_;
8e8bbd9d
CS
167my @Info = stat($Datei);
168my $Size = $Info[7] / 1024;
169$Size = sprintf("%02d", $Size);
69addbb8
CS
170print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB</td><td width='5'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='download' /><input type='hidden' name='FILE' value='$_' /><input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' /></form></td>";
171print "<td width='5'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='delete' /><input type='hidden' name='FILE' value='$_' /><input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' /></form></td></tr>";
cf29614f 172}
901a50cf 173print <<END
cf29614f 174</table>
8e8bbd9d
CS
175END
176;
177&Header::closebox();
178
901a50cf
CS
179############################################################################################################################
180############################################# Backups von Addons erstellen #################################################
181
182&Header::openbox('100%', 'center', 'addons');
183
184my @addonincluds = `ls /var/ipfire/backup/addons/includes/ 2>/dev/null`;
b8e5a9c5 185my %addons = `ls /var/ipfire/backup/addons/backup/ 2>/dev/null`;
901a50cf
CS
186
187print "<table width='95%' cellspacing='0'>";
188foreach (@addonincluds){
189chomp($_);
b8e5a9c5 190delete($addons{$_."\.ipf\n"});
901a50cf
CS
191my $Datei = "/var/ipfire/backup/addons/backup/".$_.".ipf";
192my @Info = stat($Datei);
193my $Size = $Info[7] / 1024;
194$Size = sprintf("%2d", $Size);
195if ( -e $Datei ){
196print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
197print <<END
198 <td align='right' width='5'>
199 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
5ad5a6bc
MT
200 <input type='hidden' name='ACTION' value='downloadaddon' />
201 <input type='hidden' name='FILE' value='$_.ipf' />
901a50cf
CS
202 <input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' />
203 </form>
204 </td>
205 <td align='right' width='5'>
206 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
207 <input type='hidden' name='ACTION' value='delete' />
208 <input type='hidden' name='FILE' value='addons/backup/$_.ipf' />
209 <input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' />
210 </form>
211 </td>
212END
213;
214}
215else{
b8e5a9c5 216 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ </td><td width='5' align='right'></td><td width='5' align='right'></td>";
901a50cf
CS
217}
218print <<END
219 <td align='right' width='5'>
220 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
221 <input type='hidden' name='ACTION' value='addonbackup' />
222 <input type='hidden' name='ADDON' value='$_' />
223 <input type='image' alt='$Lang::tr{'backup'}' title='$Lang::tr{'backup'}' src='/images/document-save.png' />
224 </form>
225 </td></tr>
226END
227;
228}
b8e5a9c5
CS
229foreach (keys(%addons)){
230chomp($_);
231my $Datei = "/var/ipfire/backup/addons/backup/".$_;
232my @Info = stat($Datei);
233my $Size = $Info[7] / 1024;
234$Size = sprintf("%2d", $Size);
235my $addon=substr($_,0,length($_)-4);
236print "<tr><td align='center'>$Lang::tr{'backup from'} $addon $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
237print <<END
238 <td align='right' width='5'>
239 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
240 <input type='hidden' name='ACTION' value='downloadaddon' />
241 <input type='hidden' name='FILE' value='$_' />
242 <input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' />
243 </form>
244 </td>
245 <td align='right' width='5'>
246 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
247 <input type='hidden' name='ACTION' value='delete' />
248 <input type='hidden' name='FILE' value='addons/backup/$_' />
249 <input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' />
250 </form>
251 </td>
252 <td align='right' width='5'></td></tr>
253END
254;
255}
256
901a50cf
CS
257print "</table>";
258&Header::closebox();
5ad5a6bc
MT
259
260############################################################################################################################
261####################################### Backups des Systems wiederherstellen ###############################################
262
263&Header::openbox('100%', 'center', $Lang::tr{'restore'});
264
265print <<END
266<table width='95%' cellspacing='0'>
267<tr><td align='center' colspan='2'><font color='red'><br />$Lang::tr{'backupwarning'}</font><br /><br /></td></tr>
268<tr><td align='left'>$Lang::tr{'backup'}</td><td align='left'><form method='post' enctype='multipart/form-data' action='$ENV{'SCRIPT_NAME'}'><input type="file" size='50' name="UPLOAD" /><input type='hidden' name='ACTION' value='restore' /><input type='hidden' name='FILE' value='$_' /><input type='image' alt='$Lang::tr{'restore'}' title='$Lang::tr{'restore'}' src='/images/media-floppy.png' /></form></td></tr>
269<tr><td align='left'>$Lang::tr{'backupaddon'}</td><td align='left'><form method='post' enctype='multipart/form-data' action='$ENV{'SCRIPT_NAME'}'><input type="file" size='50' name="UPLOAD" /><input type='hidden' name='ACTION' value='restoreaddon' /><input type='hidden' name='FILE' value='$_' /><input type='image' alt='$Lang::tr{'restore'}' title='$Lang::tr{'restore'}' src='/images/media-floppy.png' /></form></td></tr>
270</table>
271END
272;
273&Header::closebox();
cf29614f
CS
274&Header::closebigbox();
275&Header::closepage();