Fix bug where a nested component would be setup twice
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Utils.pm
CommitLineData
f05af9ba 1package Catalyst::Utils;
2
3use strict;
a2f2cde9 4use Catalyst::Exception;
37a3ac5c 5use File::Spec;
d837e1a7 6use HTTP::Request;
812a28c9 7use Path::Class;
d837e1a7 8use URI;
d9183506 9use Class::Inspector;
f05af9ba 10
11=head1 NAME
12
13Catalyst::Utils - The Catalyst Utils
14
15=head1 SYNOPSIS
16
17See L<Catalyst>.
18
19=head1 DESCRIPTION
20
21=head1 METHODS
22
b5ecfcf0 23=head2 appprefix($class)
41ca9ba7 24
05850e06 25 MyApp::Foo becomes myapp_foo
41ca9ba7 26
27=cut
28
29sub appprefix {
30 my $class = shift;
0ef447d8 31 $class =~ s/::/_/g;
41ca9ba7 32 $class = lc($class);
33 return $class;
34}
35
b5ecfcf0 36=head2 class2appclass($class);
84cf74e7 37
0ef447d8 38 MyApp::Controller::Foo::Bar becomes MyApp
39 My::App::Controller::Foo::Bar becomes My::App
2d90477f 40
84cf74e7 41=cut
42
43sub class2appclass {
44 my $class = shift || '';
45 my $appname = '';
0ef447d8 46 if ( $class =~ /^(.+?)::([MVC]|Model|View|Controller)::.+$/ ) {
84cf74e7 47 $appname = $1;
48 }
49 return $appname;
50}
51
b5ecfcf0 52=head2 class2classprefix($class);
2930d610 53
0ef447d8 54 MyApp::Controller::Foo::Bar becomes MyApp::Controller
55 My::App::Controller::Foo::Bar becomes My::App::Controller
2d90477f 56
2930d610 57=cut
58
59sub class2classprefix {
60 my $class = shift || '';
61 my $prefix;
0ef447d8 62 if ( $class =~ /^(.+?::([MVC]|Model|View|Controller))::.+$/ ) {
2930d610 63 $prefix = $1;
64 }
65 return $prefix;
66}
67
b5ecfcf0 68=head2 class2classsuffix($class);
84cf74e7 69
0ef447d8 70 MyApp::Controller::Foo::Bar becomes Controller::Foo::Bar
2d90477f 71
84cf74e7 72=cut
73
74sub class2classsuffix {
75 my $class = shift || '';
76 my $prefix = class2appclass($class) || '';
0ef447d8 77 $class =~ s/$prefix\:://;
84cf74e7 78 return $class;
79}
80
b5ecfcf0 81=head2 class2env($class);
3ad654e0 82
26e73131 83Returns the environment name for class.
3ad654e0 84
85 MyApp becomes MYAPP
86 My::App becomes MY_APP
87
88=cut
89
90sub class2env {
91 my $class = shift || '';
0ef447d8 92 $class =~ s/::/_/g;
3ad654e0 93 return uc($class);
94}
95
b5ecfcf0 96=head2 class2prefix( $class, $case );
f05af9ba 97
e2cc89a9 98Returns the uri prefix for a class. If case is false the prefix is converted to lowercase.
f05af9ba 99
0ef447d8 100 My::App::Controller::Foo::Bar becomes foo/bar
2d90477f 101
f05af9ba 102=cut
103
104sub class2prefix {
105 my $class = shift || '';
e494bd6b 106 my $case = shift || 0;
f05af9ba 107 my $prefix;
0ef447d8 108 if ( $class =~ /^.+?::([MVC]|Model|View|Controller)::(.+)$/ ) {
e494bd6b 109 $prefix = $case ? $2 : lc $2;
0ef447d8 110 $prefix =~ s{::}{/}g;
f05af9ba 111 }
112 return $prefix;
113}
114
b5ecfcf0 115=head2 class2tempdir( $class [, $create ] );
37a3ac5c 116
e2cc89a9 117Returns a tempdir for a class. If create is true it will try to create the path.
37a3ac5c 118
119 My::App becomes /tmp/my/app
120 My::App::C::Foo::Bar becomes /tmp/my/app/c/foo/bar
121
122=cut
123
124sub class2tempdir {
125 my $class = shift || '';
126 my $create = shift || 0;
4be535b1 127 my @parts = split '::', lc $class;
37a3ac5c 128
129 my $tmpdir = dir( File::Spec->tmpdir, @parts )->cleanup;
130
4be535b1 131 if ( $create && !-e $tmpdir ) {
37a3ac5c 132
133 eval { $tmpdir->mkpath };
134
4be535b1 135 if ($@) {
37a3ac5c 136 Catalyst::Exception->throw(
4be535b1 137 message => qq/Couldn't create tmpdir '$tmpdir', "$@"/ );
37a3ac5c 138 }
139 }
140
141 return $tmpdir->stringify;
142}
143
b5ecfcf0 144=head2 home($class)
812a28c9 145
146Returns home directory for given class.
147
148=cut
149
150sub home {
51f412bd 151 my $class = shift;
152
153 # make an $INC{ $key } style string from the class name
154 (my $file = "$class.pm") =~ s{::}{/}g;
155
156 if ( my $inc_entry = $INC{$file} ) {
51452916 157 {
51f412bd 158 # look for an uninstalled Catalyst app
159
160 # find the @INC entry in which $file was found
161 (my $path = $inc_entry) =~ s/$file$//;
162 my $home = dir($path)->absolute->cleanup;
163
164 # pop off /lib and /blib if they're there
165 $home = $home->parent while $home =~ /b?lib$/;
166
167 # only return the dir if it has a Makefile.PL or Build.PL
c09c6cd7 168 if (-f $home->file("Makefile.PL") or -f $home->file("Build.PL")) {
169
170 # clean up relative path:
171 # MyApp/script/.. -> MyApp
172
173 my ($lastdir) = $home->dir_list( -1, 1 );
174 if ( $lastdir eq '..' ) {
175 $home = dir($home)->parent->parent;
176 }
177
178 return $home->stringify;
179 }
51452916 180 }
4be535b1 181
51f412bd 182 {
183 # look for an installed Catalyst app
184
185 # trim the .pm off the thing ( Foo/Bar.pm -> Foo/Bar/ )
186 ( my $path = $inc_entry) =~ s/\.pm$//;
187 my $home = dir($path)->absolute->cleanup;
188
189 # return if if it's a valid directory
190 return $home->stringify if -d $home;
62459712 191 }
812a28c9 192 }
51f412bd 193
194 # we found nothing
195 return 0;
812a28c9 196}
197
b5ecfcf0 198=head2 prefix($class, $name);
812a28c9 199
200Returns a prefixed action.
201
0ef447d8 202 MyApp::Controller::Foo::Bar, yada becomes foo/bar/yada
812a28c9 203
204=cut
205
206sub prefix {
207 my ( $class, $name ) = @_;
208 my $prefix = &class2prefix($class);
209 $name = "$prefix/$name" if $prefix;
210 return $name;
211}
212
b5ecfcf0 213=head2 request($uri)
4d60aa90 214
e2cc89a9 215Returns an L<HTTP::Request> object for a uri.
4d60aa90 216
217=cut
218
219sub request {
220 my $request = shift;
221 unless ( ref $request ) {
a88c7ec8 222 if ( $request =~ m/^http/i ) {
f4c0f6f7 223 $request = URI->new($request);
4d60aa90 224 }
225 else {
f4c0f6f7 226 $request = URI->new( 'http://localhost' . $request );
4d60aa90 227 }
228 }
229 unless ( ref $request eq 'HTTP::Request' ) {
230 $request = HTTP::Request->new( 'GET', $request );
231 }
4d60aa90 232 return $request;
233}
234
d9183506 235=head2 ensure_class_loaded($class_name)
236
237Loads the class unless it already has been loaded.
238
239=cut
240
241sub ensure_class_loaded {
242 my $class = shift;
d06051f7 243 my $opts = shift;
d9183506 244
d06051f7 245 return if !$opts->{ ignore_loaded }
246 && Class::Inspector->loaded( $class ); # if a symbol entry exists we don't load again
d9183506 247
248 # this hack is so we don't overwrite $@ if the load did not generate an error
249 my $error;
250 {
251 local $@;
252 eval "require $class";
253 $error = $@;
254 }
6bfff75e 255
d9183506 256 die $error if $error;
6bfff75e 257 die "require $class was successful but the package is not defined"
258 unless Class::Inspector->loaded($class);
259
260 return 1;
d9183506 261}
262
358e1592 263=head2 merge_hashes($hashref, $hashref)
264
265Base code to recursively merge two hashes together with right-hand precedence.
266
267=cut
268
269sub merge_hashes {
270 my ( $lefthash, $righthash ) = @_;
271
272 return $lefthash unless defined $righthash;
273
274 my %merged = %$lefthash;
0ef447d8 275 for my $key ( keys %$righthash ) {
276 my $right_ref = ( ref $righthash->{ $key } || '' ) eq 'HASH';
277 my $left_ref = ( ( exists $lefthash->{ $key } && ref $lefthash->{ $key } ) || '' ) eq 'HASH';
278 if( $right_ref and $left_ref ) {
358e1592 279 $merged{ $key } = merge_hashes(
280 $lefthash->{ $key }, $righthash->{ $key }
0ef447d8 281 );
358e1592 282 }
283 else {
284 $merged{ $key } = $righthash->{ $key };
0ef447d8 285 }
358e1592 286 }
287
288 return \%merged;
289}
290
d9183506 291
f05af9ba 292=head1 AUTHOR
293
294Sebastian Riedel, C<sri@cpan.org>
d9183506 295Yuval Kogman, C<nothingmuch@woobling.org>
f05af9ba 296
297=head1 COPYRIGHT
298
299This program is free software, you can redistribute it and/or modify it under
300the same terms as Perl itself.
301
302=cut
303
3041;