]> git.sur5r.net Git - bacula/docs/blob - docs/tools/sf2bacula_downloads.pl
57a78a0ad5c5b9783b45be0f52907ef23afd165d
[bacula/docs] / docs / tools / sf2bacula_downloads.pl
1 #!/usr/bin/perl -w
2 use strict;
3
4 =head HOWTO USE
5
6 When you release a new version ex: 3.0.3
7  - Modify the $version string
8
9 When you add a new category
10  - Add a print_cat() at the end of the script
11
12 To update the downloads.php file
13
14 - Change the version on the top of the file
15 - ./sf2bacula_downloads.pl > downloads.php
16
17 By default, it downloads the sourceforge page in the current directory
18
19
20 You can also use a previous output
21
22  ./sf2bacula_downloads.pl <version> <sf_list_2022.html> > downloads.php
23
24 =cut
25
26 #             bacula|depkgs | depkgs-qt
27 my $version = '3.0.3';
28 if ($ARGV[0] =~ /^[\d\.]+$/) {
29     $version = shift(@ARGV);
30 }
31 my $depkgs_version  = '18Feb09|28Jul09';
32
33 my $base = "http://bacula.svn.sourceforge.net/viewvc/bacula/tags/Release-$version/bacula";
34 my $notes = "$base/ReleaseNotes";
35 my $chglog = "$base/ChangeLog";
36 my %cats;
37 my $cur;
38 my %seen;
39
40 my $file = "sf_list_$$.html";
41 my $cmd = "wget -O $file https://sourceforge.net/projects/bacula/files";
42
43 if ($ARGV[0] && -f $ARGV[0]) {
44     $file = $ARGV[0];
45 } else {
46     system($cmd);
47 }
48
49 open(FP, $file);
50 while (my $l = <FP>)
51 {
52     #                                         cat   vers  file
53     if ($l =~ m!href="(/projects/bacula/files/(.+?)/(.+?)/(.+?)/download)"!) {
54         $cur = {
55             dl  => $1,
56             cat => $2,
57             vers => $3,
58             file => $4,
59         };
60     }
61
62     # the size and the date are just after
63     if ($cur && $l =~ m!<td>([\d\.]+ [KMG]B)</td>!) {
64         $cur->{size} = $1;
65         do {
66             $l = <FP>;
67             if ($l =~ m!<td>(.+?)</td>!) {
68                 $cur->{date} = $1;
69             }
70         } while (!$cur->{date});
71
72         # once we have a full $cur element, we can store it
73         if (!exists $seen{$cur->{file}}) {
74             push @{$cats{$cur->{cat}}}, $cur;
75             $seen{$cur->{file}} = 1;
76             $cur = undef;
77         }
78     }
79 }
80 close(FP);
81
82 print '
83 <? require_once("inc/header.php"); ?>
84 <table>
85   <tr>
86    <td class="contentTopic">
87    Bacula downloads for version ', $version, '
88    </td>
89    </tr>
90    <tr>
91      <td class="content">
92      <center>
93       <a href="', $notes, '">Release Notes</a>&nbsp;|&nbsp;
94       <a href="', $chglog, '">ChangeLog</a>&nbsp;|&nbsp;
95       <a href="#bacula">Sources</a>&nbsp;|&nbsp;
96       <a href="#Win32_64">Win32/64</a>&nbsp;|&nbsp;
97       <a href="#rpms">RPM</a>&nbsp;|&nbsp;
98       <a href="https://sourceforge.net/projects/bacula/files/Bacula%20Public%20Key/Current%20Public%20Key/bacula.pub/download">Public Key</a>&nbsp;|&nbsp;
99       <a href="https://sourceforge.net/projects/bacula/files/Bacula%20Public%20Key/Current%20Public%20Key/rpmkey-bacula-0.1-3.noarch.rpm/download">RPM Public Key</a>
100      </center>
101      </td>
102    </tr>
103 ';
104
105 my $cat = 'bacula';
106 #use Data::Dumper;
107 #print Data::Dumper::Dumper(\%cats);
108
109 sub print_cat
110 {
111     my ($cat) = @_;
112
113     print '
114    <tr>
115      <td> <br><a name="', $cat, '"></a><font size="+1"><b>', $cat, ':</b></font>
116 <table cellspacing="2">
117 <tr><th>Name</th><th align="center">', ($cat !~ /rpm/)?'Signature':'', '</th><th>Size</th><th>Date</th></tr>
118 ';
119     foreach my $elt ( sort { $a->{file} cmp $b->{file} }  @{$cats{$cat}})
120     {
121         next if ($elt->{file} =~ /\.sig/); # we skip signature file
122         if ($elt->{vers} eq $version || $elt->{vers} =~ /$depkgs_version/)
123         {
124             print "
125 <tr>
126  <td><a href='https://sourceforge.net$elt->{dl}'>$elt->{file}</td>
127  <td align='center'>", 
128  ($cat !~ /rpm/)?"<a href='https://sourceforge.net/projects/bacula/files/$cat/$elt->{vers}/$elt->{file}.sig/download'>sig":"", 
129  "</td>
130  <td>$elt->{size}</td>
131  <td>$elt->{date}</td>
132 </tr>
133 ";
134         }
135     }
136     print '</table>
137      </td>
138      </tr>';
139 }
140
141 print_cat('bacula');
142 print_cat('Win32_64');
143 print_cat('rpms');
144 print_cat('rpms-contrib-fschwarz');
145 print_cat('rpms-contrib-psheaffer');
146 print_cat('depkgs');
147 print_cat('depkgs-qt');
148
149
150 print '
151 </table>
152 <? require_once("inc/footer.php"); ?>
153 ';
154