This commit was manufactured by cvs2svn to create tag 'freeside_2_1_0'.
[freeside.git] /
1 #!/usr/bin/perl -w
2 # BEGIN BPS TAGGED BLOCK {{{
3
4 # COPYRIGHT:
5
6 # This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
7 #                                          <jesse@bestpractical.com>
8
9 # (Except where explicitly superseded by other copyright notices)
10
11
12 # LICENSE:
13
14 # This work is made available to you under the terms of Version 2 of
15 # the GNU General Public License. A copy of that license should have
16 # been provided with this software, but in any event can be snarfed
17 # from www.gnu.org.
18
19 # This work is distributed in the hope that it will be useful, but
20 # WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 # General Public License for more details.
23
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 # 02110-1301 or visit their web page on the internet at
28 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
29
30
31 # CONTRIBUTION SUBMISSION POLICY:
32
33 # (The following paragraph is not intended to limit the rights granted
34 # to you to modify and distribute this software under the terms of
35 # the GNU General Public License and is only of importance to you if
36 # you choose to contribute your changes and enhancements to the
37 # community by submitting them to Best Practical Solutions, LLC.)
38
39 # By intentionally submitting any modifications, corrections or
40 # derivatives to this work, or any other work intended for use with
41 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
42 # you are the copyright holder for those contributions and you grant
43 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
44 # royalty-free, perpetual, license to use, copy, create derivative
45 # works based on those contributions, and sublicense and distribute
46 # those contributions and any derivatives thereof.
47
48 # END BPS TAGGED BLOCK }}}
49 use warnings;
50 use strict;
51
52 # fix lib paths, some may be relative
53 BEGIN {
54     require File::Spec;
55     my @libs = ("lib", "local/lib");
56     my $bin_path;
57
58     for my $lib (@libs) {
59         unless ( File::Spec->file_name_is_absolute($lib) ) {
60             unless ($bin_path) {
61                 if ( File::Spec->file_name_is_absolute(__FILE__) ) {
62                     $bin_path = ( File::Spec->splitpath(__FILE__) )[1];
63                 }
64                 else {
65                     require FindBin;
66                     no warnings "once";
67                     $bin_path = $FindBin::Bin;
68                 }
69             }
70             $lib = File::Spec->catfile( $bin_path, File::Spec->updir, $lib );
71         }
72         unshift @INC, $lib;
73     }
74
75 }
76
77 use RT;
78 RT::LoadConfig();
79 RT->InitLogging();
80 if (RT->Config->Get('DevelMode')) { require Module::Refresh; }
81
82 RT::CheckPerlRequirements();
83 RT->InitPluginPaths();
84
85 my $explicit_port = shift @ARGV;
86 my $port = $explicit_port || RT->Config->Get('WebPort') || '8080';
87
88
89 require RT::Handle;
90 my ($integrity, $state, $msg) = RT::Handle->CheckIntegrity;
91
92 unless ( $integrity ) {
93     print STDERR <<EOF;
94     
95 RT couldn't connect to the database where tickets are stored.
96 If this is a new installation of RT, you should visit the URL below
97 to configure RT and initialize your database.
98
99 If this is an existing RT installation, this may indicate a database
100 connectivity problem.
101
102 The error RT got back when trying to connect to your database was:
103
104 $msg
105
106 EOF
107
108     require RT::Installer;
109     # don't enter install mode if the file exists but is unwritable
110     if (-e RT::Installer->ConfigFile && !-w _) {
111         die 'Since your configuration exists ('
112           . RT::Installer->ConfigFile
113           . ") but is not writable, I'm refusing to do anything.\n";
114     }
115
116     RT->Config->Set( 'LexiconLanguages' => '*' );
117     RT::I18N->Init;
118
119     RT->InstallMode(1);
120 } else {
121     RT->ConnectToDatabase();
122     RT->InitSystemObjects();
123     RT->InitClasses( Heavy => 1 );
124     RT->InitPlugins();
125     RT->Config->PostLoadCheck();
126
127     my ($status, $msg) = RT::Handle->CheckCompatibility(
128         $RT::Handle->dbh, 'post'
129     );
130     unless ( $status ) {
131         print STDERR $msg, "\n\n";
132         exit -1;
133     }
134 }
135
136 require RT::Interface::Web::Standalone;
137 my $server = RT::Interface::Web::Standalone->new;
138 run_server($port);
139 exit 0;
140
141 sub run_server {
142     my $port = shift;
143     $server->port($port);
144     eval { $server->run() };
145
146     if ( my $err = $@ ) {
147         handle_startup_error($err);
148     }
149 }
150
151 sub handle_startup_error {
152     my $err = shift;
153     if ( $err =~ /bind: Permission denied/ ) {
154         handle_bind_error();
155     } else {
156         die
157             "Something went wrong while trying to run RT's standalone web server:\n\t"
158             . $err;
159     }
160 }
161
162
163 sub handle_bind_error {
164
165     print STDERR <<EOF;
166 WARNING: RT couldn't start up a web server on port @{[$port]}.
167 This is often the case if you're running @{[$0]} as 
168 someone other than your system's "root" user.  
169 EOF
170
171     if ($explicit_port) {
172         print STDERR
173             "Please check your system configuration or choose another port\n\n";
174     } else {
175         print STDERR "\nFor now, RT has chosen an alternate port to run on.\n\n";
176         if ( !$integrity ) {
177             print STDERR <<EOF;
178 You can use this server to configure and explore RT.  While configuring
179 RT, you'll have a chance to set a permanent port and URL for your
180 server.
181
182 EOF
183         }
184         run_server( 8000 + int( rand(1024) ) );
185     }
186 }