forked from metacpan/metacpan-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.psgi
90 lines (71 loc) · 2.33 KB
/
app.psgi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package MetaCPAN::Web::App; ## no critic (RequireFilenameMatchesPackage)
# ABSTRACT: Modern front-end for MetaCPAN
use strict;
use warnings;
# TODO: When we know everything will work reliably: $ENV{PLACK_ENV} ||= 'development';
#
use File::Basename;
use Config::JFDI;
use Log::Log4perl;
use File::Spec;
use File::Path ();
use Plack::Builder;
my $root_dir;
my $dev_mode;
my $config;
BEGIN {
$root_dir = File::Basename::dirname(__FILE__);
$dev_mode = $ENV{PLACK_ENV} && $ENV{PLACK_ENV} eq 'development';
$config = Config::JFDI->new(
name => 'MetaCPAN::Web',
path => $root_dir,
);
if ($dev_mode) {
$ENV{PLACK_SERVER} = 'Standalone';
$ENV{METACPAN_WEB_DEBUG} = 1;
}
my $log4perl_config = File::Spec->rel2abs( $config->get->{log4perl_file}
|| 'log4perl.conf', $root_dir );
Log::Log4perl::init($log4perl_config);
# use a unique package and tell l4p to ignore it when finding the warning location.
package MetaCPAN::Web::WarnHandler;
Log::Log4perl->wrapper_register(__PACKAGE__);
my $logger = Log::Log4perl->get_logger;
$SIG{__WARN__} = sub { $logger->warn(@_) };
$dev_mode and require Devel::Confess and Devel::Confess->import;
}
use lib "$root_dir/lib";
use MetaCPAN::Web;
my $tempdir = "$root_dir/var/tmp";
# explicitly call ->to_app on every Plack::App::* for performance
builder {
enable 'ReverseProxy';
enable 'Runtime';
unless ( $ENV{HARNESS_ACTIVE} or $0 =~ /\.t$/ ) {
my $scoreboard = "$tempdir/scoreboard";
File::Path::make_path($scoreboard);
enable 'ServerStatus::Lite' => (
path => '/server-status',
allow => ['127.0.0.1'],
scoreboard => $scoreboard,
);
}
enable '+MetaCPAN::Middleware::Static' => (
root => $root_dir,
dev_mode => $dev_mode,
temp_dir => $tempdir,
);
builder {
die 'cookie_secret not configured'
unless $config->get->{cookie_secret};
# Add session cookie here only
enable 'Session::Cookie::MetaCPAN' => (
session_key => 'metacpan_secure',
expires => 2**30,
secure => ( !$dev_mode ),
httponly => 1,
secret => $config->get->{cookie_secret},
);
MetaCPAN::Web->psgi_app;
};
};