XML::Writer als required Modul für SEPA-Export hinzugefügt
[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 @optional_modules);
7
8 use strict;
9
10 @required_modules = (
11   { "name" => "Class::Accessor", "url" => "http://search.cpan.org/~kasei/" },
12   { "name" => "CGI", "url" => "http://search.cpan.org/~lds/" },
13   { "name" => "CGI::Ajax", "url" => "http://search.cpan.org/~bct/" },
14   { "name" => "DBI", "url" => "http://search.cpan.org/~timb/" },
15   { "name" => "DBD::Pg", "url" => "http://search.cpan.org/~dbdpg/" },
16   { "name" => "Archive::Zip", "url" => "http://search.cpan.org/~adamk/" },
17   { "name" => "Text::Iconv", "url" => "http://search.cpan.org/~mpiotr/" },
18   { "name" => "Time::HiRes", "url" => "http://search.cpan.org/~jhi/" },
19   { "name" => "YAML", "url" => "http://search.cpan.org/~ingy/" },
20   { "name" => "IO::Wrap", "url" => "http://search.cpan.org/~dskoll/" },
21   { "name" => "Text::CSV_XS", "url" => "http://search.cpan.org/~hmbrand/" },
22   { "name" => "List::Util", "url" => "http://search.cpan.org/~gbarr/" },
23   { "name" => "Template", "url" => "http://search.cpan.org/~abw/" },
24   { "name" => "Digest::MD5", "url" => "http://search.cpan.org/~gaas/" },
25   { "name" => "PDF::API2", "url" => "http://search.cpan.org/~areibens/" },
26   { "name" => "XML::Writer", "url" => "http://search.cpan.org/~josephw/" },
27   );
28
29 @optional_modules = (
30   );
31
32 sub module_available {
33   my ($module) = @_;
34
35   if (!defined(eval("require $module;"))) {
36     return 0;
37   } else {
38     return 1;
39   }
40 }
41
42 my %conditional_dependencies;
43
44 sub check_for_conditional_dependencies {
45   if (!$conditional_dependencies{net_ldap}) {
46     $conditional_dependencies{net_ldap} = 1;
47
48     my $in = IO::File->new('config/authentication.pl', 'r');
49     if ($in) {
50       my $self = {};
51       my $code;
52
53       while (my $line = <$in>) {
54         $code .= $line;
55       }
56       $in->close();
57
58       eval $code;
59
60       if (! $EVAL_ERROR) {
61
62         if ($self->{module} && ($self->{module} eq 'LDAP')) {
63           push @required_modules, { 'name' => 'Net::LDAP', 'url' => 'http://search.cpan.org/~gbarr/' };
64         }
65       }
66     }
67   }
68 }
69
70 sub test_all_modules {
71   return grep { !module_available($_->{name}) } @required_modules;
72 }
73
74 1;