Updatedatabase for newacq Followup
[koha.git] / about.pl
1 #!/usr/bin/perl
2  
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 use strict;
19
20 use C4::Output;    # contains gettemplate
21 use C4::Auth;
22 use C4::Context;
23 use CGI;
24 use LWP::Simple;
25 use XML::Simple;
26 use Config;
27
28 my $query = new CGI;
29 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
30     {
31         template_name   => "about.tmpl",
32         query           => $query,
33         type            => "intranet",
34         authnotrequired => 0,
35         flagsrequired   => { catalogue => 1 },
36         debug           => 1,
37     }
38 );
39
40 my $kohaVersion   = C4::Context::KOHAVERSION;
41 my $osVersion     = `uname -a`;
42 my $perl_path = $^X;
43 if ($^O ne 'VMS') {
44     $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i;
45 }
46 my $perlVersion   = $];
47 my $mysqlVersion  = `mysql -V`;
48 my $apacheVersion = `httpd -v`;
49 $apacheVersion = `httpd2 -v` unless $apacheVersion;
50 $apacheVersion = (`/usr/sbin/apache2 -V`)[0] unless $apacheVersion;
51 my $zebraVersion = `zebraidx -V`;
52
53 $template->param(
54     kohaVersion   => $kohaVersion,
55     osVersion     => $osVersion,
56     perlPath      => $perl_path,
57     perlVersion   => $perlVersion,
58     perlIncPath   => [ map { perlinc => $_ }, @INC ],
59     mysqlVersion  => $mysqlVersion,
60     apacheVersion => $apacheVersion,
61     zebraVersion  => $zebraVersion,
62 );
63 my @component_names =
64     qw/
65 Algorithm::CheckDigits
66 Biblio::EndnoteStyle
67 CGI
68 CGI::Carp
69 CGI::Session
70 CGI::Session::Serialize::yaml
71 Class::Factory::Util
72 Class::Accessor
73 Compress::Zlib
74 DBD::mysql
75 DBD::SQLite2
76 DBI
77 Data::Dumper
78 Data::ICal
79 Date::Calc
80 Date::ICal
81 Date::Manip
82 Digest::MD5
83 Digest::SHA
84 Email::Date
85 File::Temp
86 GD
87 GD::Barcode::UPCE
88 Getopt::Long
89 Getopt::Std
90 HTML::Template::Pro
91 HTTP::Cookies
92 HTTP::OAI
93 HTTP::Request::Common
94 HTML::Scrubber
95 IPC::Cmd
96 JSON
97 LWP::Simple
98 LWP::UserAgent
99 Lingua::Stem
100 List::Util
101 List::MoreUtils
102 Locale::Language
103 MARC::Crosswalk::DublinCore
104 MARC::Charset
105 MARC::File::XML
106 MARC::Record
107 MIME::Base64
108 MIME::Lite
109 MIME::QuotedPrint
110 Mail::Sendmail
111 Net::LDAP
112 Net::LDAP::Filter
113 Net::Z3950::ZOOM
114 Number::Format
115 PDF::API2
116 PDF::API2::Page
117 PDF::API2::Util
118 PDF::API2::Simple
119 PDF::Table
120 PDF::Reuse
121 PDF::Reuse::Barcode
122 POE
123 POSIX
124 Schedule::At
125 SMS::Send
126 Term::ANSIColor
127 Test
128 Test::Harness
129 Test::More
130 Text::CSV
131 Text::CSV_XS
132 Text::Iconv
133 Text::Wrap
134 Time::HiRes
135 Time::localtime
136 Unicode::Normalize
137 XML::Dumper
138 XML::LibXML
139 XML::LibXSLT
140 XML::SAX::ParserFactory
141 XML::SAX::Writer
142 XML::Simple
143 XML::RSS
144 YAML::Syck
145       /;
146
147 my @components = ();
148
149 my $counter=0;
150 foreach my $component ( sort @component_names ) {
151     my $version;
152     if ( eval "require $component" ) {
153         $version = $component->VERSION;
154         if ( $version eq '' ) {
155             $version = 'unknown';
156         }
157     }
158     else {
159         $version = 'module is missing';
160     }
161     push(
162         @components,
163         {
164             name    => $component,
165             version => $version,
166             newrow  => (++$counter % 4) ? 0 : 1,
167         }
168     );
169 }
170
171 $template->param( components => \@components );
172
173 output_html_with_http_headers $query, $cookie, $template->output;