]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/Cgit.pm
cgit: serve static css, logo, favicon directly
[public-inbox.git] / lib / PublicInbox / Cgit.pm
1 # Copyright (C) 2019 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # wrapper for cgit(1) and git-http-backend(1) for browsing and
5 # serving git code repositories.  Requires 'publicinbox.cgitrc'
6 # directive to be set in the public-inbox config file.
7
8 package PublicInbox::Cgit;
9 use strict;
10 use PublicInbox::GitHTTPBackend;
11 # not bothering with Exporter for a one-off
12 *r = *PublicInbox::GitHTTPBackend::r;
13 *input_prepare = *PublicInbox::GitHTTPBackend::input_prepare;
14 *parse_cgi_headers = *PublicInbox::GitHTTPBackend::parse_cgi_headers;
15 *serve = *PublicInbox::GitHTTPBackend::serve;
16 *static_result = *PublicInbox::GitHTTPBackend::static_result;
17 use warnings;
18 use PublicInbox::Qspawn;
19 use Plack::MIME;
20
21 sub locate_cgit ($) {
22         my ($pi_config) = @_;
23         my $cgit_bin = $pi_config->{'publicinbox.cgitbin'};
24         my $cgit_data = $pi_config->{'publicinbox.cgitdata'};
25
26         # /var/www/htdocs/cgit is the default install path from cgit.git
27         # /usr/{lib,share}/cgit is where Debian puts cgit
28         # TODO: check other distros for common paths
29         unless (defined $cgit_bin) {
30                 foreach (qw(/var/www/htdocs/cgit /usr/lib/cgit)) {
31                         my $x = "$_/cgit.cgi";
32                         next unless -x $x;
33                         $cgit_bin = $x;
34                         last;
35                 }
36         }
37         unless (defined $cgit_data) {
38                 foreach my $d (qw(/var/www/htdocs/cgit /usr/share/cgit)) {
39                         my $f = "$d/cgit.css";
40                         next unless -f $f;
41                         $cgit_data = $d;
42                         last;
43                 }
44         }
45         ($cgit_bin, $cgit_data);
46 }
47
48 sub new {
49         my ($class, $pi_config) = @_;
50         my ($cgit_bin, $cgit_data) = locate_cgit($pi_config);
51
52         my $self = bless {
53                 cmd => [ $cgit_bin ],
54                 cgit_data => $cgit_data,
55                 pi_config => $pi_config,
56         }, $class;
57
58         $pi_config->each_inbox(sub {}); # fill in -code_repos mapped to inboxes
59
60         # some cgit repos may not be mapped to inboxes, so ensure those exist:
61         my $code_repos = $pi_config->{-code_repos};
62         foreach my $k (keys %$pi_config) {
63                 $k =~ /\Acoderepo\.(.+)\.dir\z/ or next;
64                 my $dir = $pi_config->{$k};
65                 $code_repos->{$1} ||= PublicInbox::Git->new($dir);
66         }
67         while (my ($nick, $repo) = each %$code_repos) {
68                 $self->{"\0$nick"} = $repo;
69         }
70         my $cgit_static = $pi_config->{-cgit_static};
71         my $static = join('|', map { quotemeta $_ } keys %$cgit_static);
72         $self->{static} = qr/\A($static)\z/;
73         $self;
74 }
75
76 # only what cgit cares about:
77 my @PASS_ENV = qw(
78         HTTP_HOST
79         QUERY_STRING
80         REQUEST_METHOD
81         SCRIPT_NAME
82         SERVER_NAME
83         SERVER_PORT
84         HTTP_COOKIE
85         HTTP_REFERER
86         CONTENT_LENGTH
87 );
88 # XXX: cgit filters may care about more variables...
89
90 sub call {
91         my ($self, $env) = @_;
92         my $path_info = $env->{PATH_INFO};
93
94         # handle requests without spawning cgit iff possible:
95         if ($path_info =~ m!\A/(.+?)/($PublicInbox::GitHTTPBackend::ANY)\z!ox) {
96                 my ($nick, $path) = ($1, $2);
97                 if (my $git = $self->{"\0$nick"}) {
98                         return serve($env, $git, $path);
99                 }
100         } elsif ($path_info =~ m!$self->{static}!) {
101                 my $f = $1;
102                 my $type = Plack::MIME->mime_type($f);
103                 return static_result($env, [], "$self->{cgit_data}$f", $type);
104         }
105
106         my $cgi_env = { PATH_INFO => $path_info };
107         foreach (@PASS_ENV) {
108                 defined(my $v = $env->{$_}) or next;
109                 $cgi_env->{$_} = $v;
110         }
111         $cgi_env->{'HTTPS'} = 'on' if $env->{'psgi.url_scheme'} eq 'https';
112
113         my $rdr = input_prepare($env) or return r(500);
114         my $qsp = PublicInbox::Qspawn->new($self->{cmd}, $cgi_env, $rdr);
115         my $limiter = $self->{pi_config}->limiter('-cgit');
116         $qsp->psgi_return($env, $limiter, sub {
117                 my ($r, $bref) = @_;
118                 my $res = parse_cgi_headers($r, $bref) or return; # incomplete
119                 $res;
120         });
121 }
122
123 1;