Umstellung der Benutzerverwaltung von Dateien im Verzeichnis "users" auf die Verwendu...
[kivitendo-erp.git] / SL / InstallationCheck.pm
1 package SL::InstallationCheck;
2
3 use English '-no_match_vars';
4 use IO::File;
5
6 use vars qw(@required_modules);
7
8 @required_modules = (
9   { "name" => "Class::Accessor", "url" => "http://search.cpan.org/~kasei/" },
10   { "name" => "CGI", "url" => "http://search.cpan.org/~lds/" },
11   { "name" => "CGI::Ajax", "url" => "http://search.cpan.org/~bct/" },
12   { "name" => "DBI", "url" => "http://search.cpan.org/~timb/" },
13   { "name" => "DBD::Pg", "url" => "http://search.cpan.org/~dbdpg/" },
14   { "name" => "Archive::Zip", "url" => "http://search.cpan.org/~adamk/" },
15   { "name" => "Text::Iconv", "url" => "http://search.cpan.org/~mpiotr/" },
16   { "name" => "Time::HiRes", "url" => "http://search.cpan.org/~jhi/" },
17   { "name" => "YAML", "url" => "http://search.cpan.org/~ingy/" },
18   { "name" => "IO::Wrap", "url" => "http://search.cpan.org/~dskoll/" },
19   { "name" => "Text::CSV_XS", "url" => "http://search.cpan.org/~hmbrand/" },
20   { "name" => "List::Util", "url" => "http://search.cpan.org/~gbarr/" },
21   { "name" => "Template", "url" => "http://search.cpan.org/~abw/" },
22   { "name" => "Digest::MD5", "url" => "http://search.cpan.org/~gaas/" },
23   );
24
25 sub module_available {
26   my ($module) = @_;
27
28   if (!defined(eval("require $module;"))) {
29     return 0;
30   } else {
31     return 1;
32   }
33 }
34
35 my %conditional_dependencies;
36
37 sub check_for_conditional_dependencies {
38   if (!$conditional_dependencies{net_ldap}) {
39     $conditional_dependencies{net_ldap} = 1;
40
41     my $in = IO::File->new('config/authentication.pl', 'r');
42     if ($in) {
43       my $self = {};
44       my $code;
45
46       while (my $line = <$in>) {
47         $code .= $line;
48       }
49       $in->close();
50
51       eval $code;
52
53       if (! $EVAL_ERROR) {
54
55         if ($self->{module} && ($self->{module} eq 'LDAP')) {
56           push @required_modules, { 'name' => 'Net::LDAP', 'url' => 'http://search.cpan.org/~gbarr/' };
57         }
58       }
59     }
60   }
61 }
62
63 sub test_all_modules {
64   return grep { !module_available($_->{name}) } @required_modules;
65 }
66
67 1;