]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/pakfire/lib/functions.pl
Graph.pl gefixt, damit die CGIs sich trotz fehlender Mbmon Daten aufbauen
[people/pmueller/ipfire-2.x.git] / src / pakfire / lib / functions.pl
CommitLineData
1bd42c89
MT
1#!/usr/bin/perl -w
2
3require "/opt/pakfire/etc/pakfire.conf";
4b122800 4require "/var/ipfire/general-functions.pl";
1bd42c89
MT
5
6use File::Basename;
7use File::Copy;
8use LWP::UserAgent;
4d504812 9use HTTP::Response;
a6d327a7
MT
10use HTTP::Headers;
11use HTTP::Message;
12use HTTP::Request;
1bd42c89
MT
13use Net::Ping;
14
15package Pakfire;
16
750c1528
MT
17# GPG Keys
18my $myid = "64D96617"; # Our own gpg-key paks@ipfire.org
19my $trustid = "65D0FD58"; # gpg-key of CaCert
20
35f38a8b
MT
21# A small color-hash :D
22my %color;
23 $color{'normal'} = "\033[0m";
24 $color{'black'} = "\033[0;30m";
25 $color{'darkgrey'} = "\033[1;30m";
26 $color{'blue'} = "\033[0;34m";
27 $color{'lightblue'} = "\033[1;34m";
28 $color{'green'} = "\033[0;32m";
29 $color{'lightgreen'} = "\033[1;32m";
30 $color{'cyan'} = "\033[0;36m";
31 $color{'lightcyan'} = "\033[1;36m";
32 $color{'red'} = "\033[0;31m";
33 $color{'lightred'} = "\033[1;31m";
34 $color{'purple'} = "\033[0;35m";
35 $color{'lightpurple'} = "\033[1;35m";
36 $color{'brown'} = "\033[0;33m";
37 $color{'lightgrey'} = "\033[0;37m";
38 $color{'yellow'} = "\033[1;33m";
39 $color{'white'} = "\033[1;37m";
750c1528 40our $enable_colors = 1;
35f38a8b 41
a6d327a7
MT
42my $final_data;
43my $total_size;
44my $bfile;
45
4b122800
MT
46my %pakfiresettings = ();
47&General::readhash("${General::swroot}/pakfire/settings", \%pakfiresettings);
48
1bd42c89
MT
49sub message {
50 my $message = shift;
35f38a8b 51
1bd42c89 52 logger("$message");
750c1528
MT
53 if ( $enable_colors == 1 ) {
54 if ("$message" =~ /ERROR/) {
55 $message = "$color{'red'}$message$color{'normal'}";
56 } elsif ("$message" =~ /INFO/) {
57 $message = "$color{'cyan'}$message$color{'normal'}";
58 } elsif ("$message" =~ /WARN/) {
59 $message = "$color{'yellow'}$message$color{'normal'}";
60 } elsif ("$message" =~ /RESV/) {
61 $message = "$color{'purple'}$message$color{'normal'}";
62 } elsif ("$message" =~ /INST/) {
63 $message = "$color{'green'}$message$color{'normal'}";
64 } elsif ("$message" =~ /REMV/) {
65 $message = "$color{'lightred'}$message$color{'normal'}";
66 } elsif ("$message" =~ /UPGR/) {
67 $message = "$color{'lightblue'}$message$color{'normal'}";
68 }
35f38a8b
MT
69 }
70 print "$message\n";
71
1bd42c89
MT
72}
73
74sub logger {
75 my $log = shift;
9ced24a8
MT
76 if ($log) {
77 system("echo \"`date`: $log\" >> /var/log/pakfire.log");
78 #system("logger -t pakfire \"$log\"");
79 }
1bd42c89
MT
80}
81
5b2a12ff 82sub usage {
750c1528 83 &Pakfire::message("Usage: pakfire <install|remove> [options] <pak(s)>");
5b2a12ff 84 &Pakfire::message(" <update> - Contacts the servers for new lists of paks.");
99e6df8e 85 &Pakfire::message(" <upgrade> - Installs the latest version of all paks.");
5b2a12ff 86 &Pakfire::message(" <list> - Outputs a short list with all available paks.");
99e6df8e 87 &Pakfire::message("");
750c1528
MT
88 &Pakfire::message(" Global options:");
89 &Pakfire::message(" --non-interactive --> Enables the non-interactive mode.");
90 &Pakfire::message(" You won't see any question here.");
91 &Pakfire::message(" -y --> Short for --non-interactive.");
92 &Pakfire::message(" --no-colors --> Turns off the wonderful colors.");
93 &Pakfire::message("");
5b2a12ff
MT
94 exit 1;
95}
96
1bd42c89
MT
97sub pinghost {
98 my $host = shift;
99
100 $p = Net::Ping->new();
101 if ($p->ping($host)) {
a6d327a7 102 logger("PING INFO: $host is alive");
1bd42c89
MT
103 return 1;
104 } else {
a6d327a7 105 logger("PING INFO: $host is unreachable");
1bd42c89
MT
106 return 0;
107 }
108 $p->close();
109}
110
111sub fetchfile {
4d504812
MT
112 my $getfile = shift;
113 my $gethost = shift;
114 my (@server, $host, $proto, $file, $allok, $i);
1bd42c89 115
a6d327a7 116 logger("DOWNLOAD STARTED: $getfile") unless ($bfile =~ /^counter\?.*/);
1bd42c89 117 use File::Basename;
4d504812 118 $bfile = basename("$getfile");
1bd42c89 119
4d504812
MT
120 $i = 0;
121 while (($allok == 0) && $i < 5) {
122 $i++;
123
124 if ("$gethost" eq "") {
125 @server = selectmirror();
126 $proto = $server[0];
127 $host = $server[1];
128 $file = "$server[2]/$getfile";
1bd42c89 129 } else {
4d504812 130 $host = $gethost;
afabe9f7 131 $file = $getfile;
1bd42c89 132 }
4d504812
MT
133
134 $proto = "HTTP" unless $proto;
135
a6d327a7
MT
136 unless ($bfile =~ /^counter\?.*/) {
137 logger("DOWNLOAD INFO: Host: $host ($proto) - File: $file");
a6d327a7 138 }
1bd42c89 139
4d504812
MT
140 my $ua = LWP::UserAgent->new;
141 $ua->agent("Pakfire/$Conf::version");
afabe9f7 142 $ua->timeout(5);
4b122800
MT
143
144 my %proxysettings=();
145 &General::readhash("${General::swroot}/proxy/advanced/settings", \%proxysettings);
146
99e6df8e 147 if ($proxysettings{'UPSTREAM_PROXY'}) {
a6d327a7 148 logger("DOWNLOAD INFO: Upstream proxy: \"$proxysettings{'UPSTREAM_PROXY'}\"") unless ($bfile =~ /^counter\?.*/);
4b122800 149 if ($proxysettings{'UPSTREAM_USER'}) {
99e6df8e 150 $ua->proxy("http","http://$proxysettings{'UPSTREAM_USER'}:$proxysettings{'UPSTREAM_PASSWORD'}@"."$proxysettings{'UPSTREAM_PROXY'}/");
a6d327a7 151 logger("DOWNLOAD INFO: Logging in with: \"$proxysettings{'UPSTREAM_USER'}\" - \"$proxysettings{'UPSTREAM_PASSWORD'}\"") unless ($bfile =~ /^counter\?.*/);
4b122800 152 } else {
99e6df8e 153 $ua->proxy("http","http://$proxysettings{'UPSTREAM_PROXY'}/");
4b122800
MT
154 }
155 }
a6d327a7
MT
156
157 $final_data = undef;
158 my $url = "http://$host/$file";
159 my $response;
160
161 unless ($bfile =~ /^counter\?.*/) {
162 my $result = $ua->head($url);
163 my $remote_headers = $result->headers;
164 $total_size = $remote_headers->content_length;
165 logger("DOWNLOAD INFO: $file has size of $total_size bytes");
166
167 $response = $ua->get($url, ':content_cb' => \&callback );
168 message("");
169 } else {
170 $response = $ua->get($url);
171 }
4d504812 172
4b122800
MT
173 my $code = $response->code();
174 my $log = $response->status_line;
a6d327a7 175 logger("DOWNLOAD INFO: HTTP-Status-Code: $code - $log");
4b122800
MT
176
177 if ( $code eq "500" ) {
e44b26cf 178 message("Giving up: There was no chance to get the file \"$getfile\" from any available server.\nThere was an error on the way. Please fix it.");
4b122800
MT
179 return 1;
180 }
181
4d504812 182 if ($response->is_success) {
35f38a8b
MT
183 unless ($bfile =~ /^counter\?.*/) {
184 if (open(FILE, ">$Conf::tmpdir/$bfile")) {
185 print FILE $final_data;
186 close(FILE);
a6d327a7 187 logger("DOWNLOAD INFO: File received. Start checking signature...");
06209efc 188 if (system("gpg --verify \"$Conf::tmpdir/$bfile\" &>/dev/null") eq 0) {
a6d327a7 189 logger("DOWNLOAD INFO: Signature of $bfile is fine.");
06209efc
MT
190 move("$Conf::tmpdir/$bfile","$Conf::cachedir/$bfile");
191 } else {
a6d327a7 192 message("DOWNLOAD ERROR: The downloaded file ($file) wasn't verified by IPFire.org. Sorry - Exiting...");
06209efc
MT
193 exit 1;
194 }
35f38a8b
MT
195 logger("DOWNLOAD FINISHED: $file");
196 $allok = 1;
197 return 0;
198 } else {
199 logger("DOWNLOAD ERROR: Could not open $Conf::cachedir/$bfile for writing.");
186e3d2c 200 }
4d504812 201 } else {
35f38a8b 202 return 0;
4d504812
MT
203 }
204 } else {
a6d327a7 205 logger("DOWNLOAD ERROR: $log");
4d504812 206 }
1bd42c89 207 }
a6d327a7 208 message("DOWNLOAD ERROR: There was no chance to get the file \"$getfile\" from any available server.\nMay be you should run \"pakfire update\" to get some new servers.");
4d504812 209 return 1;
1bd42c89
MT
210}
211
212sub getmirrors {
213 use File::Copy;
214
a6d327a7 215 logger("MIRROR: Trying to get a mirror list.");
1bd42c89 216
2aa6d448
MT
217 if ( -e "$Conf::dbdir/lists/server-list.db" ) {
218 my @stat = stat("$Conf::dbdir/lists/server-list.db");
e3670217
MT
219 my $time = time();
220 $age = $time - $stat[9];
221 } else {
222 # Force an update.
223 $age = "86401";
224 }
225
226 if ("$age" gt "86400") {
227 fetchfile("$Conf::version/lists/server-list.db", "$Conf::mainserver");
228 move("$Conf::cachedir/server-list.db", "$Conf::dbdir/lists/server-list.db");
229 }
1bd42c89
MT
230}
231
2aa6d448
MT
232sub getcoredb {
233 use File::Copy;
234
235 logger("CORE: Trying to get a core list.");
236
237 if ( -e "$Conf::dbdir/lists/core-list.db" ) {
238 my @stat = stat("$Conf::dbdir/lists/core-list.db");
239 my $time = time();
240 $age = $time - $stat[9];
241 } else {
242 # Force an update.
243 $age = "3601";
244 }
245
246 if ("$age" gt "3600") {
247 fetchfile("lists/core-list.db", "");
248 move("$Conf::cachedir/core-list.db", "$Conf::dbdir/lists/core-list.db");
249 }
250}
251
252
1bd42c89
MT
253sub selectmirror {
254 ### Check if there is a current server list and read it.
255 # If there is no list try to get one.
256 my $count = 0;
06209efc 257 while (!(open(FILE, "<$Conf::dbdir/lists/server-list.db")) && ($count lt 5)) {
1bd42c89
MT
258 $count++;
259 getmirrors();
260 }
261 if ($count == 5) {
a6d327a7 262 message("MIRROR ERROR: Could not find or download a server list");
1bd42c89
MT
263 exit 1;
264 }
265 my @lines = <FILE>;
266 close(FILE);
267
268 ### Count the number of the servers in the list
269 my $scount = 0;
e44b26cf 270 my @newlines;
1bd42c89 271 foreach (@lines) {
e44b26cf
MT
272 if ("$_" =~ /.*;.*;.*;/ ) {
273 push(@newlines,$_);
274 $scount++;
275 }
1bd42c89 276 }
a6d327a7 277 logger("MIRROR INFO: $scount servers found in list");
1bd42c89
MT
278
279 ### Choose a random server and test if it is online
280 # If the check fails try a new server.
281 # This will never give up.
282 my $found = 0;
283 my $servers = 0;
284 while ($found == 0) {
285 $server = int(rand($scount) + 1);
286 $servers = 0;
287 my ($line, $proto, $path, $host);
288 my @templine;
e44b26cf 289 foreach $line (@newlines) {
1bd42c89
MT
290 $servers++;
291 if ($servers eq $server) {
292 @templine = split(/\;/, $line);
293 $proto = $templine[0];
294 $host = $templine[1];
295 $path = $templine[2];
a08c3a2e 296 if (pinghost("$host")) {
1bd42c89
MT
297 $found = 1;
298 return ($proto, $host, $path);
299 }
300 }
301 }
4d504812 302 }
1bd42c89
MT
303}
304
305sub dbgetlist {
306 ### Update the database if the file is older than one day.
307 # If you pass &Pakfire::dbgetlist(force) the list will be downloaded.
308 # Usage is always with an argument.
309 my $force = shift;
310 my $age;
311
312 use File::Copy;
313
314 if ( -e "$Conf::dbdir/lists/packages_list.db" ) {
315 my @stat = stat("$Conf::dbdir/lists/packages_list.db");
316 my $time = time();
317 $age = $time - $stat[9];
318 } else {
319 # Force an update.
2aa6d448 320 $age = "3601";
1bd42c89
MT
321 }
322
2aa6d448 323 if (("$age" gt "3600") || ("$force" eq "force")) {
1bd42c89
MT
324 fetchfile("lists/packages_list.db", "");
325 move("$Conf::cachedir/packages_list.db", "$Conf::dbdir/lists/packages_list.db");
326 }
327}
328
329sub dblist {
330 ### This subroutine lists the packages.
331 # You may also pass a filter: &Pakfire::dblist(filter)
332 # Usage is always with two arguments.
333 # filter may be: all, notinstalled, installed
334 my $filter = shift;
335 my $forweb = shift;
4b122800 336 my @meta;
99e6df8e 337 my @updatepaks;
4b122800
MT
338 my $file;
339 my $line;
340 my $prog;
341 my ($name, $version, $release);
342 my @templine;
1bd42c89
MT
343
344 ### Make sure that the list is not outdated.
345 dbgetlist("noforce");
346
347 open(FILE, "<$Conf::dbdir/lists/packages_list.db");
348 my @db = <FILE>;
349 close(FILE);
4b122800
MT
350
351 if ("$filter" eq "upgrade") {
8a8a50ad
MT
352 getcoredb();
353 eval(`grep "core_" $Conf::dbdir/lists/core-list.db`);
354 if ("$core_release" gt "$Conf::core_mine") {
355 if ("$forweb" eq "forweb") {
356 print "<option value=\"core\">Core-Update -- $Conf::version -- Release: $Conf::core_mine -> $core_release</option>\n";
357 } else {
358 my $command = "Core-Update $Conf::version\nRelease: $Conf::core_mine -> $core_release\n";
359 if ("$Pakfire::enable_colors" eq "1") {
360 print "$color{'lila'}$command$color{'normal'}\n";
361 } else {
362 print "$command\n";
363 }
364 }
365 }
366
4b122800
MT
367 opendir(DIR,"$Conf::dbdir/meta");
368 my @files = readdir(DIR);
369 closedir(DIR);
370 foreach $file (@files) {
371 next if ( $file eq "." );
372 next if ( $file eq ".." );
373 open(FILE, "<$Conf::dbdir/meta/$file");
374 @meta = <FILE>;
375 close(FILE);
376 foreach $line (@meta) {
377 @templine = split(/\: /,$line);
378 if ("$templine[0]" eq "Name") {
379 $name = $templine[1];
380 chomp($name);
381 } elsif ("$templine[0]" eq "ProgVersion") {
382 $version = $templine[1];
383 chomp($version);
384 } elsif ("$templine[0]" eq "Release") {
385 $release = $templine[1];
386 chomp($release);
387 }
388 }
389 foreach $prog (@db) {
390 @templine = split(/\;/,$prog);
391 if (("$name" eq "$templine[0]") && ("$release" < "$templine[2]" )) {
99e6df8e 392 push(@updatepaks,$name);
4b122800
MT
393 if ("$forweb" eq "forweb") {
394 print "<option value=\"$name\">Update: $name -- Version: $version -> $templine[1] -- Release: $release -> $templine[2]</option>\n";
395 } else {
e3670217
MT
396 my $command = "Update: $name\nVersion: $version -> $templine[1]\nRelease: $release -> $templine[2]\n";
397 if ("$Pakfire::enable_colors" eq "1") {
398 print "$color{'lila'}$command$color{'normal'}\n";
399 } else {
400 print "$command\n";
401 }
4b122800
MT
402 }
403 }
404 }
5b2a12ff 405 }
99e6df8e 406 return @updatepaks;
4b122800
MT
407 } else {
408 my $line;
e3670217 409 my $use_color;
4b122800 410 my @templine;
e3670217 411 my $count;
4b122800 412 foreach $line (sort @db) {
06209efc 413 next unless ($line =~ /.*;.*;.*;/ );
e3670217
MT
414 $use_color = "";
415 $count++;
4b122800
MT
416 @templine = split(/\;/,$line);
417 if ("$filter" eq "notinstalled") {
418 next if ( -e "$Conf::dbdir/installed/meta-$templine[0]" );
419 } elsif ("$filter" eq "installed") {
420 next unless ( -e "$Conf::dbdir/installed/meta-$templine[0]" );
421 }
422 if ("$forweb" eq "forweb") {
423 print "<option value=\"$templine[0]\">$templine[0]-$templine[1]-$templine[2]</option>\n";
424 } else {
e3670217
MT
425 if ("$Pakfire::enable_colors" eq "1") {
426 if (&isinstalled("$templine[0]")) {
427 $use_color = "$color{'red'}"
428 } else {
429 $use_color = "$color{'green'}"
430 }
431 }
432 print "${use_color}Name: $templine[0]\nProgVersion: $templine[1]\nRelease: $templine[2]$color{'normal'}\n\n";
4b122800 433 }
1bd42c89 434 }
e3670217 435 print "$count packages total.\n" unless ("$forweb" eq "forweb");
1bd42c89
MT
436 }
437}
438
439sub resolvedeps {
440 my $pak = shift;
441
442 getmetafile("$pak");
443
35f38a8b 444 message("PAKFIRE RESV: $pak: Resolving dependencies...");
1bd42c89
MT
445
446 open(FILE, "<$Conf::dbdir/meta/meta-$pak");
447 my @file = <FILE>;
448 close(FILE);
449
450 my $line;
186e3d2c 451 my (@templine, @deps, @tempdeps, @all);
1bd42c89
MT
452 foreach $line (@file) {
453 @templine = split(/\: /,$line);
454 if ("$templine[0]" eq "Dependencies") {
455 @deps = split(/ /, $templine[1]);
456 }
457 }
458 chomp (@deps);
459 foreach (@deps) {
460 if ($_) {
186e3d2c
MT
461 my $return = &isinstalled($_);
462 if ($return eq 0) {
35f38a8b 463 message("PAKFIRE RESV: $pak: Dependency is already installed: $_");
186e3d2c 464 } else {
35f38a8b 465 message("PAKFIRE RESV: $pak: Need to install dependency: $_");
186e3d2c
MT
466 push(@tempdeps,$_);
467 push(@all,$_);
468 }
1bd42c89
MT
469 }
470 }
e44b26cf 471
1bd42c89
MT
472 foreach (@tempdeps) {
473 if ($_) {
474 my @newdeps = resolvedeps("$_");
475 foreach(@newdeps) {
476 unless (($_ eq " ") || ($_ eq "")) {
186e3d2c
MT
477 my $return = &isinstalled($_);
478 if ($return eq 0) {
35f38a8b 479 message("PAKFIRE RESV: $pak: Dependency is already installed: $_");
186e3d2c 480 } else {
35f38a8b 481 message("PAKFIRE RESV: $pak: Need to install dependency: $_");
186e3d2c
MT
482 push(@all,$_);
483 }
1bd42c89
MT
484 }
485 }
486 }
487 }
35f38a8b 488 message("");
186e3d2c
MT
489 chomp (@all);
490 return @all;
1bd42c89
MT
491}
492
493sub cleanup {
494 my $dir = shift;
495 my $path;
496
35f38a8b
MT
497 logger("CLEANUP: $dir");
498
1bd42c89
MT
499 if ( "$dir" eq "meta" ) {
500 $path = "$Conf::dbdir/meta";
501 } elsif ( "$dir" eq "tmp" ) {
502 $path = "$Conf::tmpdir";
503 }
504 chdir("$path");
505 opendir(DIR,".");
506 my @files = readdir(DIR);
507 closedir(DIR);
508 foreach (@files) {
509 unless (($_ eq ".") || ($_ eq "..")) {
510 system("rm -rf $_");
511 }
512 }
513}
514
515sub getmetafile {
516 my $pak = shift;
517
1bd42c89
MT
518 unless ( -e "$Conf::dbdir/meta/meta-$pak") {
519 fetchfile("meta/meta-$pak", "");
520 move("$Conf::cachedir/meta-$pak", "$Conf::dbdir/meta/meta-$pak");
521 }
522
523 open(FILE, "<$Conf::dbdir/meta/meta-$pak");
524 my @line = <FILE>;
525 close(FILE);
526
527 open(FILE, ">$Conf::dbdir/meta/meta-$pak");
528 foreach (@line) {
529 my $string = $_;
530 $string =~ s/\r\n/\n/g;
531 print FILE $string;
532 }
533 close(FILE);
534 return 1;
535}
536
537sub getsize {
538 my $pak = shift;
539
540 getmetafile("$pak");
541
542 open(FILE, "<$Conf::dbdir/meta/meta-$pak");
543 my @file = <FILE>;
544 close(FILE);
545
546 my $line;
547 my @templine;
548 foreach $line (@file) {
549 @templine = split(/\: /,$line);
550 if ("$templine[0]" eq "Size") {
551 chomp($templine[1]);
552 return $templine[1];
553 }
554 }
4b122800 555 return 0;
1bd42c89
MT
556}
557
558sub decryptpak {
559 my $pak = shift;
560
561 cleanup("tmp");
562
563 my $file = getpak("$pak", "noforce");
564
a6d327a7 565 logger("DECRYPT STARTED: $pak");
35f38a8b 566 my $return = system("cd $Conf::tmpdir/ && gpg -d --batch --quiet --no-verbose --status-fd 2 --output - < $Conf::cachedir/$file 2>/dev/null | tar x");
99e6df8e 567 $return %= 255;
a6d327a7 568 logger("DECRYPT FINISHED: $pak - Status: $return");
cde0e116 569 if ($return != 0) { exit 1; }
1bd42c89
MT
570}
571
572sub getpak {
573 my $pak = shift;
574 my $force = shift;
575
576 getmetafile("$pak");
577
578 open(FILE, "<$Conf::dbdir/meta/meta-$pak");
579 my @file = <FILE>;
580 close(FILE);
581
582 my $line;
583 my $file;
584 my @templine;
585 foreach $line (@file) {
586 @templine = split(/\: /,$line);
587 if ("$templine[0]" eq "File") {
588 chomp($templine[1]);
589 $file = $templine[1];
590 }
591 }
592
593 unless ($file) {
594 message("No filename given in meta-file. Please phone the developers.");
595 exit 1;
596 }
597
1bd42c89
MT
598 unless ( "$force" eq "force" ) {
599 if ( -e "$Conf::cachedir/$file" ) {
1bd42c89
MT
600 return $file;
601 }
602 }
603
604 fetchfile("paks/$file", "");
605 return $file;
606}
607
608sub setuppak {
609 my $pak = shift;
610
35f38a8b 611 message("PAKFIRE INST: $pak: Decrypting...");
1bd42c89
MT
612 decryptpak("$pak");
613
35f38a8b 614 message("PAKFIRE INST: $pak: Copying files and running post-installation scripts...");
99e6df8e 615 my $return = system("cd $Conf::tmpdir && NAME=$pak ./install.sh >> $Conf::logdir/install-$pak.log 2>&1");
cde0e116 616 $return %= 255;
e44b26cf
MT
617 if ($pakfiresettings{'UUID'} ne "off") {
618 fetchfile("cgi-bin/counter?ver=$Conf::version&uuid=$Conf::uuid&ipak=$pak&return=$return", "$Conf::mainserver");
619 }
1bd42c89
MT
620 if ($return == 0) {
621 move("$Conf::tmpdir/ROOTFILES", "$Conf::dbdir/rootfiles/$pak");
622 cleanup("tmp");
4d504812 623 copy("$Conf::dbdir/meta/meta-$pak","$Conf::dbdir/installed/");
35f38a8b
MT
624 message("PAKFIRE INST: $pak: Finished.");
625 message("");
1bd42c89 626 } else {
35f38a8b 627 message("PAKFIRE ERROR: Returncode: $return. Sorry. Please search our forum to find a solution for this problem.");
1bd42c89
MT
628 exit $return;
629 }
a08c3a2e 630 return $return;
1bd42c89
MT
631}
632
2aa6d448
MT
633sub upgradecore {
634 getcoredb();
635 eval(`grep "core_" $Conf::dbdir/lists/core-list.db`);
636 if ("$core_release" gt "$Conf::core_mine") {
637 message("CORE UPGR: Upgrading from release $Conf::core_mine to $core_release");
638
639 my @seq = `seq $Conf::core_mine $core_release`;
640 shift @seq;
641 my $release;
642 foreach $release (@seq) {
643 chomp($release);
644 getpak("core-upgrade-$release");
645 }
646
647 foreach $release (@seq) {
648 chomp($release);
649 upgradepak("core-upgrade-$release");
650 }
651
652 system("echo $core_release > $Conf::coredir/mine");
653
654 } else {
655 message("CORE ERROR: No new upgrades available. You are on release $Conf::core_mine.");
656 }
657}
658
186e3d2c
MT
659sub isinstalled {
660 my $pak = shift;
661 if ( open(FILE,"<$Conf::dbdir/installed/meta-$pak") ) {
662 close(FILE);
663 return 0;
664 } else {
665 return 1;
666 }
667}
668
99e6df8e 669sub upgradepak {
1bd42c89
MT
670 my $pak = shift;
671
35f38a8b 672 message("PAKFIRE UPGR: $pak: Decrypting...");
1bd42c89
MT
673 decryptpak("$pak");
674
35f38a8b 675 message("PAKFIRE UPGR: $pak: Upgrading files and running post-upgrading scripts...");
99e6df8e
MT
676 my $return = system("cd $Conf::tmpdir && NAME=$pak ./update.sh >> $Conf::logdir/update-$pak.log 2>&1");
677 $return %= 255;
e44b26cf
MT
678 if ($pakfiresettings{'UUID'} ne "off") {
679 fetchfile("cgi-bin/counter?ver=$Conf::version&uuid=$Conf::uuid&upak=$pak&return=$return", "$Conf::mainserver");
680 }
1bd42c89
MT
681 if ($return == 0) {
682 move("$Conf::tmpdir/ROOTFILES", "$Conf::dbdir/rootfiles/$pak");
683 cleanup("tmp");
99e6df8e 684 copy("$Conf::dbdir/meta/meta-$pak","$Conf::dbdir/installed/");
35f38a8b
MT
685 message("PAKFIRE UPGR: $pak: Finished.");
686 message("");
1bd42c89 687 } else {
35f38a8b 688 message("PAKFIRE ERROR: Returncode: $return. Sorry. Please search our forum to find a solution for this problem.");
1bd42c89
MT
689 exit $return;
690 }
8e58bd37 691 return $return;
1bd42c89
MT
692}
693
694sub removepak {
695 my $pak = shift;
696
35f38a8b 697 message("PAKFIRE REMV: $pak: Decrypting...");
1bd42c89
MT
698 decryptpak("$pak");
699
35f38a8b 700 message("PAKFIRE REMV: $pak: Removing files and running post-removing scripts...");
99e6df8e
MT
701 my $return = system("cd $Conf::tmpdir && NAME=$pak ./uninstall.sh >> $Conf::logdir/uninstall-$pak.log 2>&1");
702 $return %= 255;
e44b26cf
MT
703 if ($pakfiresettings{'UUID'} ne "off") {
704 fetchfile("cgi-bin/counter?ver=$Conf::version&uuid=$Conf::uuid&dpak=$pak&return=$return", "$Conf::mainserver");
705 }
1bd42c89
MT
706 if ($return == 0) {
707 open(FILE, "<$Conf::dbdir/rootfiles/$pak");
708 my @file = <FILE>;
709 close(FILE);
710 foreach (@file) {
711 my $line = $_;
712 chomp($line);
713 system("echo \"Removing: $line\" >> $Conf::logdir/uninstall-$pak.log 2>&1");
714 system("cd / && rm -rf $line >> $Conf::logdir/uninstall-$pak.log 2>&1");
715 }
716 unlink("$Conf::dbdir/rootfiles/$pak");
a6d327a7 717 unlink("$Conf::dbdir/installed/meta-$pak");
1bd42c89 718 cleanup("tmp");
35f38a8b
MT
719 message("PAKFIRE REMV: $pak: Finished.");
720 message("");
1bd42c89 721 } else {
35f38a8b 722 message("PAKFIRE ERROR: Returncode: $return. Sorry. Please search our forum to find a solution for this problem.");
1bd42c89
MT
723 exit $return;
724 }
8e58bd37 725 return $return;
1bd42c89
MT
726}
727
728sub beautifysize {
729 my $size = shift;
35f38a8b 730 #$size = $size / 1024;
a08c3a2e 731 my $unit;
1bd42c89 732
35f38a8b
MT
733 if ($size > 1023*1024) {
734 $size = ($size / (1024*1024));
a08c3a2e 735 $unit = "MB";
35f38a8b
MT
736 } elsif ($size > 1023) {
737 $size = ($size / 1024);
a08c3a2e 738 $unit = "KB";
35f38a8b
MT
739 } else {
740 $unit = "B";
1bd42c89 741 }
a08c3a2e
MT
742 $size = sprintf("%.2f" , $size);
743 my $string = "$size $unit";
744 return $string;
1bd42c89
MT
745}
746
8e58bd37
MT
747sub makeuuid {
748 unless ( -e "$Conf::dbdir/uuid" ) {
8e58bd37
MT
749 open(FILE, "</proc/sys/kernel/random/uuid");
750 my @line = <FILE>;
751 close(FILE);
752
753 open(FILE, ">$Conf::dbdir/uuid");
754 foreach (@line) {
755 print FILE $_;
756 }
757 close(FILE);
758 }
759}
760
761sub senduuid {
99e6df8e 762 if ($pakfiresettings{'UUID'} ne "off") {
4b122800
MT
763 unless("$Conf::uuid") {
764 $Conf::uuid = `cat $Conf::dbdir/uuid`;
765 }
766 logger("Sending my uuid: $Conf::uuid");
767 fetchfile("cgi-bin/counter?ver=$Conf::version&uuid=$Conf::uuid", "$Conf::mainserver");
06209efc 768 system("rm -f $Conf::tmpdir/counter* 2>/dev/null");
8e58bd37 769 }
8e58bd37 770}
1bd42c89 771
cde0e116 772sub checkcryptodb {
a6d327a7 773 logger("CRYPTO INFO: Checking GnuPG Database");
cde0e116
MT
774 my $ret = system("gpg --list-keys | grep -q $myid");
775 unless ( "$ret" eq "0" ) {
a6d327a7
MT
776 message("CRYPTO WARN: The GnuPG isn't configured corectly. Trying now to fix this.");
777 message("CRYPTO WARN: It's normal to see this on first execution.");
a4c9c660 778 my $command = "gpg --keyserver pgp.mit.edu --always-trust --status-fd 2";
ca385da6
MT
779 system("$command --recv-key $myid >> $Conf::logdir/gnupg-database.log 2>&1");
780 system("$command --recv-key $trustid >> $Conf::logdir/gnupg-database.log 2>&1");
a6d327a7
MT
781 } else {
782 logger("CRYPTO INFO: Database is okay");
cde0e116
MT
783 }
784}
785
a6d327a7
MT
786sub callback {
787 my ($data, $response, $protocol) = @_;
788 $final_data .= $data;
35f38a8b 789 print progress_bar( length($final_data), $total_size, 30, '=' );
a6d327a7
MT
790}
791
792sub progress_bar {
793 my ( $got, $total, $width, $char ) = @_;
794 my $show_bfile;
35f38a8b 795 $width ||= 30; $char ||= '=';
a6d327a7 796 my $len_bfile = length $bfile;
35f38a8b
MT
797 if ("$len_bfile" >= "17") {
798 $show_bfile = substr($bfile,0,17)."...";
a6d327a7
MT
799 } else {
800 $show_bfile = $bfile;
35f38a8b
MT
801 }
802 $progress = sprintf("%.2f%%", 100*$got/+$total);
803 sprintf "$color{'lightgreen'}%-20s %7s |%-${width}s| %10s$color{'normal'}\r",$show_bfile, $progress, $char x (($width-1)*$got/$total). '>', beautifysize($got);
a6d327a7
MT
804}
805
1bd42c89 8061;