fixed how upload info is added to parameters
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Utils.pm
CommitLineData
f05af9ba 1package Catalyst::Utils;
2
3use strict;
37a3ac5c 4use File::Spec;
d837e1a7 5use HTTP::Request;
812a28c9 6use Path::Class;
d837e1a7 7use URI;
5e5bd6df 8use Carp qw/croak/;
a8946dc8 9use Cwd;
e7399d8b 10use Class::Load 'is_class_loaded';
17b3d800 11use String::RewritePrefix;
3086ccde 12use Class::Load ();
17b3d800 13
0db6e9d5 14use namespace::clean;
15
f05af9ba 16=head1 NAME
17
18Catalyst::Utils - The Catalyst Utils
19
20=head1 SYNOPSIS
21
22See L<Catalyst>.
23
24=head1 DESCRIPTION
25
b0ad47c1 26Catalyst Utilities.
39fc2ce1 27
f05af9ba 28=head1 METHODS
29
b5ecfcf0 30=head2 appprefix($class)
41ca9ba7 31
85d9fce6 32 MyApp::Foo becomes myapp_foo
41ca9ba7 33
34=cut
35
36sub appprefix {
37 my $class = shift;
0ef447d8 38 $class =~ s/::/_/g;
41ca9ba7 39 $class = lc($class);
40 return $class;
41}
42
b5ecfcf0 43=head2 class2appclass($class);
84cf74e7 44
0ef447d8 45 MyApp::Controller::Foo::Bar becomes MyApp
46 My::App::Controller::Foo::Bar becomes My::App
2d90477f 47
84cf74e7 48=cut
49
50sub class2appclass {
51 my $class = shift || '';
52 my $appname = '';
0ef447d8 53 if ( $class =~ /^(.+?)::([MVC]|Model|View|Controller)::.+$/ ) {
84cf74e7 54 $appname = $1;
55 }
56 return $appname;
57}
58
b5ecfcf0 59=head2 class2classprefix($class);
2930d610 60
0ef447d8 61 MyApp::Controller::Foo::Bar becomes MyApp::Controller
62 My::App::Controller::Foo::Bar becomes My::App::Controller
2d90477f 63
2930d610 64=cut
65
66sub class2classprefix {
67 my $class = shift || '';
68 my $prefix;
0ef447d8 69 if ( $class =~ /^(.+?::([MVC]|Model|View|Controller))::.+$/ ) {
2930d610 70 $prefix = $1;
71 }
72 return $prefix;
73}
74
b5ecfcf0 75=head2 class2classsuffix($class);
84cf74e7 76
0ef447d8 77 MyApp::Controller::Foo::Bar becomes Controller::Foo::Bar
2d90477f 78
84cf74e7 79=cut
80
81sub class2classsuffix {
82 my $class = shift || '';
83 my $prefix = class2appclass($class) || '';
0ef447d8 84 $class =~ s/$prefix\:://;
84cf74e7 85 return $class;
86}
87
b5ecfcf0 88=head2 class2env($class);
3ad654e0 89
26e73131 90Returns the environment name for class.
3ad654e0 91
92 MyApp becomes MYAPP
93 My::App becomes MY_APP
94
95=cut
96
97sub class2env {
98 my $class = shift || '';
0ef447d8 99 $class =~ s/::/_/g;
3ad654e0 100 return uc($class);
101}
102
b5ecfcf0 103=head2 class2prefix( $class, $case );
f05af9ba 104
e2cc89a9 105Returns the uri prefix for a class. If case is false the prefix is converted to lowercase.
f05af9ba 106
0ef447d8 107 My::App::Controller::Foo::Bar becomes foo/bar
2d90477f 108
f05af9ba 109=cut
110
111sub class2prefix {
112 my $class = shift || '';
e494bd6b 113 my $case = shift || 0;
f05af9ba 114 my $prefix;
0ef447d8 115 if ( $class =~ /^.+?::([MVC]|Model|View|Controller)::(.+)$/ ) {
e494bd6b 116 $prefix = $case ? $2 : lc $2;
0ef447d8 117 $prefix =~ s{::}{/}g;
f05af9ba 118 }
119 return $prefix;
120}
121
b5ecfcf0 122=head2 class2tempdir( $class [, $create ] );
37a3ac5c 123
e2cc89a9 124Returns a tempdir for a class. If create is true it will try to create the path.
37a3ac5c 125
126 My::App becomes /tmp/my/app
7d7519a4 127 My::App::Controller::Foo::Bar becomes /tmp/my/app/c/foo/bar
37a3ac5c 128
129=cut
130
131sub class2tempdir {
132 my $class = shift || '';
133 my $create = shift || 0;
4be535b1 134 my @parts = split '::', lc $class;
37a3ac5c 135
136 my $tmpdir = dir( File::Spec->tmpdir, @parts )->cleanup;
137
4be535b1 138 if ( $create && !-e $tmpdir ) {
37a3ac5c 139
ab61f021 140 eval { $tmpdir->mkpath; 1 }
141 or do {
41a8bf1f 142 # don't load Catalyst::Exception as a BEGIN in Utils,
143 # because Utils often gets loaded before MyApp.pm, and if
144 # Catalyst::Exception is loaded before MyApp.pm, it does
145 # not honor setting
146 # $Catalyst::Exception::CATALYST_EXCEPTION_CLASS in
147 # MyApp.pm
148 require Catalyst::Exception;
37a3ac5c 149 Catalyst::Exception->throw(
4be535b1 150 message => qq/Couldn't create tmpdir '$tmpdir', "$@"/ );
37a3ac5c 151 }
152 }
153
154 return $tmpdir->stringify;
155}
156
a8946dc8 157=head2 home($class)
158
159Returns home directory for given class.
160
0f519d62 161=head2 dist_indicator_file_list
162
a8946dc8 163Returns a list of files which can be tested to check if you're inside
e01b6093 164a CPAN distribution which is not yet installed.
165
166These are:
167
168=over
169
170=item Makefile.PL
171
172=item Build.PL
173
174=item dist.ini
175
df221478 176=item L<cpanfile>
177
e01b6093 178=back
0f519d62 179
180=cut
181
182sub dist_indicator_file_list {
df221478 183 qw{Makefile.PL Build.PL dist.ini cpanfile};
0f519d62 184}
185
812a28c9 186sub home {
51f412bd 187 my $class = shift;
188
189 # make an $INC{ $key } style string from the class name
190 (my $file = "$class.pm") =~ s{::}{/}g;
191
192 if ( my $inc_entry = $INC{$file} ) {
51452916 193 {
51f412bd 194 # look for an uninstalled Catalyst app
195
196 # find the @INC entry in which $file was found
197 (my $path = $inc_entry) =~ s/$file$//;
a8946dc8 198 $path ||= cwd() if !defined $path || !length $path;
199 my $home = dir($path)->absolute->cleanup;
200
201 # pop off /lib and /blib if they're there
202 $home = $home->parent while $home =~ /b?lib$/;
203
204 # only return the dir if it has a Makefile.PL or Build.PL or dist.ini
205 if (grep { -f $home->file($_) } dist_indicator_file_list()) {
206 # clean up relative path:
207 # MyApp/script/.. -> MyApp
208
209 my $dir;
210 my @dir_list = $home->dir_list();
211 while (($dir = pop(@dir_list)) && $dir eq '..') {
212 $home = dir($home)->parent->parent;
213 }
214
215 return $home->stringify;
216 }
51452916 217 }
4be535b1 218
51f412bd 219 {
220 # look for an installed Catalyst app
221
222 # trim the .pm off the thing ( Foo/Bar.pm -> Foo/Bar/ )
223 ( my $path = $inc_entry) =~ s/\.pm$//;
224 my $home = dir($path)->absolute->cleanup;
225
bd85860b 226 # return if it's a valid directory
51f412bd 227 return $home->stringify if -d $home;
62459712 228 }
812a28c9 229 }
51f412bd 230
231 # we found nothing
a8946dc8 232 return 0;
03fb1bee 233}
234
b5ecfcf0 235=head2 prefix($class, $name);
812a28c9 236
237Returns a prefixed action.
238
0ef447d8 239 MyApp::Controller::Foo::Bar, yada becomes foo/bar/yada
812a28c9 240
241=cut
242
243sub prefix {
244 my ( $class, $name ) = @_;
245 my $prefix = &class2prefix($class);
246 $name = "$prefix/$name" if $prefix;
247 return $name;
248}
249
b5ecfcf0 250=head2 request($uri)
4d60aa90 251
e2cc89a9 252Returns an L<HTTP::Request> object for a uri.
4d60aa90 253
254=cut
255
256sub request {
257 my $request = shift;
258 unless ( ref $request ) {
a88c7ec8 259 if ( $request =~ m/^http/i ) {
f4c0f6f7 260 $request = URI->new($request);
4d60aa90 261 }
262 else {
f4c0f6f7 263 $request = URI->new( 'http://localhost' . $request );
4d60aa90 264 }
265 }
266 unless ( ref $request eq 'HTTP::Request' ) {
267 $request = HTTP::Request->new( 'GET', $request );
268 }
4d60aa90 269 return $request;
270}
271
dd91afb5 272=head2 ensure_class_loaded($class_name, \%opts)
d9183506 273
274Loads the class unless it already has been loaded.
275
dd91afb5 276If $opts{ignore_loaded} is true always tries the require whether the package
277already exists or not. Only pass this if you're either (a) sure you know the
278file exists on disk or (b) have code to catch the file not found exception
279that will result if it doesn't.
280
d9183506 281=cut
282
283sub ensure_class_loaded {
284 my $class = shift;
d06051f7 285 my $opts = shift;
d9183506 286
5e5bd6df 287 croak "Malformed class Name $class"
288 if $class =~ m/(?:\b\:\b|\:{3,})/;
289
59ede84e 290 croak "Malformed class Name $class"
291 if $class =~ m/[^\w:]/;
292
293 croak "ensure_class_loaded should be given a classname, not a filename ($class)"
294 if $class =~ m/\.pm$/;
295
f55d1491 296 # $opts->{ignore_loaded} can be set to true, and this causes the class to be required, even
297 # if it already has symbol table entries. This is to support things like Schema::Loader, which
298 # part-generate classes in memory, but then also load some of their contents from disk.
d06051f7 299 return if !$opts->{ ignore_loaded }
e7399d8b 300 && is_class_loaded($class); # if a symbol entry exists we don't load again
fbedfd6b 301
d9183506 302 # this hack is so we don't overwrite $@ if the load did not generate an error
303 my $error;
304 {
305 local $@;
7a1958eb 306 my $file = $class . '.pm';
307 $file =~ s{::}{/}g;
308 eval { CORE::require($file) };
d9183506 309 $error = $@;
310 }
6bfff75e 311
d9183506 312 die $error if $error;
fbedfd6b 313
f55d1491 314 warn "require $class was successful but the package is not defined."
e7399d8b 315 unless is_class_loaded($class);
6bfff75e 316
317 return 1;
d9183506 318}
319
358e1592 320=head2 merge_hashes($hashref, $hashref)
321
322Base code to recursively merge two hashes together with right-hand precedence.
323
324=cut
325
326sub merge_hashes {
327 my ( $lefthash, $righthash ) = @_;
328
329 return $lefthash unless defined $righthash;
b0ad47c1 330
358e1592 331 my %merged = %$lefthash;
0ef447d8 332 for my $key ( keys %$righthash ) {
333 my $right_ref = ( ref $righthash->{ $key } || '' ) eq 'HASH';
334 my $left_ref = ( ( exists $lefthash->{ $key } && ref $lefthash->{ $key } ) || '' ) eq 'HASH';
335 if( $right_ref and $left_ref ) {
358e1592 336 $merged{ $key } = merge_hashes(
337 $lefthash->{ $key }, $righthash->{ $key }
0ef447d8 338 );
358e1592 339 }
340 else {
341 $merged{ $key } = $righthash->{ $key };
0ef447d8 342 }
358e1592 343 }
b0ad47c1 344
358e1592 345 return \%merged;
346}
347
cb69249e 348=head2 env_value($class, $key)
349
350Checks for and returns an environment value. For instance, if $key is
351'home', then this method will check for and return the first value it finds,
352looking at $ENV{MYAPP_HOME} and $ENV{CATALYST_HOME}.
353
354=cut
355
356sub env_value {
357 my ( $class, $key ) = @_;
358
359 $key = uc($key);
360 my @prefixes = ( class2env($class), 'CATALYST' );
361
362 for my $prefix (@prefixes) {
363 if ( defined( my $value = $ENV{"${prefix}_${key}"} ) ) {
364 return $value;
365 }
366 }
367
368 return;
369}
d9183506 370
39fc2ce1 371=head2 term_width
372
373Try to guess terminal width to use with formatting of debug output
374
375All you need to get this work, is:
376
3771) Install Term::Size::Any, or
378
b0ad47c1 3792) Export $COLUMNS from your shell.
39fc2ce1 380
381(Warning to bash users: 'echo $COLUMNS' may be showing you the bash
b0ad47c1 382variable, not $ENV{COLUMNS}. 'export COLUMNS=$COLUMNS' and you should see
39fc2ce1 383that 'env' now lists COLUMNS.)
384
385As last resort, default value of 80 chars will be used.
386
ad9e8de9 387Calling C<term_width> with a true value will cause it to be recalculated; you
388can use this to cause it to get recalculated when your terminal is resized like
389this
390
391 $SIG{WINCH} = sub { Catalyst::Utils::term_width(1) };
392
39fc2ce1 393=cut
394
395my $_term_width;
396
397sub term_width {
ad9e8de9 398 my $force_reset = shift;
399
400 undef $_term_width if $force_reset;
401
39fc2ce1 402 return $_term_width if $_term_width;
403
ab61f021 404 my $width;
405 eval '
dfcb05ee 406 use Term::Size::Any;
407 ($width) = Term::Size::Any::chars;
408 1;
ab61f021 409 ' or do {
dfcb05ee 410 if($@ =~m[Can't locate Term/Size/Any.pm]) {
411 warn "Term::Size::Any is not installed, can't autodetect terminal column width\n";
412 } else {
413 warn "There was an error trying to detect your terminal size: $@\n";
414 }
415 warn 'Trouble trying to detect your terminal size, looking at $ENV{COLUMNS}'."\n";
39fc2ce1 416 $width = $ENV{COLUMNS}
417 if exists($ENV{COLUMNS})
418 && $ENV{COLUMNS} =~ m/^\d+$/;
ab61f021 419 };
39fc2ce1 420
dfcb05ee 421 do {
422 warn "Cannot determine desired terminal width, using default of 80 columns\n";
423 $width = 80 } unless ($width && $width >= 80);
39fc2ce1 424 return $_term_width = $width;
425}
426
17b3d800 427
428=head2 resolve_namespace
429
430Method which adds the namespace for plugins and actions.
431
432 __PACKAGE__->setup(qw(MyPlugin));
196932de 433
17b3d800 434 # will load Catalyst::Plugin::MyPlugin
435
436=cut
437
438
439sub resolve_namespace {
5d8129e9 440 my $appnamespace = shift;
17b3d800 441 my $namespace = shift;
442 my @classes = @_;
196932de 443 return String::RewritePrefix->rewrite({
444 q[] => qq[${namespace}::],
445 q[+] => q[],
446 (defined $appnamespace
447 ? (q[~] => qq[${appnamespace}::])
448 : ()
449 ),
450 }, @classes);
17b3d800 451}
452
3086ccde 453=head2 build_middleware (@args)
454
455Internal application that converts a single middleware definition (see
456L<Catalyst/psgi_middleware>) into an actual instance of middleware.
457
458=cut
459
460sub build_middleware {
461 my ($class, $namespace, @init_args) = @_;
462
463 if(
464 $namespace =~s/^\+// ||
465 $namespace =~/^Plack::Middleware/ ||
466 $namespace =~/^$class/
467 ) { ## the string is a full namespace
468 return Class::Load::try_load_class($namespace) ?
469 $namespace->new(@init_args) :
470 die "Can't load class $namespace";
471 } else { ## the string is a partial namespace
9b5bca00 472 if(Class::Load::try_load_class($class .'::Middleware::'. $namespace)) { ## Load Middleware from Project namespace
473 my $ns = $class .'::Middleware::'. $namespace;
474 return $ns->new(@init_args);
318213cd 475 } elsif(Class::Load::try_load_class("Plack::Middleware::$namespace")) { ## Act like Plack::Builder
476 return "Plack::Middleware::$namespace"->new(@init_args);
d9c6a83f 477 } else {
478 die "Can't load middleware via '$namespace'. It's not ".$class."::Middleware::".$namespace." or Plack::Middleware::$namespace";
3086ccde 479 }
480 }
481
482 return; ## be sure we can count on a proper return when valid
483}
484
485=head2 apply_registered_middleware ($psgi)
486
487Given a $psgi reference, wrap all the L<Catalyst/registered_middlewares>
488around it and return the wrapped version.
489
490This exists to deal with the fact Catalyst registered middleware can be
491either an object with a wrap method or a coderef.
492
493=cut
494
495sub apply_registered_middleware {
496 my ($class, $psgi) = @_;
497 my $new_psgi = $psgi;
498 foreach my $middleware ($class->registered_middlewares) {
499 $new_psgi = Scalar::Util::blessed $middleware ?
500 $middleware->wrap($new_psgi) :
501 $middleware->($new_psgi);
502 }
503 return $new_psgi;
504}
17b3d800 505
9c7b6768 506=head1 PSGI Helpers
507
508Utility functions to make it easier to work with PSGI applications under Catalyst
509
510=head2 env_at_path_prefix
511
512Localize C<$env> under the current controller path prefix:
513
514 package MyApp::Controller::User;
515
516 use Catalyst::Utils;
517
518 use base 'Catalyst::Controller';
519
520 sub name :Local {
521 my ($self, $c) = @_;
522 my $env = $c->Catalyst::Utils::env_at_path_prefix;
523 }
524
efa8265f 525Assuming you have a request like GET /user/name:
9c7b6768 526
527In the example case C<$env> will have PATH_INFO of '/name' instead of
528'/user/name' and SCRIPT_NAME will now be '/user'.
529
530=cut
531
532sub env_at_path_prefix {
533 my $ctx = shift;
534 my $path_prefix = $ctx->controller->path_prefix;
535 my $env = $ctx->request->env;
536 my $path_info = $env->{PATH_INFO};
537 my $script_name = ($env->{SCRIPT_NAME} || '');
538
539 $path_info =~ s/(^\/\Q$path_prefix\E)//;
540 $script_name = "$script_name$1";
541
542 return +{
543 %$env,
544 PATH_INFO => $path_info,
545 SCRIPT_NAME => $script_name };
546}
547
548=head2 env_at_action
549
4477b313 550Localize C<$env> under the current action namespace.
9c7b6768 551
552 package MyApp::Controller::User;
553
554 use Catalyst::Utils;
555
556 use base 'Catalyst::Controller';
557
558 sub name :Local {
559 my ($self, $c) = @_;
560 my $env = $c->Catalyst::Utils::env_at_action;
561 }
562
4477b313 563Assuming you have a request like GET /user/name:
9c7b6768 564
565In the example case C<$env> will have PATH_INFO of '/' instead of
566'/user/name' and SCRIPT_NAME will now be '/user/name'.
567
efa8265f 568Alternatively, assuming you have a request like GET /user/name/foo:
4477b313 569
570In this example case C<$env> will have PATH_INFO of '/foo' instead of
571'/user/name/foo' and SCRIPT_NAME will now be '/user/name'.
572
9c7b6768 573This is probably a common case where you want to mount a PSGI application
574under an action but let the Args fall through to the PSGI app.
575
576=cut
577
578sub env_at_action {
579 my $ctx = shift;
580 my $argpath = join '/', @{$ctx->request->arguments};
581 my $path = '/' . $ctx->request->path;
582
583 $path =~ s/\/?\Q$argpath\E\/?$//;
584
585 my $env = $ctx->request->env;
586 my $path_info = $env->{PATH_INFO};
587 my $script_name = ($env->{SCRIPT_NAME} || '');
588
589 $path_info =~ s/(^\Q$path\E)//;
590 $script_name = "$script_name$1";
591
592 return +{
593 %$env,
594 PATH_INFO => $path_info,
595 SCRIPT_NAME => $script_name };
596}
597
598=head2 env_at_request_uri
599
4477b313 600Localize C<$env> under the current request URI:
9c7b6768 601
602 package MyApp::Controller::User;
603
604 use Catalyst::Utils;
605
606 use base 'Catalyst::Controller';
607
608 sub name :Local Args(1) {
609 my ($self, $c, $id) = @_;
610 my $env = $c->Catalyst::Utils::env_at_request_uri
611 }
612
efa8265f 613Assuming you have a request like GET /user/name/hello:
9c7b6768 614
615In the example case C<$env> will have PATH_INFO of '/' instead of
616'/user/name' and SCRIPT_NAME will now be '/user/name/hello'.
617
618=cut
619
620sub env_at_request_uri {
621 my $ctx = shift;
622 my $path = '/' . $ctx->request->path;
623 my $env = $ctx->request->env;
624 my $path_info = $env->{PATH_INFO};
625 my $script_name = ($env->{SCRIPT_NAME} || '');
626
627 $path_info =~ s/(^\Q$path\E)//;
628 $script_name = "$script_name$1";
629
630 return +{
631 %$env,
632 PATH_INFO => $path_info,
633 SCRIPT_NAME => $script_name };
634}
635
2f381252 636=head1 AUTHORS
f05af9ba 637
2f381252 638Catalyst Contributors, see Catalyst.pm
f05af9ba 639
640=head1 COPYRIGHT
641
536bee89 642This library is free software. You can redistribute it and/or modify it under
f05af9ba 643the same terms as Perl itself.
644
645=cut
646
6471;