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
|
package FixMyStreet::App::Controller::Status;
use Moose;
use namespace::autoclean;
use HTTP::Negotiate;
use JSON::MaybeXS;
BEGIN { extends 'Catalyst::Controller'; }
=head1 NAME
FixMyStreet::App::Controller::Status - Catalyst Controller
=head1 DESCRIPTION
Status page Catalyst Controller.
=head1 METHODS
=cut
sub index_json : Path('/status.json') : Args(0) {
my ($self, $c) = @_;
$c->forward('index', [ 'json' ]);
}
sub index : Path : Args(0) {
my ($self, $c, $format) = @_;
# Workaround that the admin summary page is only displayed to Zurich
# superusers. It doesn't have anything sensitive
$c->stash->{admin_type} = 'super';
# Fetch summary stats from admin front page
$c->forward('/admin/index');
# Fetch git version
$c->forward('/admin/config_page');
my $chosen = $format;
unless ($chosen) {
my $variants = [
['html', undef, 'text/html', undef, undef, undef, undef],
['json', undef, 'application/json', undef, undef, undef, undef],
];
$chosen = HTTP::Negotiate::choose($variants, $c->req->headers);
$chosen = 'html' unless $chosen;
}
# TODO Perform health checks here
if ($chosen eq 'json') {
$c->res->content_type('application/json; charset=utf-8');
my $data = {
version => $c->stash->{git_version},
reports => $c->stash->{total_problems_live},
updates => $c->stash->{comments}{confirmed},
alerts_confirmed => $c->stash->{alerts}{1},
alerts_unconfirmed => $c->stash->{alerts}{0},
questionnaires_sent => $c->stash->{questionnaires}{total},
questionnaires_answered => $c->stash->{questionnaires}{1},
bodies => scalar @{$c->stash->{bodies}},
contacts => $c->stash->{contacts}{total},
};
my $body = JSON->new->utf8(1)->pretty->encode($data);
$c->res->body($body);
}
return 1;
}
__PACKAGE__->meta->make_immutable;
1;
|