]> git.uio.no Git - usit-rt.git/blame - sbin/standalone_httpd
Putting 4.2.0 on top of 4.0.17
[usit-rt.git] / sbin / standalone_httpd
CommitLineData
84fb5b46
MKG
1#!/usr/bin/perl -w
2# BEGIN BPS TAGGED BLOCK {{{
3#
4# COPYRIGHT:
5#
403d7b0b 6# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC
84fb5b46
MKG
7# <sales@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 }}}
49use warnings;
50use strict;
51
84fb5b46
MKG
52BEGIN {
53 die <<EOT if ${^TAINT};
54RT does not run under Perl's "taint mode". Remove -T from the command
55line, or remove the PerlTaintCheck parameter from your mod_perl
56configuration.
57EOT
af59614d 58}
84fb5b46 59
af59614d
MKG
60# fix lib paths, some may be relative
61BEGIN { # BEGIN RT CMD BOILERPLATE
84fb5b46 62 require File::Spec;
af59614d 63 require Cwd;
84fb5b46
MKG
64 my @libs = ("lib", "local/lib");
65 my $bin_path;
66
67 for my $lib (@libs) {
68 unless ( File::Spec->file_name_is_absolute($lib) ) {
af59614d 69 $bin_path ||= ( File::Spec->splitpath(Cwd::abs_path(__FILE__)) )[1];
84fb5b46
MKG
70 $lib = File::Spec->catfile( $bin_path, File::Spec->updir, $lib );
71 }
72 unshift @INC, $lib;
73 }
74
75}
76
77use Getopt::Long;
78no warnings 'once';
79
80if (grep { m/help/ } @ARGV) {
81 require Pod::Usage;
82 print Pod::Usage::pod2usage( { verbose => 2 } );
83 exit;
84}
85
86require RT;
87RT->LoadConfig();
403d7b0b 88RT->InitPluginPaths();
b5747ff2 89RT->InitLogging();
84fb5b46
MKG
90
91require RT::Handle;
92my ($integrity, $state, $msg) = RT::Handle->CheckIntegrity;
93
94unless ( $integrity ) {
95 print STDERR <<EOF;
af59614d 96
84fb5b46
MKG
97RT couldn't connect to the database where tickets are stored.
98If this is a new installation of RT, you should visit the URL below
99to configure RT and initialize your database.
100
101If this is an existing RT installation, this may indicate a database
102connectivity problem.
103
104The error RT got back when trying to connect to your database was:
105
106$msg
107
108EOF
109
110 require RT::Installer;
111 # don't enter install mode if the file exists but is unwritable
112 if (-e RT::Installer->ConfigFile && !-w _) {
113 die 'Since your configuration exists ('
114 . RT::Installer->ConfigFile
115 . ") but is not writable, I'm refusing to do anything.\n";
116 }
117
118 RT->Config->Set( 'LexiconLanguages' => '*' );
119 RT::I18N->Init;
120
121 RT->InstallMode(1);
122} else {
123 RT->Init();
124
125 my ($status, $msg) = RT::Handle->CheckCompatibility( $RT::Handle->dbh, 'post');
126 unless ( $status ) {
127 print STDERR $msg, "\n\n";
128 exit -1;
129 }
130}
131
132# we must disconnect DB before fork
133if ($RT::Handle) {
134 $RT::Handle->dbh(undef);
135 undef $RT::Handle;
136}
137
af59614d 138require RT::PlackRunner;
84fb5b46
MKG
139# when used as a psgi file
140if (caller) {
af59614d 141 return RT::PlackRunner->app;
84fb5b46
MKG
142}
143
144
af59614d
MKG
145my $r = RT::PlackRunner->new( RT->InstallMode ? ( server => 'Standalone' ) :
146 $0 =~ /standalone/ ? ( server => 'Standalone' ) :
147 $0 =~ /fcgi$/ ? ( server => 'FCGI', env => "deployment" )
148 : ( server => 'Starlet', env => "deployment" ) );
149$r->parse_options(@ARGV);
84fb5b46 150
af59614d
MKG
151# Try to clean up wrong-permissions var/
152$SIG{INT} = sub {
153 local $@;
154 system("chown", "-R", "httpd:httpd", "/www/var/rt/var");
155 exit 0;
156} if $> == 0;
84fb5b46 157
af59614d 158$r->run;
84fb5b46
MKG
159
160__END__
161
162=head1 NAME
163
164rt-server - RT standalone server
165
166=head1 SYNOPSIS
167
168 # runs prefork server listening on port 8080, requires Starlet
169 rt-server --port 8080
170
171 # runs server listening on port 8080
172 rt-server --server Standalone --port 8080
173 # or
174 standalone_httpd --port 8080
175
176 # runs other PSGI server on port 8080
177 rt-server --server Starman --port 8080