/[BackupPC]/trunk/lib/BackupPC/CGI/BurnMedia.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/BackupPC/CGI/BurnMedia.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 53 by dpavlin, Sat Aug 20 17:19:48 2005 UTC revision 164 by dpavlin, Mon Oct 10 13:57:29 2005 UTC
# Line 15  sub action() { Line 15  sub action() {
15          my $subtitle;          my $subtitle;
16          my @files;          my @files;
17    
18          my $dbh = DBI->connect($dsn, $db_user, "", { RaiseError => 1, AutoCommit => 1 } );          my $dbh = DBI->connect($dsn, $db_user, "", { RaiseError => 1, AutoCommit => 0 } );
19    
20          BackupPC::CGI::Lib::NewRequest();          BackupPC::CGI::Lib::NewRequest();
21          $cont = Dumper(%In);  #       $cont = Dumper(%In);
22          if (!defined($In{submitBurner})) {          if (!defined($In{submitBurner})) {
23                  $title = eval(q{ ${h1($Lang->{Burn_media})}});                  $title = eval(q{ ${h1($Lang->{Burn_media})}});
24                  $cont = Dumper(%In);                  $cont = Dumper(%In);
# Line 30  sub action() { Line 30  sub action() {
30                    
31  EOF  EOF
32                                
33                  $cont .= "Backups that have files not archived:<br>";                  $cont .= "Backups that have not been archived:<br>";
34                  $cont .= BackupPC::SearchLib::displayBackupsGrid();                  $cont .= BackupPC::SearchLib::displayBackupsGrid();
35                            
36          } else {          } else {
37    
38                  my $mediumName = "DVD";                  my @selected_backup_ids;
39    
40                  $title = eval(q{ ${h1($Lang->{Burn_media})}});                  my $total_size = 0;
41                  $subtitle = eval(q{ ${h2($Lang->{Burn_media_assign})}});                  
42                  $cont = <<EOF;                  foreach my $key(keys(%In)) {
43                            if ($key =~ m/^fcb([0-9]+)_([0-9]+)_([0-9]+)$/gi) {
44          $title                                  my ($host_id, $backup_num, $backup_id) = ($1,$2,$3);
45          $subtitle                                  push @selected_backup_ids, $backup_id;
46                                    $total_size += BackupPC::SearchLib::getGzipSize($host_id, $backup_num);
47  EOF                          }
48                                }
                 # insert DVD first,  
                 my $sql = q{ SELECT MAX(num)+1 AS maxNum FROM dvds; };  
   
                 my $sth = $dbh->prepare($sql);  
                 $sth->execute();  
   
                 my ($mediumNum) = $sth->fetchrow_array();  
                 $mediumNum ||= '0';  
49    
50                  $mediumName = "DVD".$mediumNum;                  if (($total_size / 1024) > $Conf{MaxArchiveSize}) {
51                  $sth = $dbh->prepare (q{                          $cont .= eval( q{ ${h2(Error)}});
52                                  INSERT INTO dvds (num, name)                          $cont .= "Selected backups size $total_size exceed max archive size $Conf{MaxArchiveSize}.";
53                                  VALUES                  } else {
54                                  (?,?)                                    
55                  });                          # create new archive
56                            my $sth = $dbh->prepare(q{
57                                                            INSERT INTO archive (
58                                                                    id,
59                                                                    dvd_nr,
60                                                                    note,
61                                                                    username,
62                                                                    date,
63                                                                    total_size
64                                                            ) VALUES (
65                                                                    nextVal('archive_id_seq'),
66                                                                    nextVal('dvd_nr'),
67                                                                    ?,
68                                                                    ?,
69                                                                    NOW(),
70                                                                    ?
71                                                            )
72                                                    });
73    
74                            # FIXME insert user here
75                            $sth->execute($In{'note'}, 'dummy_user', $total_size);
76    
77                            foreach my $backup_id (@selected_backup_ids) {
78    
79                                    # link backups with archive
80                                    my $sth = $dbh->prepare(q{
81                                            INSERT INTO archive_backup (
82                                                    archive_id, backup_id
83                                            ) VALUES (
84                                                    (SELECT last_value FROM archive_id_seq), ?
85                                            )
86                                    });
87    
88                  $sth->execute($mediumNum, $mediumName);                                  $sth->execute($backup_id);
89    
90                  my $dvdid = $dbh->last_insert_id(undef,undef,'dvds',undef);                                          $dbh->commit();
               
                 my $updateSQL = q{  
                         UPDATE files  
                         SET dvdid=?  
                         WHERE files.shareID IN (  
                                 SELECT ID FROM shares WHERE hostID=?  
                         ) AND  
                                 files.backupNum=?  
                 };  
91    
                 my $update_sth = $dbh->prepare($updateSQL);  
                 my $orQuery = "";  
               
                 # then, assign dvdid to files  
                 foreach my $key (keys(%In)) {  
                         if ($key =~ /fcb/) {                      
                                 my ($hID, $bNo) = split(/_/, $In{$key});  
                                 $update_sth->execute($dvdid, $hID, $bNo);  
92                          }                          }
93    
94                            my ($dvd_nr) = $dbh->selectrow_array(qq{
95                                    select last_value from dvd_nr
96                            });
97    
98                            $dvd_nr ||= 'error';
99    
100                            $dbh->commit();
101    
102                            $cont .= q{
103                                    Archived following backups:
104                            } . join(", ", @selected_backup_ids) . q{
105                                    <br/>with total size of
106                            <b>} . sprintf("%1.2f Mb", $total_size / 1024 / 1024) . q{</b>
107                                    to media <b>} . $dvd_nr . q{</b>
108                                    with following message:
109                                    <div style="background-color: #e0e0e0; display: inline; padding: 2px;">
110                            } . $In{'note'} . q{
111                                    </div>
112                            };
113                  }                  }
                 $cont .= "Backups assigned to media ".$mediumName;  
114          }          }
115          
116          Header($Lang->{Burn_media}, "", 1, "", $cont);          Header($Lang->{Burn_media}, "", 1, "", $cont);
117    
118          Trailer();          Trailer();
119          $dbh->disconnect();          $dbh->disconnect();
120  }  }

Legend:
Removed from v.53  
changed lines
  Added in v.164

  ViewVC Help
Powered by ViewVC 1.1.26