output status+headers to STDERR in CLI mode
[catagits/Web-Simple.git] / lib / Web / Simple / Application.pm
CommitLineData
5c33dda5 1package Web::Simple::Application;
2
8bd060f4 3use Moo;
5c33dda5 4
876e62e1 5has 'config' => (
6 is => 'ro',
7 default => sub {
8 my ($self) = @_;
9 +{ $self->default_config }
10 },
11 trigger => sub {
12 my ($self, $value) = @_;
13 my %default = $self->default_config;
14 my @not = grep !exists $value->{$_}, keys %default;
15 @{$value}{@not} = @default{@not};
16 }
17);
5c33dda5 18
445b3ea0 19sub default_config { () }
39119082 20
445b3ea0 21has '_dispatcher' => (is => 'lazy');
5c33dda5 22
445b3ea0 23sub _build__dispatcher {
24 my $self = shift;
25 require Web::Dispatch;
26 require Web::Simple::DispatchNode;
27 my $final = $self->_build_final_dispatcher;
28 Web::Dispatch->new(
29 app => sub { $self->dispatch_request(@_), $final },
30 node_class => 'Web::Simple::DispatchNode',
31 node_args => { app_object => $self }
32 );
5c33dda5 33}
34
3583ca04 35sub _build_final_dispatcher {
4ed4fb42 36 [ 404, [ 'Content-type', 'text/plain' ], [ 'Not found' ] ]
5c33dda5 37}
38
5c33dda5 39sub run_if_script {
b9e047ef 40 # ->to_psgi_app is true for require() but also works for plackup
445b3ea0 41 return $_[0]->to_psgi_app if caller(1);
e27ab5c5 42 my $self = ref($_[0]) ? $_[0] : $_[0]->new;
5c33dda5 43 $self->run(@_);
44}
45
913a9cf9 46sub _run_cgi {
5c33dda5 47 my $self = shift;
e27ab5c5 48 require Plack::Server::CGI;
b9e047ef 49 Plack::Server::CGI->run($self->to_psgi_app);
d3a61609 50}
51
e27ab5c5 52sub _run_fcgi {
53 my $self = shift;
54 require Plack::Server::FCGI;
b9e047ef 55 Plack::Server::FCGI->run($self->to_psgi_app);
e27ab5c5 56}
57
445b3ea0 58sub to_psgi_app {
bc57805c 59 my $self = ref($_[0]) ? $_[0] : $_[0]->new;
445b3ea0 60 $self->_dispatcher->to_app;
5c33dda5 61}
62
913a9cf9 63sub run {
64 my $self = shift;
e27ab5c5 65 if ($ENV{PHP_FCGI_CHILDREN} || $ENV{FCGI_ROLE} || $ENV{FCGI_SOCKET_PATH}) {
66 return $self->_run_fcgi;
67 } elsif ($ENV{GATEWAY_INTERFACE}) {
2514ad17 68 return $self->_run_cgi;
913a9cf9 69 }
4ba6d891 70 unless (@ARGV && $ARGV[0] =~ m{^[A-Z/]}) {
db2899c3 71 return $self->_run_cli(@ARGV);
d104fb1d 72 }
73
4ba6d891 74 my @args = @ARGV;
913a9cf9 75
4ba6d891 76 unshift(@args, 'GET') if $args[0] =~ m{^/};
77
78 $self->_run_test_request(@args);
79}
80
81sub _run_test_request {
82 my ($self, $method, $path, @rest) = @_;
83
84 require HTTP::Request;
e27ab5c5 85 require Plack::Test;
913a9cf9 86
4ba6d891 87 my $request = HTTP::Request->new($method => $path);
88 if ($method eq 'POST' or $method eq 'PUT' and @rest) {
89 my $content = do {
90 require URI;
91 my $url = URI->new('http:');
92 $url->query_form(@rest);
93 $url->query;
94 };
95 $request->header('Content-Type' => 'application/x-www-form-urlencoded');
96 $request->header('Content-Length' => length($content));
97 $request->content($content);
98 }
e27ab5c5 99 my $response;
4ba6d891 100 Plack::Test::test_psgi(
101 $self->to_psgi_app, sub { $response = shift->($request) }
102 );
baabba33 103 print STDERR $response->status_line."\n";
104 print STDERR $response->headers_as_string("\n")."\n";
105 print STDOUT $response->content."\n";
913a9cf9 106}
107
d104fb1d 108sub _run_cli {
109 my $self = shift;
110 die $self->_cli_usage;
111}
112
113sub _cli_usage {
114 "To run this script in CGI test mode, pass a URL path beginning with /:\n".
115 "\n".
116 " $0 /some/path\n".
117 " $0 /\n"
118}
119
5c33dda5 1201;
32d29dcd 121
122=head1 NAME
123
6a4808bf 124Web::Simple::Application - A base class for your Web-Simple application
32d29dcd 125
126=head1 DESCRIPTION
127
128This is a base class for your L<Web::Simple> application. You probably don't
129need to construct this class yourself, since L<Web::Simple> does the 'heavy
130lifting' for you in that regards.
131
132=head1 METHODS
133
6a4808bf 134This class exposes the following public methods.
32d29dcd 135
136=head2 default_config
137
6a4808bf 138Merges with the C<config> initializer to provide configuration information for
139your application. For example:
32d29dcd 140
141 sub default_config {
142 (
143 title => 'Bloggery',
144 posts_dir => $FindBin::Bin.'/posts',
145 );
146 }
147
6a4808bf 148Now, the C<config> attribute of C<$self> will be set to a HashRef
32d29dcd 149containing keys 'title' and 'posts_dir'.
150
12b3e9a3 151The keys from default_config are merged into any config supplied, so
152if you construct your application like:
6a4808bf 153
12b3e9a3 154 MyWebSimpleApp::Web->new(
155 config => { title => 'Spoon', environment => 'dev' }
156 )
6a4808bf 157
12b3e9a3 158then C<config> will contain:
6a4808bf 159
12b3e9a3 160 {
161 title => 'Spoon',
162 posts_dir => '/path/to/myapp/posts',
163 environment => 'dev'
164 }
32d29dcd 165
12b3e9a3 166=head2 run_if_script
32d29dcd 167
12b3e9a3 168The run_if_script method is designed to be used at the end of the script
169or .pm file where your application class is defined - for example:
32d29dcd 170
171 ## my_web_simple_app.pl
172 #!/usr/bin/env perl
173 use Web::Simple 'HelloWorld';
174
175 {
176 package HelloWorld;
177
178 sub dispatch_request {
179 sub (GET) {
180 [ 200, [ 'Content-type', 'text/plain' ], [ 'Hello world!' ] ]
181 },
182 sub () {
183 [ 405, [ 'Content-type', 'text/plain' ], [ 'Method not allowed' ] ]
184 }
185 }
186 }
187
188 HelloWorld->run_if_script;
189
12b3e9a3 190This returns a true value, so your file is now valid as a module - so
6a4808bf 191
12b3e9a3 192 require 'my_web_simple_app.pl';
6a4808bf 193
12b3e9a3 194 my $hw = HelloWorld->new;
6a4808bf 195
12b3e9a3 196will work fine (and you can rename it to lib/HelloWorld.pm later to make it
197a real use-able module).
6a4808bf 198
12b3e9a3 199However, it detects if it's being run as a script (via testing $0) and if
200so attempts to do the right thing.
32d29dcd 201
12b3e9a3 202If run under a CGI environment, your application will execute as a CGI.
32d29dcd 203
12b3e9a3 204If run under a FastCGI environment, your application will execute as a
205FastCGI process (this works both for dynamic shared-hosting-style FastCGI
206and for apache FastCgiServer style setups).
32d29dcd 207
12b3e9a3 208If run from the commandline with a URL path, it runs a GET request against
209that path -
32d29dcd 210
12b3e9a3 211 $ perl -Ilib examples/hello-world/hello-world.cgi /
212 200 OK
213 Content-Type: text/plain
214
215 Hello world!
32d29dcd 216
12b3e9a3 217Additionally, you can treat the file as though it were a standard PSGI
218application file (*.psgi). For example you can start up up with C<plackup>
219
220 plackup my_web_simple_app.pl
32d29dcd 221
12b3e9a3 222or C<starman>
32d29dcd 223
12b3e9a3 224 starman my_web_simple_app.pl
225
226=head2 to_psgi_app
227
228This method is called by L</run_if_script> to create the L<PSGI> app coderef
229for use via L<Plack> and L<plackup>. If you want to globally add middleware,
230you can override this method:
6a4808bf 231
232 use Web::Simple 'HelloWorld';
233 use Plack::Builder;
234
235 {
236 package HelloWorld;
237
238
239 around 'to_psgi_app', sub {
240 my ($orig, $self) = (shift, shift);
241 my $app = $self->$orig(@_);
242 builder {
243 enable ...; ## whatever middleware you want
244 $app;
245 };
246 };
247 }
248
12b3e9a3 249This method can also be used to mount a Web::Simple application within
250a separate C<*.psgi> file -
251
252 use strictures 1;
253 use Plack::Builder;
254 use WSApp;
255 use AnotherWSApp;
256
257 builder {
258 mount '/' => WSApp->to_psgi_app;
259 mount '/another' => AnotherWSApp->to_psgi_app;
260 };
261
262This method can be called as a class method, in which case it implicitly
263calls ->new, or as an object method ... in which case it doesn't.
32d29dcd 264
265=head2 run
266
267Used for running your application under stand-alone CGI and FCGI modes. Also
268useful for testing:
269
270 my $app = MyWebSimpleApp::Web->new;
271 my $c = HTTP::Request::AsCGI->new(@args)->setup;
272 $app->run;
273
7e103e8e 274=head1 AUTHORS
32d29dcd 275
7e103e8e 276See L<Web::Simple> for authors.
32d29dcd 277
7e103e8e 278=head1 COPYRIGHT AND LICENSE
32d29dcd 279
7e103e8e 280See L<Web::Simple> for the copyright and license.
32d29dcd 281
282=cut