blob: 014b33b50a88c520e81181d4c487340afa17763c [file] [log] [blame]
Kay Sievers161332a2005-08-07 19:49:46 +02001#!/usr/bin/perl
2
Kay Sieversc994d622005-08-07 20:27:18 +02003# gitweb - simple web interface to track changes in git repositories
Kay Sievers22fafb92005-08-07 19:56:59 +02004#
Kay Sievers00cd0792006-05-22 14:30:47 +02005# (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>
6# (C) 2005, Christian Gierke
Kay Sievers823d5dc2005-08-07 19:57:58 +02007#
Kay Sieversd8f1c5c2005-10-04 01:12:47 +02008# This program is licensed under the GPLv2
Kay Sievers161332a2005-08-07 19:49:46 +02009
Ævar Arnfjörð Bjarmasond48b2842010-09-24 20:00:52 +000010use 5.008;
Kay Sievers161332a2005-08-07 19:49:46 +020011use strict;
12use warnings;
Kay Sievers19806692005-08-07 20:26:27 +020013use CGI qw(:standard :escapeHTML -nosticky);
Kay Sievers7403d502005-08-07 20:23:49 +020014use CGI::Util qw(unescape);
Jakub Narebski7a597452010-04-24 16:00:04 +020015use CGI::Carp qw(fatalsToBrowser set_message);
Kay Sievers40c13812005-11-19 17:41:29 +010016use Encode;
Kay Sieversb87d78d2005-08-07 20:21:04 +020017use Fcntl ':mode';
Junio C Hamano7a13b992006-07-31 19:18:34 -070018use File::Find qw();
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +053019use File::Basename qw(basename);
Jakub Narebski3962f1d72010-11-09 19:27:54 +010020use Time::HiRes qw(gettimeofday tv_interval);
Kay Sievers10bb9032005-11-23 04:26:40 +010021binmode STDOUT, ':utf8';
Kay Sievers161332a2005-08-07 19:49:46 +020022
Jakub Narebski3962f1d72010-11-09 19:27:54 +010023our $t0 = [ gettimeofday() ];
Jakub Narebskiaa7dd052009-09-01 13:39:16 +020024our $number_of_git_cmds = 0;
25
Jakub Narebskib1f5f642006-12-28 00:00:52 +010026BEGIN {
Jakub Narebski3be8e722007-04-01 22:22:21 +020027 CGI->compile() if $ENV{'MOD_PERL'};
Jakub Narebskib1f5f642006-12-28 00:00:52 +010028}
29
Junio C Hamano06c084d2006-08-02 13:50:20 -070030our $version = "++GIT_VERSION++";
Kay Sievers44ad2972005-08-07 19:59:24 +020031
Jakub Narebskic2394fe2010-05-07 14:54:04 +020032our ($my_url, $my_uri, $base_url, $path_info, $home_link);
33sub evaluate_uri {
34 our $cgi;
Giuseppe Bilotta81d3fe92009-02-15 10:18:36 +010035
Jakub Narebskic2394fe2010-05-07 14:54:04 +020036 our $my_url = $cgi->url();
37 our $my_uri = $cgi->url(-absolute => 1);
38
39 # Base URL for relative URLs in gitweb ($logo, $favicon, ...),
40 # needed and used only for URLs with nonempty PATH_INFO
41 our $base_url = $my_url;
42
43 # When the script is used as DirectoryIndex, the URL does not contain the name
44 # of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we
45 # have to do it ourselves. We make $path_info global because it's also used
46 # later on.
47 #
48 # Another issue with the script being the DirectoryIndex is that the resulting
49 # $my_url data is not the full script URL: this is good, because we want
50 # generated links to keep implying the script name if it wasn't explicitly
51 # indicated in the URL we're handling, but it means that $my_url cannot be used
52 # as base URL.
53 # Therefore, if we needed to strip PATH_INFO, then we know that we have
54 # to build the base URL ourselves:
55 our $path_info = $ENV{"PATH_INFO"};
56 if ($path_info) {
57 if ($my_url =~ s,\Q$path_info\E$,, &&
58 $my_uri =~ s,\Q$path_info\E$,, &&
59 defined $ENV{'SCRIPT_NAME'}) {
60 $base_url = $cgi->url(-base => 1) . $ENV{'SCRIPT_NAME'};
61 }
Giuseppe Bilotta81d3fe92009-02-15 10:18:36 +010062 }
Jakub Narebskic2394fe2010-05-07 14:54:04 +020063
64 # target of the home link on top of all pages
65 our $home_link = $my_uri || "/";
Giuseppe Bilottab65910f2008-09-29 15:07:42 +020066}
67
Alp Tokere130dda2006-07-12 23:55:10 +010068# core git executable to use
69# this can just be "git" if your webserver has a sensible PATH
Junio C Hamano06c084d2006-08-02 13:50:20 -070070our $GIT = "++GIT_BINDIR++/git";
Jakub Narebski3f7f27102006-06-21 09:48:04 +020071
Kay Sieversb87d78d2005-08-07 20:21:04 +020072# absolute fs-path which will be prepended to the project path
Dennis Stosberg4a87b432006-06-21 15:07:08 +020073#our $projectroot = "/pub/scm";
Junio C Hamano06c084d2006-08-02 13:50:20 -070074our $projectroot = "++GITWEB_PROJECTROOT++";
Kay Sieversb87d78d2005-08-07 20:21:04 +020075
Luke Luca5e9492007-10-16 20:45:25 -070076# fs traversing limit for getting project list
77# the number is relative to the projectroot
78our $project_maxdepth = "++GITWEB_PROJECT_MAXDEPTH++";
79
Yasushi SHOJI2de21fa2006-08-15 07:50:49 +090080# string of the home link on top of all pages
81our $home_link_str = "++GITWEB_HOME_LINK_STR++";
82
Alp Toker49da1da2006-07-11 21:10:26 +010083# name of your site or organization to appear in page titles
84# replace this with something more descriptive for clearer bookmarks
Petr Baudis8be28902006-10-24 05:18:39 +020085our $site_name = "++GITWEB_SITENAME++"
86 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
Alp Toker49da1da2006-07-11 21:10:26 +010087
Alan Chandlerb2d34762006-10-03 13:49:03 +010088# filename of html text to include at top of each page
89our $site_header = "++GITWEB_SITE_HEADER++";
Kay Sievers8ab1da22005-08-07 20:22:53 +020090# html text to include at home page
Junio C Hamano06c084d2006-08-02 13:50:20 -070091our $home_text = "++GITWEB_HOMETEXT++";
Alan Chandlerb2d34762006-10-03 13:49:03 +010092# filename of html text to include at bottom of each page
93our $site_footer = "++GITWEB_SITE_FOOTER++";
Kay Sievers8ab1da22005-08-07 20:22:53 +020094
Alan Chandlerb2d34762006-10-03 13:49:03 +010095# URI of stylesheets
96our @stylesheets = ("++GITWEB_CSS++");
Petr Baudis887a6122006-10-26 14:41:25 +020097# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
98our $stylesheet = undef;
Jakub Narebski9a7a62f2006-10-06 12:31:05 +020099# URI of GIT logo (72x27 size)
Junio C Hamano06c084d2006-08-02 13:50:20 -0700100our $logo = "++GITWEB_LOGO++";
Jakub Narebski0b5deba2006-09-04 20:32:13 +0200101# URI of GIT favicon, assumed to be image/png type
102our $favicon = "++GITWEB_FAVICON++";
Jakub Narebski4af819d2009-09-01 13:39:17 +0200103# URI of gitweb.js (JavaScript code for gitweb)
104our $javascript = "++GITWEB_JS++";
Jakub Narebskiaedd9422006-06-17 11:23:56 +0200105
Jakub Narebski9a7a62f2006-10-06 12:31:05 +0200106# URI and label (title) of GIT logo link
107#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
108#our $logo_label = "git documentation";
Wincent Colaiuta69fb8282009-07-12 14:31:28 +0200109our $logo_url = "http://git-scm.com/";
Jakub Narebski9a7a62f2006-10-06 12:31:05 +0200110our $logo_label = "git homepage";
Junio C Hamano51a7c662006-09-23 12:36:01 -0700111
Kay Sievers09bd7892005-08-07 20:21:23 +0200112# source of projects list
Junio C Hamano06c084d2006-08-02 13:50:20 -0700113our $projects_list = "++GITWEB_LIST++";
Kay Sieversb87d78d2005-08-07 20:21:04 +0200114
Michael Hendricks55feb122007-07-04 18:36:48 -0600115# the width (in characters) of the projects list "Description" column
116our $projects_list_description_width = 25;
117
Frank Lichtenheldb06dcf82007-04-06 23:58:24 +0200118# default order of projects list
119# valid values are none, project, descr, owner, and age
120our $default_projects_order = "project";
121
Matthias Lederhofer32f4aac2006-09-17 00:31:01 +0200122# show repository only if this file exists
123# (only effective if this variable evaluates to true)
124our $export_ok = "++GITWEB_EXPORT_OK++";
125
Alexander Gavrilovdd7f5f12008-11-06 01:36:23 +0300126# show repository only if this subroutine returns true
127# when given the path to the project, for example:
128# sub { return -e "$_[0]/git-daemon-export-ok"; }
129our $export_auth_hook = undef;
130
Matthias Lederhofer32f4aac2006-09-17 00:31:01 +0200131# only allow viewing of repositories also shown on the overview page
132our $strict_export = "++GITWEB_STRICT_EXPORT++";
133
Jakub Narebski19a87212006-08-15 23:03:17 +0200134# list of git base URLs used for URL to where fetch project from,
135# i.e. full URL is "$git_base_url/$project"
Jakub Narebskid6b7e0b2006-10-26 12:26:44 +0200136our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
Jakub Narebski19a87212006-08-15 23:03:17 +0200137
Jakub Narebskif5aa79d2006-06-17 13:32:15 +0200138# default blob_plain mimetype and default charset for text/plain blob
Dennis Stosberg4a87b432006-06-21 15:07:08 +0200139our $default_blob_plain_mimetype = 'text/plain';
140our $default_text_plain_charset = undef;
Jakub Narebskif5aa79d2006-06-17 13:32:15 +0200141
Petr Baudis2d007372006-06-18 00:01:06 +0200142# file to use for guessing MIME types before trying /etc/mime.types
143# (relative to the current git repository)
Dennis Stosberg4a87b432006-06-21 15:07:08 +0200144our $mimetypes_file = undef;
Petr Baudis2d007372006-06-18 00:01:06 +0200145
Martin Koegler00f429a2007-06-03 17:42:44 +0200146# assume this charset if line contains non-UTF-8 characters;
147# it should be valid encoding (see Encoding::Supported(3pm) for list),
148# for which encoding all byte sequences are valid, for example
149# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
150# could be even 'utf-8' for the old behavior)
151our $fallback_encoding = 'latin1';
152
Jakub Narebski69a9b412007-07-20 02:15:09 +0200153# rename detection options for git-diff and git-diff-tree
154# - default is '-M', with the cost proportional to
155# (number of removed files) * (number of new files).
156# - more costly is '-C' (which implies '-M'), with the cost proportional to
157# (number of changed files + number of removed files) * (number of new files)
158# - even more costly is '-C', '--find-copies-harder' with cost
159# (number of files in the original tree) * (number of new files)
160# - one might want to include '-B' option, e.g. '-B', '-M'
161our @diff_opts = ('-M'); # taken from git_commit
162
Matt McCutchen7e1100e2009-02-07 19:00:09 -0500163# Disables features that would allow repository owners to inject script into
164# the gitweb domain.
165our $prevent_xss = 0;
166
Christopher Wilson7ce896b2010-09-21 00:25:19 -0700167# Path to the highlight executable to use (must be the one from
168# http://www.andre-simon.de due to assumptions about parameters and output).
169# Useful if highlight is not installed on your webserver's PATH.
170# [Default: highlight]
171our $highlight_bin = "++HIGHLIGHT_BIN++";
172
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200173# information about snapshot formats that gitweb is capable of serving
174our %known_snapshot_formats = (
175 # name => {
176 # 'display' => display name,
177 # 'type' => mime type,
178 # 'suffix' => filename suffix,
179 # 'format' => --format for git-archive,
180 # 'compressor' => [compressor command and arguments]
Mark A Rada1bfd3632009-08-06 10:25:39 -0400181 # (array reference, optional)
182 # 'disabled' => boolean (optional)}
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200183 #
184 'tgz' => {
185 'display' => 'tar.gz',
186 'type' => 'application/x-gzip',
187 'suffix' => '.tar.gz',
188 'format' => 'tar',
189 'compressor' => ['gzip']},
190
191 'tbz2' => {
192 'display' => 'tar.bz2',
193 'type' => 'application/x-bzip2',
194 'suffix' => '.tar.bz2',
195 'format' => 'tar',
196 'compressor' => ['bzip2']},
197
Mark A Radacbdefb52009-08-06 10:28:25 -0400198 'txz' => {
199 'display' => 'tar.xz',
200 'type' => 'application/x-xz',
201 'suffix' => '.tar.xz',
202 'format' => 'tar',
203 'compressor' => ['xz'],
204 'disabled' => 1},
205
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200206 'zip' => {
207 'display' => 'zip',
208 'type' => 'application/x-zip',
209 'suffix' => '.zip',
210 'format' => 'zip'},
211);
212
213# Aliases so we understand old gitweb.snapshot values in repository
214# configuration.
215our %known_snapshot_format_aliases = (
216 'gzip' => 'tgz',
217 'bzip2' => 'tbz2',
Mark A Radacbdefb52009-08-06 10:28:25 -0400218 'xz' => 'txz',
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200219
220 # backward compatibility: legacy gitweb config support
221 'x-gzip' => undef, 'gz' => undef,
222 'x-bzip2' => undef, 'bz2' => undef,
223 'x-zip' => undef, '' => undef,
224);
225
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +0200226# Pixel sizes for icons and avatars. If the default font sizes or lineheights
227# are changed, it may be appropriate to change these values too via
228# $GITWEB_CONFIG.
229our %avatar_size = (
230 'default' => 16,
231 'double' => 32
232);
233
John 'Warthog9' Hawleyb62a1a92010-01-30 23:30:39 +0100234# Used to set the maximum load that we will still respond to gitweb queries.
235# If server load exceed this value then return "503 server busy" error.
236# If gitweb cannot determined server load, it is taken to be 0.
237# Leave it undefined (or set to 'undef') to turn off load checking.
238our $maxload = 300;
239
Alejandro R. Sedeño61bf1262010-07-28 14:40:53 -0400240# configuration for 'highlight' (http://www.andre-simon.de/)
241# match by basename
242our %highlight_basename = (
243 #'Program' => 'py',
244 #'Library' => 'py',
245 'SConstruct' => 'py', # SCons equivalent of Makefile
246 'Makefile' => 'make',
247);
248# match by extension
249our %highlight_ext = (
250 # main extensions, defining name of syntax;
251 # see files in /usr/share/highlight/langDefs/ directory
252 map { $_ => $_ }
Sylvain Rabot3ce19eb2010-12-30 22:20:28 +0100253 qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl sql make),
Alejandro R. Sedeño61bf1262010-07-28 14:40:53 -0400254 # alternate extensions, see /etc/highlight/filetypes.conf
255 'h' => 'c',
Sylvain Rabot3ce19eb2010-12-30 22:20:28 +0100256 map { $_ => 'sh' } qw(bash zsh ksh),
Alejandro R. Sedeño61bf1262010-07-28 14:40:53 -0400257 map { $_ => 'cpp' } qw(cxx c++ cc),
Sylvain Rabot3ce19eb2010-12-30 22:20:28 +0100258 map { $_ => 'php' } qw(php3 php4 php5 phps),
Alejandro R. Sedeño61bf1262010-07-28 14:40:53 -0400259 map { $_ => 'pl' } qw(perl pm), # perhaps also 'cgi'
Sylvain Rabot3ce19eb2010-12-30 22:20:28 +0100260 map { $_ => 'make'} qw(mak mk),
Alejandro R. Sedeño61bf1262010-07-28 14:40:53 -0400261 map { $_ => 'xml' } qw(xhtml html htm),
262);
263
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530264# You define site-wide feature defaults here; override them with
265# $GITWEB_CONFIG as necessary.
Jakub Narebski952c65f2006-08-22 16:52:50 +0200266our %feature = (
Jakub Narebski17848fc2006-08-26 19:14:22 +0200267 # feature => {
268 # 'sub' => feature-sub (subroutine),
269 # 'override' => allow-override (boolean),
270 # 'default' => [ default options...] (array reference)}
271 #
Jakub Narebskib4b20b22007-05-15 01:55:44 +0200272 # if feature is overridable (it means that allow-override has true value),
Jakub Narebski17848fc2006-08-26 19:14:22 +0200273 # then feature-sub will be called with default options as parameters;
274 # return value of feature-sub indicates if to enable specified feature
275 #
Jakub Narebskib4b20b22007-05-15 01:55:44 +0200276 # if there is no 'sub' key (no feature-sub), then feature cannot be
Ralf Wildenhues22e5e582010-08-22 13:12:12 +0200277 # overridden
Jakub Narebskib4b20b22007-05-15 01:55:44 +0200278 #
Giuseppe Bilottaff3c0ff2008-12-02 14:57:28 -0800279 # use gitweb_get_feature(<feature>) to retrieve the <feature> value
280 # (an array) or gitweb_check_feature(<feature>) to check if <feature>
281 # is enabled
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530282
Petr Baudis45a3b122006-10-07 15:17:47 +0200283 # Enable the 'blame' blob view, showing the last commit that modified
284 # each line in the file. This can be very CPU-intensive.
285
286 # To enable system wide have in $GITWEB_CONFIG
287 # $feature{'blame'}{'default'} = [1];
288 # To have project specific config enable override in $GITWEB_CONFIG
289 # $feature{'blame'}{'override'} = 1;
290 # and in project config gitweb.blame = 0|1;
Jakub Narebski952c65f2006-08-22 16:52:50 +0200291 'blame' => {
Matt Kraaicdad8172008-12-15 22:16:19 -0800292 'sub' => sub { feature_bool('blame', @_) },
Jakub Narebski952c65f2006-08-22 16:52:50 +0200293 'override' => 0,
294 'default' => [0]},
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530295
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200296 # Enable the 'snapshot' link, providing a compressed archive of any
Petr Baudis45a3b122006-10-07 15:17:47 +0200297 # tree. This can potentially generate high traffic if you have large
298 # project.
299
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200300 # Value is a list of formats defined in %known_snapshot_formats that
301 # you wish to offer.
Petr Baudis45a3b122006-10-07 15:17:47 +0200302 # To disable system wide have in $GITWEB_CONFIG
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200303 # $feature{'snapshot'}{'default'} = [];
Petr Baudis45a3b122006-10-07 15:17:47 +0200304 # To have project specific config enable override in $GITWEB_CONFIG
Uwe Zeisbergerbbee1d92006-12-08 12:44:31 +0100305 # $feature{'snapshot'}{'override'} = 1;
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200306 # and in project config, a comma-separated list of formats or "none"
307 # to disable. Example: gitweb.snapshot = tbz2,zip;
Jakub Narebski952c65f2006-08-22 16:52:50 +0200308 'snapshot' => {
309 'sub' => \&feature_snapshot,
310 'override' => 0,
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200311 'default' => ['tgz']},
Jakub Narebski04f7a942006-09-11 00:29:27 +0200312
Robert Fitzsimons6be93512006-12-23 03:35:16 +0000313 # Enable text search, which will list the commits which match author,
314 # committer or commit text to a given string. Enabled by default.
Jakub Narebskib4b20b22007-05-15 01:55:44 +0200315 # Project specific override is not supported.
Robert Fitzsimons6be93512006-12-23 03:35:16 +0000316 'search' => {
317 'override' => 0,
318 'default' => [1]},
319
Petr Baudise7738552007-05-17 04:31:12 +0200320 # Enable grep search, which will list the files in currently selected
321 # tree containing the given string. Enabled by default. This can be
322 # potentially CPU-intensive, of course.
323
324 # To enable system wide have in $GITWEB_CONFIG
325 # $feature{'grep'}{'default'} = [1];
326 # To have project specific config enable override in $GITWEB_CONFIG
327 # $feature{'grep'}{'override'} = 1;
328 # and in project config gitweb.grep = 0|1;
329 'grep' => {
Matt Kraaicdad8172008-12-15 22:16:19 -0800330 'sub' => sub { feature_bool('grep', @_) },
Petr Baudise7738552007-05-17 04:31:12 +0200331 'override' => 0,
332 'default' => [1]},
333
Petr Baudis45a3b122006-10-07 15:17:47 +0200334 # Enable the pickaxe search, which will list the commits that modified
335 # a given string in a file. This can be practical and quite faster
336 # alternative to 'blame', but still potentially CPU-intensive.
337
338 # To enable system wide have in $GITWEB_CONFIG
339 # $feature{'pickaxe'}{'default'} = [1];
340 # To have project specific config enable override in $GITWEB_CONFIG
341 # $feature{'pickaxe'}{'override'} = 1;
342 # and in project config gitweb.pickaxe = 0|1;
Jakub Narebski04f7a942006-09-11 00:29:27 +0200343 'pickaxe' => {
Matt Kraaicdad8172008-12-15 22:16:19 -0800344 'sub' => sub { feature_bool('pickaxe', @_) },
Jakub Narebski04f7a942006-09-11 00:29:27 +0200345 'override' => 0,
346 'default' => [1]},
Martin Waitz9e756902006-10-01 23:57:48 +0200347
Jakub Narebskie4b48ea2009-09-07 14:40:00 +0200348 # Enable showing size of blobs in a 'tree' view, in a separate
349 # column, similar to what 'ls -l' does. This cost a bit of IO.
350
351 # To disable system wide have in $GITWEB_CONFIG
352 # $feature{'show-sizes'}{'default'} = [0];
353 # To have project specific config enable override in $GITWEB_CONFIG
354 # $feature{'show-sizes'}{'override'} = 1;
355 # and in project config gitweb.showsizes = 0|1;
356 'show-sizes' => {
357 'sub' => sub { feature_bool('showsizes', @_) },
358 'override' => 0,
359 'default' => [1]},
360
Petr Baudis45a3b122006-10-07 15:17:47 +0200361 # Make gitweb use an alternative format of the URLs which can be
362 # more readable and natural-looking: project name is embedded
363 # directly in the path and the query string contains other
364 # auxiliary information. All gitweb installations recognize
365 # URL in either format; this configures in which formats gitweb
366 # generates links.
367
368 # To enable system wide have in $GITWEB_CONFIG
369 # $feature{'pathinfo'}{'default'} = [1];
370 # Project specific override is not supported.
371
372 # Note that you will need to change the default location of CSS,
373 # favicon, logo and possibly other files to an absolute URL. Also,
374 # if gitweb.cgi serves as your indexfile, you will need to force
375 # $my_uri to contain the script name in your $GITWEB_CONFIG.
Martin Waitz9e756902006-10-01 23:57:48 +0200376 'pathinfo' => {
377 'override' => 0,
378 'default' => [0]},
Petr Baudise30496d2006-10-24 05:33:17 +0200379
380 # Make gitweb consider projects in project root subdirectories
381 # to be forks of existing projects. Given project $projname.git,
382 # projects matching $projname/*.git will not be shown in the main
383 # projects list, instead a '+' mark will be added to $projname
384 # there and a 'forks' view will be enabled for the project, listing
Frank Lichtenheldc2b8b132007-04-06 23:58:11 +0200385 # all the forks. If project list is taken from a file, forks have
386 # to be listed after the main project.
Petr Baudise30496d2006-10-24 05:33:17 +0200387
388 # To enable system wide have in $GITWEB_CONFIG
389 # $feature{'forks'}{'default'} = [1];
390 # Project specific override is not supported.
391 'forks' => {
392 'override' => 0,
393 'default' => [0]},
Petr Baudisd627f682008-10-02 16:36:52 +0200394
395 # Insert custom links to the action bar of all project pages.
396 # This enables you mainly to link to third-party scripts integrating
397 # into gitweb; e.g. git-browser for graphical history representation
398 # or custom web-based repository administration interface.
399
400 # The 'default' value consists of a list of triplets in the form
401 # (label, link, position) where position is the label after which
Jakub Narebski2b11e052008-10-12 00:02:32 +0200402 # to insert the link and link is a format string where %n expands
Petr Baudisd627f682008-10-02 16:36:52 +0200403 # to the project name, %f to the project path within the filesystem,
404 # %h to the current hash (h gitweb parameter) and %b to the current
Jakub Narebski2b11e052008-10-12 00:02:32 +0200405 # hash base (hb gitweb parameter); %% expands to %.
Petr Baudisd627f682008-10-02 16:36:52 +0200406
407 # To enable system wide have in $GITWEB_CONFIG e.g.
408 # $feature{'actions'}{'default'} = [('graphiclog',
409 # '/git-browser/by-commit.html?r=%n', 'summary')];
410 # Project specific override is not supported.
411 'actions' => {
412 'override' => 0,
413 'default' => []},
Shawn O. Pearce3e3d4ee2008-10-03 07:41:25 -0700414
Petr Baudisaed93de2008-10-02 17:13:02 +0200415 # Allow gitweb scan project content tags described in ctags/
416 # of project repository, and display the popular Web 2.0-ish
417 # "tag cloud" near the project list. Note that this is something
418 # COMPLETELY different from the normal Git tags.
419
420 # gitweb by itself can show existing tags, but it does not handle
421 # tagging itself; you need an external application for that.
422 # For an example script, check Girocco's cgi/tagproj.cgi.
423 # You may want to install the HTML::TagCloud Perl module to get
424 # a pretty tag cloud instead of just a list of tags.
425
426 # To enable system wide have in $GITWEB_CONFIG
427 # $feature{'ctags'}{'default'} = ['path_to_tag_script'];
428 # Project specific override is not supported.
429 'ctags' => {
430 'override' => 0,
431 'default' => [0]},
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +0100432
433 # The maximum number of patches in a patchset generated in patch
434 # view. Set this to 0 or undef to disable patch view, or to a
435 # negative number to remove any limit.
436
437 # To disable system wide have in $GITWEB_CONFIG
438 # $feature{'patches'}{'default'} = [0];
439 # To have project specific config enable override in $GITWEB_CONFIG
440 # $feature{'patches'}{'override'} = 1;
441 # and in project config gitweb.patches = 0|n;
442 # where n is the maximum number of patches allowed in a patchset.
443 'patches' => {
444 'sub' => \&feature_patches,
445 'override' => 0,
446 'default' => [16]},
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +0200447
448 # Avatar support. When this feature is enabled, views such as
449 # shortlog or commit will display an avatar associated with
450 # the email of the committer(s) and/or author(s).
451
Giuseppe Bilotta679a1a12009-06-30 00:00:53 +0200452 # Currently available providers are gravatar and picon.
453 # If an unknown provider is specified, the feature is disabled.
454
455 # Gravatar depends on Digest::MD5.
456 # Picon currently relies on the indiana.edu database.
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +0200457
458 # To enable system wide have in $GITWEB_CONFIG
Giuseppe Bilotta679a1a12009-06-30 00:00:53 +0200459 # $feature{'avatar'}{'default'} = ['<provider>'];
460 # where <provider> is either gravatar or picon.
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +0200461 # To have project specific config enable override in $GITWEB_CONFIG
462 # $feature{'avatar'}{'override'} = 1;
Giuseppe Bilotta679a1a12009-06-30 00:00:53 +0200463 # and in project config gitweb.avatar = <provider>;
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +0200464 'avatar' => {
465 'sub' => \&feature_avatar,
466 'override' => 0,
467 'default' => ['']},
Jakub Narebskiaa7dd052009-09-01 13:39:16 +0200468
469 # Enable displaying how much time and how many git commands
470 # it took to generate and display page. Disabled by default.
471 # Project specific override is not supported.
472 'timed' => {
473 'override' => 0,
474 'default' => [0]},
Jakub Narebskie627e502009-11-26 21:12:15 +0100475
476 # Enable turning some links into links to actions which require
477 # JavaScript to run (like 'blame_incremental'). Not enabled by
478 # default. Project specific override is currently not supported.
479 'javascript-actions' => {
480 'override' => 0,
481 'default' => [0]},
Johannes Schindelinb331fe52010-04-27 21:34:44 +0200482
483 # Syntax highlighting support. This is based on Daniel Svensson's
484 # and Sham Chukoury's work in gitweb-xmms2.git.
Jakub Narebski592ea412010-04-27 21:34:45 +0200485 # It requires the 'highlight' program present in $PATH,
486 # and therefore is disabled by default.
Johannes Schindelinb331fe52010-04-27 21:34:44 +0200487
488 # To enable system wide have in $GITWEB_CONFIG
489 # $feature{'highlight'}{'default'} = [1];
490
491 'highlight' => {
492 'sub' => sub { feature_bool('highlight', @_) },
493 'override' => 0,
494 'default' => [0]},
Giuseppe Bilotta60efa242010-11-11 13:26:09 +0100495
496 # Enable displaying of remote heads in the heads list
497
498 # To enable system wide have in $GITWEB_CONFIG
499 # $feature{'remote_heads'}{'default'} = [1];
500 # To have project specific config enable override in $GITWEB_CONFIG
501 # $feature{'remote_heads'}{'override'} = 1;
502 # and in project config gitweb.remote_heads = 0|1;
503 'remote_heads' => {
504 'sub' => sub { feature_bool('remote_heads', @_) },
505 'override' => 0,
506 'default' => [0]},
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530507);
508
Junio C Hamanoa7c5a282008-11-29 13:02:08 -0800509sub gitweb_get_feature {
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530510 my ($name) = @_;
Jakub Narebskidd1ad5f2006-09-26 01:56:17 +0200511 return unless exists $feature{$name};
Jakub Narebski952c65f2006-08-22 16:52:50 +0200512 my ($sub, $override, @defaults) = (
513 $feature{$name}{'sub'},
514 $feature{$name}{'override'},
515 @{$feature{$name}{'default'}});
Jakub Narebski9be36142010-03-01 22:51:34 +0100516 # project specific override is possible only if we have project
517 our $git_dir; # global variable, declared later
518 if (!$override || !defined $git_dir) {
519 return @defaults;
520 }
Martin Waitza9455912006-10-03 20:07:43 +0200521 if (!defined $sub) {
Nanako Shiraishi93197892009-08-28 12:18:49 +0900522 warn "feature $name is not overridable";
Martin Waitza9455912006-10-03 20:07:43 +0200523 return @defaults;
524 }
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530525 return $sub->(@defaults);
526}
527
Giuseppe Bilotta25b27902008-11-29 13:07:29 -0800528# A wrapper to check if a given feature is enabled.
529# With this, you can say
530#
531# my $bool_feat = gitweb_check_feature('bool_feat');
532# gitweb_check_feature('bool_feat') or somecode;
533#
534# instead of
535#
536# my ($bool_feat) = gitweb_get_feature('bool_feat');
537# (gitweb_get_feature('bool_feat'))[0] or somecode;
538#
539sub gitweb_check_feature {
540 return (gitweb_get_feature(@_))[0];
541}
542
543
Matt Kraaicdad8172008-12-15 22:16:19 -0800544sub feature_bool {
545 my $key = shift;
546 my ($val) = git_get_project_config($key, '--bool');
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530547
Marcel M. Carydf5d10a2009-02-18 14:09:41 +0100548 if (!defined $val) {
549 return ($_[0]);
550 } elsif ($val eq 'true') {
Matt Kraaicdad8172008-12-15 22:16:19 -0800551 return (1);
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530552 } elsif ($val eq 'false') {
Matt Kraaicdad8172008-12-15 22:16:19 -0800553 return (0);
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530554 }
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530555}
556
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530557sub feature_snapshot {
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200558 my (@fmts) = @_;
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530559
560 my ($val) = git_get_project_config('snapshot');
561
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200562 if ($val) {
563 @fmts = ($val eq 'none' ? () : split /\s*[,\s]\s*/, $val);
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +0530564 }
565
Matt McCutchena3c8ab32007-07-22 01:30:27 +0200566 return @fmts;
Luben Tuikovde9272f2006-09-28 16:49:21 -0700567}
568
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +0100569sub feature_patches {
570 my @val = (git_get_project_config('patches', '--int'));
571
572 if (@val) {
573 return @val;
574 }
575
576 return ($_[0]);
577}
578
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +0200579sub feature_avatar {
580 my @val = (git_get_project_config('avatar'));
581
582 return @val ? @val : @_;
583}
584
Junio C Hamano2172ce42006-10-03 02:30:47 -0700585# checking HEAD file with -e is fragile if the repository was
586# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
587# and then pruned.
588sub check_head_link {
589 my ($dir) = @_;
590 my $headfile = "$dir/HEAD";
591 return ((-e $headfile) ||
592 (-l $headfile && readlink($headfile) =~ /^refs\/heads\//));
593}
594
595sub check_export_ok {
596 my ($dir) = @_;
597 return (check_head_link($dir) &&
Alexander Gavrilovdd7f5f12008-11-06 01:36:23 +0300598 (!$export_ok || -e "$dir/$export_ok") &&
599 (!$export_auth_hook || $export_auth_hook->($dir)));
Junio C Hamano2172ce42006-10-03 02:30:47 -0700600}
601
Jakub Narebskia7817852007-07-22 23:41:20 +0200602# process alternate names for backward compatibility
603# filter out unsupported (unknown) snapshot formats
604sub filter_snapshot_fmts {
605 my @fmts = @_;
606
607 @fmts = map {
608 exists $known_snapshot_format_aliases{$_} ?
609 $known_snapshot_format_aliases{$_} : $_} @fmts;
Jakub Narebski68cedb12009-05-10 02:40:37 +0200610 @fmts = grep {
Mark A Rada1bfd3632009-08-06 10:25:39 -0400611 exists $known_snapshot_formats{$_} &&
612 !$known_snapshot_formats{$_}{'disabled'}} @fmts;
Jakub Narebskia7817852007-07-22 23:41:20 +0200613}
614
Jakub Narebskida4b2432010-11-25 19:43:59 +0100615# If it is set to code reference, it is code that it is to be run once per
616# request, allowing updating configurations that change with each request,
617# while running other code in config file only once.
618#
619# Otherwise, if it is false then gitweb would process config file only once;
620# if it is true then gitweb config would be run for each request.
621our $per_request_config = 1;
622
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200623our ($GITWEB_CONFIG, $GITWEB_CONFIG_SYSTEM);
624sub evaluate_gitweb_config {
625 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
626 our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
627 # die if there are errors parsing config file
628 if (-e $GITWEB_CONFIG) {
629 do $GITWEB_CONFIG;
630 die $@ if $@;
631 } elsif (-e $GITWEB_CONFIG_SYSTEM) {
632 do $GITWEB_CONFIG_SYSTEM;
633 die $@ if $@;
634 }
Gerrit Pape17a8b252008-03-26 18:11:19 +0000635}
Jeff Kingc8d138a2006-08-02 15:23:34 -0400636
John 'Warthog9' Hawleyb62a1a92010-01-30 23:30:39 +0100637# Get loadavg of system, to compare against $maxload.
638# Currently it requires '/proc/loadavg' present to get loadavg;
639# if it is not present it returns 0, which means no load checking.
640sub get_loadavg {
641 if( -e '/proc/loadavg' ){
642 open my $fd, '<', '/proc/loadavg'
643 or return 0;
644 my @load = split(/\s+/, scalar <$fd>);
645 close $fd;
646
647 # The first three columns measure CPU and IO utilization of the last one,
648 # five, and 10 minute periods. The fourth column shows the number of
649 # currently running processes and the total number of processes in the m/n
650 # format. The last column displays the last process ID used.
651 return $load[0] || 0;
652 }
653 # additional checks for load average should go here for things that don't export
654 # /proc/loadavg
655
656 return 0;
657}
658
Jeff Kingc8d138a2006-08-02 15:23:34 -0400659# version of the core git binary
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200660our $git_version;
661sub evaluate_git_version {
662 our $git_version = qx("$GIT" --version) =~ m/git version (.*)$/ ? $1 : "unknown";
663 $number_of_git_cmds++;
664}
Jeff Kingc8d138a2006-08-02 15:23:34 -0400665
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200666sub check_loadavg {
667 if (defined $maxload && get_loadavg() > $maxload) {
668 die_error(503, "The load average on the server is too high");
669 }
John 'Warthog9' Hawleyb62a1a92010-01-30 23:30:39 +0100670}
671
Jakub Narebski154b4d72006-08-05 12:55:20 +0200672# ======================================================================
Kay Sievers09bd7892005-08-07 20:21:23 +0200673# input validation and dispatch
Kay Sieversb87d78d2005-08-07 20:21:04 +0200674
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200675# input parameters can be collected from a variety of sources (presently, CGI
676# and PATH_INFO), so we define an %input_params hash that collects them all
677# together during validation: this allows subsequent uses (e.g. href()) to be
678# agnostic of the parameter origin
Kay Sievers6191f8e2005-08-07 20:19:56 +0200679
Alexander Gavrilovdde80d92008-11-06 01:10:07 +0300680our %input_params = ();
Martin Waitz5c95fab2006-08-17 00:28:38 +0200681
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200682# input parameters are stored with the long parameter name as key. This will
683# also be used in the href subroutine to convert parameters to their CGI
684# equivalent, and since the href() usage is the most frequent one, we store
685# the name -> CGI key mapping here, instead of the reverse.
686#
687# XXX: Warning: If you touch this, check the search form for updating,
688# too.
Jakub Narebski24d06932006-09-26 01:57:02 +0200689
Alexander Gavrilovdde80d92008-11-06 01:10:07 +0300690our @cgi_param_mapping = (
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200691 project => "p",
692 action => "a",
693 file_name => "f",
694 file_parent => "fp",
695 hash => "h",
696 hash_parent => "hp",
697 hash_base => "hb",
698 hash_parent_base => "hpb",
699 page => "pg",
700 order => "o",
701 searchtext => "s",
702 searchtype => "st",
703 snapshot_format => "sf",
704 extra_options => "opt",
705 search_use_regexp => "sr",
Jakub Narebskic4ccf612009-09-01 13:39:19 +0200706 # this must be last entry (for manipulation from JavaScript)
707 javascript => "js"
Miklos Vajna868bc062007-07-12 20:39:27 +0200708);
Alexander Gavrilovdde80d92008-11-06 01:10:07 +0300709our %cgi_param_mapping = @cgi_param_mapping;
Miklos Vajna868bc062007-07-12 20:39:27 +0200710
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200711# we will also need to know the possible actions, for validation
Alexander Gavrilovdde80d92008-11-06 01:10:07 +0300712our %actions = (
Rafael Garcia-Suarez3a5b9192008-06-06 09:53:32 +0200713 "blame" => \&git_blame,
Jakub Narebski4af819d2009-09-01 13:39:17 +0200714 "blame_incremental" => \&git_blame_incremental,
715 "blame_data" => \&git_blame_data,
Matthias Lederhofer8e85cdc2006-07-31 23:46:25 +0200716 "blobdiff" => \&git_blobdiff,
717 "blobdiff_plain" => \&git_blobdiff_plain,
718 "blob" => \&git_blob,
719 "blob_plain" => \&git_blob_plain,
720 "commitdiff" => \&git_commitdiff,
721 "commitdiff_plain" => \&git_commitdiff_plain,
722 "commit" => \&git_commit,
Petr Baudise30496d2006-10-24 05:33:17 +0200723 "forks" => \&git_forks,
Matthias Lederhofer8e85cdc2006-07-31 23:46:25 +0200724 "heads" => \&git_heads,
725 "history" => \&git_history,
726 "log" => \&git_log,
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +0100727 "patch" => \&git_patch,
Giuseppe Bilottaa3411f82008-12-18 08:13:18 +0100728 "patches" => \&git_patches,
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +0100729 "remotes" => \&git_remotes,
Matthias Lederhofer8e85cdc2006-07-31 23:46:25 +0200730 "rss" => \&git_rss,
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +0100731 "atom" => \&git_atom,
Matthias Lederhofer8e85cdc2006-07-31 23:46:25 +0200732 "search" => \&git_search,
Petr Baudis88ad7292006-10-24 05:15:46 +0200733 "search_help" => \&git_search_help,
Matthias Lederhofer8e85cdc2006-07-31 23:46:25 +0200734 "shortlog" => \&git_shortlog,
735 "summary" => \&git_summary,
736 "tag" => \&git_tag,
737 "tags" => \&git_tags,
738 "tree" => \&git_tree,
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +0530739 "snapshot" => \&git_snapshot,
Jakub Narebskica946012006-12-10 13:25:47 +0100740 "object" => \&git_object,
Jakub Narebski77a153f2006-08-22 16:59:20 +0200741 # those below don't need $project
742 "opml" => \&git_opml,
743 "project_list" => \&git_project_list,
Jakub Narebskifc2b2be2006-09-15 04:56:03 +0200744 "project_index" => \&git_project_index,
Matthias Lederhofer8e85cdc2006-07-31 23:46:25 +0200745);
746
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200747# finally, we have the hash of allowed extra_options for the commands that
748# allow them
Alexander Gavrilovdde80d92008-11-06 01:10:07 +0300749our %allowed_options = (
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200750 "--no-merges" => [ qw(rss atom log shortlog history) ],
751);
752
753# fill %input_params with the CGI parameters. All values except for 'opt'
754# should be single values, but opt can be an array. We should probably
755# build an array of parameters that can be multi-valued, but since for the time
756# being it's only this one, we just single it out
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200757sub evaluate_query_params {
758 our $cgi;
759
760 while (my ($name, $symbol) = each %cgi_param_mapping) {
761 if ($symbol eq 'opt') {
762 $input_params{$name} = [ $cgi->param($symbol) ];
763 } else {
764 $input_params{$name} = $cgi->param($symbol);
765 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200766 }
767}
768
769# now read PATH_INFO and update the parameter list for missing parameters
770sub evaluate_path_info {
771 return if defined $input_params{'project'};
772 return if !$path_info;
773 $path_info =~ s,^/+,,;
774 return if !$path_info;
775
776 # find which part of PATH_INFO is project
777 my $project = $path_info;
778 $project =~ s,/+$,,;
779 while ($project && !check_head_link("$projectroot/$project")) {
780 $project =~ s,/*[^/]*$,,;
781 }
782 return unless $project;
783 $input_params{'project'} = $project;
784
785 # do not change any parameters if an action is given using the query string
786 return if $input_params{'action'};
787 $path_info =~ s,^\Q$project\E/*,,;
788
Giuseppe Bilottad8c28822008-10-21 21:34:50 +0200789 # next, check if we have an action
790 my $action = $path_info;
791 $action =~ s,/.*$,,;
792 if (exists $actions{$action}) {
793 $path_info =~ s,^$action/*,,;
794 $input_params{'action'} = $action;
795 }
796
797 # list of actions that want hash_base instead of hash, but can have no
798 # pathname (f) parameter
799 my @wants_base = (
800 'tree',
801 'history',
802 );
803
Jakub Narebski7e00dc52010-10-13 13:33:48 +0200804 # we want to catch, among others
Giuseppe Bilottab0be3832008-10-21 21:34:53 +0200805 # [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name]
806 my ($parentrefname, $parentpathname, $refname, $pathname) =
Jakub Narebski7e00dc52010-10-13 13:33:48 +0200807 ($path_info =~ /^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/);
Giuseppe Bilottab0be3832008-10-21 21:34:53 +0200808
809 # first, analyze the 'current' part
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200810 if (defined $pathname) {
Giuseppe Bilottad8c28822008-10-21 21:34:50 +0200811 # we got "branch:filename" or "branch:dir/"
812 # we could use git_get_type(branch:pathname), but:
813 # - it needs $git_dir
814 # - it does a git() call
815 # - the convention of terminating directories with a slash
816 # makes it superfluous
817 # - embedding the action in the PATH_INFO would make it even
818 # more superfluous
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200819 $pathname =~ s,^/+,,;
820 if (!$pathname || substr($pathname, -1) eq "/") {
Giuseppe Bilottad8c28822008-10-21 21:34:50 +0200821 $input_params{'action'} ||= "tree";
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200822 $pathname =~ s,/$,,;
823 } else {
Giuseppe Bilottab0be3832008-10-21 21:34:53 +0200824 # the default action depends on whether we had parent info
825 # or not
826 if ($parentrefname) {
827 $input_params{'action'} ||= "blobdiff_plain";
828 } else {
829 $input_params{'action'} ||= "blob_plain";
830 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200831 }
832 $input_params{'hash_base'} ||= $refname;
833 $input_params{'file_name'} ||= $pathname;
834 } elsif (defined $refname) {
Giuseppe Bilottad8c28822008-10-21 21:34:50 +0200835 # we got "branch". In this case we have to choose if we have to
836 # set hash or hash_base.
837 #
838 # Most of the actions without a pathname only want hash to be
839 # set, except for the ones specified in @wants_base that want
840 # hash_base instead. It should also be noted that hand-crafted
841 # links having 'history' as an action and no pathname or hash
842 # set will fail, but that happens regardless of PATH_INFO.
Jakub Narebskid0af3732010-10-13 13:35:20 +0200843 if (defined $parentrefname) {
844 # if there is parent let the default be 'shortlog' action
845 # (for http://git.example.com/repo.git/A..B links); if there
846 # is no parent, dispatch will detect type of object and set
847 # action appropriately if required (if action is not set)
848 $input_params{'action'} ||= "shortlog";
849 }
850 if ($input_params{'action'} &&
851 grep { $_ eq $input_params{'action'} } @wants_base) {
Giuseppe Bilottad8c28822008-10-21 21:34:50 +0200852 $input_params{'hash_base'} ||= $refname;
853 } else {
854 $input_params{'hash'} ||= $refname;
855 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200856 }
Giuseppe Bilottab0be3832008-10-21 21:34:53 +0200857
858 # next, handle the 'parent' part, if present
859 if (defined $parentrefname) {
860 # a missing pathspec defaults to the 'current' filename, allowing e.g.
861 # someproject/blobdiff/oldrev..newrev:/filename
862 if ($parentpathname) {
863 $parentpathname =~ s,^/+,,;
864 $parentpathname =~ s,/$,,;
865 $input_params{'file_parent'} ||= $parentpathname;
866 } else {
867 $input_params{'file_parent'} ||= $input_params{'file_name'};
868 }
869 # we assume that hash_parent_base is wanted if a path was specified,
870 # or if the action wants hash_base instead of hash
871 if (defined $input_params{'file_parent'} ||
872 grep { $_ eq $input_params{'action'} } @wants_base) {
873 $input_params{'hash_parent_base'} ||= $parentrefname;
874 } else {
875 $input_params{'hash_parent'} ||= $parentrefname;
876 }
877 }
Giuseppe Bilotta1ec2fb52008-11-02 10:21:38 +0100878
879 # for the snapshot action, we allow URLs in the form
880 # $project/snapshot/$hash.ext
881 # where .ext determines the snapshot and gets removed from the
882 # passed $refname to provide the $hash.
883 #
884 # To be able to tell that $refname includes the format extension, we
885 # require the following two conditions to be satisfied:
886 # - the hash input parameter MUST have been set from the $refname part
887 # of the URL (i.e. they must be equal)
888 # - the snapshot format MUST NOT have been defined already (e.g. from
889 # CGI parameter sf)
890 # It's also useless to try any matching unless $refname has a dot,
891 # so we check for that too
892 if (defined $input_params{'action'} &&
893 $input_params{'action'} eq 'snapshot' &&
894 defined $refname && index($refname, '.') != -1 &&
895 $refname eq $input_params{'hash'} &&
896 !defined $input_params{'snapshot_format'}) {
897 # We loop over the known snapshot formats, checking for
898 # extensions. Allowed extensions are both the defined suffix
899 # (which includes the initial dot already) and the snapshot
900 # format key itself, with a prepended dot
Holger Weißccb4b532009-03-31 18:16:36 +0200901 while (my ($fmt, $opt) = each %known_snapshot_formats) {
Giuseppe Bilotta1ec2fb52008-11-02 10:21:38 +0100902 my $hash = $refname;
Jakub Narebski095e9142009-05-11 19:42:47 +0200903 unless ($hash =~ s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {
904 next;
905 }
906 my $sfx = $1;
Giuseppe Bilotta1ec2fb52008-11-02 10:21:38 +0100907 # a valid suffix was found, so set the snapshot format
908 # and reset the hash parameter
909 $input_params{'snapshot_format'} = $fmt;
910 $input_params{'hash'} = $hash;
911 # we also set the format suffix to the one requested
912 # in the URL: this way a request for e.g. .tgz returns
913 # a .tgz instead of a .tar.gz
914 $known_snapshot_formats{$fmt}{'suffix'} = $sfx;
915 last;
916 }
917 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200918}
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200919
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200920our ($action, $project, $file_name, $file_parent, $hash, $hash_parent, $hash_base,
921 $hash_parent_base, @extra_options, $page, $searchtype, $search_use_regexp,
922 $searchtext, $search_regexp);
923sub evaluate_and_validate_params {
924 our $action = $input_params{'action'};
925 if (defined $action) {
926 if (!validate_action($action)) {
927 die_error(400, "Invalid action parameter");
928 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200929 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200930
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200931 # parameters which are pathnames
932 our $project = $input_params{'project'};
933 if (defined $project) {
934 if (!validate_project($project)) {
935 undef $project;
936 die_error(404, "No such project");
937 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200938 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200939
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200940 our $file_name = $input_params{'file_name'};
941 if (defined $file_name) {
942 if (!validate_pathname($file_name)) {
943 die_error(400, "Invalid file parameter");
944 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200945 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200946
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200947 our $file_parent = $input_params{'file_parent'};
948 if (defined $file_parent) {
949 if (!validate_pathname($file_parent)) {
950 die_error(400, "Invalid file parent parameter");
951 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200952 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200953
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200954 # parameters which are refnames
955 our $hash = $input_params{'hash'};
956 if (defined $hash) {
957 if (!validate_refname($hash)) {
958 die_error(400, "Invalid hash parameter");
959 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200960 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200961
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200962 our $hash_parent = $input_params{'hash_parent'};
963 if (defined $hash_parent) {
964 if (!validate_refname($hash_parent)) {
965 die_error(400, "Invalid hash parent parameter");
966 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200967 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200968
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200969 our $hash_base = $input_params{'hash_base'};
970 if (defined $hash_base) {
971 if (!validate_refname($hash_base)) {
972 die_error(400, "Invalid hash base parameter");
973 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200974 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200975
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200976 our @extra_options = @{$input_params{'extra_options'}};
977 # @extra_options is always defined, since it can only be (currently) set from
978 # CGI, and $cgi->param() returns the empty array in array context if the param
979 # is not set
980 foreach my $opt (@extra_options) {
981 if (not exists $allowed_options{$opt}) {
982 die_error(400, "Invalid option parameter");
983 }
984 if (not grep(/^$action$/, @{$allowed_options{$opt}})) {
985 die_error(400, "Invalid option parameter for this action");
986 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200987 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200988
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200989 our $hash_parent_base = $input_params{'hash_parent_base'};
990 if (defined $hash_parent_base) {
991 if (!validate_refname($hash_parent_base)) {
992 die_error(400, "Invalid hash parent base parameter");
993 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200994 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +0200995
Jakub Narebskic2394fe2010-05-07 14:54:04 +0200996 # other parameters
997 our $page = $input_params{'page'};
998 if (defined $page) {
999 if ($page =~ m/[^0-9]/) {
1000 die_error(400, "Invalid page parameter");
1001 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001002 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001003
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001004 our $searchtype = $input_params{'searchtype'};
1005 if (defined $searchtype) {
1006 if ($searchtype =~ m/[^a-z]/) {
1007 die_error(400, "Invalid searchtype parameter");
1008 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001009 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001010
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001011 our $search_use_regexp = $input_params{'search_use_regexp'};
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001012
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001013 our $searchtext = $input_params{'searchtext'};
1014 our $search_regexp;
1015 if (defined $searchtext) {
1016 if (length($searchtext) < 2) {
1017 die_error(403, "At least two characters are required for search parameter");
1018 }
1019 $search_regexp = $search_use_regexp ? $searchtext : quotemeta $searchtext;
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001020 }
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001021}
1022
1023# path to the current git repository
1024our $git_dir;
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001025sub evaluate_git_dir {
1026 our $git_dir = "$projectroot/$project" if $project;
1027}
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001028
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001029our (@snapshot_fmts, $git_avatar);
1030sub configure_gitweb_features {
1031 # list of supported snapshot formats
1032 our @snapshot_fmts = gitweb_get_feature('snapshot');
1033 @snapshot_fmts = filter_snapshot_fmts(@snapshot_fmts);
Giuseppe Bilotta5e166842008-11-02 10:21:37 +01001034
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001035 # check that the avatar feature is set to a known provider name,
1036 # and for each provider check if the dependencies are satisfied.
1037 # if the provider name is invalid or the dependencies are not met,
1038 # reset $git_avatar to the empty string.
1039 our ($git_avatar) = gitweb_get_feature('avatar');
1040 if ($git_avatar eq 'gravatar') {
1041 $git_avatar = '' unless (eval { require Digest::MD5; 1; });
1042 } elsif ($git_avatar eq 'picon') {
1043 # no dependencies
1044 } else {
1045 $git_avatar = '';
1046 }
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +02001047}
1048
Jakub Narebski7a597452010-04-24 16:00:04 +02001049# custom error handler: 'die <message>' is Internal Server Error
1050sub handle_errors_html {
1051 my $msg = shift; # it is already HTML escaped
1052
1053 # to avoid infinite loop where error occurs in die_error,
1054 # change handler to default handler, disabling handle_errors_html
1055 set_message("Error occured when inside die_error:\n$msg");
1056
1057 # you cannot jump out of die_error when called as error handler;
1058 # the subroutine set via CGI::Carp::set_message is called _after_
1059 # HTTP headers are already written, so it cannot write them itself
1060 die_error(undef, undef, $msg, -error_handler => 1, -no_http_header => 1);
1061}
1062set_message(\&handle_errors_html);
1063
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001064# dispatch
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001065sub dispatch {
1066 if (!defined $action) {
1067 if (defined $hash) {
1068 $action = git_get_type($hash);
1069 } elsif (defined $hash_base && defined $file_name) {
1070 $action = git_get_type("$hash_base:$file_name");
1071 } elsif (defined $project) {
1072 $action = 'summary';
1073 } else {
1074 $action = 'project_list';
1075 }
Gerrit Pape7f9778b2007-05-10 07:32:07 +00001076 }
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001077 if (!defined($actions{$action})) {
1078 die_error(400, "Unknown action");
1079 }
1080 if ($action !~ m/^(?:opml|project_list|project_index)$/ &&
1081 !$project) {
1082 die_error(400, "Project needed");
1083 }
1084 $actions{$action}->();
Jakub Narebski77a153f2006-08-22 16:59:20 +02001085}
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001086
Jakub Narebski869d5882010-07-05 20:52:43 +02001087sub reset_timer {
Jakub Narebski3962f1d72010-11-09 19:27:54 +01001088 our $t0 = [ gettimeofday() ]
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001089 if defined $t0;
Jakub Narebski869d5882010-07-05 20:52:43 +02001090 our $number_of_git_cmds = 0;
1091}
1092
Jakub Narebskida4b2432010-11-25 19:43:59 +01001093our $first_request = 1;
Jakub Narebski869d5882010-07-05 20:52:43 +02001094sub run_request {
1095 reset_timer();
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001096
1097 evaluate_uri();
Jakub Narebskida4b2432010-11-25 19:43:59 +01001098 if ($first_request) {
1099 evaluate_gitweb_config();
1100 evaluate_git_version();
1101 }
1102 if ($per_request_config) {
1103 if (ref($per_request_config) eq 'CODE') {
1104 $per_request_config->();
1105 } elsif (!$first_request) {
1106 evaluate_gitweb_config();
1107 }
1108 }
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001109 check_loadavg();
1110
Jonathan Nieder7f425db2010-07-30 22:01:59 -05001111 # $projectroot and $projects_list might be set in gitweb config file
1112 $projects_list ||= $projectroot;
1113
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001114 evaluate_query_params();
1115 evaluate_path_info();
1116 evaluate_and_validate_params();
1117 evaluate_git_dir();
1118
1119 configure_gitweb_features();
1120
1121 dispatch();
Kay Sievers09bd7892005-08-07 20:21:23 +02001122}
Sam Vilaina0446e72010-05-07 14:54:05 +02001123
1124our $is_last_request = sub { 1 };
1125our ($pre_dispatch_hook, $post_dispatch_hook, $pre_listen_hook);
1126our $CGI = 'CGI';
1127our $cgi;
Jakub Narebski45aa9892010-06-05 23:11:18 +02001128sub configure_as_fcgi {
1129 require CGI::Fast;
1130 our $CGI = 'CGI::Fast';
1131
1132 my $request_number = 0;
1133 # let each child service 100 requests
1134 our $is_last_request = sub { ++$request_number > 100 };
Jakub Narebskid04d3d42006-09-19 21:53:22 +02001135}
Sam Vilaina0446e72010-05-07 14:54:05 +02001136sub evaluate_argv {
Jakub Narebski45aa9892010-06-05 23:11:18 +02001137 my $script_name = $ENV{'SCRIPT_NAME'} || $ENV{'SCRIPT_FILENAME'} || __FILE__;
1138 configure_as_fcgi()
1139 if $script_name =~ /\.fcgi$/;
1140
Sam Vilaina0446e72010-05-07 14:54:05 +02001141 return unless (@ARGV);
1142
1143 require Getopt::Long;
1144 Getopt::Long::GetOptions(
Jakub Narebski45aa9892010-06-05 23:11:18 +02001145 'fastcgi|fcgi|f' => \&configure_as_fcgi,
Sam Vilaina0446e72010-05-07 14:54:05 +02001146 'nproc|n=i' => sub {
1147 my ($arg, $val) = @_;
1148 return unless eval { require FCGI::ProcManager; 1; };
1149 my $proc_manager = FCGI::ProcManager->new({
1150 n_processes => $val,
1151 });
1152 our $pre_listen_hook = sub { $proc_manager->pm_manage() };
1153 our $pre_dispatch_hook = sub { $proc_manager->pm_pre_dispatch() };
1154 our $post_dispatch_hook = sub { $proc_manager->pm_post_dispatch() };
1155 },
1156 );
1157}
1158
1159sub run {
1160 evaluate_argv();
Jakub Narebski869d5882010-07-05 20:52:43 +02001161
Jakub Narebskida4b2432010-11-25 19:43:59 +01001162 $first_request = 1;
Sam Vilaina0446e72010-05-07 14:54:05 +02001163 $pre_listen_hook->()
1164 if $pre_listen_hook;
1165
1166 REQUEST:
1167 while ($cgi = $CGI->new()) {
1168 $pre_dispatch_hook->()
1169 if $pre_dispatch_hook;
1170
1171 run_request();
1172
Jakub Narebski0b450102010-08-02 22:21:47 +02001173 $post_dispatch_hook->()
Sam Vilaina0446e72010-05-07 14:54:05 +02001174 if $post_dispatch_hook;
Jakub Narebskida4b2432010-11-25 19:43:59 +01001175 $first_request = 0;
Sam Vilaina0446e72010-05-07 14:54:05 +02001176
1177 last REQUEST if ($is_last_request->());
1178 }
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001179
1180 DONE_GITWEB:
1181 1;
Kay Sievers09bd7892005-08-07 20:21:23 +02001182}
Sam Vilaina0446e72010-05-07 14:54:05 +02001183
Jakub Narebskic2394fe2010-05-07 14:54:04 +02001184run();
Kay Sievers09bd7892005-08-07 20:21:23 +02001185
Jakub Narebski5ed2ec12010-06-13 12:09:32 +02001186if (defined caller) {
1187 # wrapped in a subroutine processing requests,
1188 # e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI
1189 return;
1190} else {
1191 # pure CGI script, serving single request
1192 exit;
1193}
Kay Sievers823d5dc2005-08-07 19:57:58 +02001194
Jakub Narebski717b8312006-07-31 21:22:15 +02001195## ======================================================================
Martin Waitz06a9d862006-08-16 00:23:50 +02001196## action links
1197
Jakub Narebski377bee32010-04-24 15:53:19 +02001198# possible values of extra options
1199# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)
1200# -replay => 1 - start from a current view (replay with modifications)
1201# -path_info => 0|1 - don't use/use path_info URL (if possible)
Kevin Cernekee5e96a842011-03-18 17:00:16 +01001202# -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone
Jakub Narebski74fd8722009-05-07 19:11:29 +02001203sub href {
Jakub Narebski498fe002006-08-22 19:05:25 +02001204 my %params = @_;
Jakub Narebskibd5d1e42006-11-19 15:05:21 +01001205 # default is to use -absolute url() i.e. $my_uri
1206 my $href = $params{-full} ? $my_url : $my_uri;
Jakub Narebski498fe002006-08-22 19:05:25 +02001207
Kevin Cernekee5e96a842011-03-18 17:00:16 +01001208 # implicit -replay, must be first of implicit params
1209 $params{-replay} = 1 if (keys %params == 1 && $params{-anchor});
1210
Jakub Narebskiafa9b622008-02-14 09:22:30 +01001211 $params{'project'} = $project unless exists $params{'project'};
1212
Jakub Narebski1cad2832007-11-01 13:06:27 +01001213 if ($params{-replay}) {
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001214 while (my ($name, $symbol) = each %cgi_param_mapping) {
Jakub Narebski1cad2832007-11-01 13:06:27 +01001215 if (!exists $params{$name}) {
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001216 $params{$name} = $input_params{$name};
Jakub Narebski1cad2832007-11-01 13:06:27 +01001217 }
1218 }
1219 }
1220
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08001221 my $use_pathinfo = gitweb_check_feature('pathinfo');
Jakub Narebski377bee32010-04-24 15:53:19 +02001222 if (defined $params{'project'} &&
1223 (exists $params{-path_info} ? $params{-path_info} : $use_pathinfo)) {
Giuseppe Bilottab02bd7a2008-10-21 21:34:51 +02001224 # try to put as many parameters as possible in PATH_INFO:
1225 # - project name
1226 # - action
Giuseppe Bilotta8db49a72008-10-21 21:34:54 +02001227 # - hash_parent or hash_parent_base:/file_parent
Giuseppe Bilotta3550ea72008-10-21 21:34:52 +02001228 # - hash or hash_base:/filename
Giuseppe Bilottac752a0e2008-11-02 10:21:39 +01001229 # - the snapshot_format as an appropriate suffix
Giuseppe Bilottab02bd7a2008-10-21 21:34:51 +02001230
1231 # When the script is the root DirectoryIndex for the domain,
1232 # $href here would be something like http://gitweb.example.com/
1233 # Thus, we strip any trailing / from $href, to spare us double
1234 # slashes in the final URL
1235 $href =~ s,/$,,;
1236
1237 # Then add the project name, if present
Jakub Narebski67976c62010-12-14 16:54:31 +01001238 $href .= "/".esc_path_info($params{'project'});
Martin Waitz9e756902006-10-01 23:57:48 +02001239 delete $params{'project'};
1240
Giuseppe Bilottac752a0e2008-11-02 10:21:39 +01001241 # since we destructively absorb parameters, we keep this
1242 # boolean that remembers if we're handling a snapshot
1243 my $is_snapshot = $params{'action'} eq 'snapshot';
1244
Giuseppe Bilottab02bd7a2008-10-21 21:34:51 +02001245 # Summary just uses the project path URL, any other action is
1246 # added to the URL
1247 if (defined $params{'action'}) {
Jakub Narebski67976c62010-12-14 16:54:31 +01001248 $href .= "/".esc_path_info($params{'action'})
1249 unless $params{'action'} eq 'summary';
Martin Waitz9e756902006-10-01 23:57:48 +02001250 delete $params{'action'};
1251 }
Giuseppe Bilottab02bd7a2008-10-21 21:34:51 +02001252
Giuseppe Bilotta8db49a72008-10-21 21:34:54 +02001253 # Next, we put hash_parent_base:/file_parent..hash_base:/file_name,
1254 # stripping nonexistent or useless pieces
1255 $href .= "/" if ($params{'hash_base'} || $params{'hash_parent_base'}
1256 || $params{'hash_parent'} || $params{'hash'});
Giuseppe Bilottab02bd7a2008-10-21 21:34:51 +02001257 if (defined $params{'hash_base'}) {
Giuseppe Bilotta8db49a72008-10-21 21:34:54 +02001258 if (defined $params{'hash_parent_base'}) {
Jakub Narebski67976c62010-12-14 16:54:31 +01001259 $href .= esc_path_info($params{'hash_parent_base'});
Giuseppe Bilotta8db49a72008-10-21 21:34:54 +02001260 # skip the file_parent if it's the same as the file_name
Giuseppe Bilottab7da7212009-07-31 08:48:49 +02001261 if (defined $params{'file_parent'}) {
1262 if (defined $params{'file_name'} && $params{'file_parent'} eq $params{'file_name'}) {
1263 delete $params{'file_parent'};
1264 } elsif ($params{'file_parent'} !~ /\.\./) {
Jakub Narebski67976c62010-12-14 16:54:31 +01001265 $href .= ":/".esc_path_info($params{'file_parent'});
Giuseppe Bilottab7da7212009-07-31 08:48:49 +02001266 delete $params{'file_parent'};
1267 }
Giuseppe Bilotta8db49a72008-10-21 21:34:54 +02001268 }
1269 $href .= "..";
1270 delete $params{'hash_parent'};
1271 delete $params{'hash_parent_base'};
1272 } elsif (defined $params{'hash_parent'}) {
Jakub Narebski67976c62010-12-14 16:54:31 +01001273 $href .= esc_path_info($params{'hash_parent'}). "..";
Giuseppe Bilotta8db49a72008-10-21 21:34:54 +02001274 delete $params{'hash_parent'};
1275 }
1276
Jakub Narebski67976c62010-12-14 16:54:31 +01001277 $href .= esc_path_info($params{'hash_base'});
Giuseppe Bilotta8db49a72008-10-21 21:34:54 +02001278 if (defined $params{'file_name'} && $params{'file_name'} !~ /\.\./) {
Jakub Narebski67976c62010-12-14 16:54:31 +01001279 $href .= ":/".esc_path_info($params{'file_name'});
Giuseppe Bilottab02bd7a2008-10-21 21:34:51 +02001280 delete $params{'file_name'};
1281 }
1282 delete $params{'hash'};
1283 delete $params{'hash_base'};
1284 } elsif (defined $params{'hash'}) {
Jakub Narebski67976c62010-12-14 16:54:31 +01001285 $href .= esc_path_info($params{'hash'});
Giuseppe Bilottab02bd7a2008-10-21 21:34:51 +02001286 delete $params{'hash'};
1287 }
Giuseppe Bilottac752a0e2008-11-02 10:21:39 +01001288
1289 # If the action was a snapshot, we can absorb the
1290 # snapshot_format parameter too
1291 if ($is_snapshot) {
1292 my $fmt = $params{'snapshot_format'};
1293 # snapshot_format should always be defined when href()
1294 # is called, but just in case some code forgets, we
1295 # fall back to the default
1296 $fmt ||= $snapshot_fmts[0];
1297 $href .= $known_snapshot_formats{$fmt}{'suffix'};
1298 delete $params{'snapshot_format'};
1299 }
Martin Waitz9e756902006-10-01 23:57:48 +02001300 }
1301
1302 # now encode the parameters explicitly
Jakub Narebski498fe002006-08-22 19:05:25 +02001303 my @result = ();
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001304 for (my $i = 0; $i < @cgi_param_mapping; $i += 2) {
1305 my ($name, $symbol) = ($cgi_param_mapping[$i], $cgi_param_mapping[$i+1]);
Jakub Narebski498fe002006-08-22 19:05:25 +02001306 if (defined $params{$name}) {
Jakub Narebskif22cca42007-07-29 01:04:09 +02001307 if (ref($params{$name}) eq "ARRAY") {
1308 foreach my $par (@{$params{$name}}) {
1309 push @result, $symbol . "=" . esc_param($par);
1310 }
1311 } else {
1312 push @result, $symbol . "=" . esc_param($params{$name});
1313 }
Jakub Narebski498fe002006-08-22 19:05:25 +02001314 }
1315 }
Martin Waitz9e756902006-10-01 23:57:48 +02001316 $href .= "?" . join(';', @result) if scalar @result;
1317
Jakub Narebski67976c62010-12-14 16:54:31 +01001318 # final transformation: trailing spaces must be escaped (URI-encoded)
1319 $href =~ s/(\s+)$/CGI::escape($1)/e;
1320
Kevin Cernekee5e96a842011-03-18 17:00:16 +01001321 if ($params{-anchor}) {
1322 $href .= "#".esc_param($params{-anchor});
1323 }
1324
Martin Waitz9e756902006-10-01 23:57:48 +02001325 return $href;
Martin Waitz06a9d862006-08-16 00:23:50 +02001326}
1327
1328
1329## ======================================================================
Jakub Narebski717b8312006-07-31 21:22:15 +02001330## validation, quoting/unquoting and escaping
1331
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001332sub validate_action {
1333 my $input = shift || return undef;
1334 return undef unless exists $actions{$input};
1335 return $input;
1336}
1337
1338sub validate_project {
1339 my $input = shift || return undef;
1340 if (!validate_pathname($input) ||
1341 !(-d "$projectroot/$input") ||
Alexander Gavrilovec26f092008-11-06 01:15:56 +03001342 !check_export_ok("$projectroot/$input") ||
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02001343 ($strict_export && !project_in_list($input))) {
1344 return undef;
1345 } else {
1346 return $input;
1347 }
1348}
1349
Jakub Narebski24d06932006-09-26 01:57:02 +02001350sub validate_pathname {
1351 my $input = shift || return undef;
Jakub Narebski717b8312006-07-31 21:22:15 +02001352
Jakub Narebski24d06932006-09-26 01:57:02 +02001353 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
1354 # at the beginning, at the end, and between slashes.
1355 # also this catches doubled slashes
1356 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
1357 return undef;
1358 }
1359 # no null characters
1360 if ($input =~ m!\0!) {
1361 return undef;
1362 }
1363 return $input;
1364}
1365
1366sub validate_refname {
1367 my $input = shift || return undef;
1368
1369 # textual hashes are O.K.
Jakub Narebski717b8312006-07-31 21:22:15 +02001370 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
1371 return $input;
1372 }
Jakub Narebski24d06932006-09-26 01:57:02 +02001373 # it must be correct pathname
1374 $input = validate_pathname($input)
1375 or return undef;
1376 # restrictions on ref name according to git-check-ref-format
1377 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
Jakub Narebski717b8312006-07-31 21:22:15 +02001378 return undef;
1379 }
1380 return $input;
1381}
1382
Martin Koegler00f429a2007-06-03 17:42:44 +02001383# decode sequences of octets in utf8 into Perl's internal form,
1384# which is utf-8 with utf8 flag set if needed. gitweb writes out
1385# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
1386sub to_utf8 {
1387 my $str = shift;
Jakub Narebski1df48762010-02-07 21:52:25 +01001388 return undef unless defined $str;
İsmail Dönmeze5d3de52007-12-04 10:55:41 +02001389 if (utf8::valid($str)) {
1390 utf8::decode($str);
1391 return $str;
Martin Koegler00f429a2007-06-03 17:42:44 +02001392 } else {
1393 return decode($fallback_encoding, $str, Encode::FB_DEFAULT);
1394 }
1395}
1396
Kay Sievers232ff552005-11-24 16:56:55 +01001397# quote unsafe chars, but keep the slash, even when it's not
1398# correct, but quoted slashes look too horrible in bookmarks
1399sub esc_param {
Kay Sievers353347b2005-11-14 05:47:18 +01001400 my $str = shift;
Jakub Narebski1df48762010-02-07 21:52:25 +01001401 return undef unless defined $str;
Giuseppe Bilotta452e2252009-10-13 21:51:36 +02001402 $str =~ s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;
Kay Sieversa9e60b72005-11-14 15:15:12 +01001403 $str =~ s/ /\+/g;
Kay Sievers353347b2005-11-14 05:47:18 +01001404 return $str;
1405}
1406
Jakub Narebski67976c62010-12-14 16:54:31 +01001407# the quoting rules for path_info fragment are slightly different
1408sub esc_path_info {
1409 my $str = shift;
1410 return undef unless defined $str;
1411
1412 # path_info doesn't treat '+' as space (specially), but '?' must be escaped
1413 $str =~ s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;
1414
1415 return $str;
1416}
1417
Ralf Wildenhues22e5e582010-08-22 13:12:12 +02001418# quote unsafe chars in whole URL, so some characters cannot be quoted
Jakub Narebskif93bff82006-09-26 01:58:41 +02001419sub esc_url {
1420 my $str = shift;
Jakub Narebski1df48762010-02-07 21:52:25 +01001421 return undef unless defined $str;
Pavan Kumar Sunkara109988f2010-07-15 12:59:01 +05301422 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;
Jakub Narebskif93bff82006-09-26 01:58:41 +02001423 $str =~ s/ /\+/g;
1424 return $str;
1425}
1426
Jakub Narebski3017ed62010-12-15 00:34:01 +01001427# quote unsafe characters in HTML attributes
1428sub esc_attr {
1429
1430 # for XHTML conformance escaping '"' to '&quot;' is not enough
1431 return esc_html(@_);
1432}
1433
Kay Sievers232ff552005-11-24 16:56:55 +01001434# replace invalid utf8 character with SUBSTITUTION sequence
Jakub Narebski74fd8722009-05-07 19:11:29 +02001435sub esc_html {
Kay Sievers40c13812005-11-19 17:41:29 +01001436 my $str = shift;
Jakub Narebski6255ef02006-11-01 14:33:21 +01001437 my %opts = @_;
1438
Jakub Narebski1df48762010-02-07 21:52:25 +01001439 return undef unless defined $str;
1440
Martin Koegler00f429a2007-06-03 17:42:44 +02001441 $str = to_utf8($str);
Li Yangc390ae92007-03-06 11:58:56 +08001442 $str = $cgi->escapeHTML($str);
Jakub Narebski6255ef02006-11-01 14:33:21 +01001443 if ($opts{'-nbsp'}) {
1444 $str =~ s/ /&nbsp;/g;
1445 }
Junio C Hamano25ffbb22006-11-08 15:11:10 -08001446 $str =~ s|([[:cntrl:]])|(($1 ne "\t") ? quot_cec($1) : $1)|eg;
Kay Sievers40c13812005-11-19 17:41:29 +01001447 return $str;
1448}
1449
Jakub Narebski391862e2006-11-25 09:43:59 +01001450# quote control characters and escape filename to HTML
1451sub esc_path {
1452 my $str = shift;
1453 my %opts = @_;
1454
Jakub Narebski1df48762010-02-07 21:52:25 +01001455 return undef unless defined $str;
1456
Martin Koegler00f429a2007-06-03 17:42:44 +02001457 $str = to_utf8($str);
Li Yangc390ae92007-03-06 11:58:56 +08001458 $str = $cgi->escapeHTML($str);
Jakub Narebski391862e2006-11-25 09:43:59 +01001459 if ($opts{'-nbsp'}) {
1460 $str =~ s/ /&nbsp;/g;
1461 }
1462 $str =~ s|([[:cntrl:]])|quot_cec($1)|eg;
1463 return $str;
1464}
1465
1466# Make control characters "printable", using character escape codes (CEC)
Jakub Narebski1d3bc0c2006-11-08 11:50:07 +01001467sub quot_cec {
1468 my $cntrl = shift;
Jakub Narebskic84c4832008-02-17 18:48:13 +01001469 my %opts = @_;
Jakub Narebski1d3bc0c2006-11-08 11:50:07 +01001470 my %es = ( # character escape codes, aka escape sequences
Jakub Narebskic84c4832008-02-17 18:48:13 +01001471 "\t" => '\t', # tab (HT)
1472 "\n" => '\n', # line feed (LF)
1473 "\r" => '\r', # carrige return (CR)
1474 "\f" => '\f', # form feed (FF)
1475 "\b" => '\b', # backspace (BS)
1476 "\a" => '\a', # alarm (bell) (BEL)
1477 "\e" => '\e', # escape (ESC)
1478 "\013" => '\v', # vertical tab (VT)
1479 "\000" => '\0', # nul character (NUL)
1480 );
Jakub Narebski1d3bc0c2006-11-08 11:50:07 +01001481 my $chr = ( (exists $es{$cntrl})
1482 ? $es{$cntrl}
Petr Baudis25dfd172008-10-01 22:11:54 +02001483 : sprintf('\%2x', ord($cntrl)) );
Jakub Narebskic84c4832008-02-17 18:48:13 +01001484 if ($opts{-nohtml}) {
1485 return $chr;
1486 } else {
1487 return "<span class=\"cntrl\">$chr</span>";
1488 }
Jakub Narebski1d3bc0c2006-11-08 11:50:07 +01001489}
1490
Jakub Narebski391862e2006-11-25 09:43:59 +01001491# Alternatively use unicode control pictures codepoints,
1492# Unicode "printable representation" (PR)
Jakub Narebski1d3bc0c2006-11-08 11:50:07 +01001493sub quot_upr {
1494 my $cntrl = shift;
Jakub Narebskic84c4832008-02-17 18:48:13 +01001495 my %opts = @_;
1496
Jakub Narebski1d3bc0c2006-11-08 11:50:07 +01001497 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
Jakub Narebskic84c4832008-02-17 18:48:13 +01001498 if ($opts{-nohtml}) {
1499 return $chr;
1500 } else {
1501 return "<span class=\"cntrl\">$chr</span>";
1502 }
Jakub Narebski1d3bc0c2006-11-08 11:50:07 +01001503}
1504
Kay Sievers232ff552005-11-24 16:56:55 +01001505# git may return quoted and escaped filenames
1506sub unquote {
1507 my $str = shift;
Jakub Narebski403d0902006-11-08 11:48:56 +01001508
1509 sub unq {
1510 my $seq = shift;
1511 my %es = ( # character escape codes, aka escape sequences
1512 't' => "\t", # tab (HT, TAB)
1513 'n' => "\n", # newline (NL)
1514 'r' => "\r", # return (CR)
1515 'f' => "\f", # form feed (FF)
1516 'b' => "\b", # backspace (BS)
1517 'a' => "\a", # alarm (bell) (BEL)
1518 'e' => "\e", # escape (ESC)
1519 'v' => "\013", # vertical tab (VT)
1520 );
1521
1522 if ($seq =~ m/^[0-7]{1,3}$/) {
1523 # octal char sequence
1524 return chr(oct($seq));
1525 } elsif (exists $es{$seq}) {
1526 # C escape sequence, aka character escape code
Jakub Narebskic84c4832008-02-17 18:48:13 +01001527 return $es{$seq};
Jakub Narebski403d0902006-11-08 11:48:56 +01001528 }
1529 # quoted ordinary character
1530 return $seq;
1531 }
1532
Kay Sievers232ff552005-11-24 16:56:55 +01001533 if ($str =~ m/^"(.*)"$/) {
Jakub Narebski403d0902006-11-08 11:48:56 +01001534 # needs unquoting
Kay Sievers232ff552005-11-24 16:56:55 +01001535 $str = $1;
Jakub Narebski403d0902006-11-08 11:48:56 +01001536 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
Kay Sievers232ff552005-11-24 16:56:55 +01001537 }
1538 return $str;
1539}
1540
Jakub Narebskif16db172006-08-06 02:08:31 +02001541# escape tabs (convert tabs to spaces)
1542sub untabify {
1543 my $line = shift;
1544
1545 while ((my $pos = index($line, "\t")) != -1) {
1546 if (my $count = (8 - ($pos % 8))) {
1547 my $spaces = ' ' x $count;
1548 $line =~ s/\t/$spaces/;
1549 }
1550 }
1551
1552 return $line;
1553}
1554
Matthias Lederhofer32f4aac2006-09-17 00:31:01 +02001555sub project_in_list {
1556 my $project = shift;
1557 my @list = git_get_projects_list();
1558 return @list && scalar(grep { $_->{'path'} eq $project } @list);
1559}
1560
Jakub Narebski717b8312006-07-31 21:22:15 +02001561## ----------------------------------------------------------------------
1562## HTML aware string manipulation
1563
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001564# Try to chop given string on a word boundary between position
1565# $len and $len+$add_len. If there is no word boundary there,
1566# chop at $len+$add_len. Do not chop if chopped part plus ellipsis
1567# (marking chopped part) would be longer than given string.
Jakub Narebski717b8312006-07-31 21:22:15 +02001568sub chop_str {
1569 my $str = shift;
1570 my $len = shift;
1571 my $add_len = shift || 10;
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001572 my $where = shift || 'right'; # 'left' | 'center' | 'right'
Jakub Narebski717b8312006-07-31 21:22:15 +02001573
Anders Waldenborgdee27752008-05-21 13:44:43 +02001574 # Make sure perl knows it is utf8 encoded so we don't
1575 # cut in the middle of a utf8 multibyte char.
1576 $str = to_utf8($str);
1577
Jakub Narebski717b8312006-07-31 21:22:15 +02001578 # allow only $len chars, but don't cut a word if it would fit in $add_len
1579 # if it doesn't fit, cut it if it's still longer than the dots we would add
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001580 # remove chopped character entities entirely
1581
1582 # when chopping in the middle, distribute $len into left and right part
1583 # return early if chopping wouldn't make string shorter
1584 if ($where eq 'center') {
1585 return $str if ($len + 5 >= length($str)); # filler is length 5
1586 $len = int($len/2);
1587 } else {
1588 return $str if ($len + 4 >= length($str)); # filler is length 4
Jakub Narebski717b8312006-07-31 21:22:15 +02001589 }
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001590
1591 # regexps: ending and beginning with word part up to $add_len
1592 my $endre = qr/.{$len}\w{0,$add_len}/;
1593 my $begre = qr/\w{0,$add_len}.{$len}/;
1594
1595 if ($where eq 'left') {
1596 $str =~ m/^(.*?)($begre)$/;
1597 my ($lead, $body) = ($1, $2);
1598 if (length($lead) > 4) {
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001599 $lead = " ...";
1600 }
1601 return "$lead$body";
1602
1603 } elsif ($where eq 'center') {
1604 $str =~ m/^($endre)(.*)$/;
1605 my ($left, $str) = ($1, $2);
1606 $str =~ m/^(.*?)($begre)$/;
1607 my ($mid, $right) = ($1, $2);
1608 if (length($mid) > 5) {
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001609 $mid = " ... ";
1610 }
1611 return "$left$mid$right";
1612
1613 } else {
1614 $str =~ m/^($endre)(.*)$/;
1615 my $body = $1;
1616 my $tail = $2;
1617 if (length($tail) > 4) {
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001618 $tail = "... ";
1619 }
1620 return "$body$tail";
1621 }
Jakub Narebski717b8312006-07-31 21:22:15 +02001622}
1623
David Symondsce58ec92007-10-23 11:31:22 +10001624# takes the same arguments as chop_str, but also wraps a <span> around the
1625# result with a title attribute if it does get chopped. Additionally, the
1626# string is HTML-escaped.
1627sub chop_and_escape_str {
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001628 my ($str) = @_;
David Symondsce58ec92007-10-23 11:31:22 +10001629
Jakub Narebskib8d97d02008-02-25 21:07:57 +01001630 my $chopped = chop_str(@_);
David Symondsce58ec92007-10-23 11:31:22 +10001631 if ($chopped eq $str) {
1632 return esc_html($chopped);
1633 } else {
Jakub Narebski14afe772009-05-22 17:35:46 +02001634 $str =~ s/[[:cntrl:]]/?/g;
Jakub Narebski850b90a2008-02-16 23:07:46 +01001635 return $cgi->span({-title=>$str}, esc_html($chopped));
David Symondsce58ec92007-10-23 11:31:22 +10001636 }
1637}
1638
Jakub Narebski717b8312006-07-31 21:22:15 +02001639## ----------------------------------------------------------------------
1640## functions returning short strings
1641
Jakub Narebski1f1ab5f2006-06-20 14:58:12 +00001642# CSS class for given age value (in seconds)
1643sub age_class {
1644 my $age = shift;
1645
Jakub Narebski785cdea2007-05-13 12:39:22 +02001646 if (!defined $age) {
1647 return "noage";
1648 } elsif ($age < 60*60*2) {
Jakub Narebski1f1ab5f2006-06-20 14:58:12 +00001649 return "age0";
1650 } elsif ($age < 60*60*24*2) {
1651 return "age1";
1652 } else {
1653 return "age2";
1654 }
1655}
1656
Jakub Narebski717b8312006-07-31 21:22:15 +02001657# convert age in seconds to "nn units ago" string
1658sub age_string {
1659 my $age = shift;
1660 my $age_str;
1661
1662 if ($age > 60*60*24*365*2) {
1663 $age_str = (int $age/60/60/24/365);
1664 $age_str .= " years ago";
1665 } elsif ($age > 60*60*24*(365/12)*2) {
1666 $age_str = int $age/60/60/24/(365/12);
1667 $age_str .= " months ago";
1668 } elsif ($age > 60*60*24*7*2) {
1669 $age_str = int $age/60/60/24/7;
1670 $age_str .= " weeks ago";
1671 } elsif ($age > 60*60*24*2) {
1672 $age_str = int $age/60/60/24;
1673 $age_str .= " days ago";
1674 } elsif ($age > 60*60*2) {
1675 $age_str = int $age/60/60;
1676 $age_str .= " hours ago";
1677 } elsif ($age > 60*2) {
1678 $age_str = int $age/60;
1679 $age_str .= " min ago";
1680 } elsif ($age > 2) {
1681 $age_str = int $age;
1682 $age_str .= " sec ago";
1683 } else {
1684 $age_str .= " right now";
1685 }
1686 return $age_str;
1687}
1688
Jakub Narebski01ac1e32007-07-28 16:27:31 +02001689use constant {
1690 S_IFINVALID => 0030000,
1691 S_IFGITLINK => 0160000,
1692};
1693
1694# submodule/subproject, a commit object reference
Jakub Narebski74fd8722009-05-07 19:11:29 +02001695sub S_ISGITLINK {
Jakub Narebski01ac1e32007-07-28 16:27:31 +02001696 my $mode = shift;
1697
1698 return (($mode & S_IFMT) == S_IFGITLINK)
1699}
1700
Jakub Narebski717b8312006-07-31 21:22:15 +02001701# convert file mode in octal to symbolic file mode string
1702sub mode_str {
1703 my $mode = oct shift;
1704
Jakub Narebski01ac1e32007-07-28 16:27:31 +02001705 if (S_ISGITLINK($mode)) {
1706 return 'm---------';
1707 } elsif (S_ISDIR($mode & S_IFMT)) {
Jakub Narebski717b8312006-07-31 21:22:15 +02001708 return 'drwxr-xr-x';
1709 } elsif (S_ISLNK($mode)) {
1710 return 'lrwxrwxrwx';
1711 } elsif (S_ISREG($mode)) {
1712 # git cares only about the executable bit
1713 if ($mode & S_IXUSR) {
1714 return '-rwxr-xr-x';
1715 } else {
1716 return '-rw-r--r--';
1717 };
1718 } else {
1719 return '----------';
1720 }
1721}
1722
1723# convert file mode in octal to file type string
1724sub file_type {
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02001725 my $mode = shift;
1726
1727 if ($mode !~ m/^[0-7]+$/) {
1728 return $mode;
1729 } else {
1730 $mode = oct $mode;
1731 }
Jakub Narebski717b8312006-07-31 21:22:15 +02001732
Jakub Narebski01ac1e32007-07-28 16:27:31 +02001733 if (S_ISGITLINK($mode)) {
1734 return "submodule";
1735 } elsif (S_ISDIR($mode & S_IFMT)) {
Jakub Narebski717b8312006-07-31 21:22:15 +02001736 return "directory";
1737 } elsif (S_ISLNK($mode)) {
1738 return "symlink";
1739 } elsif (S_ISREG($mode)) {
1740 return "file";
1741 } else {
1742 return "unknown";
1743 }
1744}
1745
Jakub Narebski744d0ac2006-11-08 17:59:41 +01001746# convert file mode in octal to file type description string
1747sub file_type_long {
1748 my $mode = shift;
1749
1750 if ($mode !~ m/^[0-7]+$/) {
1751 return $mode;
1752 } else {
1753 $mode = oct $mode;
1754 }
1755
Jakub Narebski01ac1e32007-07-28 16:27:31 +02001756 if (S_ISGITLINK($mode)) {
1757 return "submodule";
1758 } elsif (S_ISDIR($mode & S_IFMT)) {
Jakub Narebski744d0ac2006-11-08 17:59:41 +01001759 return "directory";
1760 } elsif (S_ISLNK($mode)) {
1761 return "symlink";
1762 } elsif (S_ISREG($mode)) {
1763 if ($mode & S_IXUSR) {
1764 return "executable";
1765 } else {
1766 return "file";
1767 };
1768 } else {
1769 return "unknown";
1770 }
1771}
1772
1773
Jakub Narebski717b8312006-07-31 21:22:15 +02001774## ----------------------------------------------------------------------
1775## functions returning short HTML fragments, or transforming HTML fragments
Pavel Roskin3dff5372007-02-03 23:49:16 -05001776## which don't belong to other sections
Jakub Narebski717b8312006-07-31 21:22:15 +02001777
Junio C Hamano225932e2006-11-09 00:57:13 -08001778# format line of commit message.
Jakub Narebski717b8312006-07-31 21:22:15 +02001779sub format_log_line_html {
1780 my $line = shift;
1781
Junio C Hamano225932e2006-11-09 00:57:13 -08001782 $line = esc_html($line, -nbsp=>1);
Marcel M. Cary7d233de2009-02-17 19:00:43 -08001783 $line =~ s{\b([0-9a-fA-F]{8,40})\b}{
1784 $cgi->a({-href => href(action=>"object", hash=>$1),
1785 -class => "text"}, $1);
1786 }eg;
1787
Jakub Narebski717b8312006-07-31 21:22:15 +02001788 return $line;
1789}
1790
1791# format marker of refs pointing to given object
Giuseppe Bilotta4afbaef2008-09-02 21:47:05 +02001792
1793# the destination action is chosen based on object type and current context:
1794# - for annotated tags, we choose the tag view unless it's the current view
1795# already, in which case we go to shortlog view
1796# - for other refs, we keep the current view if we're in history, shortlog or
1797# log view, and select shortlog otherwise
Jakub Narebski847e01f2006-08-14 02:05:47 +02001798sub format_ref_marker {
Jakub Narebski717b8312006-07-31 21:22:15 +02001799 my ($refs, $id) = @_;
Jakub Narebskid294e1c2006-08-14 02:14:20 +02001800 my $markers = '';
Jakub Narebski717b8312006-07-31 21:22:15 +02001801
1802 if (defined $refs->{$id}) {
Jakub Narebskid294e1c2006-08-14 02:14:20 +02001803 foreach my $ref (@{$refs->{$id}}) {
Giuseppe Bilotta4afbaef2008-09-02 21:47:05 +02001804 # this code exploits the fact that non-lightweight tags are the
1805 # only indirect objects, and that they are the only objects for which
1806 # we want to use tag instead of shortlog as action
Jakub Narebskid294e1c2006-08-14 02:14:20 +02001807 my ($type, $name) = qw();
Giuseppe Bilotta4afbaef2008-09-02 21:47:05 +02001808 my $indirect = ($ref =~ s/\^\{\}$//);
Jakub Narebskid294e1c2006-08-14 02:14:20 +02001809 # e.g. tags/v2.6.11 or heads/next
1810 if ($ref =~ m!^(.*?)s?/(.*)$!) {
1811 $type = $1;
1812 $name = $2;
1813 } else {
1814 $type = "ref";
1815 $name = $ref;
1816 }
1817
Giuseppe Bilotta4afbaef2008-09-02 21:47:05 +02001818 my $class = $type;
1819 $class .= " indirect" if $indirect;
1820
1821 my $dest_action = "shortlog";
1822
1823 if ($indirect) {
1824 $dest_action = "tag" unless $action eq "tag";
1825 } elsif ($action =~ /^(history|(short)?log)$/) {
1826 $dest_action = $action;
1827 }
1828
1829 my $dest = "";
1830 $dest .= "refs/" unless $ref =~ m!^refs/!;
1831 $dest .= $ref;
1832
1833 my $link = $cgi->a({
1834 -href => href(
1835 action=>$dest_action,
1836 hash=>$dest
1837 )}, $name);
1838
Jakub Narebski3017ed62010-12-15 00:34:01 +01001839 $markers .= " <span class=\"".esc_attr($class)."\" title=\"".esc_attr($ref)."\">" .
Giuseppe Bilotta4afbaef2008-09-02 21:47:05 +02001840 $link . "</span>";
Jakub Narebskid294e1c2006-08-14 02:14:20 +02001841 }
1842 }
1843
1844 if ($markers) {
1845 return ' <span class="refs">'. $markers . '</span>';
Jakub Narebski717b8312006-07-31 21:22:15 +02001846 } else {
1847 return "";
1848 }
1849}
1850
Jakub Narebski17d07442006-08-14 02:08:27 +02001851# format, perhaps shortened and with markers, title line
1852sub format_subject_html {
Martin Waitz1c2a4f52006-08-16 00:24:30 +02001853 my ($long, $short, $href, $extra) = @_;
Jakub Narebski17d07442006-08-14 02:08:27 +02001854 $extra = '' unless defined($extra);
1855
1856 if (length($short) < length($long)) {
Jakub Narebski14afe772009-05-22 17:35:46 +02001857 $long =~ s/[[:cntrl:]]/?/g;
Jakub Narebski7c278012006-08-22 12:02:48 +02001858 return $cgi->a({-href => $href, -class => "list subject",
Martin Koegler00f429a2007-06-03 17:42:44 +02001859 -title => to_utf8($long)},
Giuseppe Bilotta01b89f02009-08-23 10:28:09 +02001860 esc_html($short)) . $extra;
Jakub Narebski17d07442006-08-14 02:08:27 +02001861 } else {
Jakub Narebski7c278012006-08-22 12:02:48 +02001862 return $cgi->a({-href => $href, -class => "list subject"},
Giuseppe Bilotta01b89f02009-08-23 10:28:09 +02001863 esc_html($long)) . $extra;
Jakub Narebski17d07442006-08-14 02:08:27 +02001864 }
1865}
1866
Giuseppe Bilotta5a371b72009-06-30 00:00:52 +02001867# Rather than recomputing the url for an email multiple times, we cache it
1868# after the first hit. This gives a visible benefit in views where the avatar
1869# for the same email is used repeatedly (e.g. shortlog).
1870# The cache is shared by all avatar engines (currently gravatar only), which
1871# are free to use it as preferred. Since only one avatar engine is used for any
1872# given page, there's no risk for cache conflicts.
1873our %avatar_cache = ();
1874
Giuseppe Bilotta679a1a12009-06-30 00:00:53 +02001875# Compute the picon url for a given email, by using the picon search service over at
1876# http://www.cs.indiana.edu/picons/search.html
1877sub picon_url {
1878 my $email = lc shift;
1879 if (!$avatar_cache{$email}) {
1880 my ($user, $domain) = split('@', $email);
1881 $avatar_cache{$email} =
1882 "http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
1883 "$domain/$user/" .
1884 "users+domains+unknown/up/single";
1885 }
1886 return $avatar_cache{$email};
1887}
1888
Giuseppe Bilotta5a371b72009-06-30 00:00:52 +02001889# Compute the gravatar url for a given email, if it's not in the cache already.
1890# Gravatar stores only the part of the URL before the size, since that's the
1891# one computationally more expensive. This also allows reuse of the cache for
1892# different sizes (for this particular engine).
1893sub gravatar_url {
1894 my $email = lc shift;
1895 my $size = shift;
1896 $avatar_cache{$email} ||=
1897 "http://www.gravatar.com/avatar/" .
1898 Digest::MD5::md5_hex($email) . "?s=";
1899 return $avatar_cache{$email} . $size;
1900}
1901
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +02001902# Insert an avatar for the given $email at the given $size if the feature
1903# is enabled.
1904sub git_get_avatar {
1905 my ($email, %opts) = @_;
1906 my $pre_white = ($opts{-pad_before} ? "&nbsp;" : "");
1907 my $post_white = ($opts{-pad_after} ? "&nbsp;" : "");
1908 $opts{-size} ||= 'default';
1909 my $size = $avatar_size{$opts{-size}} || $avatar_size{'default'};
1910 my $url = "";
1911 if ($git_avatar eq 'gravatar') {
Giuseppe Bilotta5a371b72009-06-30 00:00:52 +02001912 $url = gravatar_url($email, $size);
Giuseppe Bilotta679a1a12009-06-30 00:00:53 +02001913 } elsif ($git_avatar eq 'picon') {
1914 $url = picon_url($email);
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +02001915 }
Giuseppe Bilotta679a1a12009-06-30 00:00:53 +02001916 # Other providers can be added by extending the if chain, defining $url
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +02001917 # as needed. If no variant puts something in $url, we assume avatars
1918 # are completely disabled/unavailable.
1919 if ($url) {
1920 return $pre_white .
1921 "<img width=\"$size\" " .
1922 "class=\"avatar\" " .
Jakub Narebski3017ed62010-12-15 00:34:01 +01001923 "src=\"".esc_url($url)."\" " .
Giuseppe Bilotta7d25ef42009-06-30 00:00:54 +02001924 "alt=\"\" " .
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +02001925 "/>" . $post_white;
1926 } else {
1927 return "";
1928 }
1929}
1930
Stephen Boyde133d652009-10-15 21:14:59 -07001931sub format_search_author {
1932 my ($author, $searchtype, $displaytext) = @_;
1933 my $have_search = gitweb_check_feature('search');
1934
1935 if ($have_search) {
1936 my $performed = "";
1937 if ($searchtype eq 'author') {
1938 $performed = "authored";
1939 } elsif ($searchtype eq 'committer') {
1940 $performed = "committed";
1941 }
1942
1943 return $cgi->a({-href => href(action=>"search", hash=>$hash,
1944 searchtext=>$author,
1945 searchtype=>$searchtype), class=>"list",
1946 title=>"Search for commits $performed by $author"},
1947 $displaytext);
1948
1949 } else {
1950 return $displaytext;
1951 }
1952}
1953
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02001954# format the author name of the given commit with the given tag
1955# the author name is chopped and escaped according to the other
1956# optional parameters (see chop_str).
1957sub format_author_html {
1958 my $tag = shift;
1959 my $co = shift;
1960 my $author = chop_and_escape_str($co->{'author_name'}, @_);
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +02001961 return "<$tag class=\"author\">" .
Stephen Boyde133d652009-10-15 21:14:59 -07001962 format_search_author($co->{'author_name'}, "author",
1963 git_get_avatar($co->{'author_email'}, -pad_after => 1) .
1964 $author) .
1965 "</$tag>";
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02001966}
1967
Jakub Narebski90921742007-06-08 13:27:42 +02001968# format git diff header line, i.e. "diff --(git|combined|cc) ..."
1969sub format_git_diff_header_line {
1970 my $line = shift;
1971 my $diffinfo = shift;
1972 my ($from, $to) = @_;
1973
1974 if ($diffinfo->{'nparents'}) {
1975 # combined diff
1976 $line =~ s!^(diff (.*?) )"?.*$!$1!;
1977 if ($to->{'href'}) {
1978 $line .= $cgi->a({-href => $to->{'href'}, -class => "path"},
1979 esc_path($to->{'file'}));
1980 } else { # file was deleted (no href)
1981 $line .= esc_path($to->{'file'});
1982 }
1983 } else {
1984 # "ordinary" diff
1985 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
1986 if ($from->{'href'}) {
1987 $line .= $cgi->a({-href => $from->{'href'}, -class => "path"},
1988 'a/' . esc_path($from->{'file'}));
1989 } else { # file was added (no href)
1990 $line .= 'a/' . esc_path($from->{'file'});
1991 }
1992 $line .= ' ';
1993 if ($to->{'href'}) {
1994 $line .= $cgi->a({-href => $to->{'href'}, -class => "path"},
1995 'b/' . esc_path($to->{'file'}));
1996 } else { # file was deleted
1997 $line .= 'b/' . esc_path($to->{'file'});
1998 }
1999 }
2000
2001 return "<div class=\"diff header\">$line</div>\n";
2002}
2003
2004# format extended diff header line, before patch itself
2005sub format_extended_diff_header_line {
2006 my $line = shift;
2007 my $diffinfo = shift;
2008 my ($from, $to) = @_;
2009
2010 # match <path>
2011 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
2012 $line .= $cgi->a({-href=>$from->{'href'}, -class=>"path"},
2013 esc_path($from->{'file'}));
2014 }
2015 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
2016 $line .= $cgi->a({-href=>$to->{'href'}, -class=>"path"},
2017 esc_path($to->{'file'}));
2018 }
2019 # match single <mode>
2020 if ($line =~ m/\s(\d{6})$/) {
2021 $line .= '<span class="info"> (' .
2022 file_type_long($1) .
2023 ')</span>';
2024 }
2025 # match <hash>
2026 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
2027 # can match only for combined diff
2028 $line = 'index ';
2029 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2030 if ($from->{'href'}[$i]) {
2031 $line .= $cgi->a({-href=>$from->{'href'}[$i],
2032 -class=>"hash"},
2033 substr($diffinfo->{'from_id'}[$i],0,7));
2034 } else {
2035 $line .= '0' x 7;
2036 }
2037 # separator
2038 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
2039 }
2040 $line .= '..';
2041 if ($to->{'href'}) {
2042 $line .= $cgi->a({-href=>$to->{'href'}, -class=>"hash"},
2043 substr($diffinfo->{'to_id'},0,7));
2044 } else {
2045 $line .= '0' x 7;
2046 }
2047
2048 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
2049 # can match only for ordinary diff
2050 my ($from_link, $to_link);
2051 if ($from->{'href'}) {
2052 $from_link = $cgi->a({-href=>$from->{'href'}, -class=>"hash"},
2053 substr($diffinfo->{'from_id'},0,7));
2054 } else {
2055 $from_link = '0' x 7;
2056 }
2057 if ($to->{'href'}) {
2058 $to_link = $cgi->a({-href=>$to->{'href'}, -class=>"hash"},
2059 substr($diffinfo->{'to_id'},0,7));
2060 } else {
2061 $to_link = '0' x 7;
2062 }
2063 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
2064 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
2065 }
2066
2067 return $line . "<br/>\n";
2068}
2069
2070# format from-file/to-file diff header
2071sub format_diff_from_to_header {
Jakub Narebski91af4ce2007-06-08 13:32:44 +02002072 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
Jakub Narebski90921742007-06-08 13:27:42 +02002073 my $line;
2074 my $result = '';
2075
2076 $line = $from_line;
2077 #assert($line =~ m/^---/) if DEBUG;
Jakub Narebskideaa01a2007-06-08 13:29:49 +02002078 # no extra formatting for "^--- /dev/null"
2079 if (! $diffinfo->{'nparents'}) {
2080 # ordinary (single parent) diff
2081 if ($line =~ m!^--- "?a/!) {
2082 if ($from->{'href'}) {
2083 $line = '--- a/' .
2084 $cgi->a({-href=>$from->{'href'}, -class=>"path"},
2085 esc_path($from->{'file'}));
2086 } else {
2087 $line = '--- a/' .
2088 esc_path($from->{'file'});
2089 }
2090 }
2091 $result .= qq!<div class="diff from_file">$line</div>\n!;
2092
2093 } else {
2094 # combined diff (merge commit)
2095 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2096 if ($from->{'href'}[$i]) {
2097 $line = '--- ' .
Jakub Narebski91af4ce2007-06-08 13:32:44 +02002098 $cgi->a({-href=>href(action=>"blobdiff",
2099 hash_parent=>$diffinfo->{'from_id'}[$i],
2100 hash_parent_base=>$parents[$i],
2101 file_parent=>$from->{'file'}[$i],
2102 hash=>$diffinfo->{'to_id'},
2103 hash_base=>$hash,
2104 file_name=>$to->{'file'}),
2105 -class=>"path",
2106 -title=>"diff" . ($i+1)},
2107 $i+1) .
2108 '/' .
Jakub Narebskideaa01a2007-06-08 13:29:49 +02002109 $cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},
2110 esc_path($from->{'file'}[$i]));
2111 } else {
2112 $line = '--- /dev/null';
2113 }
2114 $result .= qq!<div class="diff from_file">$line</div>\n!;
Jakub Narebski90921742007-06-08 13:27:42 +02002115 }
2116 }
Jakub Narebski90921742007-06-08 13:27:42 +02002117
2118 $line = $to_line;
2119 #assert($line =~ m/^\+\+\+/) if DEBUG;
2120 # no extra formatting for "^+++ /dev/null"
2121 if ($line =~ m!^\+\+\+ "?b/!) {
2122 if ($to->{'href'}) {
2123 $line = '+++ b/' .
2124 $cgi->a({-href=>$to->{'href'}, -class=>"path"},
2125 esc_path($to->{'file'}));
2126 } else {
2127 $line = '+++ b/' .
2128 esc_path($to->{'file'});
2129 }
2130 }
2131 $result .= qq!<div class="diff to_file">$line</div>\n!;
2132
2133 return $result;
2134}
2135
Jakub Narebskicd030c32007-06-08 13:33:28 +02002136# create note for patch simplified by combined diff
2137sub format_diff_cc_simplified {
2138 my ($diffinfo, @parents) = @_;
2139 my $result = '';
2140
2141 $result .= "<div class=\"diff header\">" .
2142 "diff --cc ";
2143 if (!is_deleted($diffinfo)) {
2144 $result .= $cgi->a({-href => href(action=>"blob",
2145 hash_base=>$hash,
2146 hash=>$diffinfo->{'to_id'},
2147 file_name=>$diffinfo->{'to_file'}),
2148 -class => "path"},
2149 esc_path($diffinfo->{'to_file'}));
2150 } else {
2151 $result .= esc_path($diffinfo->{'to_file'});
2152 }
2153 $result .= "</div>\n" . # class="diff header"
2154 "<div class=\"diff nodifferences\">" .
2155 "Simple merge" .
2156 "</div>\n"; # class="diff nodifferences"
2157
2158 return $result;
2159}
2160
Jakub Narebski90921742007-06-08 13:27:42 +02002161# format patch (diff) line (not to be used for diff headers)
Jakub Narebskieee08902006-08-24 00:15:14 +02002162sub format_diff_line {
2163 my $line = shift;
Jakub Narebski59e3b142006-11-18 23:35:40 +01002164 my ($from, $to) = @_;
Jakub Narebskieee08902006-08-24 00:15:14 +02002165 my $diff_class = "";
2166
2167 chomp $line;
2168
Jakub Narebskie72c0ea2007-05-07 01:10:05 +02002169 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
2170 # combined diff
2171 my $prefix = substr($line, 0, scalar @{$from->{'href'}});
2172 if ($line =~ m/^\@{3}/) {
2173 $diff_class = " chunk_header";
2174 } elsif ($line =~ m/^\\/) {
2175 $diff_class = " incomplete";
2176 } elsif ($prefix =~ tr/+/+/) {
2177 $diff_class = " add";
2178 } elsif ($prefix =~ tr/-/-/) {
2179 $diff_class = " rem";
2180 }
2181 } else {
2182 # assume ordinary diff
2183 my $char = substr($line, 0, 1);
2184 if ($char eq '+') {
2185 $diff_class = " add";
2186 } elsif ($char eq '-') {
2187 $diff_class = " rem";
2188 } elsif ($char eq '@') {
2189 $diff_class = " chunk_header";
2190 } elsif ($char eq "\\") {
2191 $diff_class = " incomplete";
2192 }
Jakub Narebskieee08902006-08-24 00:15:14 +02002193 }
2194 $line = untabify($line);
Jakub Narebski59e3b142006-11-18 23:35:40 +01002195 if ($from && $to && $line =~ m/^\@{2} /) {
2196 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
2197 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
2198
2199 $from_lines = 0 unless defined $from_lines;
2200 $to_lines = 0 unless defined $to_lines;
2201
2202 if ($from->{'href'}) {
2203 $from_text = $cgi->a({-href=>"$from->{'href'}#l$from_start",
2204 -class=>"list"}, $from_text);
2205 }
2206 if ($to->{'href'}) {
2207 $to_text = $cgi->a({-href=>"$to->{'href'}#l$to_start",
2208 -class=>"list"}, $to_text);
2209 }
2210 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
2211 "<span class=\"section\">" . esc_html($section, -nbsp=>1) . "</span>";
2212 return "<div class=\"diff$diff_class\">$line</div>\n";
Jakub Narebskie72c0ea2007-05-07 01:10:05 +02002213 } elsif ($from && $to && $line =~ m/^\@{3}/) {
2214 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
2215 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
2216
2217 @from_text = split(' ', $ranges);
2218 for (my $i = 0; $i < @from_text; ++$i) {
2219 ($from_start[$i], $from_nlines[$i]) =
2220 (split(',', substr($from_text[$i], 1)), 0);
2221 }
2222
2223 $to_text = pop @from_text;
2224 $to_start = pop @from_start;
2225 $to_nlines = pop @from_nlines;
2226
2227 $line = "<span class=\"chunk_info\">$prefix ";
2228 for (my $i = 0; $i < @from_text; ++$i) {
2229 if ($from->{'href'}[$i]) {
2230 $line .= $cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",
2231 -class=>"list"}, $from_text[$i]);
2232 } else {
2233 $line .= $from_text[$i];
2234 }
2235 $line .= " ";
2236 }
2237 if ($to->{'href'}) {
2238 $line .= $cgi->a({-href=>"$to->{'href'}#l$to_start",
2239 -class=>"list"}, $to_text);
2240 } else {
2241 $line .= $to_text;
2242 }
2243 $line .= " $prefix</span>" .
2244 "<span class=\"section\">" . esc_html($section, -nbsp=>1) . "</span>";
2245 return "<div class=\"diff$diff_class\">$line</div>\n";
Jakub Narebski59e3b142006-11-18 23:35:40 +01002246 }
Jakub Narebski6255ef02006-11-01 14:33:21 +01002247 return "<div class=\"diff$diff_class\">" . esc_html($line, -nbsp=>1) . "</div>\n";
Jakub Narebskieee08902006-08-24 00:15:14 +02002248}
2249
Matt McCutchena3c8ab32007-07-22 01:30:27 +02002250# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
2251# linked. Pass the hash of the tree/commit to snapshot.
2252sub format_snapshot_links {
2253 my ($hash) = @_;
Matt McCutchena3c8ab32007-07-22 01:30:27 +02002254 my $num_fmts = @snapshot_fmts;
2255 if ($num_fmts > 1) {
2256 # A parenthesized list of links bearing format names.
Jakub Narebskia7817852007-07-22 23:41:20 +02002257 # e.g. "snapshot (_tar.gz_ _zip_)"
Matt McCutchena3c8ab32007-07-22 01:30:27 +02002258 return "snapshot (" . join(' ', map
2259 $cgi->a({
2260 -href => href(
2261 action=>"snapshot",
2262 hash=>$hash,
2263 snapshot_format=>$_
2264 )
2265 }, $known_snapshot_formats{$_}{'display'})
2266 , @snapshot_fmts) . ")";
2267 } elsif ($num_fmts == 1) {
2268 # A single "snapshot" link whose tooltip bears the format name.
Jakub Narebskia7817852007-07-22 23:41:20 +02002269 # i.e. "_snapshot_"
Matt McCutchena3c8ab32007-07-22 01:30:27 +02002270 my ($fmt) = @snapshot_fmts;
Jakub Narebskia7817852007-07-22 23:41:20 +02002271 return
2272 $cgi->a({
Matt McCutchena3c8ab32007-07-22 01:30:27 +02002273 -href => href(
2274 action=>"snapshot",
2275 hash=>$hash,
2276 snapshot_format=>$fmt
2277 ),
2278 -title => "in format: $known_snapshot_formats{$fmt}{'display'}"
2279 }, "snapshot");
2280 } else { # $num_fmts == 0
2281 return undef;
2282 }
2283}
2284
Jakub Narebski35621982008-04-20 22:09:48 +02002285## ......................................................................
2286## functions returning values to be passed, perhaps after some
2287## transformation, to other functions; e.g. returning arguments to href()
2288
2289# returns hash to be passed to href to generate gitweb URL
2290# in -title key it returns description of link
2291sub get_feed_info {
2292 my $format = shift || 'Atom';
2293 my %res = (action => lc($format));
2294
2295 # feed links are possible only for project views
2296 return unless (defined $project);
2297 # some views should link to OPML, or to generic project feed,
2298 # or don't have specific feed yet (so they should use generic)
2299 return if ($action =~ /^(?:tags|heads|forks|tag|search)$/x);
2300
2301 my $branch;
2302 # branches refs uses 'refs/heads/' prefix (fullname) to differentiate
2303 # from tag links; this also makes possible to detect branch links
2304 if ((defined $hash_base && $hash_base =~ m!^refs/heads/(.*)$!) ||
2305 (defined $hash && $hash =~ m!^refs/heads/(.*)$!)) {
2306 $branch = $1;
2307 }
2308 # find log type for feed description (title)
2309 my $type = 'log';
2310 if (defined $file_name) {
2311 $type = "history of $file_name";
2312 $type .= "/" if ($action eq 'tree');
2313 $type .= " on '$branch'" if (defined $branch);
2314 } else {
2315 $type = "log of $branch" if (defined $branch);
2316 }
2317
2318 $res{-title} = $type;
2319 $res{'hash'} = (defined $branch ? "refs/heads/$branch" : undef);
2320 $res{'file_name'} = $file_name;
2321
2322 return %res;
2323}
2324
Jakub Narebski717b8312006-07-31 21:22:15 +02002325## ----------------------------------------------------------------------
2326## git utility subroutines, invoking git commands
2327
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002328# returns path to the core git executable and the --git-dir parameter as list
2329sub git_cmd {
Jakub Narebskiaa7dd052009-09-01 13:39:16 +02002330 $number_of_git_cmds++;
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002331 return $GIT, '--git-dir='.$git_dir;
2332}
2333
Lea Wiemann516381d2008-06-17 23:46:35 +02002334# quote the given arguments for passing them to the shell
2335# quote_command("command", "arg 1", "arg with ' and ! characters")
2336# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"
2337# Try to avoid using this function wherever possible.
2338sub quote_command {
2339 return join(' ',
Jakub Narebski68cedb12009-05-10 02:40:37 +02002340 map { my $a = $_; $a =~ s/(['!])/'\\$1'/g; "'$a'" } @_ );
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002341}
2342
Jakub Narebski717b8312006-07-31 21:22:15 +02002343# get HEAD ref of given project as hash
Jakub Narebski847e01f2006-08-14 02:05:47 +02002344sub git_get_head_hash {
Mark Radab6292752009-11-07 16:13:29 +01002345 return git_get_full_hash(shift, 'HEAD');
2346}
2347
2348sub git_get_full_hash {
2349 return git_get_hash(@_);
2350}
2351
2352sub git_get_short_hash {
2353 return git_get_hash(@_, '--short=7');
2354}
2355
2356sub git_get_hash {
2357 my ($project, $hash, @options) = @_;
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002358 my $o_git_dir = $git_dir;
Jakub Narebski717b8312006-07-31 21:22:15 +02002359 my $retval = undef;
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002360 $git_dir = "$projectroot/$project";
Mark Radab6292752009-11-07 16:13:29 +01002361 if (open my $fd, '-|', git_cmd(), 'rev-parse',
2362 '--verify', '-q', @options, $hash) {
2363 $retval = <$fd>;
2364 chomp $retval if defined $retval;
Jakub Narebski717b8312006-07-31 21:22:15 +02002365 close $fd;
Jakub Narebski717b8312006-07-31 21:22:15 +02002366 }
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002367 if (defined $o_git_dir) {
2368 $git_dir = $o_git_dir;
Jakub Narebski717b8312006-07-31 21:22:15 +02002369 }
2370 return $retval;
2371}
2372
2373# get type of given object
2374sub git_get_type {
2375 my $hash = shift;
2376
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002377 open my $fd, "-|", git_cmd(), "cat-file", '-t', $hash or return;
Jakub Narebski717b8312006-07-31 21:22:15 +02002378 my $type = <$fd>;
2379 close $fd or return;
2380 chomp $type;
2381 return $type;
2382}
2383
Jakub Narebskib2019272007-11-03 00:41:19 +01002384# repository configuration
2385our $config_file = '';
2386our %config;
2387
2388# store multiple values for single key as anonymous array reference
2389# single values stored directly in the hash, not as [ <value> ]
2390sub hash_set_multi {
2391 my ($hash, $key, $value) = @_;
2392
2393 if (!exists $hash->{$key}) {
2394 $hash->{$key} = $value;
2395 } elsif (!ref $hash->{$key}) {
2396 $hash->{$key} = [ $hash->{$key}, $value ];
2397 } else {
2398 push @{$hash->{$key}}, $value;
2399 }
2400}
2401
2402# return hash of git project configuration
2403# optionally limited to some section, e.g. 'gitweb'
2404sub git_parse_project_config {
2405 my $section_regexp = shift;
2406 my %config;
2407
2408 local $/ = "\0";
2409
2410 open my $fh, "-|", git_cmd(), "config", '-z', '-l',
2411 or return;
2412
2413 while (my $keyval = <$fh>) {
2414 chomp $keyval;
2415 my ($key, $value) = split(/\n/, $keyval, 2);
2416
2417 hash_set_multi(\%config, $key, $value)
2418 if (!defined $section_regexp || $key =~ /^(?:$section_regexp)\./o);
2419 }
2420 close $fh;
2421
2422 return %config;
2423}
2424
Marcel M. Carydf5d10a2009-02-18 14:09:41 +01002425# convert config value to boolean: 'true' or 'false'
Jakub Narebskib2019272007-11-03 00:41:19 +01002426# no value, number > 0, 'true' and 'yes' values are true
2427# rest of values are treated as false (never as error)
2428sub config_to_bool {
2429 my $val = shift;
2430
Marcel M. Carydf5d10a2009-02-18 14:09:41 +01002431 return 1 if !defined $val; # section.key
2432
Jakub Narebskib2019272007-11-03 00:41:19 +01002433 # strip leading and trailing whitespace
2434 $val =~ s/^\s+//;
2435 $val =~ s/\s+$//;
2436
Marcel M. Carydf5d10a2009-02-18 14:09:41 +01002437 return (($val =~ /^\d+$/ && $val) || # section.key = 1
Jakub Narebskib2019272007-11-03 00:41:19 +01002438 ($val =~ /^(?:true|yes)$/i)); # section.key = true
2439}
2440
2441# convert config value to simple decimal number
2442# an optional value suffix of 'k', 'm', or 'g' will cause the value
2443# to be multiplied by 1024, 1048576, or 1073741824
2444sub config_to_int {
2445 my $val = shift;
2446
2447 # strip leading and trailing whitespace
2448 $val =~ s/^\s+//;
2449 $val =~ s/\s+$//;
2450
2451 if (my ($num, $unit) = ($val =~ /^([0-9]*)([kmg])$/i)) {
2452 $unit = lc($unit);
2453 # unknown unit is treated as 1
2454 return $num * ($unit eq 'g' ? 1073741824 :
2455 $unit eq 'm' ? 1048576 :
2456 $unit eq 'k' ? 1024 : 1);
2457 }
2458 return $val;
2459}
2460
2461# convert config value to array reference, if needed
2462sub config_to_multi {
2463 my $val = shift;
2464
Jakub Narebskid76a5852007-12-20 10:48:09 +01002465 return ref($val) ? $val : (defined($val) ? [ $val ] : []);
Jakub Narebskib2019272007-11-03 00:41:19 +01002466}
2467
Jakub Narebski717b8312006-07-31 21:22:15 +02002468sub git_get_project_config {
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +05302469 my ($key, $type) = @_;
Jakub Narebski717b8312006-07-31 21:22:15 +02002470
Jakub Narebski7a49c252010-03-27 20:26:59 +01002471 return unless defined $git_dir;
Jakub Narebski9be36142010-03-01 22:51:34 +01002472
Jakub Narebskib2019272007-11-03 00:41:19 +01002473 # key sanity check
Jakub Narebski717b8312006-07-31 21:22:15 +02002474 return unless ($key);
2475 $key =~ s/^gitweb\.//;
2476 return if ($key =~ m/\W/);
2477
Jakub Narebskib2019272007-11-03 00:41:19 +01002478 # type sanity check
2479 if (defined $type) {
2480 $type =~ s/^--//;
2481 $type = undef
2482 unless ($type eq 'bool' || $type eq 'int');
2483 }
2484
2485 # get config
2486 if (!defined $config_file ||
2487 $config_file ne "$git_dir/config") {
2488 %config = git_parse_project_config('gitweb');
2489 $config_file = "$git_dir/config";
2490 }
2491
Marcel M. Carydf5d10a2009-02-18 14:09:41 +01002492 # check if config variable (key) exists
2493 return unless exists $config{"gitweb.$key"};
2494
Jakub Narebskib2019272007-11-03 00:41:19 +01002495 # ensure given type
2496 if (!defined $type) {
2497 return $config{"gitweb.$key"};
2498 } elsif ($type eq 'bool') {
2499 # backward compatibility: 'git config --bool' returns true/false
2500 return config_to_bool($config{"gitweb.$key"}) ? 'true' : 'false';
2501 } elsif ($type eq 'int') {
2502 return config_to_int($config{"gitweb.$key"});
2503 }
2504 return $config{"gitweb.$key"};
Jakub Narebski717b8312006-07-31 21:22:15 +02002505}
2506
Jakub Narebski717b8312006-07-31 21:22:15 +02002507# get hash of given path at given ref
2508sub git_get_hash_by_path {
2509 my $base = shift;
2510 my $path = shift || return undef;
Jakub Narebski1d782b02006-09-21 18:09:12 +02002511 my $type = shift;
Jakub Narebski717b8312006-07-31 21:22:15 +02002512
Jakub Narebski4b02f482006-09-26 01:54:24 +02002513 $path =~ s,/+$,,;
Jakub Narebski717b8312006-07-31 21:22:15 +02002514
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002515 open my $fd, "-|", git_cmd(), "ls-tree", $base, "--", $path
Lea Wiemann074afaa2008-06-19 22:03:21 +02002516 or die_error(500, "Open git-ls-tree failed");
Jakub Narebski717b8312006-07-31 21:22:15 +02002517 my $line = <$fd>;
2518 close $fd or return undef;
2519
Jakub Narebski198a2a82007-05-12 21:16:34 +02002520 if (!defined $line) {
2521 # there is no tree or hash given by $path at $base
2522 return undef;
2523 }
2524
Jakub Narebski717b8312006-07-31 21:22:15 +02002525 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
Jakub Narebski8b4b94c2006-10-30 22:25:11 +01002526 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
Jakub Narebski1d782b02006-09-21 18:09:12 +02002527 if (defined $type && $type ne $2) {
2528 # type doesn't match
2529 return undef;
2530 }
Jakub Narebski717b8312006-07-31 21:22:15 +02002531 return $3;
2532}
2533
Jakub Narebskied224de2007-05-07 01:10:04 +02002534# get path of entry with given hash at given tree-ish (ref)
2535# used to get 'from' filename for combined diff (merge commit) for renames
2536sub git_get_path_by_hash {
2537 my $base = shift || return;
2538 my $hash = shift || return;
2539
2540 local $/ = "\0";
2541
2542 open my $fd, "-|", git_cmd(), "ls-tree", '-r', '-t', '-z', $base
2543 or return undef;
2544 while (my $line = <$fd>) {
2545 chomp $line;
2546
2547 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
2548 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
2549 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
2550 close $fd;
2551 return $1;
2552 }
2553 }
2554 close $fd;
2555 return undef;
2556}
2557
Jakub Narebski717b8312006-07-31 21:22:15 +02002558## ......................................................................
2559## git utility functions, directly accessing git repository
2560
Jakub Narebski847e01f2006-08-14 02:05:47 +02002561sub git_get_project_description {
Jakub Narebski717b8312006-07-31 21:22:15 +02002562 my $path = shift;
2563
Jakub Narebski0e121a22007-11-03 00:41:20 +01002564 $git_dir = "$projectroot/$path";
Jakub Narebskidff2b6d2009-05-10 02:38:34 +02002565 open my $fd, '<', "$git_dir/description"
Jakub Narebski0e121a22007-11-03 00:41:20 +01002566 or return git_get_project_config('description');
Jakub Narebski717b8312006-07-31 21:22:15 +02002567 my $descr = <$fd>;
2568 close $fd;
Junio C Hamano2eb54ef2007-05-16 21:04:16 -07002569 if (defined $descr) {
2570 chomp $descr;
2571 }
Jakub Narebski717b8312006-07-31 21:22:15 +02002572 return $descr;
2573}
2574
Petr Baudisaed93de2008-10-02 17:13:02 +02002575sub git_get_project_ctags {
2576 my $path = shift;
2577 my $ctags = {};
2578
2579 $git_dir = "$projectroot/$path";
Jakub Narebskiad87e4f2009-05-11 03:21:06 +02002580 opendir my $dh, "$git_dir/ctags"
2581 or return $ctags;
2582 foreach (grep { -f $_ } map { "$git_dir/ctags/$_" } readdir($dh)) {
Jakub Narebskidff2b6d2009-05-10 02:38:34 +02002583 open my $ct, '<', $_ or next;
Jakub Narebskiad87e4f2009-05-11 03:21:06 +02002584 my $val = <$ct>;
Petr Baudisaed93de2008-10-02 17:13:02 +02002585 chomp $val;
Jakub Narebskiad87e4f2009-05-11 03:21:06 +02002586 close $ct;
Petr Baudisaed93de2008-10-02 17:13:02 +02002587 my $ctag = $_; $ctag =~ s#.*/##;
2588 $ctags->{$ctag} = $val;
2589 }
Jakub Narebskiad87e4f2009-05-11 03:21:06 +02002590 closedir $dh;
Petr Baudisaed93de2008-10-02 17:13:02 +02002591 $ctags;
2592}
2593
2594sub git_populate_project_tagcloud {
2595 my $ctags = shift;
2596
2597 # First, merge different-cased tags; tags vote on casing
2598 my %ctags_lc;
2599 foreach (keys %$ctags) {
2600 $ctags_lc{lc $_}->{count} += $ctags->{$_};
2601 if (not $ctags_lc{lc $_}->{topcount}
2602 or $ctags_lc{lc $_}->{topcount} < $ctags->{$_}) {
2603 $ctags_lc{lc $_}->{topcount} = $ctags->{$_};
2604 $ctags_lc{lc $_}->{topname} = $_;
2605 }
2606 }
2607
2608 my $cloud;
2609 if (eval { require HTML::TagCloud; 1; }) {
2610 $cloud = HTML::TagCloud->new;
2611 foreach (sort keys %ctags_lc) {
2612 # Pad the title with spaces so that the cloud looks
2613 # less crammed.
2614 my $title = $ctags_lc{$_}->{topname};
2615 $title =~ s/ /&nbsp;/g;
2616 $title =~ s/^/&nbsp;/g;
2617 $title =~ s/$/&nbsp;/g;
2618 $cloud->add($title, $home_link."?by_tag=".$_, $ctags_lc{$_}->{count});
2619 }
2620 } else {
2621 $cloud = \%ctags_lc;
2622 }
2623 $cloud;
2624}
2625
2626sub git_show_project_tagcloud {
2627 my ($cloud, $count) = @_;
2628 print STDERR ref($cloud)."..\n";
2629 if (ref $cloud eq 'HTML::TagCloud') {
2630 return $cloud->html_and_css($count);
2631 } else {
2632 my @tags = sort { $cloud->{$a}->{count} <=> $cloud->{$b}->{count} } keys %$cloud;
2633 return '<p align="center">' . join (', ', map {
Jakub Narebski3017ed62010-12-15 00:34:01 +01002634 $cgi->a({-href=>"$home_link?by_tag=$_"}, $cloud->{$_}->{topname})
Petr Baudisaed93de2008-10-02 17:13:02 +02002635 } splice(@tags, 0, $count)) . '</p>';
2636 }
2637}
2638
Jakub Narebskie79ca7c2006-08-16 14:50:34 +02002639sub git_get_project_url_list {
2640 my $path = shift;
2641
Jakub Narebski0e121a22007-11-03 00:41:20 +01002642 $git_dir = "$projectroot/$path";
Jakub Narebskidff2b6d2009-05-10 02:38:34 +02002643 open my $fd, '<', "$git_dir/cloneurl"
Jakub Narebski0e121a22007-11-03 00:41:20 +01002644 or return wantarray ?
2645 @{ config_to_multi(git_get_project_config('url')) } :
2646 config_to_multi(git_get_project_config('url'));
Jakub Narebskie79ca7c2006-08-16 14:50:34 +02002647 my @git_project_url_list = map { chomp; $_ } <$fd>;
2648 close $fd;
2649
2650 return wantarray ? @git_project_url_list : \@git_project_url_list;
2651}
2652
Jakub Narebski847e01f2006-08-14 02:05:47 +02002653sub git_get_projects_list {
Jakub Narebski12b14432011-04-29 19:51:56 +02002654 my $filter = shift || '';
Jakub Narebski717b8312006-07-31 21:22:15 +02002655 my @list;
2656
Petr Baudise30496d2006-10-24 05:33:17 +02002657 $filter =~ s/\.git$//;
2658
Jakub Narebski717b8312006-07-31 21:22:15 +02002659 if (-d $projects_list) {
2660 # search in directory
Jakub Narebski12b14432011-04-29 19:51:56 +02002661 my $dir = $projects_list;
Aneesh Kumar K.V6768d6b2006-11-03 10:41:45 +05302662 # remove the trailing "/"
2663 $dir =~ s!/+$!!;
Jakub Narebski12b14432011-04-29 19:51:56 +02002664 my $pfxlen = length("$projects_list");
2665 my $pfxdepth = ($projects_list =~ tr!/!!);
2666 # when filtering, search only given subdirectory
2667 if ($filter) {
2668 $dir .= "/$filter";
2669 $dir =~ s!/+$!!;
2670 }
Jakub Narebskic0011ff2006-09-14 22:18:59 +02002671
2672 File::Find::find({
2673 follow_fast => 1, # follow symbolic links
Junio C Hamanod20602e2007-07-27 01:23:03 -07002674 follow_skip => 2, # ignore duplicates
Jakub Narebskic0011ff2006-09-14 22:18:59 +02002675 dangling_symlinks => 0, # ignore dangling symlinks, silently
2676 wanted => sub {
Jakub Narebskiee1d8ee2010-04-30 18:30:31 +02002677 # global variables
2678 our $project_maxdepth;
2679 our $projectroot;
Jakub Narebskic0011ff2006-09-14 22:18:59 +02002680 # skip project-list toplevel, if we get it.
2681 return if (m!^[/.]$!);
2682 # only directories can be git repositories
2683 return unless (-d $_);
Luke Luca5e9492007-10-16 20:45:25 -07002684 # don't traverse too deep (Find is super slow on os x)
Jakub Narebski12b14432011-04-29 19:51:56 +02002685 # $project_maxdepth excludes depth of $projectroot
Luke Luca5e9492007-10-16 20:45:25 -07002686 if (($File::Find::name =~ tr!/!!) - $pfxdepth > $project_maxdepth) {
2687 $File::Find::prune = 1;
2688 return;
2689 }
Jakub Narebskic0011ff2006-09-14 22:18:59 +02002690
Jakub Narebski12b14432011-04-29 19:51:56 +02002691 my $path = substr($File::Find::name, $pfxlen + 1);
Jakub Narebskic0011ff2006-09-14 22:18:59 +02002692 # we check related file in $projectroot
Devin Doucettefb3bb3d2008-12-27 02:39:31 -07002693 if (check_export_ok("$projectroot/$path")) {
2694 push @list, { path => $path };
Jakub Narebskic0011ff2006-09-14 22:18:59 +02002695 $File::Find::prune = 1;
2696 }
2697 },
2698 }, "$dir");
2699
Jakub Narebski717b8312006-07-31 21:22:15 +02002700 } elsif (-f $projects_list) {
2701 # read from file(url-encoded):
2702 # 'git%2Fgit.git Linus+Torvalds'
2703 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
2704 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
Jakub Narebskidff2b6d2009-05-10 02:38:34 +02002705 open my $fd, '<', $projects_list or return;
Frank Lichtenheldc2b8b132007-04-06 23:58:11 +02002706 PROJECT:
Jakub Narebski717b8312006-07-31 21:22:15 +02002707 while (my $line = <$fd>) {
2708 chomp $line;
2709 my ($path, $owner) = split ' ', $line;
2710 $path = unescape($path);
2711 $owner = unescape($owner);
2712 if (!defined $path) {
2713 next;
2714 }
Jakub Narebski12b14432011-04-29 19:51:56 +02002715 # if $filter is rpovided, check if $path begins with $filter
2716 if ($filter && $path !~ m!^\Q$filter\E/!) {
2717 next;
Junio C Hamano83ee94c2006-11-07 22:37:17 -08002718 }
Junio C Hamano2172ce42006-10-03 02:30:47 -07002719 if (check_export_ok("$projectroot/$path")) {
Jakub Narebski717b8312006-07-31 21:22:15 +02002720 my $pr = {
2721 path => $path,
Martin Koegler00f429a2007-06-03 17:42:44 +02002722 owner => to_utf8($owner),
Jakub Narebski717b8312006-07-31 21:22:15 +02002723 };
Frank Lichtenheldc2b8b132007-04-06 23:58:11 +02002724 push @list, $pr;
Jakub Narebski717b8312006-07-31 21:22:15 +02002725 }
2726 }
2727 close $fd;
2728 }
Jakub Narebski717b8312006-07-31 21:22:15 +02002729 return @list;
2730}
2731
Jakub Narebski12b14432011-04-29 19:51:56 +02002732# written with help of Tree::Trie module (Perl Artistic License, GPL compatibile)
2733# as side effects it sets 'forks' field to list of forks for forked projects
2734sub filter_forks_from_projects_list {
2735 my $projects = shift;
2736
2737 my %trie; # prefix tree of directories (path components)
2738 # generate trie out of those directories that might contain forks
2739 foreach my $pr (@$projects) {
2740 my $path = $pr->{'path'};
2741 $path =~ s/\.git$//; # forks of 'repo.git' are in 'repo/' directory
2742 next if ($path =~ m!/$!); # skip non-bare repositories, e.g. 'repo/.git'
2743 next unless ($path); # skip '.git' repository: tests, git-instaweb
2744 next unless (-d $path); # containing directory exists
2745 $pr->{'forks'} = []; # there can be 0 or more forks of project
2746
2747 # add to trie
2748 my @dirs = split('/', $path);
2749 # walk the trie, until either runs out of components or out of trie
2750 my $ref = \%trie;
2751 while (scalar @dirs &&
2752 exists($ref->{$dirs[0]})) {
2753 $ref = $ref->{shift @dirs};
2754 }
2755 # create rest of trie structure from rest of components
2756 foreach my $dir (@dirs) {
2757 $ref = $ref->{$dir} = {};
2758 }
2759 # create end marker, store $pr as a data
2760 $ref->{''} = $pr if (!exists $ref->{''});
2761 }
2762
2763 # filter out forks, by finding shortest prefix match for paths
2764 my @filtered;
2765 PROJECT:
2766 foreach my $pr (@$projects) {
2767 # trie lookup
2768 my $ref = \%trie;
2769 DIR:
2770 foreach my $dir (split('/', $pr->{'path'})) {
2771 if (exists $ref->{''}) {
2772 # found [shortest] prefix, is a fork - skip it
2773 push @{$ref->{''}{'forks'}}, $pr;
2774 next PROJECT;
2775 }
2776 if (!exists $ref->{$dir}) {
2777 # not in trie, cannot have prefix, not a fork
2778 push @filtered, $pr;
2779 next PROJECT;
2780 }
2781 # If the dir is there, we just walk one step down the trie.
2782 $ref = $ref->{$dir};
2783 }
2784 # we ran out of trie
2785 # (shouldn't happen: it's either no match, or end marker)
2786 push @filtered, $pr;
2787 }
2788
2789 return @filtered;
2790}
2791
2792# note: fill_project_list_info must be run first,
2793# for 'descr_long' and 'ctags' to be filled
2794sub search_projects_list {
2795 my ($projlist, %opts) = @_;
2796 my $tagfilter = $opts{'tagfilter'};
2797 my $searchtext = $opts{'searchtext'};
2798
2799 return @$projlist
2800 unless ($tagfilter || $searchtext);
2801
2802 my @projects;
2803 PROJECT:
2804 foreach my $pr (@$projlist) {
2805
2806 if ($tagfilter) {
2807 next unless ref($pr->{'ctags'}) eq 'HASH';
2808 next unless
2809 grep { lc($_) eq lc($tagfilter) } keys %{$pr->{'ctags'}};
2810 }
2811
2812 if ($searchtext) {
2813 next unless
2814 $pr->{'path'} =~ /$searchtext/ ||
2815 $pr->{'descr_long'} =~ /$searchtext/;
2816 }
2817
2818 push @projects, $pr;
2819 }
2820
2821 return @projects;
2822}
2823
Junio C Hamano47852452007-07-03 22:10:42 -07002824our $gitweb_project_owner = undef;
2825sub git_get_project_list_from_file {
Jakub Narebski1e0cf032006-08-14 02:10:06 +02002826
Junio C Hamano47852452007-07-03 22:10:42 -07002827 return if (defined $gitweb_project_owner);
Jakub Narebski1e0cf032006-08-14 02:10:06 +02002828
Junio C Hamano47852452007-07-03 22:10:42 -07002829 $gitweb_project_owner = {};
Jakub Narebski1e0cf032006-08-14 02:10:06 +02002830 # read from file (url-encoded):
2831 # 'git%2Fgit.git Linus+Torvalds'
2832 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
2833 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
2834 if (-f $projects_list) {
Jakub Narebskidff2b6d2009-05-10 02:38:34 +02002835 open(my $fd, '<', $projects_list);
Jakub Narebski1e0cf032006-08-14 02:10:06 +02002836 while (my $line = <$fd>) {
2837 chomp $line;
2838 my ($pr, $ow) = split ' ', $line;
2839 $pr = unescape($pr);
2840 $ow = unescape($ow);
Junio C Hamano47852452007-07-03 22:10:42 -07002841 $gitweb_project_owner->{$pr} = to_utf8($ow);
Jakub Narebski1e0cf032006-08-14 02:10:06 +02002842 }
2843 close $fd;
2844 }
Junio C Hamano47852452007-07-03 22:10:42 -07002845}
2846
2847sub git_get_project_owner {
2848 my $project = shift;
2849 my $owner;
2850
2851 return undef unless $project;
Bruno Ribasb59012e2008-02-08 14:38:04 -02002852 $git_dir = "$projectroot/$project";
Junio C Hamano47852452007-07-03 22:10:42 -07002853
2854 if (!defined $gitweb_project_owner) {
2855 git_get_project_list_from_file();
2856 }
2857
2858 if (exists $gitweb_project_owner->{$project}) {
2859 $owner = $gitweb_project_owner->{$project};
2860 }
Bruno Ribasb59012e2008-02-08 14:38:04 -02002861 if (!defined $owner){
2862 $owner = git_get_project_config('owner');
2863 }
Jakub Narebski1e0cf032006-08-14 02:10:06 +02002864 if (!defined $owner) {
Bruno Ribasb59012e2008-02-08 14:38:04 -02002865 $owner = get_file_owner("$git_dir");
Jakub Narebski1e0cf032006-08-14 02:10:06 +02002866 }
2867
2868 return $owner;
2869}
2870
Jakub Narebskic60c56c2006-10-28 19:43:40 +02002871sub git_get_last_activity {
2872 my ($path) = @_;
2873 my $fd;
2874
2875 $git_dir = "$projectroot/$path";
2876 open($fd, "-|", git_cmd(), 'for-each-ref',
Robert Fitzsimons0ff5ec72006-12-22 19:38:13 +00002877 '--format=%(committer)',
Jakub Narebskic60c56c2006-10-28 19:43:40 +02002878 '--sort=-committerdate',
Robert Fitzsimons0ff5ec72006-12-22 19:38:13 +00002879 '--count=1',
Jakub Narebskic60c56c2006-10-28 19:43:40 +02002880 'refs/heads') or return;
2881 my $most_recent = <$fd>;
2882 close $fd or return;
Jakub Narebski785cdea2007-05-13 12:39:22 +02002883 if (defined $most_recent &&
2884 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
Jakub Narebskic60c56c2006-10-28 19:43:40 +02002885 my $timestamp = $1;
2886 my $age = time - $timestamp;
2887 return ($age, age_string($age));
2888 }
Matt McCutchenc9563952007-06-28 18:15:22 -04002889 return (undef, undef);
Jakub Narebskic60c56c2006-10-28 19:43:40 +02002890}
2891
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01002892# Implementation note: when a single remote is wanted, we cannot use 'git
2893# remote show -n' because that command always work (assuming it's a remote URL
2894# if it's not defined), and we cannot use 'git remote show' because that would
2895# try to make a network roundtrip. So the only way to find if that particular
2896# remote is defined is to walk the list provided by 'git remote -v' and stop if
2897# and when we find what we want.
2898sub git_get_remotes_list {
2899 my $wanted = shift;
2900 my %remotes = ();
2901
2902 open my $fd, '-|' , git_cmd(), 'remote', '-v';
2903 return unless $fd;
2904 while (my $remote = <$fd>) {
2905 chomp $remote;
2906 $remote =~ s!\t(.*?)\s+\((\w+)\)$!!;
2907 next if $wanted and not $remote eq $wanted;
2908 my ($url, $key) = ($1, $2);
2909
2910 $remotes{$remote} ||= { 'heads' => () };
2911 $remotes{$remote}{$key} = $url;
2912 }
2913 close $fd or return;
2914 return wantarray ? %remotes : \%remotes;
2915}
2916
2917# Takes a hash of remotes as first parameter and fills it by adding the
2918# available remote heads for each of the indicated remotes.
2919sub fill_remote_heads {
2920 my $remotes = shift;
2921 my @heads = map { "remotes/$_" } keys %$remotes;
2922 my @remoteheads = git_get_heads_list(undef, @heads);
2923 foreach my $remote (keys %$remotes) {
2924 $remotes->{$remote}{'heads'} = [ grep {
2925 $_->{'name'} =~ s!^$remote/!!
2926 } @remoteheads ];
2927 }
2928}
2929
Jakub Narebski847e01f2006-08-14 02:05:47 +02002930sub git_get_references {
Jakub Narebski717b8312006-07-31 21:22:15 +02002931 my $type = shift || "";
2932 my %refs;
Jakub Narebski28b9d9f2006-11-25 11:32:08 +01002933 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
2934 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
2935 open my $fd, "-|", git_cmd(), "show-ref", "--dereference",
2936 ($type ? ("--", "refs/$type") : ()) # use -- <pattern> if $type
Jakub Narebski9704d752006-09-19 14:31:49 +02002937 or return;
Jakub Narebskid294e1c2006-08-14 02:14:20 +02002938
Jakub Narebski717b8312006-07-31 21:22:15 +02002939 while (my $line = <$fd>) {
2940 chomp $line;
Giuseppe Bilotta4afbaef2008-09-02 21:47:05 +02002941 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {
Jakub Narebski717b8312006-07-31 21:22:15 +02002942 if (defined $refs{$1}) {
Jakub Narebskid294e1c2006-08-14 02:14:20 +02002943 push @{$refs{$1}}, $2;
Jakub Narebski717b8312006-07-31 21:22:15 +02002944 } else {
Jakub Narebskid294e1c2006-08-14 02:14:20 +02002945 $refs{$1} = [ $2 ];
Jakub Narebski717b8312006-07-31 21:22:15 +02002946 }
2947 }
2948 }
2949 close $fd or return;
2950 return \%refs;
2951}
2952
Jakub Narebski56a322f2006-08-24 19:41:23 +02002953sub git_get_rev_name_tags {
2954 my $hash = shift || return undef;
2955
Dennis Stosberg25691fb2006-08-28 17:49:58 +02002956 open my $fd, "-|", git_cmd(), "name-rev", "--tags", $hash
Jakub Narebski56a322f2006-08-24 19:41:23 +02002957 or return;
2958 my $name_rev = <$fd>;
2959 close $fd;
2960
2961 if ($name_rev =~ m|^$hash tags/(.*)$|) {
2962 return $1;
2963 } else {
2964 # catches also '$hash undefined' output
2965 return undef;
2966 }
2967}
2968
Jakub Narebski717b8312006-07-31 21:22:15 +02002969## ----------------------------------------------------------------------
2970## parse to hash functions
2971
Jakub Narebski847e01f2006-08-14 02:05:47 +02002972sub parse_date {
Jakub Narebski717b8312006-07-31 21:22:15 +02002973 my $epoch = shift;
2974 my $tz = shift || "-0000";
2975
2976 my %date;
2977 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
2978 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
2979 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
2980 $date{'hour'} = $hour;
2981 $date{'minute'} = $min;
2982 $date{'mday'} = $mday;
2983 $date{'day'} = $days[$wday];
2984 $date{'month'} = $months[$mon];
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01002985 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
2986 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
Jakub Narebski952c65f2006-08-22 16:52:50 +02002987 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
2988 $mday, $months[$mon], $hour ,$min;
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01002989 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
Vincent Zanottia62d6d82007-11-10 19:55:27 +01002990 1900+$year, 1+$mon, $mday, $hour ,$min, $sec;
Jakub Narebski717b8312006-07-31 21:22:15 +02002991
Jakub Narebski2b1e1722011-03-25 20:20:49 +01002992 my ($tz_sign, $tz_hour, $tz_min) =
2993 ($tz =~ m/^([-+])(\d\d)(\d\d)$/);
2994 $tz_sign = ($tz_sign eq '-' ? -1 : +1);
2995 my $local = $epoch + $tz_sign*((($tz_hour*60) + $tz_min)*60);
Jakub Narebski717b8312006-07-31 21:22:15 +02002996 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
2997 $date{'hour_local'} = $hour;
2998 $date{'minute_local'} = $min;
2999 $date{'tz_local'} = $tz;
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01003000 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
3001 1900+$year, $mon+1, $mday,
3002 $hour, $min, $sec, $tz);
Jakub Narebski717b8312006-07-31 21:22:15 +02003003 return %date;
3004}
3005
Jakub Narebski847e01f2006-08-14 02:05:47 +02003006sub parse_tag {
Jakub Narebski717b8312006-07-31 21:22:15 +02003007 my $tag_id = shift;
3008 my %tag;
3009 my @comment;
3010
Dennis Stosberg25691fb2006-08-28 17:49:58 +02003011 open my $fd, "-|", git_cmd(), "cat-file", "tag", $tag_id or return;
Jakub Narebski717b8312006-07-31 21:22:15 +02003012 $tag{'id'} = $tag_id;
3013 while (my $line = <$fd>) {
3014 chomp $line;
3015 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
3016 $tag{'object'} = $1;
3017 } elsif ($line =~ m/^type (.+)$/) {
3018 $tag{'type'} = $1;
3019 } elsif ($line =~ m/^tag (.+)$/) {
3020 $tag{'name'} = $1;
3021 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
3022 $tag{'author'} = $1;
Giuseppe Bilottaba924732009-06-30 00:00:50 +02003023 $tag{'author_epoch'} = $2;
3024 $tag{'author_tz'} = $3;
3025 if ($tag{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3026 $tag{'author_name'} = $1;
3027 $tag{'author_email'} = $2;
3028 } else {
3029 $tag{'author_name'} = $tag{'author'};
3030 }
Jakub Narebski717b8312006-07-31 21:22:15 +02003031 } elsif ($line =~ m/--BEGIN/) {
3032 push @comment, $line;
3033 last;
3034 } elsif ($line eq "") {
3035 last;
3036 }
3037 }
3038 push @comment, <$fd>;
3039 $tag{'comment'} = \@comment;
3040 close $fd or return;
3041 if (!defined $tag{'name'}) {
3042 return
3043 };
3044 return %tag
3045}
3046
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003047sub parse_commit_text {
Robert Fitzsimonsccdfdea2006-12-27 14:22:21 +00003048 my ($commit_text, $withparents) = @_;
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003049 my @commit_lines = split '\n', $commit_text;
Jakub Narebski717b8312006-07-31 21:22:15 +02003050 my %co;
3051
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003052 pop @commit_lines; # Remove '\0'
3053
Jakub Narebski198a2a82007-05-12 21:16:34 +02003054 if (! @commit_lines) {
3055 return;
3056 }
3057
Jakub Narebski717b8312006-07-31 21:22:15 +02003058 my $header = shift @commit_lines;
Jakub Narebski198a2a82007-05-12 21:16:34 +02003059 if ($header !~ m/^[0-9a-fA-F]{40}/) {
Jakub Narebski717b8312006-07-31 21:22:15 +02003060 return;
3061 }
Robert Fitzsimonsccdfdea2006-12-27 14:22:21 +00003062 ($co{'id'}, my @parents) = split ' ', $header;
Jakub Narebski717b8312006-07-31 21:22:15 +02003063 while (my $line = shift @commit_lines) {
3064 last if $line eq "\n";
3065 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
3066 $co{'tree'} = $1;
Robert Fitzsimonsccdfdea2006-12-27 14:22:21 +00003067 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
Robert Fitzsimons208b2df2006-12-24 14:31:43 +00003068 push @parents, $1;
Jakub Narebski717b8312006-07-31 21:22:15 +02003069 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
Zoltán Füzesi5ed5bbc2009-08-02 09:42:24 +02003070 $co{'author'} = to_utf8($1);
Jakub Narebski717b8312006-07-31 21:22:15 +02003071 $co{'author_epoch'} = $2;
3072 $co{'author_tz'} = $3;
Jakub Narebskiba00b8c2006-11-25 15:54:32 +01003073 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3074 $co{'author_name'} = $1;
3075 $co{'author_email'} = $2;
Jakub Narebski717b8312006-07-31 21:22:15 +02003076 } else {
3077 $co{'author_name'} = $co{'author'};
3078 }
3079 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
Zoltán Füzesi5ed5bbc2009-08-02 09:42:24 +02003080 $co{'committer'} = to_utf8($1);
Jakub Narebski717b8312006-07-31 21:22:15 +02003081 $co{'committer_epoch'} = $2;
3082 $co{'committer_tz'} = $3;
Jakub Narebskiba00b8c2006-11-25 15:54:32 +01003083 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
3084 $co{'committer_name'} = $1;
3085 $co{'committer_email'} = $2;
3086 } else {
3087 $co{'committer_name'} = $co{'committer'};
3088 }
Jakub Narebski717b8312006-07-31 21:22:15 +02003089 }
3090 }
3091 if (!defined $co{'tree'}) {
3092 return;
3093 };
Robert Fitzsimons208b2df2006-12-24 14:31:43 +00003094 $co{'parents'} = \@parents;
3095 $co{'parent'} = $parents[0];
Jakub Narebski717b8312006-07-31 21:22:15 +02003096
3097 foreach my $title (@commit_lines) {
3098 $title =~ s/^ //;
3099 if ($title ne "") {
3100 $co{'title'} = chop_str($title, 80, 5);
3101 # remove leading stuff of merges to make the interesting part visible
3102 if (length($title) > 50) {
3103 $title =~ s/^Automatic //;
3104 $title =~ s/^merge (of|with) /Merge ... /i;
3105 if (length($title) > 50) {
3106 $title =~ s/(http|rsync):\/\///;
3107 }
3108 if (length($title) > 50) {
3109 $title =~ s/(master|www|rsync)\.//;
3110 }
3111 if (length($title) > 50) {
3112 $title =~ s/kernel.org:?//;
3113 }
3114 if (length($title) > 50) {
3115 $title =~ s/\/pub\/scm//;
3116 }
3117 }
3118 $co{'title_short'} = chop_str($title, 50, 5);
3119 last;
3120 }
3121 }
Joey Hess53c39672008-09-05 14:26:29 -04003122 if (! defined $co{'title'} || $co{'title'} eq "") {
Petr Baudis7e0fe5c2006-10-06 18:55:04 +02003123 $co{'title'} = $co{'title_short'} = '(no commit message)';
3124 }
Jakub Narebski717b8312006-07-31 21:22:15 +02003125 # remove added spaces
3126 foreach my $line (@commit_lines) {
3127 $line =~ s/^ //;
3128 }
3129 $co{'comment'} = \@commit_lines;
3130
3131 my $age = time - $co{'committer_epoch'};
3132 $co{'age'} = $age;
3133 $co{'age_string'} = age_string($age);
3134 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
3135 if ($age > 60*60*24*7*2) {
3136 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3137 $co{'age_string_age'} = $co{'age_string'};
3138 } else {
3139 $co{'age_string_date'} = $co{'age_string'};
3140 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3141 }
3142 return %co;
3143}
3144
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003145sub parse_commit {
3146 my ($commit_id) = @_;
3147 my %co;
3148
3149 local $/ = "\0";
3150
3151 open my $fd, "-|", git_cmd(), "rev-list",
Robert Fitzsimonsccdfdea2006-12-27 14:22:21 +00003152 "--parents",
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003153 "--header",
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003154 "--max-count=1",
3155 $commit_id,
3156 "--",
Lea Wiemann074afaa2008-06-19 22:03:21 +02003157 or die_error(500, "Open git-rev-list failed");
Robert Fitzsimonsccdfdea2006-12-27 14:22:21 +00003158 %co = parse_commit_text(<$fd>, 1);
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003159 close $fd;
3160
3161 return %co;
3162}
3163
3164sub parse_commits {
Jakub Narebski311e5522008-02-26 13:22:06 +01003165 my ($commit_id, $maxcount, $skip, $filename, @args) = @_;
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003166 my @cos;
3167
3168 $maxcount ||= 1;
3169 $skip ||= 0;
3170
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003171 local $/ = "\0";
3172
3173 open my $fd, "-|", git_cmd(), "rev-list",
3174 "--header",
Jakub Narebski311e5522008-02-26 13:22:06 +01003175 @args,
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003176 ("--max-count=" . $maxcount),
Robert Fitzsimonsf47efbb2006-12-24 14:31:49 +00003177 ("--skip=" . $skip),
Miklos Vajna868bc062007-07-12 20:39:27 +02003178 @extra_options,
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003179 $commit_id,
3180 "--",
3181 ($filename ? ($filename) : ())
Lea Wiemann074afaa2008-06-19 22:03:21 +02003182 or die_error(500, "Open git-rev-list failed");
Robert Fitzsimons756bbf52006-12-24 14:31:42 +00003183 while (my $line = <$fd>) {
3184 my %co = parse_commit_text($line);
3185 push @cos, \%co;
3186 }
3187 close $fd;
3188
3189 return wantarray ? @cos : \@cos;
3190}
3191
Jakub Narebskie8e41a92006-08-21 23:08:52 +02003192# parse line of git-diff-tree "raw" output
Jakub Narebski740e67f2006-08-21 23:07:00 +02003193sub parse_difftree_raw_line {
3194 my $line = shift;
3195 my %res;
3196
3197 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
3198 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
3199 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
3200 $res{'from_mode'} = $1;
3201 $res{'to_mode'} = $2;
3202 $res{'from_id'} = $3;
3203 $res{'to_id'} = $4;
Jakub Narebski4ed4a342008-04-05 21:13:24 +01003204 $res{'status'} = $5;
Jakub Narebski740e67f2006-08-21 23:07:00 +02003205 $res{'similarity'} = $6;
3206 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
Jakub Narebskie8e41a92006-08-21 23:08:52 +02003207 ($res{'from_file'}, $res{'to_file'}) = map { unquote($_) } split("\t", $7);
Jakub Narebski740e67f2006-08-21 23:07:00 +02003208 } else {
Jakub Narebski9d301452007-11-01 12:38:08 +01003209 $res{'from_file'} = $res{'to_file'} = $res{'file'} = unquote($7);
Jakub Narebski740e67f2006-08-21 23:07:00 +02003210 }
3211 }
Jakub Narebski78bc4032007-05-07 01:10:03 +02003212 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
3213 # combined diff (for merge commit)
3214 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
3215 $res{'nparents'} = length($1);
3216 $res{'from_mode'} = [ split(' ', $2) ];
3217 $res{'to_mode'} = pop @{$res{'from_mode'}};
3218 $res{'from_id'} = [ split(' ', $3) ];
3219 $res{'to_id'} = pop @{$res{'from_id'}};
3220 $res{'status'} = [ split('', $4) ];
3221 $res{'to_file'} = unquote($5);
3222 }
Jakub Narebski740e67f2006-08-21 23:07:00 +02003223 # 'c512b523472485aef4fff9e57b229d9d243c967f'
Jakub Narebski0edcb372006-08-31 00:36:04 +02003224 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
3225 $res{'commit'} = $1;
3226 }
Jakub Narebski740e67f2006-08-21 23:07:00 +02003227
3228 return wantarray ? %res : \%res;
3229}
3230
Jakub Narebski0cec6db2007-10-30 01:35:05 +01003231# wrapper: return parsed line of git-diff-tree "raw" output
3232# (the argument might be raw line, or parsed info)
3233sub parsed_difftree_line {
3234 my $line_or_ref = shift;
3235
3236 if (ref($line_or_ref) eq "HASH") {
3237 # pre-parsed (or generated by hand)
3238 return $line_or_ref;
3239 } else {
3240 return parse_difftree_raw_line($line_or_ref);
3241 }
3242}
3243
Jakub Narebskicb849b42006-08-31 00:32:15 +02003244# parse line of git-ls-tree output
Jakub Narebski74fd8722009-05-07 19:11:29 +02003245sub parse_ls_tree_line {
Jakub Narebskicb849b42006-08-31 00:32:15 +02003246 my $line = shift;
3247 my %opts = @_;
3248 my %res;
3249
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02003250 if ($opts{'-l'}) {
3251 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'
3252 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;
Jakub Narebskicb849b42006-08-31 00:32:15 +02003253
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02003254 $res{'mode'} = $1;
3255 $res{'type'} = $2;
3256 $res{'hash'} = $3;
3257 $res{'size'} = $4;
3258 if ($opts{'-z'}) {
3259 $res{'name'} = $5;
3260 } else {
3261 $res{'name'} = unquote($5);
3262 }
Jakub Narebskicb849b42006-08-31 00:32:15 +02003263 } else {
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02003264 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
3265 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
3266
3267 $res{'mode'} = $1;
3268 $res{'type'} = $2;
3269 $res{'hash'} = $3;
3270 if ($opts{'-z'}) {
3271 $res{'name'} = $4;
3272 } else {
3273 $res{'name'} = unquote($4);
3274 }
Jakub Narebskicb849b42006-08-31 00:32:15 +02003275 }
3276
3277 return wantarray ? %res : \%res;
3278}
3279
Jakub Narebski90921742007-06-08 13:27:42 +02003280# generates _two_ hashes, references to which are passed as 2 and 3 argument
3281sub parse_from_to_diffinfo {
3282 my ($diffinfo, $from, $to, @parents) = @_;
3283
3284 if ($diffinfo->{'nparents'}) {
3285 # combined diff
3286 $from->{'file'} = [];
3287 $from->{'href'} = [];
3288 fill_from_file_info($diffinfo, @parents)
3289 unless exists $diffinfo->{'from_file'};
3290 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
Jakub Narebski9d301452007-11-01 12:38:08 +01003291 $from->{'file'}[$i] =
3292 defined $diffinfo->{'from_file'}[$i] ?
3293 $diffinfo->{'from_file'}[$i] :
3294 $diffinfo->{'to_file'};
Jakub Narebski90921742007-06-08 13:27:42 +02003295 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
3296 $from->{'href'}[$i] = href(action=>"blob",
3297 hash_base=>$parents[$i],
3298 hash=>$diffinfo->{'from_id'}[$i],
3299 file_name=>$from->{'file'}[$i]);
3300 } else {
3301 $from->{'href'}[$i] = undef;
3302 }
3303 }
3304 } else {
Jakub Narebski0cec6db2007-10-30 01:35:05 +01003305 # ordinary (not combined) diff
Jakub Narebski9d301452007-11-01 12:38:08 +01003306 $from->{'file'} = $diffinfo->{'from_file'};
Jakub Narebski90921742007-06-08 13:27:42 +02003307 if ($diffinfo->{'status'} ne "A") { # not new (added) file
3308 $from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,
3309 hash=>$diffinfo->{'from_id'},
3310 file_name=>$from->{'file'});
3311 } else {
3312 delete $from->{'href'};
3313 }
3314 }
3315
Jakub Narebski9d301452007-11-01 12:38:08 +01003316 $to->{'file'} = $diffinfo->{'to_file'};
Jakub Narebski90921742007-06-08 13:27:42 +02003317 if (!is_deleted($diffinfo)) { # file exists in result
3318 $to->{'href'} = href(action=>"blob", hash_base=>$hash,
3319 hash=>$diffinfo->{'to_id'},
3320 file_name=>$to->{'file'});
3321 } else {
3322 delete $to->{'href'};
3323 }
3324}
3325
Jakub Narebski717b8312006-07-31 21:22:15 +02003326## ......................................................................
3327## parse to array of hashes functions
3328
Jakub Narebskicd146402006-11-02 20:23:11 +01003329sub git_get_heads_list {
Giuseppe Bilotta9b3f3de2010-11-11 13:26:10 +01003330 my ($limit, @classes) = @_;
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +01003331 @classes = ('heads') unless @classes;
Giuseppe Bilotta9b3f3de2010-11-11 13:26:10 +01003332 my @patterns = map { "refs/$_" } @classes;
Jakub Narebskicd146402006-11-02 20:23:11 +01003333 my @headslist;
Jakub Narebski717b8312006-07-31 21:22:15 +02003334
Jakub Narebskicd146402006-11-02 20:23:11 +01003335 open my $fd, '-|', git_cmd(), 'for-each-ref',
3336 ($limit ? '--count='.($limit+1) : ()), '--sort=-committerdate',
3337 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
Giuseppe Bilotta9b3f3de2010-11-11 13:26:10 +01003338 @patterns
Jakub Narebskic83a77e2006-09-15 03:43:28 +02003339 or return;
3340 while (my $line = <$fd>) {
Jakub Narebskicd146402006-11-02 20:23:11 +01003341 my %ref_item;
Jakub Narebski120ddde2006-09-19 14:33:22 +02003342
Jakub Narebskicd146402006-11-02 20:23:11 +01003343 chomp $line;
3344 my ($refinfo, $committerinfo) = split(/\0/, $line);
3345 my ($hash, $name, $title) = split(' ', $refinfo, 3);
3346 my ($committer, $epoch, $tz) =
3347 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
Jakub Narebskibf901f82007-12-15 15:40:28 +01003348 $ref_item{'fullname'} = $name;
Giuseppe Bilotta60efa242010-11-11 13:26:09 +01003349 $name =~ s!^refs/(?:head|remote)s/!!;
Jakub Narebskicd146402006-11-02 20:23:11 +01003350
3351 $ref_item{'name'} = $name;
3352 $ref_item{'id'} = $hash;
3353 $ref_item{'title'} = $title || '(no commit message)';
3354 $ref_item{'epoch'} = $epoch;
3355 if ($epoch) {
3356 $ref_item{'age'} = age_string(time - $ref_item{'epoch'});
3357 } else {
3358 $ref_item{'age'} = "unknown";
Jakub Narebski717b8312006-07-31 21:22:15 +02003359 }
Jakub Narebskicd146402006-11-02 20:23:11 +01003360
3361 push @headslist, \%ref_item;
Jakub Narebskic83a77e2006-09-15 03:43:28 +02003362 }
3363 close $fd;
Junio C Hamano7a13b992006-07-31 19:18:34 -07003364
Jakub Narebskicd146402006-11-02 20:23:11 +01003365 return wantarray ? @headslist : \@headslist;
3366}
Jakub Narebskic83a77e2006-09-15 03:43:28 +02003367
Jakub Narebskicd146402006-11-02 20:23:11 +01003368sub git_get_tags_list {
3369 my $limit = shift;
3370 my @tagslist;
Jakub Narebski717b8312006-07-31 21:22:15 +02003371
Jakub Narebskicd146402006-11-02 20:23:11 +01003372 open my $fd, '-|', git_cmd(), 'for-each-ref',
3373 ($limit ? '--count='.($limit+1) : ()), '--sort=-creatordate',
3374 '--format=%(objectname) %(objecttype) %(refname) '.
3375 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
3376 'refs/tags'
3377 or return;
3378 while (my $line = <$fd>) {
3379 my %ref_item;
3380
3381 chomp $line;
3382 my ($refinfo, $creatorinfo) = split(/\0/, $line);
3383 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
3384 my ($creator, $epoch, $tz) =
3385 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
Jakub Narebskibf901f82007-12-15 15:40:28 +01003386 $ref_item{'fullname'} = $name;
Jakub Narebskicd146402006-11-02 20:23:11 +01003387 $name =~ s!^refs/tags/!!;
3388
3389 $ref_item{'type'} = $type;
3390 $ref_item{'id'} = $id;
3391 $ref_item{'name'} = $name;
3392 if ($type eq "tag") {
3393 $ref_item{'subject'} = $title;
3394 $ref_item{'reftype'} = $reftype;
3395 $ref_item{'refid'} = $refid;
3396 } else {
3397 $ref_item{'reftype'} = $type;
3398 $ref_item{'refid'} = $id;
3399 }
3400
3401 if ($type eq "tag" || $type eq "commit") {
3402 $ref_item{'epoch'} = $epoch;
3403 if ($epoch) {
3404 $ref_item{'age'} = age_string(time - $ref_item{'epoch'});
3405 } else {
3406 $ref_item{'age'} = "unknown";
3407 }
3408 }
3409
3410 push @tagslist, \%ref_item;
Jakub Narebski717b8312006-07-31 21:22:15 +02003411 }
Jakub Narebskicd146402006-11-02 20:23:11 +01003412 close $fd;
3413
3414 return wantarray ? @tagslist : \@tagslist;
Jakub Narebski717b8312006-07-31 21:22:15 +02003415}
3416
3417## ----------------------------------------------------------------------
3418## filesystem-related functions
3419
3420sub get_file_owner {
3421 my $path = shift;
3422
3423 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
3424 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
3425 if (!defined $gcos) {
3426 return undef;
3427 }
3428 my $owner = $gcos;
3429 $owner =~ s/[,;].*$//;
Martin Koegler00f429a2007-06-03 17:42:44 +02003430 return to_utf8($owner);
Jakub Narebski717b8312006-07-31 21:22:15 +02003431}
3432
Jakub Narebski2dcb5e12008-12-01 19:01:42 +01003433# assume that file exists
3434sub insert_file {
3435 my $filename = shift;
3436
3437 open my $fd, '<', $filename;
Jakub Narebski45868642008-12-08 14:13:21 +01003438 print map { to_utf8($_) } <$fd>;
Jakub Narebski2dcb5e12008-12-01 19:01:42 +01003439 close $fd;
3440}
3441
Jakub Narebski717b8312006-07-31 21:22:15 +02003442## ......................................................................
3443## mimetype related functions
3444
3445sub mimetype_guess_file {
3446 my $filename = shift;
3447 my $mimemap = shift;
3448 -r $mimemap or return undef;
3449
3450 my %mimemap;
Jakub Narebskidff2b6d2009-05-10 02:38:34 +02003451 open(my $mh, '<', $mimemap) or return undef;
Jakub Narebskiad87e4f2009-05-11 03:21:06 +02003452 while (<$mh>) {
Jakub Narebski618918e2006-08-14 02:15:22 +02003453 next if m/^#/; # skip comments
Jakub Narebskiad87e4f2009-05-11 03:21:06 +02003454 my ($mimetype, $exts) = split(/\t+/);
Junio C Hamano46b059d2006-07-31 19:24:37 -07003455 if (defined $exts) {
3456 my @exts = split(/\s+/, $exts);
3457 foreach my $ext (@exts) {
Jakub Narebskiad87e4f2009-05-11 03:21:06 +02003458 $mimemap{$ext} = $mimetype;
Junio C Hamano46b059d2006-07-31 19:24:37 -07003459 }
Jakub Narebski717b8312006-07-31 21:22:15 +02003460 }
3461 }
Jakub Narebskiad87e4f2009-05-11 03:21:06 +02003462 close($mh);
Jakub Narebski717b8312006-07-31 21:22:15 +02003463
Jakub Narebski80593192006-09-19 13:57:03 +02003464 $filename =~ /\.([^.]*)$/;
Jakub Narebski717b8312006-07-31 21:22:15 +02003465 return $mimemap{$1};
3466}
3467
3468sub mimetype_guess {
3469 my $filename = shift;
3470 my $mime;
3471 $filename =~ /\./ or return undef;
3472
3473 if ($mimetypes_file) {
3474 my $file = $mimetypes_file;
Jakub Narebskid5aa50d2006-08-14 02:16:33 +02003475 if ($file !~ m!^/!) { # if it is relative path
3476 # it is relative to project
3477 $file = "$projectroot/$project/$file";
3478 }
Jakub Narebski717b8312006-07-31 21:22:15 +02003479 $mime = mimetype_guess_file($filename, $file);
3480 }
3481 $mime ||= mimetype_guess_file($filename, '/etc/mime.types');
3482 return $mime;
3483}
3484
Jakub Narebski847e01f2006-08-14 02:05:47 +02003485sub blob_mimetype {
Jakub Narebski717b8312006-07-31 21:22:15 +02003486 my $fd = shift;
3487 my $filename = shift;
3488
3489 if ($filename) {
3490 my $mime = mimetype_guess($filename);
3491 $mime and return $mime;
3492 }
3493
3494 # just in case
3495 return $default_blob_plain_mimetype unless $fd;
3496
3497 if (-T $fd) {
Jakub Narebski7f718e82008-06-03 16:47:10 +02003498 return 'text/plain';
Jakub Narebski717b8312006-07-31 21:22:15 +02003499 } elsif (! $filename) {
3500 return 'application/octet-stream';
3501 } elsif ($filename =~ m/\.png$/i) {
3502 return 'image/png';
3503 } elsif ($filename =~ m/\.gif$/i) {
3504 return 'image/gif';
3505 } elsif ($filename =~ m/\.jpe?g$/i) {
3506 return 'image/jpeg';
3507 } else {
3508 return 'application/octet-stream';
3509 }
3510}
3511
Jakub Narebski7f718e82008-06-03 16:47:10 +02003512sub blob_contenttype {
3513 my ($fd, $file_name, $type) = @_;
3514
3515 $type ||= blob_mimetype($fd, $file_name);
3516 if ($type eq 'text/plain' && defined $default_text_plain_charset) {
3517 $type .= "; charset=$default_text_plain_charset";
3518 }
3519
3520 return $type;
3521}
3522
Jakub Narebski592ea412010-04-27 21:34:45 +02003523# guess file syntax for syntax highlighting; return undef if no highlighting
3524# the name of syntax can (in the future) depend on syntax highlighter used
3525sub guess_file_syntax {
3526 my ($highlight, $mimetype, $file_name) = @_;
3527 return undef unless ($highlight && defined $file_name);
Jakub Narebski592ea412010-04-27 21:34:45 +02003528 my $basename = basename($file_name, '.in');
3529 return $highlight_basename{$basename}
3530 if exists $highlight_basename{$basename};
3531
3532 $basename =~ /\.([^.]*)$/;
3533 my $ext = $1 or return undef;
3534 return $highlight_ext{$ext}
3535 if exists $highlight_ext{$ext};
3536
3537 return undef;
3538}
3539
3540# run highlighter and return FD of its output,
3541# or return original FD if no highlighting
3542sub run_highlighter {
3543 my ($fd, $highlight, $syntax) = @_;
3544 return $fd unless ($highlight && defined $syntax);
3545
Sylvain Rabot3ca73532010-12-30 22:20:29 +01003546 close $fd;
Jakub Narebski592ea412010-04-27 21:34:45 +02003547 open $fd, quote_command(git_cmd(), "cat-file", "blob", $hash)." | ".
Christopher Wilson7ce896b2010-09-21 00:25:19 -07003548 quote_command($highlight_bin).
Kevin Cernekee6affdbe2011-03-16 15:34:13 -07003549 " --replace-tabs=8 --fragment --syntax $syntax |"
Jakub Narebski592ea412010-04-27 21:34:45 +02003550 or die_error(500, "Couldn't open file or run syntax highlighter");
3551 return $fd;
3552}
3553
Jakub Narebski717b8312006-07-31 21:22:15 +02003554## ======================================================================
3555## functions printing HTML: header, footer, error page
3556
Jakub Narebskiefb2d0c2010-04-24 16:01:10 +02003557sub get_page_title {
3558 my $title = to_utf8($site_name);
3559
3560 return $title unless (defined $project);
3561 $title .= " - " . to_utf8($project);
3562
3563 return $title unless (defined $action);
3564 $title .= "/$action"; # $action is US-ASCII (7bit ASCII)
3565
3566 return $title unless (defined $file_name);
3567 $title .= " - " . esc_path($file_name);
3568 if ($action eq "tree" && $file_name !~ m|/$|) {
3569 $title .= "/";
3570 }
3571
3572 return $title;
3573}
3574
Jakub Narebski05bb5a22010-12-18 21:02:13 +01003575sub print_feed_meta {
3576 if (defined $project) {
3577 my %href_params = get_feed_info();
3578 if (!exists $href_params{'-title'}) {
3579 $href_params{'-title'} = 'log';
3580 }
3581
Ævar Arnfjörð Bjarmason0f54b7d2011-02-19 15:27:41 +00003582 foreach my $format (qw(RSS Atom)) {
Jakub Narebski05bb5a22010-12-18 21:02:13 +01003583 my $type = lc($format);
3584 my %link_attr = (
3585 '-rel' => 'alternate',
3586 '-title' => esc_attr("$project - $href_params{'-title'} - $format feed"),
3587 '-type' => "application/$type+xml"
3588 );
3589
3590 $href_params{'action'} = $type;
3591 $link_attr{'-href'} = href(%href_params);
3592 print "<link ".
3593 "rel=\"$link_attr{'-rel'}\" ".
3594 "title=\"$link_attr{'-title'}\" ".
3595 "href=\"$link_attr{'-href'}\" ".
3596 "type=\"$link_attr{'-type'}\" ".
3597 "/>\n";
3598
3599 $href_params{'extra_options'} = '--no-merges';
3600 $link_attr{'-href'} = href(%href_params);
3601 $link_attr{'-title'} .= ' (no merges)';
3602 print "<link ".
3603 "rel=\"$link_attr{'-rel'}\" ".
3604 "title=\"$link_attr{'-title'}\" ".
3605 "href=\"$link_attr{'-href'}\" ".
3606 "type=\"$link_attr{'-type'}\" ".
3607 "/>\n";
3608 }
3609
3610 } else {
3611 printf('<link rel="alternate" title="%s projects list" '.
3612 'href="%s" type="text/plain; charset=utf-8" />'."\n",
3613 esc_attr($site_name), href(project=>undef, action=>"project_index"));
3614 printf('<link rel="alternate" title="%s projects feeds" '.
3615 'href="%s" type="text/x-opml" />'."\n",
3616 esc_attr($site_name), href(project=>undef, action=>"opml"));
3617 }
3618}
3619
Kay Sievers12a88f22005-08-07 20:02:47 +02003620sub git_header_html {
Kay Sieversa59d4af2005-08-07 20:15:44 +02003621 my $status = shift || "200 OK";
Kay Sievers11044292005-10-19 03:18:45 +02003622 my $expires = shift;
Jakub Narebski7a597452010-04-24 16:00:04 +02003623 my %opts = @_;
Kay Sieversa59d4af2005-08-07 20:15:44 +02003624
Jakub Narebskiefb2d0c2010-04-24 16:01:10 +02003625 my $title = get_page_title();
Alp Tokerf6801d62006-07-11 11:19:34 +01003626 my $content_type;
3627 # require explicit support from the UA if we are to send the page as
3628 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
3629 # we have to do this because MSIE sometimes globs '*/*', pretending to
3630 # support xhtml+xml but choking when it gets what it asked for.
Jakub Narebski952c65f2006-08-22 16:52:50 +02003631 if (defined $cgi->http('HTTP_ACCEPT') &&
3632 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&
3633 $cgi->Accept('application/xhtml+xml') != 0) {
Alp Tokerf6801d62006-07-11 11:19:34 +01003634 $content_type = 'application/xhtml+xml';
3635 } else {
3636 $content_type = 'text/html';
3637 }
Jakub Narebski952c65f2006-08-22 16:52:50 +02003638 print $cgi->header(-type=>$content_type, -charset => 'utf-8',
Jakub Narebski7a597452010-04-24 16:00:04 +02003639 -status=> $status, -expires => $expires)
Jakub Narebskiad709ea2010-06-13 00:35:59 +02003640 unless ($opts{'-no_http_header'});
Jakub Narebski45c9a752006-12-27 23:59:51 +01003641 my $mod_perl_version = $ENV{'MOD_PERL'} ? " $ENV{'MOD_PERL'}" : '';
Kay Sieversa59d4af2005-08-07 20:15:44 +02003642 print <<EOF;
Kay Sievers6191f8e2005-08-07 20:19:56 +02003643<?xml version="1.0" encoding="utf-8"?>
Kay Sievers161332a2005-08-07 19:49:46 +02003644<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Kay Sievers034df392005-08-07 20:20:07 +02003645<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
Jakub Narebskid4baf9e2006-08-17 11:21:28 +02003646<!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
Jakub Narebskiae20de52006-06-21 09:48:03 +02003647<!-- git core binaries version $git_version -->
Kay Sievers161332a2005-08-07 19:49:46 +02003648<head>
Alp Tokerf6801d62006-07-11 11:19:34 +01003649<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
Jakub Narebski45c9a752006-12-27 23:59:51 +01003650<meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
Kay Sieversc994d622005-08-07 20:27:18 +02003651<meta name="robots" content="index, nofollow"/>
Kay Sieversb87d78d2005-08-07 20:21:04 +02003652<title>$title</title>
Kay Sievers161332a2005-08-07 19:49:46 +02003653EOF
Giuseppe Bilotta41a4d162009-01-31 02:31:52 +01003654 # the stylesheet, favicon etc urls won't work correctly with path_info
3655 # unless we set the appropriate base URL
Giuseppe Bilottac3254ae2009-01-31 02:31:50 +01003656 if ($ENV{'PATH_INFO'}) {
Giuseppe Bilotta81d3fe92009-02-15 10:18:36 +01003657 print "<base href=\"".esc_url($base_url)."\" />\n";
Giuseppe Bilottac3254ae2009-01-31 02:31:50 +01003658 }
Giuseppe Bilotta41a4d162009-01-31 02:31:52 +01003659 # print out each stylesheet that exist, providing backwards capability
3660 # for those people who defined $stylesheet in a config file
Alan Chandlerb2d34762006-10-03 13:49:03 +01003661 if (defined $stylesheet) {
Jakub Narebski3017ed62010-12-15 00:34:01 +01003662 print '<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";
Alan Chandlerb2d34762006-10-03 13:49:03 +01003663 } else {
3664 foreach my $stylesheet (@stylesheets) {
3665 next unless $stylesheet;
Jakub Narebski3017ed62010-12-15 00:34:01 +01003666 print '<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";
Alan Chandlerb2d34762006-10-03 13:49:03 +01003667 }
3668 }
Jakub Narebski05bb5a22010-12-18 21:02:13 +01003669 print_feed_meta()
3670 if ($status eq '200 OK');
Jakub Narebski0b5deba2006-09-04 20:32:13 +02003671 if (defined $favicon) {
Jakub Narebski3017ed62010-12-15 00:34:01 +01003672 print qq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);
Jakub Narebski0b5deba2006-09-04 20:32:13 +02003673 }
Jakub Narebski10161352006-08-05 13:18:58 +02003674
Matthias Lederhoferdd04c422006-08-06 13:25:41 +02003675 print "</head>\n" .
Alan Chandlerb2d34762006-10-03 13:49:03 +01003676 "<body>\n";
3677
John 'Warthog9' Hawley24d4afc2010-01-30 23:30:41 +01003678 if (defined $site_header && -f $site_header) {
Jakub Narebski2dcb5e12008-12-01 19:01:42 +01003679 insert_file($site_header);
Alan Chandlerb2d34762006-10-03 13:49:03 +01003680 }
3681
Jonathan Nieder68220522010-09-03 19:45:09 -05003682 print "<div class=\"page_header\">\n";
3683 if (defined $logo) {
3684 print $cgi->a({-href => esc_url($logo_url),
3685 -title => $logo_label},
3686 $cgi->img({-src => esc_url($logo),
3687 -width => 72, -height => 27,
3688 -alt => "git",
3689 -class => "logo"}));
3690 }
Jakub Narebskif93bff82006-09-26 01:58:41 +02003691 print $cgi->a({-href => esc_url($home_link)}, $home_link_str) . " / ";
Kay Sieversb87d78d2005-08-07 20:21:04 +02003692 if (defined $project) {
Martin Waitz1c2a4f52006-08-16 00:24:30 +02003693 print $cgi->a({-href => href(action=>"summary")}, esc_html($project));
Kay Sieversb87d78d2005-08-07 20:21:04 +02003694 if (defined $action) {
Giuseppe Bilottac7d94cd2010-11-11 13:26:13 +01003695 my $action_print = $action ;
3696 if (defined $opts{-action_extra}) {
3697 $action_print = $cgi->a({-href => href(action=>$action)},
3698 $action);
3699 }
3700 print " / $action_print";
3701 }
3702 if (defined $opts{-action_extra}) {
3703 print " / $opts{-action_extra}";
Kay Sieversb87d78d2005-08-07 20:21:04 +02003704 }
Kay Sievers19806692005-08-07 20:26:27 +02003705 print "\n";
Robert Fitzsimons6be93512006-12-23 03:35:16 +00003706 }
Petr Baudisd77b5672007-05-17 04:24:19 +02003707 print "</div>\n";
3708
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08003709 my $have_search = gitweb_check_feature('search');
Jakub Narebskif70dda22008-06-02 11:54:41 +02003710 if (defined $project && $have_search) {
Kay Sievers19806692005-08-07 20:26:27 +02003711 if (!defined $searchtext) {
3712 $searchtext = "";
3713 }
Kay Sieversc39e47d2005-09-17 03:00:21 +02003714 my $search_hash;
Timo Hirvonen4c5c2022006-06-20 16:41:05 +03003715 if (defined $hash_base) {
3716 $search_hash = $hash_base;
3717 } elsif (defined $hash) {
Kay Sieversc39e47d2005-09-17 03:00:21 +02003718 $search_hash = $hash;
3719 } else {
Jakub Narebski8adc4bd2006-06-22 08:52:57 +02003720 $search_hash = "HEAD";
Kay Sieversc39e47d2005-09-17 03:00:21 +02003721 }
Matt McCutchen40375a82007-06-28 14:57:07 -04003722 my $action = $my_uri;
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08003723 my $use_pathinfo = gitweb_check_feature('pathinfo');
Matt McCutchen40375a82007-06-28 14:57:07 -04003724 if ($use_pathinfo) {
martin f. krafft85d17a12008-04-20 23:23:38 +02003725 $action .= "/".esc_url($project);
Matt McCutchen40375a82007-06-28 14:57:07 -04003726 }
Matt McCutchen40375a82007-06-28 14:57:07 -04003727 print $cgi->startform(-method => "get", -action => $action) .
Kay Sieversc994d622005-08-07 20:27:18 +02003728 "<div class=\"search\">\n" .
Jakub Narebskif70dda22008-06-02 11:54:41 +02003729 (!$use_pathinfo &&
3730 $cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) . "\n") .
3731 $cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) . "\n" .
3732 $cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) . "\n" .
Petr Baudis88ad7292006-10-24 05:15:46 +02003733 $cgi->popup_menu(-name => 'st', -default => 'commit',
Petr Baudise7738552007-05-17 04:31:12 +02003734 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
Petr Baudis88ad7292006-10-24 05:15:46 +02003735 $cgi->sup($cgi->a({-href => href(action=>"search_help")}, "?")) .
3736 " search:\n",
Kay Sieversc994d622005-08-07 20:27:18 +02003737 $cgi->textfield(-name => "s", -value => $searchtext) . "\n" .
Petr Baudis0e559912008-02-26 13:22:08 +01003738 "<span title=\"Extended regular expression\">" .
3739 $cgi->checkbox(-name => 'sr', -value => 1, -label => 're',
3740 -checked => $search_use_regexp) .
3741 "</span>" .
Kay Sieversc994d622005-08-07 20:27:18 +02003742 "</div>" .
3743 $cgi->end_form() . "\n";
Kay Sievers4c02e3c2005-08-07 19:52:52 +02003744 }
Kay Sievers161332a2005-08-07 19:49:46 +02003745}
3746
Kay Sievers12a88f22005-08-07 20:02:47 +02003747sub git_footer_html {
Jakub Narebski35621982008-04-20 22:09:48 +02003748 my $feed_class = 'rss_logo';
3749
Kay Sievers6191f8e2005-08-07 20:19:56 +02003750 print "<div class=\"page_footer\">\n";
Kay Sieversb87d78d2005-08-07 20:21:04 +02003751 if (defined $project) {
Jakub Narebski847e01f2006-08-14 02:05:47 +02003752 my $descr = git_get_project_description($project);
Kay Sieversb87d78d2005-08-07 20:21:04 +02003753 if (defined $descr) {
Kay Sievers40c13812005-11-19 17:41:29 +01003754 print "<div class=\"page_footer_text\">" . esc_html($descr) . "</div>\n";
Kay Sievers6191f8e2005-08-07 20:19:56 +02003755 }
Jakub Narebski35621982008-04-20 22:09:48 +02003756
3757 my %href_params = get_feed_info();
3758 if (!%href_params) {
3759 $feed_class .= ' generic';
3760 }
3761 $href_params{'-title'} ||= 'log';
3762
Ævar Arnfjörð Bjarmason0f54b7d2011-02-19 15:27:41 +00003763 foreach my $format (qw(RSS Atom)) {
Jakub Narebski35621982008-04-20 22:09:48 +02003764 $href_params{'action'} = lc($format);
3765 print $cgi->a({-href => href(%href_params),
3766 -title => "$href_params{'-title'} $format feed",
3767 -class => $feed_class}, $format)."\n";
3768 }
3769
Kay Sieversc994d622005-08-07 20:27:18 +02003770 } else {
Jakub Narebskia1565c42006-09-15 19:30:34 +02003771 print $cgi->a({-href => href(project=>undef, action=>"opml"),
Jakub Narebski35621982008-04-20 22:09:48 +02003772 -class => $feed_class}, "OPML") . " ";
Jakub Narebski9d0734a2006-09-15 11:11:33 +02003773 print $cgi->a({-href => href(project=>undef, action=>"project_index"),
Jakub Narebski35621982008-04-20 22:09:48 +02003774 -class => $feed_class}, "TXT") . "\n";
Kay Sieversff7669a2005-08-07 20:13:02 +02003775 }
Jakub Narebski35621982008-04-20 22:09:48 +02003776 print "</div>\n"; # class="page_footer"
Alan Chandlerb2d34762006-10-03 13:49:03 +01003777
Jakub Narebskiaa7dd052009-09-01 13:39:16 +02003778 if (defined $t0 && gitweb_check_feature('timed')) {
3779 print "<div id=\"generating_info\">\n";
3780 print 'This page took '.
3781 '<span id="generating_time" class="time_span">'.
Jakub Narebski3962f1d72010-11-09 19:27:54 +01003782 tv_interval($t0, [ gettimeofday() ]).
Jakub Narebskiaa7dd052009-09-01 13:39:16 +02003783 ' seconds </span>'.
3784 ' and '.
3785 '<span id="generating_cmd">'.
3786 $number_of_git_cmds.
3787 '</span> git commands '.
3788 " to generate.\n";
3789 print "</div>\n"; # class="page_footer"
3790 }
3791
John 'Warthog9' Hawley24d4afc2010-01-30 23:30:41 +01003792 if (defined $site_footer && -f $site_footer) {
Jakub Narebski2dcb5e12008-12-01 19:01:42 +01003793 insert_file($site_footer);
Alan Chandlerb2d34762006-10-03 13:49:03 +01003794 }
3795
Junio C Hamanoabf411e2010-12-15 11:32:57 -08003796 print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;
John 'Warthog9' Hawleyb62a1a92010-01-30 23:30:39 +01003797 if (defined $action &&
3798 $action eq 'blame_incremental') {
Jakub Narebskic4ccf612009-09-01 13:39:19 +02003799 print qq!<script type="text/javascript">\n!.
3800 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.
3801 qq! "!. href() .qq!");\n!.
3802 qq!</script>\n!;
Jakub Narebskie627e502009-11-26 21:12:15 +01003803 } elsif (gitweb_check_feature('javascript-actions')) {
Jakub Narebskic4ccf612009-09-01 13:39:19 +02003804 print qq!<script type="text/javascript">\n!.
3805 qq!window.onload = fixLinks;\n!.
3806 qq!</script>\n!;
3807 }
3808
Alan Chandlerb2d34762006-10-03 13:49:03 +01003809 print "</body>\n" .
Kay Sievers9cd3d982005-08-07 20:17:42 +02003810 "</html>";
Kay Sievers161332a2005-08-07 19:49:46 +02003811}
3812
Jakub Narebski453541f2010-02-07 21:51:18 +01003813# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])
Lea Wiemann074afaa2008-06-19 22:03:21 +02003814# Example: die_error(404, 'Hash not found')
3815# By convention, use the following status codes (as defined in RFC 2616):
3816# 400: Invalid or missing CGI parameters, or
3817# requested object exists but has wrong type.
3818# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
3819# this server or project.
3820# 404: Requested object/revision/project doesn't exist.
3821# 500: The server isn't configured properly, or
3822# an internal error occurred (e.g. failed assertions caused by bugs), or
3823# an unknown error occurred (e.g. the git binary died unexpectedly).
John 'Warthog9' Hawleyb62a1a92010-01-30 23:30:39 +01003824# 503: The server is currently unavailable (because it is overloaded,
3825# or down for maintenance). Generally, this is a temporary state.
Kay Sievers061cc7c2005-08-07 20:15:57 +02003826sub die_error {
Lea Wiemann074afaa2008-06-19 22:03:21 +02003827 my $status = shift || 500;
Jakub Narebski1df48762010-02-07 21:52:25 +01003828 my $error = esc_html(shift) || "Internal Server Error";
John 'Warthog9' Hawleyaa140132010-01-30 23:30:44 +01003829 my $extra = shift;
Jakub Narebski7a597452010-04-24 16:00:04 +02003830 my %opts = @_;
Kay Sievers664f4cc2005-08-07 20:17:19 +02003831
John 'Warthog9' Hawleyb62a1a92010-01-30 23:30:39 +01003832 my %http_responses = (
3833 400 => '400 Bad Request',
3834 403 => '403 Forbidden',
3835 404 => '404 Not Found',
3836 500 => '500 Internal Server Error',
3837 503 => '503 Service Unavailable',
3838 );
Jakub Narebski7a597452010-04-24 16:00:04 +02003839 git_header_html($http_responses{$status}, undef, %opts);
Jakub Narebski59b9f612006-08-22 23:42:53 +02003840 print <<EOF;
3841<div class="page_body">
3842<br /><br />
3843$status - $error
3844<br />
Jakub Narebski59b9f612006-08-22 23:42:53 +02003845EOF
John 'Warthog9' Hawleyaa140132010-01-30 23:30:44 +01003846 if (defined $extra) {
3847 print "<hr />\n" .
3848 "$extra\n";
3849 }
3850 print "</div>\n";
3851
Kay Sieversa59d4af2005-08-07 20:15:44 +02003852 git_footer_html();
Jakub Narebski7a597452010-04-24 16:00:04 +02003853 goto DONE_GITWEB
3854 unless ($opts{'-error_handler'});
Kay Sieversa59d4af2005-08-07 20:15:44 +02003855}
3856
Jakub Narebski717b8312006-07-31 21:22:15 +02003857## ----------------------------------------------------------------------
3858## functions printing or outputting HTML: navigation
3859
Jakub Narebski847e01f2006-08-14 02:05:47 +02003860sub git_print_page_nav {
Jakub Narebskib18f9bf2006-07-30 14:59:57 +02003861 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
3862 $extra = '' if !defined $extra; # pager or formats
3863
3864 my @navs = qw(summary shortlog log commit commitdiff tree);
3865 if ($suppress) {
3866 @navs = grep { $_ ne $suppress } @navs;
3867 }
3868
Martin Waitz1c2a4f52006-08-16 00:24:30 +02003869 my %arg = map { $_ => {action=>$_} } @navs;
Jakub Narebskib18f9bf2006-07-30 14:59:57 +02003870 if (defined $head) {
3871 for (qw(commit commitdiff)) {
Jakub Narebski3be8e722007-04-01 22:22:21 +02003872 $arg{$_}{'hash'} = $head;
Jakub Narebskib18f9bf2006-07-30 14:59:57 +02003873 }
3874 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
3875 for (qw(shortlog log)) {
Jakub Narebski3be8e722007-04-01 22:22:21 +02003876 $arg{$_}{'hash'} = $head;
Jakub Narebskib18f9bf2006-07-30 14:59:57 +02003877 }
3878 }
3879 }
Petr Baudisd627f682008-10-02 16:36:52 +02003880
Jakub Narebski3be8e722007-04-01 22:22:21 +02003881 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
3882 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
Jakub Narebskib18f9bf2006-07-30 14:59:57 +02003883
Junio C Hamanoa7c5a282008-11-29 13:02:08 -08003884 my @actions = gitweb_get_feature('actions');
Jakub Narebski2b11e052008-10-12 00:02:32 +02003885 my %repl = (
3886 '%' => '%',
3887 'n' => $project, # project name
3888 'f' => $git_dir, # project path within filesystem
3889 'h' => $treehead || '', # current hash ('h' parameter)
3890 'b' => $treebase || '', # hash base ('hb' parameter)
3891 );
Petr Baudisd627f682008-10-02 16:36:52 +02003892 while (@actions) {
Jakub Narebski2b11e052008-10-12 00:02:32 +02003893 my ($label, $link, $pos) = splice(@actions,0,3);
3894 # insert
Petr Baudisd627f682008-10-02 16:36:52 +02003895 @navs = map { $_ eq $pos ? ($_, $label) : $_ } @navs;
3896 # munch munch
Jakub Narebski2b11e052008-10-12 00:02:32 +02003897 $link =~ s/%([%nfhb])/$repl{$1}/g;
Petr Baudisd627f682008-10-02 16:36:52 +02003898 $arg{$label}{'_href'} = $link;
3899 }
3900
Jakub Narebskib18f9bf2006-07-30 14:59:57 +02003901 print "<div class=\"page_nav\">\n" .
3902 (join " | ",
Martin Waitz1c2a4f52006-08-16 00:24:30 +02003903 map { $_ eq $current ?
Petr Baudisd627f682008-10-02 16:36:52 +02003904 $_ : $cgi->a({-href => ($arg{$_}{_href} ? $arg{$_}{_href} : href(%{$arg{$_}}))}, "$_")
Martin Waitz1c2a4f52006-08-16 00:24:30 +02003905 } @navs);
Jakub Narebski898a8932006-07-30 16:14:43 +02003906 print "<br/>\n$extra<br/>\n" .
Jakub Narebskib18f9bf2006-07-30 14:59:57 +02003907 "</div>\n";
3908}
3909
Giuseppe Bilotta11e7bec2010-11-11 13:26:12 +01003910# returns a submenu for the nagivation of the refs views (tags, heads,
3911# remotes) with the current view disabled and the remotes view only
3912# available if the feature is enabled
3913sub format_ref_views {
3914 my ($current) = @_;
3915 my @ref_views = qw{tags heads};
3916 push @ref_views, 'remotes' if gitweb_check_feature('remote_heads');
3917 return join " | ", map {
3918 $_ eq $current ? $_ :
3919 $cgi->a({-href => href(action=>$_)}, $_)
3920 } @ref_views
3921}
3922
Jakub Narebski847e01f2006-08-14 02:05:47 +02003923sub format_paging_nav {
Jakub Narebski69ca37d2009-11-13 02:02:14 +01003924 my ($action, $page, $has_next_link) = @_;
Jakub Narebski43ffc062006-07-30 17:49:00 +02003925 my $paging_nav;
3926
3927
Jakub Narebski43ffc062006-07-30 17:49:00 +02003928 if ($page > 0) {
Jakub Narebski69ca37d2009-11-13 02:02:14 +01003929 $paging_nav .=
3930 $cgi->a({-href => href(-replay=>1, page=>undef)}, "first") .
3931 " &sdot; " .
Jakub Narebski7afd77b2007-11-01 13:06:28 +01003932 $cgi->a({-href => href(-replay=>1, page=>$page-1),
Jakub Narebski26298b52006-08-10 12:38:47 +02003933 -accesskey => "p", -title => "Alt-p"}, "prev");
Jakub Narebski43ffc062006-07-30 17:49:00 +02003934 } else {
Jakub Narebski69ca37d2009-11-13 02:02:14 +01003935 $paging_nav .= "first &sdot; prev";
Jakub Narebski43ffc062006-07-30 17:49:00 +02003936 }
3937
Lea Wiemann1f684dc2008-05-28 01:25:42 +02003938 if ($has_next_link) {
Jakub Narebski43ffc062006-07-30 17:49:00 +02003939 $paging_nav .= " &sdot; " .
Jakub Narebski7afd77b2007-11-01 13:06:28 +01003940 $cgi->a({-href => href(-replay=>1, page=>$page+1),
Jakub Narebski26298b52006-08-10 12:38:47 +02003941 -accesskey => "n", -title => "Alt-n"}, "next");
Jakub Narebski43ffc062006-07-30 17:49:00 +02003942 } else {
3943 $paging_nav .= " &sdot; next";
3944 }
3945
3946 return $paging_nav;
3947}
3948
Jakub Narebski717b8312006-07-31 21:22:15 +02003949## ......................................................................
3950## functions printing or outputting HTML: div
Kay Sievers42f7eb92005-08-07 20:21:46 +02003951
Jakub Narebski847e01f2006-08-14 02:05:47 +02003952sub git_print_header_div {
Jakub Narebski717b8312006-07-31 21:22:15 +02003953 my ($action, $title, $hash, $hash_base) = @_;
Martin Waitz1c2a4f52006-08-16 00:24:30 +02003954 my %args = ();
Jakub Narebski717b8312006-07-31 21:22:15 +02003955
Jakub Narebski3be8e722007-04-01 22:22:21 +02003956 $args{'action'} = $action;
3957 $args{'hash'} = $hash if $hash;
3958 $args{'hash_base'} = $hash_base if $hash_base;
Jakub Narebski717b8312006-07-31 21:22:15 +02003959
3960 print "<div class=\"header\">\n" .
Martin Waitz1c2a4f52006-08-16 00:24:30 +02003961 $cgi->a({-href => href(%args), -class => "title"},
3962 $title ? $title : $action) .
3963 "\n</div>\n";
Kay Sievers42f7eb92005-08-07 20:21:46 +02003964}
3965
Giuseppe Bilotta0e656992010-11-11 13:26:15 +01003966sub format_repo_url {
3967 my ($name, $url) = @_;
3968 return "<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";
3969}
3970
Giuseppe Bilottab891d522010-11-11 13:26:16 +01003971# Group output by placing it in a DIV element and adding a header.
3972# Options for start_div() can be provided by passing a hash reference as the
3973# first parameter to the function.
3974# Options to git_print_header_div() can be provided by passing an array
3975# reference. This must follow the options to start_div if they are present.
3976# The content can be a scalar, which is output as-is, a scalar reference, which
3977# is output after html escaping, an IO handle passed either as *handle or
3978# *handle{IO}, or a function reference. In the latter case all following
3979# parameters will be taken as argument to the content function call.
3980sub git_print_section {
3981 my ($div_args, $header_args, $content);
3982 my $arg = shift;
3983 if (ref($arg) eq 'HASH') {
3984 $div_args = $arg;
3985 $arg = shift;
3986 }
3987 if (ref($arg) eq 'ARRAY') {
3988 $header_args = $arg;
3989 $arg = shift;
3990 }
3991 $content = $arg;
3992
3993 print $cgi->start_div($div_args);
3994 git_print_header_div(@$header_args);
3995
3996 if (ref($content) eq 'CODE') {
3997 $content->(@_);
3998 } elsif (ref($content) eq 'SCALAR') {
3999 print esc_html($$content);
4000 } elsif (ref($content) eq 'GLOB' or ref($content) eq 'IO::Handle') {
4001 print <$content>;
4002 } elsif (!ref($content) && defined($content)) {
4003 print $content;
4004 }
4005
4006 print $cgi->end_div;
4007}
4008
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004009sub print_local_time {
John 'Warthog9' Hawley0cf207f2010-01-30 23:30:42 +01004010 print format_local_time(@_);
4011}
4012
4013sub format_local_time {
4014 my $localtime = '';
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004015 my %date = @_;
4016 if ($date{'hour_local'} < 6) {
John 'Warthog9' Hawley0cf207f2010-01-30 23:30:42 +01004017 $localtime .= sprintf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004018 $date{'hour_local'}, $date{'minute_local'}, $date{'tz_local'});
Jakub Narebskia44465c2006-08-28 23:17:31 +02004019 } else {
John 'Warthog9' Hawley0cf207f2010-01-30 23:30:42 +01004020 $localtime .= sprintf(" (%02d:%02d %s)",
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004021 $date{'hour_local'}, $date{'minute_local'}, $date{'tz_local'});
Jakub Narebskia44465c2006-08-28 23:17:31 +02004022 }
John 'Warthog9' Hawley0cf207f2010-01-30 23:30:42 +01004023
4024 return $localtime;
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004025}
4026
4027# Outputs the author name and date in long form
4028sub git_print_authorship {
4029 my $co = shift;
4030 my %opts = @_;
4031 my $tag = $opts{-tag} || 'div';
Stephen Boyde133d652009-10-15 21:14:59 -07004032 my $author = $co->{'author_name'};
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004033
4034 my %ad = parse_date($co->{'author_epoch'}, $co->{'author_tz'});
4035 print "<$tag class=\"author_date\">" .
Stephen Boyde133d652009-10-15 21:14:59 -07004036 format_search_author($author, "author", esc_html($author)) .
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004037 " [$ad{'rfc2822'}";
4038 print_local_time(%ad) if ($opts{-localtime});
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +02004039 print "]" . git_get_avatar($co->{'author_email'}, -pad_before => 1)
4040 . "</$tag>\n";
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004041}
4042
4043# Outputs table rows containing the full author or committer information,
Ralf Wildenhues22e5e582010-08-22 13:12:12 +02004044# in the format expected for 'commit' view (& similar).
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004045# Parameters are a commit hash reference, followed by the list of people
Ralf Wildenhues22e5e582010-08-22 13:12:12 +02004046# to output information for. If the list is empty it defaults to both
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004047# author and committer.
4048sub git_print_authorship_rows {
4049 my $co = shift;
4050 # too bad we can't use @people = @_ || ('author', 'committer')
4051 my @people = @_;
4052 @people = ('author', 'committer') unless @people;
4053 foreach my $who (@people) {
4054 my %wd = parse_date($co->{"${who}_epoch"}, $co->{"${who}_tz"});
Stephen Boyde133d652009-10-15 21:14:59 -07004055 print "<tr><td>$who</td><td>" .
4056 format_search_author($co->{"${who}_name"}, $who,
4057 esc_html($co->{"${who}_name"})) . " " .
4058 format_search_author($co->{"${who}_email"}, $who,
4059 esc_html("<" . $co->{"${who}_email"} . ">")) .
4060 "</td><td rowspan=\"2\">" .
Giuseppe Bilottae9fdd742009-06-30 00:00:51 +02004061 git_get_avatar($co->{"${who}_email"}, -size => 'double') .
4062 "</td></tr>\n" .
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02004063 "<tr>" .
4064 "<td></td><td> $wd{'rfc2822'}";
4065 print_local_time(%wd);
4066 print "</td>" .
4067 "</tr>\n";
4068 }
Jakub Narebski6fd92a22006-08-28 14:48:12 +02004069}
4070
Jakub Narebski717b8312006-07-31 21:22:15 +02004071sub git_print_page_path {
4072 my $name = shift;
4073 my $type = shift;
Luben Tuikov59fb1c92006-08-17 10:39:29 -07004074 my $hb = shift;
Junio C Hamanodf2c37a2006-01-09 13:13:39 +01004075
Jakub Narebski4df118e2006-10-21 17:53:55 +02004076
4077 print "<div class=\"page_path\">";
4078 print $cgi->a({-href => href(action=>"tree", hash_base=>$hb),
Martin Koegler00f429a2007-06-03 17:42:44 +02004079 -title => 'tree root'}, to_utf8("[$project]"));
Jakub Narebski4df118e2006-10-21 17:53:55 +02004080 print " / ";
4081 if (defined $name) {
Jakub Narebski762c7202006-09-04 18:17:58 +02004082 my @dirname = split '/', $name;
4083 my $basename = pop @dirname;
4084 my $fullname = '';
4085
Jakub Narebski762c7202006-09-04 18:17:58 +02004086 foreach my $dir (@dirname) {
Petr Baudis16fdb482006-09-21 02:05:50 +02004087 $fullname .= ($fullname ? '/' : '') . $dir;
Jakub Narebski762c7202006-09-04 18:17:58 +02004088 print $cgi->a({-href => href(action=>"tree", file_name=>$fullname,
4089 hash_base=>$hb),
Jakub Narebskiedc04e92007-03-07 02:21:25 +01004090 -title => $fullname}, esc_path($dir));
Petr Baudis26d0a972006-09-23 01:00:12 +02004091 print " / ";
Jakub Narebski762c7202006-09-04 18:17:58 +02004092 }
4093 if (defined $type && $type eq 'blob') {
Jakub Narebski952c65f2006-08-22 16:52:50 +02004094 print $cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,
Jakub Narebski762c7202006-09-04 18:17:58 +02004095 hash_base=>$hb),
Jakub Narebskiedc04e92007-03-07 02:21:25 +01004096 -title => $name}, esc_path($basename));
Jakub Narebski762c7202006-09-04 18:17:58 +02004097 } elsif (defined $type && $type eq 'tree') {
4098 print $cgi->a({-href => href(action=>"tree", file_name=>$file_name,
4099 hash_base=>$hb),
Jakub Narebskiedc04e92007-03-07 02:21:25 +01004100 -title => $name}, esc_path($basename));
Jakub Narebski4df118e2006-10-21 17:53:55 +02004101 print " / ";
Luben Tuikov59fb1c92006-08-17 10:39:29 -07004102 } else {
Jakub Narebski403d0902006-11-08 11:48:56 +01004103 print esc_path($basename);
Luben Tuikov59fb1c92006-08-17 10:39:29 -07004104 }
Kay Sievers8ed23e12005-08-07 20:05:44 +02004105 }
Jakub Narebski4df118e2006-10-21 17:53:55 +02004106 print "<br/></div>\n";
Kay Sievers4c02e3c2005-08-07 19:52:52 +02004107}
4108
Jakub Narebski74fd8722009-05-07 19:11:29 +02004109sub git_print_log {
Jakub Narebskid16d0932006-08-17 11:21:23 +02004110 my $log = shift;
Jakub Narebskib7f92532006-08-28 14:48:10 +02004111 my %opts = @_;
Jakub Narebskid16d0932006-08-17 11:21:23 +02004112
Jakub Narebskib7f92532006-08-28 14:48:10 +02004113 if ($opts{'-remove_title'}) {
4114 # remove title, i.e. first line of log
4115 shift @$log;
4116 }
Jakub Narebskid16d0932006-08-17 11:21:23 +02004117 # remove leading empty lines
4118 while (defined $log->[0] && $log->[0] eq "") {
4119 shift @$log;
4120 }
4121
4122 # print log
4123 my $signoff = 0;
4124 my $empty = 0;
4125 foreach my $line (@$log) {
Jakub Narebskib7f92532006-08-28 14:48:10 +02004126 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
4127 $signoff = 1;
Jakub Narebskifba20b42006-08-28 14:48:13 +02004128 $empty = 0;
Jakub Narebskib7f92532006-08-28 14:48:10 +02004129 if (! $opts{'-remove_signoff'}) {
4130 print "<span class=\"signoff\">" . esc_html($line) . "</span><br/>\n";
4131 next;
4132 } else {
4133 # remove signoff lines
4134 next;
4135 }
4136 } else {
4137 $signoff = 0;
4138 }
4139
Jakub Narebskid16d0932006-08-17 11:21:23 +02004140 # print only one empty line
4141 # do not print empty line after signoff
4142 if ($line eq "") {
4143 next if ($empty || $signoff);
4144 $empty = 1;
4145 } else {
4146 $empty = 0;
4147 }
Jakub Narebskib7f92532006-08-28 14:48:10 +02004148
4149 print format_log_line_html($line) . "<br/>\n";
4150 }
4151
4152 if ($opts{'-final_empty_line'}) {
4153 # end with single empty line
4154 print "<br/>\n" unless $empty;
Jakub Narebskid16d0932006-08-17 11:21:23 +02004155 }
4156}
4157
Jakub Narebskie33fba42006-12-10 13:25:46 +01004158# return link target (what link points to)
4159sub git_get_link_target {
4160 my $hash = shift;
4161 my $link_target;
4162
4163 # read link
4164 open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
4165 or return;
4166 {
Jakub Narebski34122b52009-05-11 03:29:40 +02004167 local $/ = undef;
Jakub Narebskie33fba42006-12-10 13:25:46 +01004168 $link_target = <$fd>;
4169 }
4170 close $fd
4171 or return;
4172
4173 return $link_target;
4174}
4175
Jakub Narebski3bf9d572006-12-10 13:25:48 +01004176# given link target, and the directory (basedir) the link is in,
4177# return target of link relative to top directory (top tree);
4178# return undef if it is not possible (including absolute links).
4179sub normalize_link_target {
Jakub Narebski15c54fe2009-05-11 19:45:11 +02004180 my ($link_target, $basedir) = @_;
Jakub Narebski3bf9d572006-12-10 13:25:48 +01004181
4182 # absolute symlinks (beginning with '/') cannot be normalized
4183 return if (substr($link_target, 0, 1) eq '/');
4184
4185 # normalize link target to path from top (root) tree (dir)
4186 my $path;
4187 if ($basedir) {
4188 $path = $basedir . '/' . $link_target;
4189 } else {
4190 # we are in top (root) tree (dir)
4191 $path = $link_target;
4192 }
4193
4194 # remove //, /./, and /../
4195 my @path_parts;
4196 foreach my $part (split('/', $path)) {
4197 # discard '.' and ''
4198 next if (!$part || $part eq '.');
4199 # handle '..'
4200 if ($part eq '..') {
4201 if (@path_parts) {
4202 pop @path_parts;
4203 } else {
4204 # link leads outside repository (outside top dir)
4205 return;
4206 }
4207 } else {
4208 push @path_parts, $part;
4209 }
4210 }
4211 $path = join('/', @path_parts);
4212
4213 return $path;
4214}
Jakub Narebskie33fba42006-12-10 13:25:46 +01004215
Jakub Narebskifa702002006-08-31 00:35:07 +02004216# print tree entry (row of git_tree), but without encompassing <tr> element
4217sub git_print_tree_entry {
4218 my ($t, $basedir, $hash_base, $have_blame) = @_;
4219
4220 my %base_key = ();
Jakub Narebskie33fba42006-12-10 13:25:46 +01004221 $base_key{'hash_base'} = $hash_base if defined $hash_base;
Jakub Narebskifa702002006-08-31 00:35:07 +02004222
Luben Tuikov4de741b2006-09-25 22:38:16 -07004223 # The format of a table row is: mode list link. Where mode is
4224 # the mode of the entry, list is the name of the entry, an href,
4225 # and link is the action links of the entry.
4226
Jakub Narebskifa702002006-08-31 00:35:07 +02004227 print "<td class=\"mode\">" . mode_str($t->{'mode'}) . "</td>\n";
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02004228 if (exists $t->{'size'}) {
4229 print "<td class=\"size\">$t->{'size'}</td>\n";
4230 }
Jakub Narebskifa702002006-08-31 00:35:07 +02004231 if ($t->{'type'} eq "blob") {
4232 print "<td class=\"list\">" .
Luben Tuikov4de741b2006-09-25 22:38:16 -07004233 $cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},
Jakub Narebskie7fb0222006-10-21 17:52:19 +02004234 file_name=>"$basedir$t->{'name'}", %base_key),
Jakub Narebskie33fba42006-12-10 13:25:46 +01004235 -class => "list"}, esc_path($t->{'name'}));
4236 if (S_ISLNK(oct $t->{'mode'})) {
4237 my $link_target = git_get_link_target($t->{'hash'});
4238 if ($link_target) {
Jakub Narebski15c54fe2009-05-11 19:45:11 +02004239 my $norm_target = normalize_link_target($link_target, $basedir);
Jakub Narebski3bf9d572006-12-10 13:25:48 +01004240 if (defined $norm_target) {
4241 print " -> " .
4242 $cgi->a({-href => href(action=>"object", hash_base=>$hash_base,
4243 file_name=>$norm_target),
4244 -title => $norm_target}, esc_path($link_target));
4245 } else {
4246 print " -> " . esc_path($link_target);
4247 }
Jakub Narebskie33fba42006-12-10 13:25:46 +01004248 }
4249 }
4250 print "</td>\n";
Luben Tuikov4de741b2006-09-25 22:38:16 -07004251 print "<td class=\"link\">";
Petr Baudis4777b012006-10-24 05:36:10 +02004252 print $cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},
Jakub Narebskie33fba42006-12-10 13:25:46 +01004253 file_name=>"$basedir$t->{'name'}", %base_key)},
4254 "blob");
Jakub Narebskifa702002006-08-31 00:35:07 +02004255 if ($have_blame) {
Petr Baudis4777b012006-10-24 05:36:10 +02004256 print " | " .
4257 $cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},
Jakub Narebskie33fba42006-12-10 13:25:46 +01004258 file_name=>"$basedir$t->{'name'}", %base_key)},
4259 "blame");
Jakub Narebskifa702002006-08-31 00:35:07 +02004260 }
4261 if (defined $hash_base) {
Petr Baudis4777b012006-10-24 05:36:10 +02004262 print " | " .
4263 $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
Jakub Narebskifa702002006-08-31 00:35:07 +02004264 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},
4265 "history");
4266 }
4267 print " | " .
Luben Tuikov6f7ea5f2006-09-29 09:57:43 -07004268 $cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,
Jakub Narebskie7fb0222006-10-21 17:52:19 +02004269 file_name=>"$basedir$t->{'name'}")},
4270 "raw");
Luben Tuikov4de741b2006-09-25 22:38:16 -07004271 print "</td>\n";
Jakub Narebskifa702002006-08-31 00:35:07 +02004272
4273 } elsif ($t->{'type'} eq "tree") {
Luben Tuikov0fa105e2006-09-26 12:45:37 -07004274 print "<td class=\"list\">";
4275 print $cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02004276 file_name=>"$basedir$t->{'name'}",
4277 %base_key)},
Jakub Narebski403d0902006-11-08 11:48:56 +01004278 esc_path($t->{'name'}));
Luben Tuikov0fa105e2006-09-26 12:45:37 -07004279 print "</td>\n";
4280 print "<td class=\"link\">";
Petr Baudis4777b012006-10-24 05:36:10 +02004281 print $cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02004282 file_name=>"$basedir$t->{'name'}",
4283 %base_key)},
Jakub Narebskie33fba42006-12-10 13:25:46 +01004284 "tree");
Jakub Narebskifa702002006-08-31 00:35:07 +02004285 if (defined $hash_base) {
Petr Baudis4777b012006-10-24 05:36:10 +02004286 print " | " .
4287 $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
Jakub Narebskifa702002006-08-31 00:35:07 +02004288 file_name=>"$basedir$t->{'name'}")},
4289 "history");
4290 }
4291 print "</td>\n";
Jakub Narebski01ac1e32007-07-28 16:27:31 +02004292 } else {
4293 # unknown object: we can only present history for it
4294 # (this includes 'commit' object, i.e. submodule support)
4295 print "<td class=\"list\">" .
4296 esc_path($t->{'name'}) .
4297 "</td>\n";
4298 print "<td class=\"link\">";
4299 if (defined $hash_base) {
4300 print $cgi->a({-href => href(action=>"history",
4301 hash_base=>$hash_base,
4302 file_name=>"$basedir$t->{'name'}")},
4303 "history");
4304 }
4305 print "</td>\n";
Jakub Narebskifa702002006-08-31 00:35:07 +02004306 }
4307}
4308
Jakub Narebski717b8312006-07-31 21:22:15 +02004309## ......................................................................
4310## functions printing large fragments of HTML
Kay Sieversede5e102005-08-07 20:23:12 +02004311
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004312# get pre-image filenames for merge (combined) diff
Jakub Narebskie72c0ea2007-05-07 01:10:05 +02004313sub fill_from_file_info {
4314 my ($diff, @parents) = @_;
4315
4316 $diff->{'from_file'} = [ ];
4317 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
4318 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4319 if ($diff->{'status'}[$i] eq 'R' ||
4320 $diff->{'status'}[$i] eq 'C') {
4321 $diff->{'from_file'}[$i] =
4322 git_get_path_by_hash($parents[$i], $diff->{'from_id'}[$i]);
4323 }
4324 }
4325
4326 return $diff;
4327}
4328
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004329# is current raw difftree line of file deletion
Jakub Narebski90921742007-06-08 13:27:42 +02004330sub is_deleted {
4331 my $diffinfo = shift;
4332
Jakub Narebski4ed4a342008-04-05 21:13:24 +01004333 return $diffinfo->{'to_id'} eq ('0' x 40);
Jakub Narebski90921742007-06-08 13:27:42 +02004334}
Jakub Narebskie72c0ea2007-05-07 01:10:05 +02004335
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004336# does patch correspond to [previous] difftree raw line
4337# $diffinfo - hashref of parsed raw diff format
4338# $patchinfo - hashref of parsed patch diff format
4339# (the same keys as in $diffinfo)
4340sub is_patch_split {
4341 my ($diffinfo, $patchinfo) = @_;
4342
4343 return defined $diffinfo && defined $patchinfo
Jakub Narebski9d301452007-11-01 12:38:08 +01004344 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004345}
4346
4347
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004348sub git_difftree_body {
Jakub Narebskied224de2007-05-07 01:10:04 +02004349 my ($difftree, $hash, @parents) = @_;
4350 my ($parent) = $parents[0];
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08004351 my $have_blame = gitweb_check_feature('blame');
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004352 print "<div class=\"list_head\">\n";
4353 if ($#{$difftree} > 10) {
4354 print(($#{$difftree} + 1) . " files changed:\n");
4355 }
4356 print "</div>\n";
4357
Jakub Narebskied224de2007-05-07 01:10:04 +02004358 print "<table class=\"" .
4359 (@parents > 1 ? "combined " : "") .
4360 "diff_tree\">\n";
Jakub Narebski47598d72007-06-08 13:24:56 +02004361
4362 # header only for combined diff in 'commitdiff' view
Jakub Narebski3ef408a2007-09-08 21:54:28 +02004363 my $has_header = @$difftree && @parents > 1 && $action eq 'commitdiff';
Jakub Narebski47598d72007-06-08 13:24:56 +02004364 if ($has_header) {
4365 # table header
4366 print "<thead><tr>\n" .
4367 "<th></th><th></th>\n"; # filename, patchN link
4368 for (my $i = 0; $i < @parents; $i++) {
4369 my $par = $parents[$i];
4370 print "<th>" .
4371 $cgi->a({-href => href(action=>"commitdiff",
4372 hash=>$hash, hash_parent=>$par),
4373 -title => 'commitdiff to parent number ' .
4374 ($i+1) . ': ' . substr($par,0,7)},
4375 $i+1) .
4376 "&nbsp;</th>\n";
4377 }
4378 print "</tr></thead>\n<tbody>\n";
4379 }
4380
Luben Tuikov6dd36ac2006-09-28 16:47:50 -07004381 my $alternate = 1;
Jakub Narebskib4657e72006-08-28 14:48:14 +02004382 my $patchno = 0;
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004383 foreach my $line (@{$difftree}) {
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004384 my $diff = parsed_difftree_line($line);
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004385
4386 if ($alternate) {
4387 print "<tr class=\"dark\">\n";
4388 } else {
4389 print "<tr class=\"light\">\n";
4390 }
4391 $alternate ^= 1;
4392
Jakub Narebski493e01d2007-05-07 01:10:06 +02004393 if (exists $diff->{'nparents'}) { # combined diff
Jakub Narebskied224de2007-05-07 01:10:04 +02004394
Jakub Narebski493e01d2007-05-07 01:10:06 +02004395 fill_from_file_info($diff, @parents)
4396 unless exists $diff->{'from_file'};
Jakub Narebskie72c0ea2007-05-07 01:10:05 +02004397
Jakub Narebski90921742007-06-08 13:27:42 +02004398 if (!is_deleted($diff)) {
Jakub Narebskied224de2007-05-07 01:10:04 +02004399 # file exists in the result (child) commit
4400 print "<td>" .
Jakub Narebski493e01d2007-05-07 01:10:06 +02004401 $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4402 file_name=>$diff->{'to_file'},
Jakub Narebskied224de2007-05-07 01:10:04 +02004403 hash_base=>$hash),
Jakub Narebski493e01d2007-05-07 01:10:06 +02004404 -class => "list"}, esc_path($diff->{'to_file'})) .
Jakub Narebskied224de2007-05-07 01:10:04 +02004405 "</td>\n";
4406 } else {
4407 print "<td>" .
Jakub Narebski493e01d2007-05-07 01:10:06 +02004408 esc_path($diff->{'to_file'}) .
Jakub Narebskied224de2007-05-07 01:10:04 +02004409 "</td>\n";
4410 }
4411
4412 if ($action eq 'commitdiff') {
4413 # link to patch
4414 $patchno++;
4415 print "<td class=\"link\">" .
Kevin Cernekee5e96a842011-03-18 17:00:16 +01004416 $cgi->a({-href => href(-anchor=>"patch$patchno")},
4417 "patch") .
Jakub Narebskied224de2007-05-07 01:10:04 +02004418 " | " .
4419 "</td>\n";
4420 }
4421
4422 my $has_history = 0;
4423 my $not_deleted = 0;
Jakub Narebski493e01d2007-05-07 01:10:06 +02004424 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
Jakub Narebskied224de2007-05-07 01:10:04 +02004425 my $hash_parent = $parents[$i];
Jakub Narebski493e01d2007-05-07 01:10:06 +02004426 my $from_hash = $diff->{'from_id'}[$i];
4427 my $from_path = $diff->{'from_file'}[$i];
4428 my $status = $diff->{'status'}[$i];
Jakub Narebskied224de2007-05-07 01:10:04 +02004429
4430 $has_history ||= ($status ne 'A');
4431 $not_deleted ||= ($status ne 'D');
4432
Jakub Narebskied224de2007-05-07 01:10:04 +02004433 if ($status eq 'A') {
4434 print "<td class=\"link\" align=\"right\"> | </td>\n";
4435 } elsif ($status eq 'D') {
4436 print "<td class=\"link\">" .
4437 $cgi->a({-href => href(action=>"blob",
4438 hash_base=>$hash,
4439 hash=>$from_hash,
4440 file_name=>$from_path)},
4441 "blob" . ($i+1)) .
4442 " | </td>\n";
4443 } else {
Jakub Narebski493e01d2007-05-07 01:10:06 +02004444 if ($diff->{'to_id'} eq $from_hash) {
Jakub Narebskied224de2007-05-07 01:10:04 +02004445 print "<td class=\"link nochange\">";
4446 } else {
4447 print "<td class=\"link\">";
4448 }
4449 print $cgi->a({-href => href(action=>"blobdiff",
Jakub Narebski493e01d2007-05-07 01:10:06 +02004450 hash=>$diff->{'to_id'},
Jakub Narebskied224de2007-05-07 01:10:04 +02004451 hash_parent=>$from_hash,
4452 hash_base=>$hash,
4453 hash_parent_base=>$hash_parent,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004454 file_name=>$diff->{'to_file'},
Jakub Narebskied224de2007-05-07 01:10:04 +02004455 file_parent=>$from_path)},
4456 "diff" . ($i+1)) .
4457 " | </td>\n";
4458 }
4459 }
4460
4461 print "<td class=\"link\">";
4462 if ($not_deleted) {
4463 print $cgi->a({-href => href(action=>"blob",
Jakub Narebski493e01d2007-05-07 01:10:06 +02004464 hash=>$diff->{'to_id'},
4465 file_name=>$diff->{'to_file'},
Jakub Narebskied224de2007-05-07 01:10:04 +02004466 hash_base=>$hash)},
4467 "blob");
4468 print " | " if ($has_history);
4469 }
4470 if ($has_history) {
4471 print $cgi->a({-href => href(action=>"history",
Jakub Narebski493e01d2007-05-07 01:10:06 +02004472 file_name=>$diff->{'to_file'},
Jakub Narebskied224de2007-05-07 01:10:04 +02004473 hash_base=>$hash)},
4474 "history");
4475 }
4476 print "</td>\n";
4477
4478 print "</tr>\n";
4479 next; # instead of 'else' clause, to avoid extra indent
4480 }
4481 # else ordinary diff
4482
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004483 my ($to_mode_oct, $to_mode_str, $to_file_type);
4484 my ($from_mode_oct, $from_mode_str, $from_file_type);
Jakub Narebski493e01d2007-05-07 01:10:06 +02004485 if ($diff->{'to_mode'} ne ('0' x 6)) {
4486 $to_mode_oct = oct $diff->{'to_mode'};
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004487 if (S_ISREG($to_mode_oct)) { # only for regular file
4488 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004489 }
Jakub Narebski493e01d2007-05-07 01:10:06 +02004490 $to_file_type = file_type($diff->{'to_mode'});
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004491 }
Jakub Narebski493e01d2007-05-07 01:10:06 +02004492 if ($diff->{'from_mode'} ne ('0' x 6)) {
4493 $from_mode_oct = oct $diff->{'from_mode'};
Ævar Arnfjörð Bjarmason98885c22011-02-19 15:27:42 +00004494 if (S_ISREG($from_mode_oct)) { # only for regular file
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004495 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
4496 }
Jakub Narebski493e01d2007-05-07 01:10:06 +02004497 $from_file_type = file_type($diff->{'from_mode'});
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004498 }
4499
Jakub Narebski493e01d2007-05-07 01:10:06 +02004500 if ($diff->{'status'} eq "A") { # created
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004501 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
4502 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
4503 $mode_chng .= "]</span>";
Luben Tuikov499faed2006-09-27 17:23:25 -07004504 print "<td>";
Jakub Narebski493e01d2007-05-07 01:10:06 +02004505 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4506 hash_base=>$hash, file_name=>$diff->{'file'}),
4507 -class => "list"}, esc_path($diff->{'file'}));
Luben Tuikov499faed2006-09-27 17:23:25 -07004508 print "</td>\n";
4509 print "<td>$mode_chng</td>\n";
4510 print "<td class=\"link\">";
Jakub Narebski72dbafa2006-09-04 18:19:58 +02004511 if ($action eq 'commitdiff') {
Jakub Narebskib4657e72006-08-28 14:48:14 +02004512 # link to patch
4513 $patchno++;
Kevin Cernekee5e96a842011-03-18 17:00:16 +01004514 print $cgi->a({-href => href(-anchor=>"patch$patchno")},
4515 "patch") .
4516 " | ";
Jakub Narebskib4657e72006-08-28 14:48:14 +02004517 }
Jakub Narebski493e01d2007-05-07 01:10:06 +02004518 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4519 hash_base=>$hash, file_name=>$diff->{'file'})},
Jakub Narebski3faa5412007-01-08 02:10:42 +01004520 "blob");
Jakub Narebskib4657e72006-08-28 14:48:14 +02004521 print "</td>\n";
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004522
Jakub Narebski493e01d2007-05-07 01:10:06 +02004523 } elsif ($diff->{'status'} eq "D") { # deleted
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004524 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
Luben Tuikov499faed2006-09-27 17:23:25 -07004525 print "<td>";
Jakub Narebski493e01d2007-05-07 01:10:06 +02004526 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},
4527 hash_base=>$parent, file_name=>$diff->{'file'}),
4528 -class => "list"}, esc_path($diff->{'file'}));
Luben Tuikov499faed2006-09-27 17:23:25 -07004529 print "</td>\n";
4530 print "<td>$mode_chng</td>\n";
4531 print "<td class=\"link\">";
Jakub Narebski72dbafa2006-09-04 18:19:58 +02004532 if ($action eq 'commitdiff') {
Jakub Narebskib4657e72006-08-28 14:48:14 +02004533 # link to patch
4534 $patchno++;
Kevin Cernekee5e96a842011-03-18 17:00:16 +01004535 print $cgi->a({-href => href(-anchor=>"patch$patchno")},
4536 "patch") .
4537 " | ";
Jakub Narebskib4657e72006-08-28 14:48:14 +02004538 }
Jakub Narebski493e01d2007-05-07 01:10:06 +02004539 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},
4540 hash_base=>$parent, file_name=>$diff->{'file'})},
Jakub Narebski897d1d22006-11-19 22:51:39 +01004541 "blob") . " | ";
Junio C Hamano2b2a8c72006-11-08 12:22:04 -08004542 if ($have_blame) {
Jakub Narebski897d1d22006-11-19 22:51:39 +01004543 print $cgi->a({-href => href(action=>"blame", hash_base=>$parent,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004544 file_name=>$diff->{'file'})},
Jakub Narebski897d1d22006-11-19 22:51:39 +01004545 "blame") . " | ";
Junio C Hamano2b2a8c72006-11-08 12:22:04 -08004546 }
Jakub Narebskib4657e72006-08-28 14:48:14 +02004547 print $cgi->a({-href => href(action=>"history", hash_base=>$parent,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004548 file_name=>$diff->{'file'})},
Jakub Narebskie7fb0222006-10-21 17:52:19 +02004549 "history");
Luben Tuikov499faed2006-09-27 17:23:25 -07004550 print "</td>\n";
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004551
Jakub Narebski493e01d2007-05-07 01:10:06 +02004552 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004553 my $mode_chnge = "";
Jakub Narebski493e01d2007-05-07 01:10:06 +02004554 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004555 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
Jakub Narebski6e72cf42007-01-03 20:47:24 +01004556 if ($from_file_type ne $to_file_type) {
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004557 $mode_chnge .= " from $from_file_type to $to_file_type";
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004558 }
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004559 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
4560 if ($from_mode_str && $to_mode_str) {
4561 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
4562 } elsif ($to_mode_str) {
4563 $mode_chnge .= " mode: $to_mode_str";
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004564 }
4565 }
4566 $mode_chnge .= "]</span>\n";
4567 }
4568 print "<td>";
Jakub Narebski493e01d2007-05-07 01:10:06 +02004569 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4570 hash_base=>$hash, file_name=>$diff->{'file'}),
4571 -class => "list"}, esc_path($diff->{'file'}));
Luben Tuikov499faed2006-09-27 17:23:25 -07004572 print "</td>\n";
4573 print "<td>$mode_chnge</td>\n";
4574 print "<td class=\"link\">";
Jakub Narebski241cc592006-10-31 17:36:27 +01004575 if ($action eq 'commitdiff') {
4576 # link to patch
4577 $patchno++;
Kevin Cernekee5e96a842011-03-18 17:00:16 +01004578 print $cgi->a({-href => href(-anchor=>"patch$patchno")},
4579 "patch") .
Jakub Narebski241cc592006-10-31 17:36:27 +01004580 " | ";
Jakub Narebski493e01d2007-05-07 01:10:06 +02004581 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
Jakub Narebski241cc592006-10-31 17:36:27 +01004582 # "commit" view and modified file (not onlu mode changed)
4583 print $cgi->a({-href => href(action=>"blobdiff",
Jakub Narebski493e01d2007-05-07 01:10:06 +02004584 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},
Jakub Narebski241cc592006-10-31 17:36:27 +01004585 hash_base=>$hash, hash_parent_base=>$parent,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004586 file_name=>$diff->{'file'})},
Jakub Narebski241cc592006-10-31 17:36:27 +01004587 "diff") .
4588 " | ";
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004589 }
Jakub Narebski493e01d2007-05-07 01:10:06 +02004590 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4591 hash_base=>$hash, file_name=>$diff->{'file'})},
Jakub Narebski897d1d22006-11-19 22:51:39 +01004592 "blob") . " | ";
Junio C Hamano2b2a8c72006-11-08 12:22:04 -08004593 if ($have_blame) {
Jakub Narebski897d1d22006-11-19 22:51:39 +01004594 print $cgi->a({-href => href(action=>"blame", hash_base=>$hash,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004595 file_name=>$diff->{'file'})},
Jakub Narebski897d1d22006-11-19 22:51:39 +01004596 "blame") . " | ";
Junio C Hamano2b2a8c72006-11-08 12:22:04 -08004597 }
Luben Tuikoveb51ec92006-09-27 17:24:49 -07004598 print $cgi->a({-href => href(action=>"history", hash_base=>$hash,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004599 file_name=>$diff->{'file'})},
Jakub Narebskie7fb0222006-10-21 17:52:19 +02004600 "history");
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004601 print "</td>\n";
4602
Jakub Narebski493e01d2007-05-07 01:10:06 +02004603 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004604 my %status_name = ('R' => 'moved', 'C' => 'copied');
Jakub Narebski493e01d2007-05-07 01:10:06 +02004605 my $nstatus = $status_name{$diff->{'status'}};
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004606 my $mode_chng = "";
Jakub Narebski493e01d2007-05-07 01:10:06 +02004607 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004608 # mode also for directories, so we cannot use $to_mode_str
4609 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004610 }
4611 print "<td>" .
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004612 $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004613 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),
4614 -class => "list"}, esc_path($diff->{'to_file'})) . "</td>\n" .
Jakub Narebskie8e41a92006-08-21 23:08:52 +02004615 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
4616 $cgi->a({-href => href(action=>"blob", hash_base=>$parent,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004617 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),
4618 -class => "list"}, esc_path($diff->{'from_file'})) .
4619 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
Luben Tuikov499faed2006-09-27 17:23:25 -07004620 "<td class=\"link\">";
Jakub Narebski241cc592006-10-31 17:36:27 +01004621 if ($action eq 'commitdiff') {
4622 # link to patch
4623 $patchno++;
Kevin Cernekee5e96a842011-03-18 17:00:16 +01004624 print $cgi->a({-href => href(-anchor=>"patch$patchno")},
4625 "patch") .
Jakub Narebski241cc592006-10-31 17:36:27 +01004626 " | ";
Jakub Narebski493e01d2007-05-07 01:10:06 +02004627 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
Jakub Narebski241cc592006-10-31 17:36:27 +01004628 # "commit" view and modified file (not only pure rename or copy)
4629 print $cgi->a({-href => href(action=>"blobdiff",
Jakub Narebski493e01d2007-05-07 01:10:06 +02004630 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},
Jakub Narebski241cc592006-10-31 17:36:27 +01004631 hash_base=>$hash, hash_parent_base=>$parent,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004632 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},
Jakub Narebski241cc592006-10-31 17:36:27 +01004633 "diff") .
4634 " | ";
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004635 }
Jakub Narebski493e01d2007-05-07 01:10:06 +02004636 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4637 hash_base=>$parent, file_name=>$diff->{'to_file'})},
Jakub Narebski897d1d22006-11-19 22:51:39 +01004638 "blob") . " | ";
Junio C Hamano2b2a8c72006-11-08 12:22:04 -08004639 if ($have_blame) {
Jakub Narebski897d1d22006-11-19 22:51:39 +01004640 print $cgi->a({-href => href(action=>"blame", hash_base=>$hash,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004641 file_name=>$diff->{'to_file'})},
Jakub Narebski897d1d22006-11-19 22:51:39 +01004642 "blame") . " | ";
Junio C Hamano2b2a8c72006-11-08 12:22:04 -08004643 }
Jakub Narebski897d1d22006-11-19 22:51:39 +01004644 print $cgi->a({-href => href(action=>"history", hash_base=>$hash,
Jakub Narebski493e01d2007-05-07 01:10:06 +02004645 file_name=>$diff->{'to_file'})},
Jakub Narebskie7fb0222006-10-21 17:52:19 +02004646 "history");
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004647 print "</td>\n";
4648
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004649 } # we should not encounter Unmerged (U) or Unknown (X) status
4650 print "</tr>\n";
4651 }
Jakub Narebski47598d72007-06-08 13:24:56 +02004652 print "</tbody>" if $has_header;
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02004653 print "</table>\n";
4654}
4655
Jakub Narebskieee08902006-08-24 00:15:14 +02004656sub git_patchset_body {
Jakub Narebskie72c0ea2007-05-07 01:10:05 +02004657 my ($fd, $difftree, $hash, @hash_parents) = @_;
4658 my ($hash_parent) = $hash_parents[0];
Jakub Narebskieee08902006-08-24 00:15:14 +02004659
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004660 my $is_combined = (@hash_parents > 1);
Jakub Narebskieee08902006-08-24 00:15:14 +02004661 my $patch_idx = 0;
Martin Koegler4280cde2007-04-22 22:49:25 -07004662 my $patch_number = 0;
Jakub Narebski6d55f052006-11-18 23:35:39 +01004663 my $patch_line;
Jakub Narebskife875852006-08-25 20:59:39 +02004664 my $diffinfo;
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004665 my $to_name;
Jakub Narebski744d0ac2006-11-08 17:59:41 +01004666 my (%from, %to);
Jakub Narebskieee08902006-08-24 00:15:14 +02004667
4668 print "<div class=\"patchset\">\n";
4669
Jakub Narebski6d55f052006-11-18 23:35:39 +01004670 # skip to first patch
4671 while ($patch_line = <$fd>) {
Jakub Narebski157e43b2006-08-24 19:34:36 +02004672 chomp $patch_line;
Jakub Narebskieee08902006-08-24 00:15:14 +02004673
Jakub Narebski6d55f052006-11-18 23:35:39 +01004674 last if ($patch_line =~ m/^diff /);
4675 }
4676
4677 PATCH:
4678 while ($patch_line) {
Jakub Narebski6d55f052006-11-18 23:35:39 +01004679
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004680 # parse "git diff" header line
4681 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
4682 # $1 is from_name, which we do not use
4683 $to_name = unquote($2);
4684 $to_name =~ s!^b/!!;
4685 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
4686 # $1 is 'cc' or 'combined', which we do not use
4687 $to_name = unquote($2);
4688 } else {
4689 $to_name = undef;
Jakub Narebski6d55f052006-11-18 23:35:39 +01004690 }
Jakub Narebski6d55f052006-11-18 23:35:39 +01004691
4692 # check if current patch belong to current raw line
4693 # and parse raw git-diff line if needed
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004694 if (is_patch_split($diffinfo, { 'to_file' => $to_name })) {
Jakub Narebski22065372007-05-12 12:42:32 +02004695 # this is continuation of a split patch
Jakub Narebski6d55f052006-11-18 23:35:39 +01004696 print "<div class=\"patch cont\">\n";
4697 } else {
4698 # advance raw git-diff output if needed
4699 $patch_idx++ if defined $diffinfo;
Jakub Narebskieee08902006-08-24 00:15:14 +02004700
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004701 # read and prepare patch information
4702 $diffinfo = parsed_difftree_line($difftree->[$patch_idx]);
4703
Jakub Narebskicd030c32007-06-08 13:33:28 +02004704 # compact combined diff output can have some patches skipped
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004705 # find which patch (using pathname of result) we are at now;
4706 if ($is_combined) {
4707 while ($to_name ne $diffinfo->{'to_file'}) {
Jakub Narebskicd030c32007-06-08 13:33:28 +02004708 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
4709 format_diff_cc_simplified($diffinfo, @hash_parents) .
4710 "</div>\n"; # class="patch"
4711
4712 $patch_idx++;
4713 $patch_number++;
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004714
4715 last if $patch_idx > $#$difftree;
4716 $diffinfo = parsed_difftree_line($difftree->[$patch_idx]);
Jakub Narebskicd030c32007-06-08 13:33:28 +02004717 }
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004718 }
Jakub Narebski711fa742007-09-08 21:49:11 +02004719
Jakub Narebski90921742007-06-08 13:27:42 +02004720 # modifies %from, %to hashes
4721 parse_from_to_diffinfo($diffinfo, \%from, \%to, @hash_parents);
Jakub Narebski5f855052007-05-17 22:54:28 +02004722
Jakub Narebski6d55f052006-11-18 23:35:39 +01004723 # this is first patch for raw difftree line with $patch_idx index
4724 # we index @$difftree array from 0, but number patches from 1
4725 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
Jakub Narebski744d0ac2006-11-08 17:59:41 +01004726 }
Jakub Narebskieee08902006-08-24 00:15:14 +02004727
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004728 # git diff header
4729 #assert($patch_line =~ m/^diff /) if DEBUG;
4730 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
4731 $patch_number++;
Jakub Narebski6d55f052006-11-18 23:35:39 +01004732 # print "git diff" header
Jakub Narebski90921742007-06-08 13:27:42 +02004733 print format_git_diff_header_line($patch_line, $diffinfo,
4734 \%from, \%to);
Jakub Narebskieee08902006-08-24 00:15:14 +02004735
Jakub Narebski6d55f052006-11-18 23:35:39 +01004736 # print extended diff header
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004737 print "<div class=\"diff extended_header\">\n";
Jakub Narebski6d55f052006-11-18 23:35:39 +01004738 EXTENDED_HEADER:
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004739 while ($patch_line = <$fd>) {
4740 chomp $patch_line;
4741
4742 last EXTENDED_HEADER if ($patch_line =~ m/^--- |^diff /);
4743
Jakub Narebski90921742007-06-08 13:27:42 +02004744 print format_extended_diff_header_line($patch_line, $diffinfo,
4745 \%from, \%to);
Jakub Narebski6d55f052006-11-18 23:35:39 +01004746 }
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004747 print "</div>\n"; # class="diff extended_header"
Jakub Narebskie4e4f822006-08-25 21:04:13 +02004748
Jakub Narebski6d55f052006-11-18 23:35:39 +01004749 # from-file/to-file diff header
Jakub Narebski0bdb28c2007-01-10 00:07:43 +01004750 if (! $patch_line) {
4751 print "</div>\n"; # class="patch"
4752 last PATCH;
4753 }
Jakub Narebski66399ef2007-01-07 02:52:25 +01004754 next PATCH if ($patch_line =~ m/^diff /);
Jakub Narebski6d55f052006-11-18 23:35:39 +01004755 #assert($patch_line =~ m/^---/) if DEBUG;
Jakub Narebski6d55f052006-11-18 23:35:39 +01004756
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004757 my $last_patch_line = $patch_line;
Jakub Narebski6d55f052006-11-18 23:35:39 +01004758 $patch_line = <$fd>;
Jakub Narebski6d55f052006-11-18 23:35:39 +01004759 chomp $patch_line;
Jakub Narebski90921742007-06-08 13:27:42 +02004760 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
Jakub Narebski6d55f052006-11-18 23:35:39 +01004761
Jakub Narebski90921742007-06-08 13:27:42 +02004762 print format_diff_from_to_header($last_patch_line, $patch_line,
Jakub Narebski91af4ce2007-06-08 13:32:44 +02004763 $diffinfo, \%from, \%to,
4764 @hash_parents);
Jakub Narebski6d55f052006-11-18 23:35:39 +01004765
4766 # the patch itself
4767 LINE:
4768 while ($patch_line = <$fd>) {
4769 chomp $patch_line;
4770
4771 next PATCH if ($patch_line =~ m/^diff /);
4772
Jakub Narebski59e3b142006-11-18 23:35:40 +01004773 print format_diff_line($patch_line, \%from, \%to);
Jakub Narebskieee08902006-08-24 00:15:14 +02004774 }
Jakub Narebskieee08902006-08-24 00:15:14 +02004775
Jakub Narebski6d55f052006-11-18 23:35:39 +01004776 } continue {
4777 print "</div>\n"; # class="patch"
Jakub Narebskieee08902006-08-24 00:15:14 +02004778 }
Jakub Narebskid26c4262007-05-17 00:05:55 +02004779
Ralf Wildenhues22e5e582010-08-22 13:12:12 +02004780 # for compact combined (--cc) format, with chunk and patch simplification
4781 # the patchset might be empty, but there might be unprocessed raw lines
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004782 for (++$patch_idx if $patch_number > 0;
Jakub Narebskicd030c32007-06-08 13:33:28 +02004783 $patch_idx < @$difftree;
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004784 ++$patch_idx) {
Jakub Narebskicd030c32007-06-08 13:33:28 +02004785 # read and prepare patch information
Jakub Narebski0cec6db2007-10-30 01:35:05 +01004786 $diffinfo = parsed_difftree_line($difftree->[$patch_idx]);
Jakub Narebskicd030c32007-06-08 13:33:28 +02004787
4788 # generate anchor for "patch" links in difftree / whatchanged part
4789 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
4790 format_diff_cc_simplified($diffinfo, @hash_parents) .
4791 "</div>\n"; # class="patch"
4792
4793 $patch_number++;
4794 }
4795
Jakub Narebskid26c4262007-05-17 00:05:55 +02004796 if ($patch_number == 0) {
4797 if (@hash_parents > 1) {
4798 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
4799 } else {
4800 print "<div class=\"diff nodifferences\">No differences found</div>\n";
4801 }
4802 }
Jakub Narebskieee08902006-08-24 00:15:14 +02004803
4804 print "</div>\n"; # class="patchset"
4805}
4806
4807# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
4808
Jakub Narebski69913412008-06-10 19:21:01 +02004809# fills project list info (age, description, owner, forks) for each
4810# project in the list, removing invalid projects from returned list
4811# NOTE: modifies $projlist, but does not remove entries from it
4812sub fill_project_list_info {
Jakub Narebski12b14432011-04-29 19:51:56 +02004813 my $projlist = shift;
Petr Baudise30496d2006-10-24 05:33:17 +02004814 my @projects;
Jakub Narebski69913412008-06-10 19:21:01 +02004815
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08004816 my $show_ctags = gitweb_check_feature('ctags');
Jakub Narebski69913412008-06-10 19:21:01 +02004817 PROJECT:
Petr Baudise30496d2006-10-24 05:33:17 +02004818 foreach my $pr (@$projlist) {
Jakub Narebski69913412008-06-10 19:21:01 +02004819 my (@activity) = git_get_last_activity($pr->{'path'});
4820 unless (@activity) {
4821 next PROJECT;
Petr Baudise30496d2006-10-24 05:33:17 +02004822 }
Jakub Narebski69913412008-06-10 19:21:01 +02004823 ($pr->{'age'}, $pr->{'age_string'}) = @activity;
Petr Baudise30496d2006-10-24 05:33:17 +02004824 if (!defined $pr->{'descr'}) {
4825 my $descr = git_get_project_description($pr->{'path'}) || "";
Jakub Narebski69913412008-06-10 19:21:01 +02004826 $descr = to_utf8($descr);
4827 $pr->{'descr_long'} = $descr;
Michael Hendricks55feb122007-07-04 18:36:48 -06004828 $pr->{'descr'} = chop_str($descr, $projects_list_description_width, 5);
Petr Baudise30496d2006-10-24 05:33:17 +02004829 }
4830 if (!defined $pr->{'owner'}) {
Miklos Vajna76e4f5d2007-07-04 00:11:23 +02004831 $pr->{'owner'} = git_get_project_owner("$pr->{'path'}") || "";
Petr Baudise30496d2006-10-24 05:33:17 +02004832 }
Jakub Narebski12b14432011-04-29 19:51:56 +02004833 if ($show_ctags) {
4834 $pr->{'ctags'} = git_get_project_ctags($pr->{'path'});
Petr Baudise30496d2006-10-24 05:33:17 +02004835 }
4836 push @projects, $pr;
4837 }
4838
Jakub Narebski69913412008-06-10 19:21:01 +02004839 return @projects;
4840}
4841
Jakub Narebski12b14432011-04-29 19:51:56 +02004842sub sort_projects_list {
4843 my ($projlist, $order) = @_;
4844 my @projects;
4845
4846 my %order_info = (
4847 project => { key => 'path', type => 'str' },
4848 descr => { key => 'descr_long', type => 'str' },
4849 owner => { key => 'owner', type => 'str' },
4850 age => { key => 'age', type => 'num' }
4851 );
4852 my $oi = $order_info{$order};
4853 return @$projlist unless defined $oi;
4854 if ($oi->{'type'} eq 'str') {
4855 @projects = sort {$a->{$oi->{'key'}} cmp $b->{$oi->{'key'}}} @$projlist;
4856 } else {
4857 @projects = sort {$a->{$oi->{'key'}} <=> $b->{$oi->{'key'}}} @$projlist;
4858 }
4859
4860 return @projects;
4861}
4862
Petr Baudis6b28da62008-09-25 18:48:37 +02004863# print 'sort by' <th> element, generating 'sort by $name' replay link
4864# if that order is not selected
Jakub Narebski7da0f3a2008-06-10 19:21:44 +02004865sub print_sort_th {
John 'Warthog9' Hawley1ee4b4e2010-01-30 23:30:43 +01004866 print format_sort_th(@_);
4867}
4868
4869sub format_sort_th {
Petr Baudis6b28da62008-09-25 18:48:37 +02004870 my ($name, $order, $header) = @_;
John 'Warthog9' Hawley1ee4b4e2010-01-30 23:30:43 +01004871 my $sort_th = "";
Jakub Narebski7da0f3a2008-06-10 19:21:44 +02004872 $header ||= ucfirst($name);
4873
4874 if ($order eq $name) {
John 'Warthog9' Hawley1ee4b4e2010-01-30 23:30:43 +01004875 $sort_th .= "<th>$header</th>\n";
Jakub Narebski7da0f3a2008-06-10 19:21:44 +02004876 } else {
John 'Warthog9' Hawley1ee4b4e2010-01-30 23:30:43 +01004877 $sort_th .= "<th>" .
4878 $cgi->a({-href => href(-replay=>1, order=>$name),
4879 -class => "header"}, $header) .
4880 "</th>\n";
Jakub Narebski7da0f3a2008-06-10 19:21:44 +02004881 }
John 'Warthog9' Hawley1ee4b4e2010-01-30 23:30:43 +01004882
4883 return $sort_th;
Jakub Narebski7da0f3a2008-06-10 19:21:44 +02004884}
4885
Jakub Narebski69913412008-06-10 19:21:01 +02004886sub git_project_list_body {
Petr Baudis42326112008-10-02 17:17:01 +02004887 # actually uses global variable $project
Jakub Narebski69913412008-06-10 19:21:01 +02004888 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
Jakub Narebski12b14432011-04-29 19:51:56 +02004889 my @projects = @$projlist;
Jakub Narebski69913412008-06-10 19:21:01 +02004890
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08004891 my $check_forks = gitweb_check_feature('forks');
Jakub Narebski12b14432011-04-29 19:51:56 +02004892 my $show_ctags = gitweb_check_feature('ctags');
4893 my $tagfilter = $show_ctags ? $cgi->param('by_tag') : undef;
4894 $check_forks = undef
4895 if ($tagfilter || $searchtext);
4896
4897 # filtering out forks before filling info allows to do less work
4898 @projects = filter_forks_from_projects_list(\@projects)
4899 if ($check_forks);
4900 @projects = fill_project_list_info(\@projects);
4901 # searching projects require filling to be run before it
4902 @projects = search_projects_list(\@projects,
4903 'searchtext' => $searchtext,
4904 'tagfilter' => $tagfilter)
4905 if ($tagfilter || $searchtext);
Jakub Narebski69913412008-06-10 19:21:01 +02004906
Frank Lichtenheldb06dcf82007-04-06 23:58:24 +02004907 $order ||= $default_projects_order;
Petr Baudise30496d2006-10-24 05:33:17 +02004908 $from = 0 unless defined $from;
4909 $to = $#projects if (!defined $to || $#projects < $to);
4910
Jakub Narebski12b14432011-04-29 19:51:56 +02004911 # short circuit
4912 if ($from > $to) {
4913 print "<center>\n".
4914 "<b>No such projects found</b><br />\n".
4915 "Click ".$cgi->a({-href=>href(project=>undef)},"here")." to view all projects<br />\n".
4916 "</center>\n<br />\n";
4917 return;
Petr Baudis6b28da62008-09-25 18:48:37 +02004918 }
4919
Jakub Narebski12b14432011-04-29 19:51:56 +02004920 @projects = sort_projects_list(\@projects, $order);
4921
Petr Baudisaed93de2008-10-02 17:13:02 +02004922 if ($show_ctags) {
4923 my %ctags;
4924 foreach my $p (@projects) {
4925 foreach my $ct (keys %{$p->{'ctags'}}) {
4926 $ctags{$ct} += $p->{'ctags'}->{$ct};
4927 }
4928 }
4929 my $cloud = git_populate_project_tagcloud(\%ctags);
4930 print git_show_project_tagcloud($cloud, 64);
4931 }
4932
Petr Baudise30496d2006-10-24 05:33:17 +02004933 print "<table class=\"project_list\">\n";
4934 unless ($no_header) {
4935 print "<tr>\n";
4936 if ($check_forks) {
4937 print "<th></th>\n";
4938 }
Petr Baudis6b28da62008-09-25 18:48:37 +02004939 print_sort_th('project', $order, 'Project');
4940 print_sort_th('descr', $order, 'Description');
4941 print_sort_th('owner', $order, 'Owner');
4942 print_sort_th('age', $order, 'Last Change');
Jakub Narebski7da0f3a2008-06-10 19:21:44 +02004943 print "<th></th>\n" . # for links
Petr Baudise30496d2006-10-24 05:33:17 +02004944 "</tr>\n";
4945 }
4946 my $alternate = 1;
4947 for (my $i = $from; $i <= $to; $i++) {
4948 my $pr = $projects[$i];
Petr Baudis42326112008-10-02 17:17:01 +02004949
Petr Baudise30496d2006-10-24 05:33:17 +02004950 if ($alternate) {
4951 print "<tr class=\"dark\">\n";
4952 } else {
4953 print "<tr class=\"light\">\n";
4954 }
4955 $alternate ^= 1;
Jakub Narebski12b14432011-04-29 19:51:56 +02004956
Petr Baudise30496d2006-10-24 05:33:17 +02004957 if ($check_forks) {
4958 print "<td>";
4959 if ($pr->{'forks'}) {
Jakub Narebski12b14432011-04-29 19:51:56 +02004960 my $nforks = scalar @{$pr->{'forks'}};
4961 if ($nforks > 0) {
4962 print $cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks"),
4963 -title => "$nforks forks"}, "+");
4964 } else {
4965 print $cgi->span({-title => "$nforks forks"}, "+");
4966 }
Petr Baudise30496d2006-10-24 05:33:17 +02004967 }
4968 print "</td>\n";
4969 }
4970 print "<td>" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),
4971 -class => "list"}, esc_html($pr->{'path'})) . "</td>\n" .
Jakub Narebskie88ce8a2006-11-26 02:18:26 +01004972 "<td>" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),
4973 -class => "list", -title => $pr->{'descr_long'}},
4974 esc_html($pr->{'descr'})) . "</td>\n" .
David Symondsd3cd2492007-10-23 11:31:23 +10004975 "<td><i>" . chop_and_escape_str($pr->{'owner'}, 15) . "</i></td>\n";
Petr Baudise30496d2006-10-24 05:33:17 +02004976 print "<td class=\"". age_class($pr->{'age'}) . "\">" .
Jakub Narebski785cdea2007-05-13 12:39:22 +02004977 (defined $pr->{'age_string'} ? $pr->{'age_string'} : "No commits") . "</td>\n" .
Petr Baudise30496d2006-10-24 05:33:17 +02004978 "<td class=\"link\">" .
4979 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")}, "summary") . " | " .
Alexandre Julliardfaa1bbf2006-11-15 21:37:50 +01004980 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")}, "shortlog") . " | " .
Petr Baudise30496d2006-10-24 05:33:17 +02004981 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")}, "log") . " | " .
4982 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")}, "tree") .
4983 ($pr->{'forks'} ? " | " . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")}, "forks") : '') .
4984 "</td>\n" .
4985 "</tr>\n";
4986 }
4987 if (defined $extra) {
4988 print "<tr>\n";
4989 if ($check_forks) {
4990 print "<td></td>\n";
4991 }
4992 print "<td colspan=\"5\">$extra</td>\n" .
4993 "</tr>\n";
4994 }
4995 print "</table>\n";
4996}
4997
Jakub Narebski42671ca2009-11-13 02:02:12 +01004998sub git_log_body {
4999 # uses global variable $project
5000 my ($commitlist, $from, $to, $refs, $extra) = @_;
5001
5002 $from = 0 unless defined $from;
5003 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5004
5005 for (my $i = 0; $i <= $to; $i++) {
5006 my %co = %{$commitlist->[$i]};
5007 next if !%co;
5008 my $commit = $co{'id'};
5009 my $ref = format_ref_marker($refs, $commit);
Jakub Narebski42671ca2009-11-13 02:02:12 +01005010 git_print_header_div('commit',
5011 "<span class=\"age\">$co{'age_string'}</span>" .
5012 esc_html($co{'title'}) . $ref,
5013 $commit);
5014 print "<div class=\"title_text\">\n" .
5015 "<div class=\"log_link\">\n" .
5016 $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") .
5017 " | " .
5018 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") .
5019 " | " .
5020 $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree") .
5021 "<br/>\n" .
5022 "</div>\n";
5023 git_print_authorship(\%co, -tag => 'span');
5024 print "<br/>\n</div>\n";
5025
5026 print "<div class=\"log_body\">\n";
5027 git_print_log($co{'comment'}, -final_empty_line=> 1);
5028 print "</div>\n";
5029 }
5030 if ($extra) {
5031 print "<div class=\"page_nav\">\n";
5032 print "$extra\n";
5033 print "</div>\n";
5034 }
5035}
5036
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005037sub git_shortlog_body {
5038 # uses global variable $project
Robert Fitzsimons190d7fd2006-12-24 14:31:44 +00005039 my ($commitlist, $from, $to, $refs, $extra) = @_;
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +05305040
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005041 $from = 0 unless defined $from;
Robert Fitzsimons190d7fd2006-12-24 14:31:44 +00005042 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005043
Jakub Narebski591ebf62007-11-19 14:16:11 +01005044 print "<table class=\"shortlog\">\n";
Luben Tuikov6dd36ac2006-09-28 16:47:50 -07005045 my $alternate = 1;
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005046 for (my $i = $from; $i <= $to; $i++) {
Robert Fitzsimons190d7fd2006-12-24 14:31:44 +00005047 my %co = %{$commitlist->[$i]};
5048 my $commit = $co{'id'};
Jakub Narebski847e01f2006-08-14 02:05:47 +02005049 my $ref = format_ref_marker($refs, $commit);
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005050 if ($alternate) {
5051 print "<tr class=\"dark\">\n";
5052 } else {
5053 print "<tr class=\"light\">\n";
5054 }
5055 $alternate ^= 1;
5056 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
5057 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02005058 format_author_html('td', \%co, 10) . "<td>";
Jakub Narebski952c65f2006-08-22 16:52:50 +02005059 print format_subject_html($co{'title'}, $co{'title_short'},
5060 href(action=>"commit", hash=>$commit), $ref);
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005061 print "</td>\n" .
5062 "<td class=\"link\">" .
Petr Baudis4777b012006-10-24 05:36:10 +02005063 $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") . " | " .
Petr Baudis35749ae2006-09-22 03:19:44 +02005064 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " .
Petr Baudis55ff35c2006-10-06 15:57:52 +02005065 $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree");
Matt McCutchena3c8ab32007-07-22 01:30:27 +02005066 my $snapshot_links = format_snapshot_links($commit);
5067 if (defined $snapshot_links) {
5068 print " | " . $snapshot_links;
Petr Baudis55ff35c2006-10-06 15:57:52 +02005069 }
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +05305070 print "</td>\n" .
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005071 "</tr>\n";
5072 }
5073 if (defined $extra) {
5074 print "<tr>\n" .
5075 "<td colspan=\"4\">$extra</td>\n" .
5076 "</tr>\n";
5077 }
5078 print "</table>\n";
5079}
5080
Jakub Narebski581860e2006-08-14 02:09:08 +02005081sub git_history_body {
5082 # Warning: assumes constant type (blob or tree) during history
Jakub Narebski69ca37d2009-11-13 02:02:14 +01005083 my ($commitlist, $from, $to, $refs, $extra,
5084 $file_name, $file_hash, $ftype) = @_;
Jakub Narebski8be68352006-09-11 00:36:04 +02005085
5086 $from = 0 unless defined $from;
Robert Fitzsimonsa8b983b2006-12-24 14:31:48 +00005087 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
Jakub Narebski581860e2006-08-14 02:09:08 +02005088
Jakub Narebski591ebf62007-11-19 14:16:11 +01005089 print "<table class=\"history\">\n";
Luben Tuikov6dd36ac2006-09-28 16:47:50 -07005090 my $alternate = 1;
Jakub Narebski8be68352006-09-11 00:36:04 +02005091 for (my $i = $from; $i <= $to; $i++) {
Robert Fitzsimonsa8b983b2006-12-24 14:31:48 +00005092 my %co = %{$commitlist->[$i]};
Jakub Narebski581860e2006-08-14 02:09:08 +02005093 if (!%co) {
5094 next;
5095 }
Robert Fitzsimonsa8b983b2006-12-24 14:31:48 +00005096 my $commit = $co{'id'};
Jakub Narebski581860e2006-08-14 02:09:08 +02005097
5098 my $ref = format_ref_marker($refs, $commit);
5099
5100 if ($alternate) {
5101 print "<tr class=\"dark\">\n";
5102 } else {
5103 print "<tr class=\"light\">\n";
5104 }
5105 $alternate ^= 1;
5106 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02005107 # shortlog: format_author_html('td', \%co, 10)
5108 format_author_html('td', \%co, 15, 3) . "<td>";
Jakub Narebski581860e2006-08-14 02:09:08 +02005109 # originally git_history used chop_str($co{'title'}, 50)
Jakub Narebski952c65f2006-08-22 16:52:50 +02005110 print format_subject_html($co{'title'}, $co{'title_short'},
5111 href(action=>"commit", hash=>$commit), $ref);
Jakub Narebski581860e2006-08-14 02:09:08 +02005112 print "</td>\n" .
5113 "<td class=\"link\">" .
Luben Tuikov6d81c5a2006-09-28 17:21:07 -07005114 $cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)}, $ftype) . " | " .
5115 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff");
Jakub Narebski581860e2006-08-14 02:09:08 +02005116
5117 if ($ftype eq 'blob') {
Jakub Narebski69ca37d2009-11-13 02:02:14 +01005118 my $blob_current = $file_hash;
Jakub Narebski581860e2006-08-14 02:09:08 +02005119 my $blob_parent = git_get_hash_by_path($commit, $file_name);
5120 if (defined $blob_current && defined $blob_parent &&
5121 $blob_current ne $blob_parent) {
5122 print " | " .
Jakub Narebski420e92f2006-08-24 23:53:54 +02005123 $cgi->a({-href => href(action=>"blobdiff",
5124 hash=>$blob_current, hash_parent=>$blob_parent,
5125 hash_base=>$hash_base, hash_parent_base=>$commit,
5126 file_name=>$file_name)},
Jakub Narebski581860e2006-08-14 02:09:08 +02005127 "diff to current");
5128 }
5129 }
5130 print "</td>\n" .
5131 "</tr>\n";
5132 }
5133 if (defined $extra) {
5134 print "<tr>\n" .
5135 "<td colspan=\"4\">$extra</td>\n" .
5136 "</tr>\n";
5137 }
5138 print "</table>\n";
5139}
5140
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005141sub git_tags_body {
5142 # uses global variable $project
5143 my ($taglist, $from, $to, $extra) = @_;
5144 $from = 0 unless defined $from;
5145 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
5146
Jakub Narebski591ebf62007-11-19 14:16:11 +01005147 print "<table class=\"tags\">\n";
Luben Tuikov6dd36ac2006-09-28 16:47:50 -07005148 my $alternate = 1;
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005149 for (my $i = $from; $i <= $to; $i++) {
5150 my $entry = $taglist->[$i];
5151 my %tag = %$entry;
Jakub Narebskicd146402006-11-02 20:23:11 +01005152 my $comment = $tag{'subject'};
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005153 my $comment_short;
5154 if (defined $comment) {
5155 $comment_short = chop_str($comment, 30, 5);
5156 }
5157 if ($alternate) {
5158 print "<tr class=\"dark\">\n";
5159 } else {
5160 print "<tr class=\"light\">\n";
5161 }
5162 $alternate ^= 1;
Jakub Narebski27dd1a82007-01-03 22:54:29 +01005163 if (defined $tag{'age'}) {
5164 print "<td><i>$tag{'age'}</i></td>\n";
5165 } else {
5166 print "<td></td>\n";
5167 }
5168 print "<td>" .
Martin Waitz1c2a4f52006-08-16 00:24:30 +02005169 $cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),
Jakub Narebski63e42202006-08-22 12:38:59 +02005170 -class => "list name"}, esc_html($tag{'name'})) .
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005171 "</td>\n" .
5172 "<td>";
5173 if (defined $comment) {
Jakub Narebski952c65f2006-08-22 16:52:50 +02005174 print format_subject_html($comment, $comment_short,
5175 href(action=>"tag", hash=>$tag{'id'}));
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005176 }
5177 print "</td>\n" .
5178 "<td class=\"selflink\">";
5179 if ($tag{'type'} eq "tag") {
Martin Waitz1c2a4f52006-08-16 00:24:30 +02005180 print $cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})}, "tag");
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005181 } else {
5182 print "&nbsp;";
5183 }
5184 print "</td>\n" .
5185 "<td class=\"link\">" . " | " .
Martin Waitz1c2a4f52006-08-16 00:24:30 +02005186 $cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})}, $tag{'reftype'});
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005187 if ($tag{'reftype'} eq "commit") {
Jakub Narebskibf901f82007-12-15 15:40:28 +01005188 print " | " . $cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})}, "shortlog") .
5189 " | " . $cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})}, "log");
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005190 } elsif ($tag{'reftype'} eq "blob") {
Martin Waitz1c2a4f52006-08-16 00:24:30 +02005191 print " | " . $cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})}, "raw");
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005192 }
5193 print "</td>\n" .
5194 "</tr>";
5195 }
5196 if (defined $extra) {
5197 print "<tr>\n" .
5198 "<td colspan=\"5\">$extra</td>\n" .
5199 "</tr>\n";
5200 }
5201 print "</table>\n";
5202}
5203
5204sub git_heads_body {
5205 # uses global variable $project
Jakub Narebski120ddde2006-09-19 14:33:22 +02005206 my ($headlist, $head, $from, $to, $extra) = @_;
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005207 $from = 0 unless defined $from;
Jakub Narebski120ddde2006-09-19 14:33:22 +02005208 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005209
Jakub Narebski591ebf62007-11-19 14:16:11 +01005210 print "<table class=\"heads\">\n";
Luben Tuikov6dd36ac2006-09-28 16:47:50 -07005211 my $alternate = 1;
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005212 for (my $i = $from; $i <= $to; $i++) {
Jakub Narebski120ddde2006-09-19 14:33:22 +02005213 my $entry = $headlist->[$i];
Jakub Narebskicd146402006-11-02 20:23:11 +01005214 my %ref = %$entry;
5215 my $curr = $ref{'id'} eq $head;
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005216 if ($alternate) {
5217 print "<tr class=\"dark\">\n";
5218 } else {
5219 print "<tr class=\"light\">\n";
5220 }
5221 $alternate ^= 1;
Jakub Narebskicd146402006-11-02 20:23:11 +01005222 print "<td><i>$ref{'age'}</i></td>\n" .
5223 ($curr ? "<td class=\"current_head\">" : "<td>") .
Jakub Narebskibf901f82007-12-15 15:40:28 +01005224 $cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),
Jakub Narebskicd146402006-11-02 20:23:11 +01005225 -class => "list name"},esc_html($ref{'name'})) .
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005226 "</td>\n" .
5227 "<td class=\"link\">" .
Jakub Narebskibf901f82007-12-15 15:40:28 +01005228 $cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})}, "shortlog") . " | " .
5229 $cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})}, "log") . " | " .
Giuseppe Bilotta9e70e152010-11-11 13:26:08 +01005230 $cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})}, "tree") .
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005231 "</td>\n" .
5232 "</tr>";
5233 }
5234 if (defined $extra) {
5235 print "<tr>\n" .
5236 "<td colspan=\"3\">$extra</td>\n" .
5237 "</tr>\n";
5238 }
5239 print "</table>\n";
5240}
5241
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005242# Display a single remote block
5243sub git_remote_block {
5244 my ($remote, $rdata, $limit, $head) = @_;
5245
5246 my $heads = $rdata->{'heads'};
5247 my $fetch = $rdata->{'fetch'};
5248 my $push = $rdata->{'push'};
5249
5250 my $urls_table = "<table class=\"projects_list\">\n" ;
5251
5252 if (defined $fetch) {
5253 if ($fetch eq $push) {
5254 $urls_table .= format_repo_url("URL", $fetch);
5255 } else {
5256 $urls_table .= format_repo_url("Fetch URL", $fetch);
5257 $urls_table .= format_repo_url("Push URL", $push) if defined $push;
5258 }
5259 } elsif (defined $push) {
5260 $urls_table .= format_repo_url("Push URL", $push);
5261 } else {
5262 $urls_table .= format_repo_url("", "No remote URL");
5263 }
5264
5265 $urls_table .= "</table>\n";
5266
5267 my $dots;
5268 if (defined $limit && $limit < @$heads) {
5269 $dots = $cgi->a({-href => href(action=>"remotes", hash=>$remote)}, "...");
5270 }
5271
5272 print $urls_table;
5273 git_heads_body($heads, $head, 0, $limit, $dots);
5274}
5275
5276# Display a list of remote names with the respective fetch and push URLs
5277sub git_remotes_list {
5278 my ($remotedata, $limit) = @_;
5279 print "<table class=\"heads\">\n";
5280 my $alternate = 1;
5281 my @remotes = sort keys %$remotedata;
5282
5283 my $limited = $limit && $limit < @remotes;
5284
5285 $#remotes = $limit - 1 if $limited;
5286
5287 while (my $remote = shift @remotes) {
5288 my $rdata = $remotedata->{$remote};
5289 my $fetch = $rdata->{'fetch'};
5290 my $push = $rdata->{'push'};
5291 if ($alternate) {
5292 print "<tr class=\"dark\">\n";
5293 } else {
5294 print "<tr class=\"light\">\n";
5295 }
5296 $alternate ^= 1;
5297 print "<td>" .
5298 $cgi->a({-href=> href(action=>'remotes', hash=>$remote),
5299 -class=> "list name"},esc_html($remote)) .
5300 "</td>";
5301 print "<td class=\"link\">" .
5302 (defined $fetch ? $cgi->a({-href=> $fetch}, "fetch") : "fetch") .
5303 " | " .
5304 (defined $push ? $cgi->a({-href=> $push}, "push") : "push") .
5305 "</td>";
5306
5307 print "</tr>\n";
5308 }
5309
5310 if ($limited) {
5311 print "<tr>\n" .
5312 "<td colspan=\"3\">" .
5313 $cgi->a({-href => href(action=>"remotes")}, "...") .
5314 "</td>\n" . "</tr>\n";
5315 }
5316
5317 print "</table>";
5318}
5319
5320# Display remote heads grouped by remote, unless there are too many
5321# remotes, in which case we only display the remote names
5322sub git_remotes_body {
5323 my ($remotedata, $limit, $head) = @_;
5324 if ($limit and $limit < keys %$remotedata) {
5325 git_remotes_list($remotedata, $limit);
5326 } else {
5327 fill_remote_heads($remotedata);
5328 while (my ($remote, $rdata) = each %$remotedata) {
5329 git_print_section({-class=>"remote", -id=>$remote},
5330 ["remotes", $remote, $remote], sub {
5331 git_remote_block($remote, $rdata, $limit, $head);
5332 });
5333 }
5334 }
5335}
5336
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005337sub git_search_grep_body {
Robert Fitzsimons5ad66082006-12-24 14:31:46 +00005338 my ($commitlist, $from, $to, $extra) = @_;
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005339 $from = 0 unless defined $from;
Robert Fitzsimons5ad66082006-12-24 14:31:46 +00005340 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005341
Jakub Narebski591ebf62007-11-19 14:16:11 +01005342 print "<table class=\"commit_search\">\n";
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005343 my $alternate = 1;
5344 for (my $i = $from; $i <= $to; $i++) {
Robert Fitzsimons5ad66082006-12-24 14:31:46 +00005345 my %co = %{$commitlist->[$i]};
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005346 if (!%co) {
5347 next;
5348 }
Robert Fitzsimons5ad66082006-12-24 14:31:46 +00005349 my $commit = $co{'id'};
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005350 if ($alternate) {
5351 print "<tr class=\"dark\">\n";
5352 } else {
5353 print "<tr class=\"light\">\n";
5354 }
5355 $alternate ^= 1;
5356 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02005357 format_author_html('td', \%co, 15, 5) .
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005358 "<td>" .
Junio C Hamanobe8b9062008-02-22 17:33:47 +01005359 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),
5360 -class => "list subject"},
5361 chop_and_escape_str($co{'title'}, 50) . "<br/>");
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005362 my $comment = $co{'comment'};
5363 foreach my $line (@$comment) {
Jakub Narebski6dfbb302008-03-02 16:57:14 +01005364 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
Junio C Hamanobe8b9062008-02-22 17:33:47 +01005365 my ($lead, $match, $trail) = ($1, $2, $3);
Jakub Narebskib8d97d02008-02-25 21:07:57 +01005366 $match = chop_str($match, 70, 5, 'center');
5367 my $contextlen = int((80 - length($match))/2);
5368 $contextlen = 30 if ($contextlen > 30);
5369 $lead = chop_str($lead, $contextlen, 10, 'left');
5370 $trail = chop_str($trail, $contextlen, 10, 'right');
Junio C Hamanobe8b9062008-02-22 17:33:47 +01005371
5372 $lead = esc_html($lead);
5373 $match = esc_html($match);
5374 $trail = esc_html($trail);
5375
5376 print "$lead<span class=\"match\">$match</span>$trail<br />";
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005377 }
5378 }
5379 print "</td>\n" .
5380 "<td class=\"link\">" .
5381 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})}, "commit") .
5382 " | " .
Denis Chengf1fe8f52007-11-26 20:42:06 +08005383 $cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})}, "commitdiff") .
5384 " | " .
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00005385 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})}, "tree");
5386 print "</td>\n" .
5387 "</tr>\n";
5388 }
5389 if (defined $extra) {
5390 print "<tr>\n" .
5391 "<td colspan=\"3\">$extra</td>\n" .
5392 "</tr>\n";
5393 }
5394 print "</table>\n";
5395}
5396
Jakub Narebski717b8312006-07-31 21:22:15 +02005397## ======================================================================
5398## ======================================================================
5399## actions
5400
Jakub Narebski717b8312006-07-31 21:22:15 +02005401sub git_project_list {
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02005402 my $order = $input_params{'order'};
Frank Lichtenheldb06dcf82007-04-06 23:58:24 +02005403 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02005404 die_error(400, "Unknown order parameter");
Jakub Narebski6326b602006-08-01 02:59:12 +02005405 }
5406
Jakub Narebski847e01f2006-08-14 02:05:47 +02005407 my @list = git_get_projects_list();
Jakub Narebski717b8312006-07-31 21:22:15 +02005408 if (!@list) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02005409 die_error(404, "No projects found");
Jakub Narebski717b8312006-07-31 21:22:15 +02005410 }
Jakub Narebski6326b602006-08-01 02:59:12 +02005411
Jakub Narebski717b8312006-07-31 21:22:15 +02005412 git_header_html();
John 'Warthog9' Hawley24d4afc2010-01-30 23:30:41 +01005413 if (defined $home_text && -f $home_text) {
Jakub Narebski717b8312006-07-31 21:22:15 +02005414 print "<div class=\"index_include\">\n";
Jakub Narebski2dcb5e12008-12-01 19:01:42 +01005415 insert_file($home_text);
Jakub Narebski717b8312006-07-31 21:22:15 +02005416 print "</div>\n";
5417 }
Petr Baudis0d1d1542008-10-03 09:29:45 +02005418 print $cgi->startform(-method => "get") .
5419 "<p class=\"projsearch\">Search:\n" .
5420 $cgi->textfield(-name => "s", -value => $searchtext) . "\n" .
5421 "</p>" .
5422 $cgi->end_form() . "\n";
Petr Baudise30496d2006-10-24 05:33:17 +02005423 git_project_list_body(\@list, $order);
5424 git_footer_html();
5425}
5426
5427sub git_forks {
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02005428 my $order = $input_params{'order'};
Frank Lichtenheldb06dcf82007-04-06 23:58:24 +02005429 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02005430 die_error(400, "Unknown order parameter");
Jakub Narebski717b8312006-07-31 21:22:15 +02005431 }
Petr Baudise30496d2006-10-24 05:33:17 +02005432
5433 my @list = git_get_projects_list($project);
5434 if (!@list) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02005435 die_error(404, "No forks found");
Jakub Narebski717b8312006-07-31 21:22:15 +02005436 }
Petr Baudise30496d2006-10-24 05:33:17 +02005437
5438 git_header_html();
5439 git_print_page_nav('','');
5440 git_print_header_div('summary', "$project forks");
5441 git_project_list_body(\@list, $order);
Jakub Narebski717b8312006-07-31 21:22:15 +02005442 git_footer_html();
5443}
5444
Jakub Narebskifc2b2be2006-09-15 04:56:03 +02005445sub git_project_index {
Jakub Narebski12b14432011-04-29 19:51:56 +02005446 my @projects = git_get_projects_list();
5447 if (!@projects) {
5448 die_error(404, "No projects found");
5449 }
Jakub Narebskifc2b2be2006-09-15 04:56:03 +02005450
5451 print $cgi->header(
5452 -type => 'text/plain',
5453 -charset => 'utf-8',
Jakub Narebskiab41dfb2006-09-26 01:59:43 +02005454 -content_disposition => 'inline; filename="index.aux"');
Jakub Narebskifc2b2be2006-09-15 04:56:03 +02005455
5456 foreach my $pr (@projects) {
5457 if (!exists $pr->{'owner'}) {
Miklos Vajna76e4f5d2007-07-04 00:11:23 +02005458 $pr->{'owner'} = git_get_project_owner("$pr->{'path'}");
Jakub Narebskifc2b2be2006-09-15 04:56:03 +02005459 }
5460
5461 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
5462 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
5463 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X", ord($1))/eg;
5464 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X", ord($1))/eg;
5465 $path =~ s/ /\+/g;
5466 $owner =~ s/ /\+/g;
5467
5468 print "$path $owner\n";
5469 }
5470}
5471
Kay Sieversede5e102005-08-07 20:23:12 +02005472sub git_summary {
Jakub Narebski847e01f2006-08-14 02:05:47 +02005473 my $descr = git_get_project_description($project) || "none";
Robert Fitzsimonsa979d122006-12-22 19:38:15 +00005474 my %co = parse_commit("HEAD");
Jakub Narebski785cdea2007-05-13 12:39:22 +02005475 my %cd = %co ? parse_date($co{'committer_epoch'}, $co{'committer_tz'}) : ();
Robert Fitzsimonsa979d122006-12-22 19:38:15 +00005476 my $head = $co{'id'};
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +01005477 my $remote_heads = gitweb_check_feature('remote_heads');
Kay Sieversede5e102005-08-07 20:23:12 +02005478
Jakub Narebski1e0cf032006-08-14 02:10:06 +02005479 my $owner = git_get_project_owner($project);
Kay Sieversede5e102005-08-07 20:23:12 +02005480
Jakub Narebskicd146402006-11-02 20:23:11 +01005481 my $refs = git_get_references();
Robert Fitzsimons313ce8c2006-12-19 12:08:54 +00005482 # These get_*_list functions return one more to allow us to see if
5483 # there are more ...
5484 my @taglist = git_get_tags_list(16);
5485 my @headlist = git_get_heads_list(16);
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005486 my %remotedata = $remote_heads ? git_get_remotes_list() : ();
Petr Baudise30496d2006-10-24 05:33:17 +02005487 my @forklist;
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08005488 my $check_forks = gitweb_check_feature('forks');
Junio C Hamano5dd5ed02006-11-07 22:00:45 -08005489
5490 if ($check_forks) {
Jakub Narebski12b14432011-04-29 19:51:56 +02005491 # find forks of a project
Petr Baudise30496d2006-10-24 05:33:17 +02005492 @forklist = git_get_projects_list($project);
Jakub Narebski12b14432011-04-29 19:51:56 +02005493 # filter out forks of forks
5494 @forklist = filter_forks_from_projects_list(\@forklist)
5495 if (@forklist);
Petr Baudise30496d2006-10-24 05:33:17 +02005496 }
Jakub Narebski120ddde2006-09-19 14:33:22 +02005497
Kay Sieversede5e102005-08-07 20:23:12 +02005498 git_header_html();
Jakub Narebski847e01f2006-08-14 02:05:47 +02005499 git_print_page_nav('summary','', $head);
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005500
Kay Sievers19806692005-08-07 20:26:27 +02005501 print "<div class=\"title\">&nbsp;</div>\n";
Jakub Narebski591ebf62007-11-19 14:16:11 +01005502 print "<table class=\"projects_list\">\n" .
Petr Baudisa4761422008-10-02 16:25:05 +02005503 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html($descr) . "</td></tr>\n" .
5504 "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html($owner) . "</td></tr>\n";
Jakub Narebski785cdea2007-05-13 12:39:22 +02005505 if (defined $cd{'rfc2822'}) {
Petr Baudisa4761422008-10-02 16:25:05 +02005506 print "<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
Jakub Narebski785cdea2007-05-13 12:39:22 +02005507 }
5508
Jakub Narebskie79ca7c2006-08-16 14:50:34 +02005509 # use per project git URL list in $projectroot/$project/cloneurl
5510 # or make project git URL from git base URL and project name
Jakub Narebski19a87212006-08-15 23:03:17 +02005511 my $url_tag = "URL";
Jakub Narebskie79ca7c2006-08-16 14:50:34 +02005512 my @url_list = git_get_project_url_list($project);
5513 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
5514 foreach my $git_url (@url_list) {
5515 next unless $git_url;
Giuseppe Bilotta0e656992010-11-11 13:26:15 +01005516 print format_repo_url($url_tag, $git_url);
Jakub Narebski19a87212006-08-15 23:03:17 +02005517 $url_tag = "";
5518 }
Petr Baudisaed93de2008-10-02 17:13:02 +02005519
5520 # Tag cloud
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08005521 my $show_ctags = gitweb_check_feature('ctags');
Petr Baudisaed93de2008-10-02 17:13:02 +02005522 if ($show_ctags) {
5523 my $ctags = git_get_project_ctags($project);
5524 my $cloud = git_populate_project_tagcloud($ctags);
5525 print "<tr id=\"metadata_ctags\"><td>Content tags:<br />";
5526 print "</td>\n<td>" unless %$ctags;
5527 print "<form action=\"$show_ctags\" method=\"post\"><input type=\"hidden\" name=\"p\" value=\"$project\" />Add: <input type=\"text\" name=\"t\" size=\"8\" /></form>";
5528 print "</td>\n<td>" if %$ctags;
5529 print git_show_project_tagcloud($cloud, 48);
5530 print "</td></tr>";
5531 }
5532
Jakub Narebski19a87212006-08-15 23:03:17 +02005533 print "</table>\n";
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005534
Matt McCutchen7e1100e2009-02-07 19:00:09 -05005535 # If XSS prevention is on, we don't include README.html.
5536 # TODO: Allow a readme in some safe format.
5537 if (!$prevent_xss && -s "$projectroot/$project/README.html") {
Jakub Narebski2dcb5e12008-12-01 19:01:42 +01005538 print "<div class=\"title\">readme</div>\n" .
5539 "<div class=\"readme\">\n";
5540 insert_file("$projectroot/$project/README.html");
5541 print "\n</div>\n"; # class="readme"
Petr Baudis447ef092006-10-24 05:23:46 +02005542 }
5543
Robert Fitzsimons313ce8c2006-12-19 12:08:54 +00005544 # we need to request one more than 16 (0..15) to check if
5545 # those 16 are all
Jakub Narebski785cdea2007-05-13 12:39:22 +02005546 my @commitlist = $head ? parse_commits($head, 17) : ();
5547 if (@commitlist) {
5548 git_print_header_div('shortlog');
5549 git_shortlog_body(\@commitlist, 0, 15, $refs,
5550 $#commitlist <= 15 ? undef :
5551 $cgi->a({-href => href(action=>"shortlog")}, "..."));
5552 }
Kay Sieversede5e102005-08-07 20:23:12 +02005553
Jakub Narebski120ddde2006-09-19 14:33:22 +02005554 if (@taglist) {
Jakub Narebski847e01f2006-08-14 02:05:47 +02005555 git_print_header_div('tags');
Jakub Narebski120ddde2006-09-19 14:33:22 +02005556 git_tags_body(\@taglist, 0, 15,
Robert Fitzsimons313ce8c2006-12-19 12:08:54 +00005557 $#taglist <= 15 ? undef :
Martin Waitz1c2a4f52006-08-16 00:24:30 +02005558 $cgi->a({-href => href(action=>"tags")}, "..."));
Kay Sieversede5e102005-08-07 20:23:12 +02005559 }
Kay Sievers0db37972005-08-07 20:24:35 +02005560
Jakub Narebski120ddde2006-09-19 14:33:22 +02005561 if (@headlist) {
Jakub Narebski847e01f2006-08-14 02:05:47 +02005562 git_print_header_div('heads');
Jakub Narebski120ddde2006-09-19 14:33:22 +02005563 git_heads_body(\@headlist, $head, 0, 15,
Robert Fitzsimons313ce8c2006-12-19 12:08:54 +00005564 $#headlist <= 15 ? undef :
Martin Waitz1c2a4f52006-08-16 00:24:30 +02005565 $cgi->a({-href => href(action=>"heads")}, "..."));
Kay Sievers0db37972005-08-07 20:24:35 +02005566 }
Jakub Narebski9f5dcb82006-07-31 11:22:13 +02005567
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005568 if (%remotedata) {
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +01005569 git_print_header_div('remotes');
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005570 git_remotes_body(\%remotedata, 15, $head);
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +01005571 }
5572
Petr Baudise30496d2006-10-24 05:33:17 +02005573 if (@forklist) {
5574 git_print_header_div('forks');
Mike Ralphsonf04f27e2008-09-25 18:48:48 +02005575 git_project_list_body(\@forklist, 'age', 0, 15,
Robert Fitzsimonsaaca9672006-12-22 19:38:12 +00005576 $#forklist <= 15 ? undef :
Petr Baudise30496d2006-10-24 05:33:17 +02005577 $cgi->a({-href => href(action=>"forks")}, "..."),
Mike Ralphsonf04f27e2008-09-25 18:48:48 +02005578 'no_header');
Petr Baudise30496d2006-10-24 05:33:17 +02005579 }
5580
Kay Sieversede5e102005-08-07 20:23:12 +02005581 git_footer_html();
5582}
5583
Kay Sieversd8a20ba2005-08-07 20:28:53 +02005584sub git_tag {
Jakub Narebski847e01f2006-08-14 02:05:47 +02005585 my %tag = parse_tag($hash);
Jakub Narebski198a2a82007-05-12 21:16:34 +02005586
5587 if (! %tag) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02005588 die_error(404, "Unknown tag object");
Jakub Narebski198a2a82007-05-12 21:16:34 +02005589 }
5590
Anders Kaseorgd8a94802010-08-27 13:38:16 -04005591 my $head = git_get_head_hash($project);
5592 git_header_html();
5593 git_print_page_nav('','', $head,undef,$head);
Jakub Narebski847e01f2006-08-14 02:05:47 +02005594 git_print_header_div('commit', esc_html($tag{'name'}), $hash);
Kay Sieversd8a20ba2005-08-07 20:28:53 +02005595 print "<div class=\"title_text\">\n" .
Jakub Narebski591ebf62007-11-19 14:16:11 +01005596 "<table class=\"object_header\">\n" .
Kay Sieverse4669df2005-08-08 00:02:39 +02005597 "<tr>\n" .
5598 "<td>object</td>\n" .
Jakub Narebski952c65f2006-08-22 16:52:50 +02005599 "<td>" . $cgi->a({-class => "list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},
5600 $tag{'object'}) . "</td>\n" .
5601 "<td class=\"link\">" . $cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},
5602 $tag{'type'}) . "</td>\n" .
Kay Sieverse4669df2005-08-08 00:02:39 +02005603 "</tr>\n";
Kay Sieversd8a20ba2005-08-07 20:28:53 +02005604 if (defined($tag{'author'})) {
Giuseppe Bilottaba924732009-06-30 00:00:50 +02005605 git_print_authorship_rows(\%tag, 'author');
Kay Sieversd8a20ba2005-08-07 20:28:53 +02005606 }
5607 print "</table>\n\n" .
5608 "</div>\n";
5609 print "<div class=\"page_body\">";
5610 my $comment = $tag{'comment'};
5611 foreach my $line (@$comment) {
Junio C Hamano70022432006-11-24 14:04:01 -08005612 chomp $line;
Jakub Narebski793c4002006-11-24 22:25:50 +01005613 print esc_html($line, -nbsp=>1) . "<br/>\n";
Kay Sieversd8a20ba2005-08-07 20:28:53 +02005614 }
5615 print "</div>\n";
5616 git_footer_html();
5617}
5618
Jakub Narebski4af819d2009-09-01 13:39:17 +02005619sub git_blame_common {
5620 my $format = shift || 'porcelain';
Jakub Narebskic4ccf612009-09-01 13:39:19 +02005621 if ($format eq 'porcelain' && $cgi->param('js')) {
5622 $format = 'incremental';
5623 $action = 'blame_incremental'; # for page title etc
5624 }
Jakub Narebski4af819d2009-09-01 13:39:17 +02005625
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005626 # permissions
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08005627 gitweb_check_feature('blame')
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005628 or die_error(403, "Blame view not allowed");
Lea Wiemann074afaa2008-06-19 22:03:21 +02005629
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005630 # error checking
Lea Wiemann074afaa2008-06-19 22:03:21 +02005631 die_error(400, "No file name given") unless $file_name;
Jakub Narebski847e01f2006-08-14 02:05:47 +02005632 $hash_base ||= git_get_head_hash($project);
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005633 die_error(404, "Couldn't find base commit") unless $hash_base;
Jakub Narebski847e01f2006-08-14 02:05:47 +02005634 my %co = parse_commit($hash_base)
Lea Wiemann074afaa2008-06-19 22:03:21 +02005635 or die_error(404, "Commit not found");
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005636 my $ftype = "blob";
Luben Tuikov1f2857e2006-07-23 13:34:55 -07005637 if (!defined $hash) {
5638 $hash = git_get_hash_by_path($hash_base, $file_name, "blob")
Lea Wiemann074afaa2008-06-19 22:03:21 +02005639 or die_error(404, "Error looking up file");
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005640 } else {
5641 $ftype = git_get_type($hash);
5642 if ($ftype !~ "blob") {
5643 die_error(400, "Object is not a blob");
5644 }
Luben Tuikov1f2857e2006-07-23 13:34:55 -07005645 }
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005646
Jakub Narebski4af819d2009-09-01 13:39:17 +02005647 my $fd;
5648 if ($format eq 'incremental') {
5649 # get file contents (as base)
5650 open $fd, "-|", git_cmd(), 'cat-file', 'blob', $hash
5651 or die_error(500, "Open git-cat-file failed");
5652 } elsif ($format eq 'data') {
5653 # run git-blame --incremental
5654 open $fd, "-|", git_cmd(), "blame", "--incremental",
5655 $hash_base, "--", $file_name
5656 or die_error(500, "Open git-blame --incremental failed");
5657 } else {
5658 # run git-blame --porcelain
5659 open $fd, "-|", git_cmd(), "blame", '-p',
5660 $hash_base, '--', $file_name
5661 or die_error(500, "Open git-blame --porcelain failed");
5662 }
5663
5664 # incremental blame data returns early
5665 if ($format eq 'data') {
5666 print $cgi->header(
5667 -type=>"text/plain", -charset => "utf-8",
5668 -status=> "200 OK");
5669 local $| = 1; # output autoflush
5670 print while <$fd>;
5671 close $fd
5672 or print "ERROR $!\n";
5673
5674 print 'END';
5675 if (defined $t0 && gitweb_check_feature('timed')) {
5676 print ' '.
Jakub Narebski3962f1d72010-11-09 19:27:54 +01005677 tv_interval($t0, [ gettimeofday() ]).
Jakub Narebski4af819d2009-09-01 13:39:17 +02005678 ' '.$number_of_git_cmds;
5679 }
5680 print "\n";
5681
5682 return;
5683 }
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005684
5685 # page header
Luben Tuikov1f2857e2006-07-23 13:34:55 -07005686 git_header_html();
Jakub Narebski0d83ddc2006-07-30 15:01:07 +02005687 my $formats_nav =
Jakub Narebskia3823e52007-11-01 13:06:29 +01005688 $cgi->a({-href => href(action=>"blob", -replay=>1)},
Jakub Narebski952c65f2006-08-22 16:52:50 +02005689 "blob") .
Jakub Narebski87e573f2009-12-01 17:54:26 +01005690 " | ";
5691 if ($format eq 'incremental') {
5692 $formats_nav .=
5693 $cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},
5694 "blame") . " (non-incremental)";
5695 } else {
5696 $formats_nav .=
5697 $cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},
5698 "blame") . " (incremental)";
5699 }
5700 $formats_nav .=
Jakub Narebski952c65f2006-08-22 16:52:50 +02005701 " | " .
Jakub Narebskia3823e52007-11-01 13:06:29 +01005702 $cgi->a({-href => href(action=>"history", -replay=>1)},
5703 "history") .
Petr Baudiscae18622006-09-22 03:19:41 +02005704 " | " .
Jakub Narebski4af819d2009-09-01 13:39:17 +02005705 $cgi->a({-href => href(action=>$action, file_name=>$file_name)},
Petr Baudisf35274d2006-09-22 03:19:53 +02005706 "HEAD");
Jakub Narebski847e01f2006-08-14 02:05:47 +02005707 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
5708 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
Luben Tuikov59fb1c92006-08-17 10:39:29 -07005709 git_print_page_path($file_name, $ftype, $hash_base);
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005710
5711 # page body
Jakub Narebski4af819d2009-09-01 13:39:17 +02005712 if ($format eq 'incremental') {
5713 print "<noscript>\n<div class=\"error\"><center><b>\n".
5714 "This page requires JavaScript to run.\n Use ".
Jakub Narebskic4ccf612009-09-01 13:39:19 +02005715 $cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},
Jakub Narebski4af819d2009-09-01 13:39:17 +02005716 'this page').
5717 " instead.\n".
5718 "</b></center></div>\n</noscript>\n";
5719
5720 print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;
5721 }
5722
5723 print qq!<div class="page_body">\n!;
5724 print qq!<div id="progress_info">... / ...</div>\n!
5725 if ($format eq 'incremental');
5726 print qq!<table id="blame_table" class="blame" width="100%">\n!.
5727 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
5728 qq!<thead>\n!.
5729 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.
5730 qq!</thead>\n!.
5731 qq!<tbody>\n!;
5732
Jakub Narebskiaef37682009-07-25 00:44:06 +02005733 my @rev_color = qw(light dark);
Luben Tuikovcc1bf972006-07-23 13:37:53 -07005734 my $num_colors = scalar(@rev_color);
5735 my $current_color = 0;
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005736
Jakub Narebski4af819d2009-09-01 13:39:17 +02005737 if ($format eq 'incremental') {
5738 my $color_class = $rev_color[$current_color];
5739
5740 #contents of a file
5741 my $linenr = 0;
5742 LINE:
5743 while (my $line = <$fd>) {
5744 chomp $line;
5745 $linenr++;
5746
5747 print qq!<tr id="l$linenr" class="$color_class">!.
5748 qq!<td class="sha1"><a href=""> </a></td>!.
5749 qq!<td class="linenr">!.
5750 qq!<a class="linenr" href="">$linenr</a></td>!;
5751 print qq!<td class="pre">! . esc_html($line) . "</td>\n";
5752 print qq!</tr>\n!;
Junio C Hamanoeeef88c2006-10-05 13:55:58 -07005753 }
Jakub Narebski4af819d2009-09-01 13:39:17 +02005754
5755 } else { # porcelain, i.e. ordinary blame
5756 my %metainfo = (); # saves information about commits
5757
5758 # blame data
5759 LINE:
5760 while (my $line = <$fd>) {
5761 chomp $line;
5762 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
5763 # no <lines in group> for subsequent lines in group of lines
5764 my ($full_rev, $orig_lineno, $lineno, $group_size) =
5765 ($line =~ /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);
5766 if (!exists $metainfo{$full_rev}) {
5767 $metainfo{$full_rev} = { 'nprevious' => 0 };
Junio C Hamanoeeef88c2006-10-05 13:55:58 -07005768 }
Jakub Narebski4af819d2009-09-01 13:39:17 +02005769 my $meta = $metainfo{$full_rev};
5770 my $data;
5771 while ($data = <$fd>) {
5772 chomp $data;
5773 last if ($data =~ s/^\t//); # contents of line
5774 if ($data =~ /^(\S+)(?: (.*))?$/) {
5775 $meta->{$1} = $2 unless exists $meta->{$1};
5776 }
5777 if ($data =~ /^previous /) {
5778 $meta->{'nprevious'}++;
Jakub Narebskia36817b2009-07-25 00:44:05 +02005779 }
5780 }
Jakub Narebski4af819d2009-09-01 13:39:17 +02005781 my $short_rev = substr($full_rev, 0, 8);
5782 my $author = $meta->{'author'};
5783 my %date =
5784 parse_date($meta->{'author-time'}, $meta->{'author-tz'});
5785 my $date = $date{'iso-tz'};
5786 if ($group_size) {
5787 $current_color = ($current_color + 1) % $num_colors;
5788 }
5789 my $tr_class = $rev_color[$current_color];
5790 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
5791 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
5792 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
5793 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
5794 if ($group_size) {
5795 print "<td class=\"sha1\"";
5796 print " title=\"". esc_html($author) . ", $date\"";
5797 print " rowspan=\"$group_size\"" if ($group_size > 1);
5798 print ">";
5799 print $cgi->a({-href => href(action=>"commit",
5800 hash=>$full_rev,
5801 file_name=>$file_name)},
5802 esc_html($short_rev));
5803 if ($group_size >= 2) {
5804 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
5805 if (@author_initials) {
5806 print "<br />" .
5807 esc_html(join('', @author_initials));
5808 # or join('.', ...)
5809 }
5810 }
5811 print "</td>\n";
5812 }
5813 # 'previous' <sha1 of parent commit> <filename at commit>
5814 if (exists $meta->{'previous'} &&
5815 $meta->{'previous'} =~ /^([a-fA-F0-9]{40}) (.*)$/) {
5816 $meta->{'parent'} = $1;
5817 $meta->{'file_parent'} = unquote($2);
5818 }
5819 my $linenr_commit =
5820 exists($meta->{'parent'}) ?
5821 $meta->{'parent'} : $full_rev;
5822 my $linenr_filename =
5823 exists($meta->{'file_parent'}) ?
5824 $meta->{'file_parent'} : unquote($meta->{'filename'});
5825 my $blamed = href(action => 'blame',
5826 file_name => $linenr_filename,
5827 hash_base => $linenr_commit);
5828 print "<td class=\"linenr\">";
5829 print $cgi->a({ -href => "$blamed#l$orig_lineno",
5830 -class => "linenr" },
5831 esc_html($lineno));
5832 print "</td>";
5833 print "<td class=\"pre\">" . esc_html($data) . "</td>\n";
5834 print "</tr>\n";
5835 } # end while
5836
Luben Tuikov1f2857e2006-07-23 13:34:55 -07005837 }
Jakub Narebski4af819d2009-09-01 13:39:17 +02005838
5839 # footer
5840 print "</tbody>\n".
5841 "</table>\n"; # class="blame"
5842 print "</div>\n"; # class="blame_body"
Jakub Narebski952c65f2006-08-22 16:52:50 +02005843 close $fd
5844 or print "Reading blob failed\n";
Jakub Narebskid2ce10d2008-12-09 23:48:51 +01005845
Luben Tuikov1f2857e2006-07-23 13:34:55 -07005846 git_footer_html();
5847}
5848
Jakub Narebski4af819d2009-09-01 13:39:17 +02005849sub git_blame {
5850 git_blame_common();
5851}
5852
5853sub git_blame_incremental {
5854 git_blame_common('incremental');
5855}
5856
5857sub git_blame_data {
5858 git_blame_common('data');
5859}
5860
Kay Sieversede5e102005-08-07 20:23:12 +02005861sub git_tags {
Jakub Narebski847e01f2006-08-14 02:05:47 +02005862 my $head = git_get_head_hash($project);
Kay Sieversede5e102005-08-07 20:23:12 +02005863 git_header_html();
Giuseppe Bilotta11e7bec2010-11-11 13:26:12 +01005864 git_print_page_nav('','', $head,undef,$head,format_ref_views('tags'));
Jakub Narebski847e01f2006-08-14 02:05:47 +02005865 git_print_header_div('summary', $project);
Jakub Narebski27fb8c42006-07-30 20:32:01 +02005866
Jakub Narebskicd146402006-11-02 20:23:11 +01005867 my @tagslist = git_get_tags_list();
5868 if (@tagslist) {
5869 git_tags_body(\@tagslist);
Kay Sieversede5e102005-08-07 20:23:12 +02005870 }
Kay Sieversede5e102005-08-07 20:23:12 +02005871 git_footer_html();
5872}
5873
Kay Sieversd8f1c5c2005-10-04 01:12:47 +02005874sub git_heads {
Jakub Narebski847e01f2006-08-14 02:05:47 +02005875 my $head = git_get_head_hash($project);
Kay Sievers0db37972005-08-07 20:24:35 +02005876 git_header_html();
Giuseppe Bilotta11e7bec2010-11-11 13:26:12 +01005877 git_print_page_nav('','', $head,undef,$head,format_ref_views('heads'));
Jakub Narebski847e01f2006-08-14 02:05:47 +02005878 git_print_header_div('summary', $project);
Jakub Narebski27fb8c42006-07-30 20:32:01 +02005879
Jakub Narebskicd146402006-11-02 20:23:11 +01005880 my @headslist = git_get_heads_list();
5881 if (@headslist) {
5882 git_heads_body(\@headslist, $head);
Kay Sievers0db37972005-08-07 20:24:35 +02005883 }
Kay Sievers0db37972005-08-07 20:24:35 +02005884 git_footer_html();
5885}
5886
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005887# used both for single remote view and for list of all the remotes
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +01005888sub git_remotes {
5889 gitweb_check_feature('remote_heads')
5890 or die_error(403, "Remote heads view is disabled");
5891
5892 my $head = git_get_head_hash($project);
Giuseppe Bilottabb607762010-11-11 13:26:14 +01005893 my $remote = $input_params{'hash'};
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +01005894
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005895 my $remotedata = git_get_remotes_list($remote);
5896 die_error(500, "Unable to get remote information") unless defined $remotedata;
Giuseppe Bilottabb607762010-11-11 13:26:14 +01005897
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005898 unless (%$remotedata) {
5899 die_error(404, defined $remote ?
5900 "Remote $remote not found" :
5901 "No remotes found");
Giuseppe Bilottabb607762010-11-11 13:26:14 +01005902 }
5903
5904 git_header_html(undef, undef, -action_extra => $remote);
5905 git_print_page_nav('', '', $head, undef, $head,
5906 format_ref_views($remote ? '' : 'remotes'));
5907
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005908 fill_remote_heads($remotedata);
Giuseppe Bilottabb607762010-11-11 13:26:14 +01005909 if (defined $remote) {
5910 git_print_header_div('remotes', "$remote remote for $project");
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005911 git_remote_block($remote, $remotedata->{$remote}, undef, $head);
Giuseppe Bilottabb607762010-11-11 13:26:14 +01005912 } else {
5913 git_print_header_div('summary', "$project remotes");
Giuseppe Bilotta9d0d42f2010-11-11 13:26:17 +01005914 git_remotes_body($remotedata, undef, $head);
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +01005915 }
Giuseppe Bilottabb607762010-11-11 13:26:14 +01005916
Giuseppe Bilotta00fa6fe2010-11-11 13:26:11 +01005917 git_footer_html();
5918}
5919
Luben Tuikov930cf7d2006-07-09 20:18:57 -07005920sub git_blob_plain {
Jakub Narebski7f718e82008-06-03 16:47:10 +02005921 my $type = shift;
Jakub Narebskif2e73302006-08-26 19:14:25 +02005922 my $expires;
Jakub Narebskif2e73302006-08-26 19:14:25 +02005923
Luben Tuikovcff07712006-07-23 13:28:55 -07005924 if (!defined $hash) {
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005925 if (defined $file_name) {
Jakub Narebski847e01f2006-08-14 02:05:47 +02005926 my $base = $hash_base || git_get_head_hash($project);
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005927 $hash = git_get_hash_by_path($base, $file_name, "blob")
Lea Wiemann074afaa2008-06-19 22:03:21 +02005928 or die_error(404, "Cannot find file");
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005929 } else {
Lea Wiemann074afaa2008-06-19 22:03:21 +02005930 die_error(400, "No file name defined");
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005931 }
Martin Waitz800764c2006-09-16 23:09:02 +02005932 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
5933 # blobs defined by non-textual hash id's can be cached
5934 $expires = "+1d";
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005935 }
Martin Waitz800764c2006-09-16 23:09:02 +02005936
Dennis Stosberg25691fb2006-08-28 17:49:58 +02005937 open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
Lea Wiemann074afaa2008-06-19 22:03:21 +02005938 or die_error(500, "Open git-cat-file blob '$hash' failed");
Luben Tuikov930cf7d2006-07-09 20:18:57 -07005939
Jakub Narebski7f718e82008-06-03 16:47:10 +02005940 # content-type (can include charset)
5941 $type = blob_contenttype($fd, $file_name, $type);
Luben Tuikov930cf7d2006-07-09 20:18:57 -07005942
Jakub Narebski7f718e82008-06-03 16:47:10 +02005943 # "save as" filename, even when no $file_name is given
Luben Tuikov930cf7d2006-07-09 20:18:57 -07005944 my $save_as = "$hash";
5945 if (defined $file_name) {
5946 $save_as = $file_name;
5947 } elsif ($type =~ m/^text\//) {
5948 $save_as .= '.txt';
5949 }
5950
Matt McCutchen7e1100e2009-02-07 19:00:09 -05005951 # With XSS prevention on, blobs of all types except a few known safe
5952 # ones are served with "Content-Disposition: attachment" to make sure
5953 # they don't run in our security domain. For certain image types,
5954 # blob view writes an <img> tag referring to blob_plain view, and we
5955 # want to be sure not to break that by serving the image as an
5956 # attachment (though Firefox 3 doesn't seem to care).
5957 my $sandbox = $prevent_xss &&
5958 $type !~ m!^(?:text/plain|image/(?:gif|png|jpeg))$!;
5959
Jakub Narebskif2e73302006-08-26 19:14:25 +02005960 print $cgi->header(
Jakub Narebski7f718e82008-06-03 16:47:10 +02005961 -type => $type,
5962 -expires => $expires,
Matt McCutchen7e1100e2009-02-07 19:00:09 -05005963 -content_disposition =>
5964 ($sandbox ? 'attachment' : 'inline')
5965 . '; filename="' . $save_as . '"');
Jakub Narebski34122b52009-05-11 03:29:40 +02005966 local $/ = undef;
Luben Tuikov930cf7d2006-07-09 20:18:57 -07005967 binmode STDOUT, ':raw';
5968 print <$fd>;
5969 binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
Luben Tuikov930cf7d2006-07-09 20:18:57 -07005970 close $fd;
5971}
5972
Kay Sievers09bd7892005-08-07 20:21:23 +02005973sub git_blob {
Jakub Narebskif2e73302006-08-26 19:14:25 +02005974 my $expires;
Jakub Narebskif2e73302006-08-26 19:14:25 +02005975
Luben Tuikovcff07712006-07-23 13:28:55 -07005976 if (!defined $hash) {
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005977 if (defined $file_name) {
Jakub Narebski847e01f2006-08-14 02:05:47 +02005978 my $base = $hash_base || git_get_head_hash($project);
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005979 $hash = git_get_hash_by_path($base, $file_name, "blob")
Lea Wiemann074afaa2008-06-19 22:03:21 +02005980 or die_error(404, "Cannot find file");
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005981 } else {
Lea Wiemann074afaa2008-06-19 22:03:21 +02005982 die_error(400, "No file name defined");
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005983 }
Martin Waitz800764c2006-09-16 23:09:02 +02005984 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
5985 # blobs defined by non-textual hash id's can be cached
5986 $expires = "+1d";
Jakub Narebski5be01bc2006-07-29 22:43:40 +02005987 }
Martin Waitz800764c2006-09-16 23:09:02 +02005988
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08005989 my $have_blame = gitweb_check_feature('blame');
Dennis Stosberg25691fb2006-08-28 17:49:58 +02005990 open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
Lea Wiemann074afaa2008-06-19 22:03:21 +02005991 or die_error(500, "Couldn't cat $file_name, $hash");
Jakub Narebski847e01f2006-08-14 02:05:47 +02005992 my $mimetype = blob_mimetype($fd, $file_name);
Johannes Schindelinb331fe52010-04-27 21:34:44 +02005993 # use 'blob_plain' (aka 'raw') view for files that cannot be displayed
Jakub Narebskidfa7c7d2007-12-15 15:41:49 +01005994 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B $fd) {
Luben Tuikov930cf7d2006-07-09 20:18:57 -07005995 close $fd;
5996 return git_blob_plain($mimetype);
5997 }
Jakub Narebski5a4cf332006-12-04 23:47:22 +01005998 # we can have blame only for text/* mimetype
5999 $have_blame &&= ($mimetype =~ m!^text/!);
6000
Jakub Narebski592ea412010-04-27 21:34:45 +02006001 my $highlight = gitweb_check_feature('highlight');
6002 my $syntax = guess_file_syntax($highlight, $mimetype, $file_name);
6003 $fd = run_highlighter($fd, $highlight, $syntax)
6004 if $syntax;
Johannes Schindelinb331fe52010-04-27 21:34:44 +02006005
Jakub Narebskif2e73302006-08-26 19:14:25 +02006006 git_header_html(undef, $expires);
Jakub Narebski0d83ddc2006-07-30 15:01:07 +02006007 my $formats_nav = '';
Jakub Narebski847e01f2006-08-14 02:05:47 +02006008 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
Kay Sievers93129442005-10-17 03:27:54 +02006009 if (defined $file_name) {
Florian Forster5996ca02006-06-12 10:31:57 +02006010 if ($have_blame) {
Jakub Narebski952c65f2006-08-22 16:52:50 +02006011 $formats_nav .=
Jakub Narebskia3823e52007-11-01 13:06:29 +01006012 $cgi->a({-href => href(action=>"blame", -replay=>1)},
Jakub Narebski952c65f2006-08-22 16:52:50 +02006013 "blame") .
6014 " | ";
Florian Forster5996ca02006-06-12 10:31:57 +02006015 }
Jakub Narebski0d83ddc2006-07-30 15:01:07 +02006016 $formats_nav .=
Jakub Narebskia3823e52007-11-01 13:06:29 +01006017 $cgi->a({-href => href(action=>"history", -replay=>1)},
Petr Baudiscae18622006-09-22 03:19:41 +02006018 "history") .
6019 " | " .
Jakub Narebskia3823e52007-11-01 13:06:29 +01006020 $cgi->a({-href => href(action=>"blob_plain", -replay=>1)},
Petr Baudis35329cc2006-09-22 03:19:50 +02006021 "raw") .
Jakub Narebski952c65f2006-08-22 16:52:50 +02006022 " | " .
6023 $cgi->a({-href => href(action=>"blob",
6024 hash_base=>"HEAD", file_name=>$file_name)},
Petr Baudisf35274d2006-09-22 03:19:53 +02006025 "HEAD");
Kay Sievers93129442005-10-17 03:27:54 +02006026 } else {
Jakub Narebski952c65f2006-08-22 16:52:50 +02006027 $formats_nav .=
Jakub Narebskia3823e52007-11-01 13:06:29 +01006028 $cgi->a({-href => href(action=>"blob_plain", -replay=>1)},
6029 "raw");
Kay Sievers93129442005-10-17 03:27:54 +02006030 }
Jakub Narebski847e01f2006-08-14 02:05:47 +02006031 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
6032 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
Kay Sievers09bd7892005-08-07 20:21:23 +02006033 } else {
6034 print "<div class=\"page_nav\">\n" .
6035 "<br/><br/></div>\n" .
Jakub Narebski3017ed62010-12-15 00:34:01 +01006036 "<div class=\"title\">".esc_html($hash)."</div>\n";
Kay Sievers09bd7892005-08-07 20:21:23 +02006037 }
Luben Tuikov59fb1c92006-08-17 10:39:29 -07006038 git_print_page_path($file_name, "blob", $hash_base);
Kay Sieversc07ad4b2005-08-07 20:22:44 +02006039 print "<div class=\"page_body\">\n";
Jakub Narebskidfa7c7d2007-12-15 15:41:49 +01006040 if ($mimetype =~ m!^image/!) {
Jakub Narebski3017ed62010-12-15 00:34:01 +01006041 print qq!<img type="!.esc_attr($mimetype).qq!"!;
Jakub Narebski5a4cf332006-12-04 23:47:22 +01006042 if ($file_name) {
Jakub Narebski3017ed62010-12-15 00:34:01 +01006043 print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;
Jakub Narebski5a4cf332006-12-04 23:47:22 +01006044 }
6045 print qq! src="! .
6046 href(action=>"blob_plain", hash=>$hash,
6047 hash_base=>$hash_base, file_name=>$file_name) .
6048 qq!" />\n!;
Jakub Narebskidfa7c7d2007-12-15 15:41:49 +01006049 } else {
6050 my $nr;
6051 while (my $line = <$fd>) {
6052 chomp $line;
6053 $nr++;
6054 $line = untabify($line);
Jakub Narebski592ea412010-04-27 21:34:45 +02006055 printf qq!<div class="pre"><a id="l%i" href="%s#l%i" class="linenr">%4i</a> %s</div>\n!,
Junio C Hamanob91779f2010-12-15 11:45:36 -08006056 $nr, esc_attr(href(-replay => 1)), $nr, $nr, $syntax ? $line : esc_html($line, -nbsp=>1);
Jakub Narebskidfa7c7d2007-12-15 15:41:49 +01006057 }
Kay Sievers161332a2005-08-07 19:49:46 +02006058 }
Jakub Narebski952c65f2006-08-22 16:52:50 +02006059 close $fd
6060 or print "Reading blob failed.\n";
Kay Sieversfbb592a2005-08-07 20:12:11 +02006061 print "</div>";
Kay Sievers12a88f22005-08-07 20:02:47 +02006062 git_footer_html();
Kay Sievers09bd7892005-08-07 20:21:23 +02006063}
6064
6065sub git_tree {
Luben Tuikov6f7ea5f2006-09-29 09:57:43 -07006066 if (!defined $hash_base) {
6067 $hash_base = "HEAD";
6068 }
Kay Sieversb87d78d2005-08-07 20:21:04 +02006069 if (!defined $hash) {
Kay Sievers09bd7892005-08-07 20:21:23 +02006070 if (defined $file_name) {
Luben Tuikov6f7ea5f2006-09-29 09:57:43 -07006071 $hash = git_get_hash_by_path($hash_base, $file_name, "tree");
6072 } else {
6073 $hash = $hash_base;
Kay Sievers10dba282005-08-07 20:25:27 +02006074 }
Kay Sieverse925f382005-08-07 20:23:35 +02006075 }
Jakub Narebski2d7a3532008-10-02 16:50:04 +02006076 die_error(404, "No such tree") unless defined($hash);
Jakub Narebski34122b52009-05-11 03:29:40 +02006077
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02006078 my $show_sizes = gitweb_check_feature('show-sizes');
6079 my $have_blame = gitweb_check_feature('blame');
6080
Jakub Narebski34122b52009-05-11 03:29:40 +02006081 my @entries = ();
6082 {
6083 local $/ = "\0";
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02006084 open my $fd, "-|", git_cmd(), "ls-tree", '-z',
6085 ($show_sizes ? '-l' : ()), @extra_options, $hash
Jakub Narebski34122b52009-05-11 03:29:40 +02006086 or die_error(500, "Open git-ls-tree failed");
6087 @entries = map { chomp; $_ } <$fd>;
6088 close $fd
6089 or die_error(404, "Reading tree failed");
6090 }
Kay Sieversd63577d2005-08-07 20:18:13 +02006091
Jakub Narebski847e01f2006-08-14 02:05:47 +02006092 my $refs = git_get_references();
6093 my $ref = format_ref_marker($refs, $hash_base);
Kay Sievers12a88f22005-08-07 20:02:47 +02006094 git_header_html();
Jakub Narebski300454f2006-10-21 17:53:09 +02006095 my $basedir = '';
Jakub Narebski847e01f2006-08-14 02:05:47 +02006096 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
Petr Baudiscae18622006-09-22 03:19:41 +02006097 my @views_nav = ();
6098 if (defined $file_name) {
6099 push @views_nav,
Jakub Narebskia3823e52007-11-01 13:06:29 +01006100 $cgi->a({-href => href(action=>"history", -replay=>1)},
Petr Baudiscae18622006-09-22 03:19:41 +02006101 "history"),
6102 $cgi->a({-href => href(action=>"tree",
6103 hash_base=>"HEAD", file_name=>$file_name)},
Petr Baudisf35274d2006-09-22 03:19:53 +02006104 "HEAD"),
Petr Baudiscae18622006-09-22 03:19:41 +02006105 }
Matt McCutchena3c8ab32007-07-22 01:30:27 +02006106 my $snapshot_links = format_snapshot_links($hash);
6107 if (defined $snapshot_links) {
Petr Baudiscae18622006-09-22 03:19:41 +02006108 # FIXME: Should be available when we have no hash base as well.
Matt McCutchena3c8ab32007-07-22 01:30:27 +02006109 push @views_nav, $snapshot_links;
Petr Baudiscae18622006-09-22 03:19:41 +02006110 }
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02006111 git_print_page_nav('tree','', $hash_base, undef, undef,
6112 join(' | ', @views_nav));
Jakub Narebski847e01f2006-08-14 02:05:47 +02006113 git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash_base);
Kay Sieversd63577d2005-08-07 20:18:13 +02006114 } else {
Jakub Narebskifa702002006-08-31 00:35:07 +02006115 undef $hash_base;
Kay Sieversd63577d2005-08-07 20:18:13 +02006116 print "<div class=\"page_nav\">\n";
6117 print "<br/><br/></div>\n";
Jakub Narebski3017ed62010-12-15 00:34:01 +01006118 print "<div class=\"title\">".esc_html($hash)."</div>\n";
Kay Sieversd63577d2005-08-07 20:18:13 +02006119 }
Kay Sievers09bd7892005-08-07 20:21:23 +02006120 if (defined $file_name) {
Jakub Narebski300454f2006-10-21 17:53:09 +02006121 $basedir = $file_name;
6122 if ($basedir ne '' && substr($basedir, -1) ne '/') {
6123 $basedir .= '/';
6124 }
Jakub Narebski2d7a3532008-10-02 16:50:04 +02006125 git_print_page_path($file_name, 'tree', $hash_base);
Kay Sievers09bd7892005-08-07 20:21:23 +02006126 }
Kay Sieversfbb592a2005-08-07 20:12:11 +02006127 print "<div class=\"page_body\">\n";
Jakub Narebski591ebf62007-11-19 14:16:11 +01006128 print "<table class=\"tree\">\n";
Luben Tuikov6dd36ac2006-09-28 16:47:50 -07006129 my $alternate = 1;
Jakub Narebskib6b7fc72006-10-21 17:54:44 +02006130 # '..' (top directory) link if possible
6131 if (defined $hash_base &&
6132 defined $file_name && $file_name =~ m![^/]+$!) {
6133 if ($alternate) {
6134 print "<tr class=\"dark\">\n";
6135 } else {
6136 print "<tr class=\"light\">\n";
6137 }
6138 $alternate ^= 1;
6139
6140 my $up = $file_name;
6141 $up =~ s!/?[^/]+$!!;
6142 undef $up unless $up;
6143 # based on git_print_tree_entry
6144 print '<td class="mode">' . mode_str('040000') . "</td>\n";
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02006145 print '<td class="size">&nbsp;</td>'."\n" if $show_sizes;
Jakub Narebskib6b7fc72006-10-21 17:54:44 +02006146 print '<td class="list">';
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02006147 print $cgi->a({-href => href(action=>"tree",
6148 hash_base=>$hash_base,
Jakub Narebskib6b7fc72006-10-21 17:54:44 +02006149 file_name=>$up)},
6150 "..");
6151 print "</td>\n";
6152 print "<td class=\"link\"></td>\n";
6153
6154 print "</tr>\n";
6155 }
Kay Sievers161332a2005-08-07 19:49:46 +02006156 foreach my $line (@entries) {
Jakub Narebskie4b48ea2009-09-07 14:40:00 +02006157 my %t = parse_ls_tree_line($line, -z => 1, -l => $show_sizes);
Jakub Narebskicb849b42006-08-31 00:32:15 +02006158
Kay Sieversbddec012005-08-07 20:25:42 +02006159 if ($alternate) {
Kay Sieversc994d622005-08-07 20:27:18 +02006160 print "<tr class=\"dark\">\n";
Kay Sieversbddec012005-08-07 20:25:42 +02006161 } else {
Kay Sieversc994d622005-08-07 20:27:18 +02006162 print "<tr class=\"light\">\n";
Kay Sieversbddec012005-08-07 20:25:42 +02006163 }
6164 $alternate ^= 1;
Jakub Narebskicb849b42006-08-31 00:32:15 +02006165
Jakub Narebski300454f2006-10-21 17:53:09 +02006166 git_print_tree_entry(\%t, $basedir, $hash_base, $have_blame);
Jakub Narebskifa702002006-08-31 00:35:07 +02006167
Kay Sievers42f7eb92005-08-07 20:21:46 +02006168 print "</tr>\n";
Kay Sievers161332a2005-08-07 19:49:46 +02006169 }
Kay Sievers42f7eb92005-08-07 20:21:46 +02006170 print "</table>\n" .
6171 "</div>";
Kay Sievers12a88f22005-08-07 20:02:47 +02006172 git_footer_html();
Kay Sievers09bd7892005-08-07 20:21:23 +02006173}
6174
Mark Radab6292752009-11-07 16:13:29 +01006175sub snapshot_name {
6176 my ($project, $hash) = @_;
6177
6178 # path/to/project.git -> project
6179 # path/to/project/.git -> project
6180 my $name = to_utf8($project);
6181 $name =~ s,([^/])/*\.git$,$1,;
6182 $name = basename($name);
6183 # sanitize name
6184 $name =~ s/[[:cntrl:]]/?/g;
6185
6186 my $ver = $hash;
6187 if ($hash =~ /^[0-9a-fA-F]+$/) {
6188 # shorten SHA-1 hash
6189 my $full_hash = git_get_full_hash($project, $hash);
6190 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
6191 $ver = git_get_short_hash($project, $hash);
6192 }
6193 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
6194 # tags don't need shortened SHA-1 hash
6195 $ver = $1;
6196 } else {
6197 # branches and other need shortened SHA-1 hash
6198 if ($hash =~ m!^refs/(?:heads|remotes)/(.*)$!) {
6199 $ver = $1;
6200 }
6201 $ver .= '-' . git_get_short_hash($project, $hash);
6202 }
6203 # in case of hierarchical branch names
6204 $ver =~ s!/!.!g;
6205
6206 # name = project-version_string
6207 $name = "$name-$ver";
6208
6209 return wantarray ? ($name, $name) : $name;
6210}
6211
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +05306212sub git_snapshot {
Giuseppe Bilotta1b2d2972008-10-10 20:42:26 +02006213 my $format = $input_params{'snapshot_format'};
Giuseppe Bilotta5e166842008-11-02 10:21:37 +01006214 if (!@snapshot_fmts) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006215 die_error(403, "Snapshots not allowed");
Jakub Narebski3473e7d2007-07-25 01:19:58 +02006216 }
6217 # default to first supported snapshot format
Giuseppe Bilotta5e166842008-11-02 10:21:37 +01006218 $format ||= $snapshot_fmts[0];
Jakub Narebski3473e7d2007-07-25 01:19:58 +02006219 if ($format !~ m/^[a-z0-9]+$/) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006220 die_error(400, "Invalid snapshot format parameter");
Jakub Narebski3473e7d2007-07-25 01:19:58 +02006221 } elsif (!exists($known_snapshot_formats{$format})) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006222 die_error(400, "Unknown snapshot format");
Mark A Rada1bfd3632009-08-06 10:25:39 -04006223 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
6224 die_error(403, "Snapshot format not allowed");
Mark Rada34b31a82009-08-25 00:59:48 -04006225 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
6226 die_error(403, "Unsupported snapshot format");
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +05306227 }
6228
Mark Radafdb0c362009-09-26 13:46:08 -04006229 my $type = git_get_type("$hash^{}");
6230 if (!$type) {
6231 die_error(404, 'Object does not exist');
6232 } elsif ($type eq 'blob') {
6233 die_error(400, 'Object is not a tree-ish');
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +05306234 }
6235
Mark Radab6292752009-11-07 16:13:29 +01006236 my ($name, $prefix) = snapshot_name($project, $hash);
6237 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
6238 my $cmd = quote_command(
Lea Wiemann516381d2008-06-17 23:46:35 +02006239 git_cmd(), 'archive',
6240 "--format=$known_snapshot_formats{$format}{'format'}",
Mark Radab6292752009-11-07 16:13:29 +01006241 "--prefix=$prefix/", $hash);
Matt McCutchena3c8ab32007-07-22 01:30:27 +02006242 if (exists $known_snapshot_formats{$format}{'compressor'}) {
Lea Wiemann516381d2008-06-17 23:46:35 +02006243 $cmd .= ' | ' . quote_command(@{$known_snapshot_formats{$format}{'compressor'}});
Mark Levedahl072570e2007-05-20 11:46:46 -04006244 }
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +05306245
Mark Radab6292752009-11-07 16:13:29 +01006246 $filename =~ s/(["\\])/\\$1/g;
Jakub Narebskiab41dfb2006-09-26 01:59:43 +02006247 print $cgi->header(
Matt McCutchena3c8ab32007-07-22 01:30:27 +02006248 -type => $known_snapshot_formats{$format}{'type'},
Mark Radab6292752009-11-07 16:13:29 +01006249 -content_disposition => 'inline; filename="' . $filename . '"',
Jakub Narebskiab41dfb2006-09-26 01:59:43 +02006250 -status => '200 OK');
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +05306251
Mark Levedahl072570e2007-05-20 11:46:46 -04006252 open my $fd, "-|", $cmd
Lea Wiemann074afaa2008-06-19 22:03:21 +02006253 or die_error(500, "Execute git-archive failed");
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +05306254 binmode STDOUT, ':raw';
6255 print <$fd>;
6256 binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
6257 close $fd;
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +05306258}
6259
Jakub Narebski15f0b112009-11-13 02:02:13 +01006260sub git_log_generic {
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006261 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
Jakub Narebski15f0b112009-11-13 02:02:13 +01006262
Jakub Narebski847e01f2006-08-14 02:05:47 +02006263 my $head = git_get_head_hash($project);
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006264 if (!defined $base) {
6265 $base = $head;
Kay Sievers0db37972005-08-07 20:24:35 +02006266 }
Kay Sieversea4a6df2005-08-07 20:26:49 +02006267 if (!defined $page) {
6268 $page = 0;
Kay Sieversb87d78d2005-08-07 20:21:04 +02006269 }
Jakub Narebski847e01f2006-08-14 02:05:47 +02006270 my $refs = git_get_references();
Kay Sieversea4a6df2005-08-07 20:26:49 +02006271
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006272 my $commit_hash = $base;
6273 if (defined $parent) {
6274 $commit_hash = "$parent..$base";
Jakub Narebski15f0b112009-11-13 02:02:13 +01006275 }
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006276 my @commitlist =
6277 parse_commits($commit_hash, 101, (100 * $page),
6278 defined $file_name ? ($file_name, "--full-history") : ());
Kay Sieversea4a6df2005-08-07 20:26:49 +02006279
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006280 my $ftype;
6281 if (!defined $file_hash && defined $file_name) {
6282 # some commits could have deleted file in question,
6283 # and not have it in tree, but one of them has to have it
6284 for (my $i = 0; $i < @commitlist; $i++) {
6285 $file_hash = git_get_hash_by_path($commitlist[$i]{'id'}, $file_name);
6286 last if defined $file_hash;
6287 }
6288 }
6289 if (defined $file_hash) {
6290 $ftype = git_get_type($file_hash);
6291 }
6292 if (defined $file_name && !defined $ftype) {
6293 die_error(500, "Unknown type of object");
6294 }
6295 my %co;
6296 if (defined $file_name) {
6297 %co = parse_commit($base)
6298 or die_error(404, "Unknown commit object");
6299 }
6300
6301
6302 my $paging_nav = format_paging_nav($fmt_name, $page, $#commitlist >= 100);
Jakub Narebski15f0b112009-11-13 02:02:13 +01006303 my $next_link = '';
Jakub Narebski42671ca2009-11-13 02:02:12 +01006304 if ($#commitlist >= 100) {
6305 $next_link =
6306 $cgi->a({-href => href(-replay=>1, page=>$page+1),
6307 -accesskey => "n", -title => "Alt-n"}, "next");
6308 }
Jakub Narebski15f0b112009-11-13 02:02:13 +01006309 my $patch_max = gitweb_get_feature('patches');
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006310 if ($patch_max && !defined $file_name) {
Giuseppe Bilotta75bf2cb2008-12-18 08:13:19 +01006311 if ($patch_max < 0 || @commitlist <= $patch_max) {
6312 $paging_nav .= " &sdot; " .
6313 $cgi->a({-href => href(action=>"patches", -replay=>1)},
6314 "patches");
6315 }
6316 }
6317
Jakub Narebski0d83ddc2006-07-30 15:01:07 +02006318 git_header_html();
Jakub Narebski15f0b112009-11-13 02:02:13 +01006319 git_print_page_nav($fmt_name,'', $hash,$hash,$hash, $paging_nav);
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006320 if (defined $file_name) {
6321 git_print_header_div('commit', esc_html($co{'title'}), $base);
6322 } else {
6323 git_print_header_div('summary', $project)
6324 }
6325 git_print_page_path($file_name, $ftype, $hash_base)
6326 if (defined $file_name);
Jakub Narebski0d83ddc2006-07-30 15:01:07 +02006327
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006328 $body_subr->(\@commitlist, 0, 99, $refs, $next_link,
6329 $file_name, $file_hash, $ftype);
Jakub Narebski42671ca2009-11-13 02:02:12 +01006330
Kay Sievers034df392005-08-07 20:20:07 +02006331 git_footer_html();
Kay Sievers09bd7892005-08-07 20:21:23 +02006332}
6333
Jakub Narebski15f0b112009-11-13 02:02:13 +01006334sub git_log {
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006335 git_log_generic('log', \&git_log_body,
6336 $hash, $hash_parent);
Jakub Narebski15f0b112009-11-13 02:02:13 +01006337}
6338
Kay Sievers09bd7892005-08-07 20:21:23 +02006339sub git_commit {
Jakub Narebski9954f772006-11-18 23:35:41 +01006340 $hash ||= $hash_base || "HEAD";
Lea Wiemann074afaa2008-06-19 22:03:21 +02006341 my %co = parse_commit($hash)
6342 or die_error(404, "Unknown commit object");
Kay Sievers161332a2005-08-07 19:49:46 +02006343
Jakub Narebskic9d193d2006-12-15 21:57:16 +01006344 my $parent = $co{'parent'};
6345 my $parents = $co{'parents'}; # listref
6346
6347 # we need to prepare $formats_nav before any parameter munging
6348 my $formats_nav;
6349 if (!defined $parent) {
6350 # --root commitdiff
6351 $formats_nav .= '(initial)';
6352 } elsif (@$parents == 1) {
6353 # single parent commit
6354 $formats_nav .=
6355 '(parent: ' .
6356 $cgi->a({-href => href(action=>"commit",
6357 hash=>$parent)},
6358 esc_html(substr($parent, 0, 7))) .
6359 ')';
6360 } else {
6361 # merge commit
6362 $formats_nav .=
6363 '(merge: ' .
6364 join(' ', map {
Jakub Narebskif9308a12007-03-23 21:04:31 +01006365 $cgi->a({-href => href(action=>"commit",
Jakub Narebskic9d193d2006-12-15 21:57:16 +01006366 hash=>$_)},
6367 esc_html(substr($_, 0, 7)));
6368 } @$parents ) .
6369 ')';
6370 }
Jakub Narebski1655c982009-10-09 14:26:44 +02006371 if (gitweb_check_feature('patches') && @$parents <= 1) {
Giuseppe Bilotta75bf2cb2008-12-18 08:13:19 +01006372 $formats_nav .= " | " .
6373 $cgi->a({-href => href(action=>"patch", -replay=>1)},
6374 "patch");
6375 }
Jakub Narebskic9d193d2006-12-15 21:57:16 +01006376
Kay Sieversd8a20ba2005-08-07 20:28:53 +02006377 if (!defined $parent) {
Jakub Narebskib9182982006-07-30 18:28:34 -07006378 $parent = "--root";
Kay Sievers6191f8e2005-08-07 20:19:56 +02006379 }
Jakub Narebski549ab4a2006-12-15 17:53:45 +01006380 my @difftree;
Jakub Narebski208ecb22007-05-07 01:10:08 +02006381 open my $fd, "-|", git_cmd(), "diff-tree", '-r', "--no-commit-id",
6382 @diff_opts,
6383 (@$parents <= 1 ? $parent : '-c'),
6384 $hash, "--"
Lea Wiemann074afaa2008-06-19 22:03:21 +02006385 or die_error(500, "Open git-diff-tree failed");
Jakub Narebski208ecb22007-05-07 01:10:08 +02006386 @difftree = map { chomp; $_ } <$fd>;
Lea Wiemann074afaa2008-06-19 22:03:21 +02006387 close $fd or die_error(404, "Reading git-diff-tree failed");
Kay Sievers11044292005-10-19 03:18:45 +02006388
6389 # non-textual hash id's can be cached
6390 my $expires;
6391 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
6392 $expires = "+1d";
6393 }
Jakub Narebski847e01f2006-08-14 02:05:47 +02006394 my $refs = git_get_references();
6395 my $ref = format_ref_marker($refs, $co{'id'});
Aneesh Kumar K.Vddb8d902006-08-20 11:53:04 +05306396
Jakub Narebski594e2122006-07-31 02:21:52 +02006397 git_header_html(undef, $expires);
Petr Baudisa1441542006-10-06 18:59:33 +02006398 git_print_page_nav('commit', '',
Jakub Narebski952c65f2006-08-22 16:52:50 +02006399 $hash, $co{'tree'}, $hash,
Jakub Narebskic9d193d2006-12-15 21:57:16 +01006400 $formats_nav);
Luben Tuikov4f7b34c2006-07-23 13:36:32 -07006401
Kay Sieversb87d78d2005-08-07 20:21:04 +02006402 if (defined $co{'parent'}) {
Jakub Narebski847e01f2006-08-14 02:05:47 +02006403 git_print_header_div('commitdiff', esc_html($co{'title'}) . $ref, $hash);
Kay Sieversb87d78d2005-08-07 20:21:04 +02006404 } else {
Jakub Narebski847e01f2006-08-14 02:05:47 +02006405 git_print_header_div('tree', esc_html($co{'title'}) . $ref, $co{'tree'}, $hash);
Kay Sieversb87d78d2005-08-07 20:21:04 +02006406 }
Kay Sievers6191f8e2005-08-07 20:19:56 +02006407 print "<div class=\"title_text\">\n" .
Jakub Narebski591ebf62007-11-19 14:16:11 +01006408 "<table class=\"object_header\">\n";
Giuseppe Bilotta1c49a4e2009-06-30 00:00:48 +02006409 git_print_authorship_rows(\%co);
Jakub Narebski1f1ab5f2006-06-20 14:58:12 +00006410 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
Kay Sieversbddec012005-08-07 20:25:42 +02006411 print "<tr>" .
6412 "<td>tree</td>" .
Jakub Narebski1f1ab5f2006-06-20 14:58:12 +00006413 "<td class=\"sha1\">" .
Jakub Narebski952c65f2006-08-22 16:52:50 +02006414 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),
6415 class => "list"}, $co{'tree'}) .
Kay Sievers19806692005-08-07 20:26:27 +02006416 "</td>" .
Jakub Narebski952c65f2006-08-22 16:52:50 +02006417 "<td class=\"link\">" .
6418 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},
6419 "tree");
Matt McCutchena3c8ab32007-07-22 01:30:27 +02006420 my $snapshot_links = format_snapshot_links($hash);
6421 if (defined $snapshot_links) {
6422 print " | " . $snapshot_links;
Aneesh Kumar K.Vcb9c6e52006-08-17 20:59:46 +05306423 }
6424 print "</td>" .
Kay Sieversbddec012005-08-07 20:25:42 +02006425 "</tr>\n";
Jakub Narebski549ab4a2006-12-15 17:53:45 +01006426
Kay Sievers3e029292005-08-07 20:05:15 +02006427 foreach my $par (@$parents) {
Kay Sieversbddec012005-08-07 20:25:42 +02006428 print "<tr>" .
6429 "<td>parent</td>" .
Jakub Narebski952c65f2006-08-22 16:52:50 +02006430 "<td class=\"sha1\">" .
6431 $cgi->a({-href => href(action=>"commit", hash=>$par),
6432 class => "list"}, $par) .
6433 "</td>" .
Kay Sieversbddec012005-08-07 20:25:42 +02006434 "<td class=\"link\">" .
Martin Waitz1c2a4f52006-08-16 00:24:30 +02006435 $cgi->a({-href => href(action=>"commit", hash=>$par)}, "commit") .
Jakub Narebski952c65f2006-08-22 16:52:50 +02006436 " | " .
Jakub Narebskif2e60942006-09-03 23:43:03 +02006437 $cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)}, "diff") .
Kay Sieversbddec012005-08-07 20:25:42 +02006438 "</td>" .
6439 "</tr>\n";
Kay Sievers3e029292005-08-07 20:05:15 +02006440 }
Jakub Narebski7a9b4c52006-06-21 09:48:02 +02006441 print "</table>".
Kay Sieversb87d78d2005-08-07 20:21:04 +02006442 "</div>\n";
Jakub Narebskid16d0932006-08-17 11:21:23 +02006443
Kay Sieversfbb592a2005-08-07 20:12:11 +02006444 print "<div class=\"page_body\">\n";
Jakub Narebskid16d0932006-08-17 11:21:23 +02006445 git_print_log($co{'comment'});
Kay Sievers927dcec2005-08-07 20:18:44 +02006446 print "</div>\n";
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02006447
Jakub Narebski208ecb22007-05-07 01:10:08 +02006448 git_difftree_body(\@difftree, $hash, @$parents);
Jakub Narebski4a4a1a52006-08-14 02:18:33 +02006449
Kay Sievers12a88f22005-08-07 20:02:47 +02006450 git_footer_html();
Kay Sievers09bd7892005-08-07 20:21:23 +02006451}
6452
Jakub Narebskica946012006-12-10 13:25:47 +01006453sub git_object {
6454 # object is defined by:
6455 # - hash or hash_base alone
6456 # - hash_base and file_name
6457 my $type;
6458
6459 # - hash or hash_base alone
6460 if ($hash || ($hash_base && !defined $file_name)) {
6461 my $object_id = $hash || $hash_base;
6462
Lea Wiemann516381d2008-06-17 23:46:35 +02006463 open my $fd, "-|", quote_command(
6464 git_cmd(), 'cat-file', '-t', $object_id) . ' 2> /dev/null'
Lea Wiemann074afaa2008-06-19 22:03:21 +02006465 or die_error(404, "Object does not exist");
Jakub Narebskica946012006-12-10 13:25:47 +01006466 $type = <$fd>;
6467 chomp $type;
6468 close $fd
Lea Wiemann074afaa2008-06-19 22:03:21 +02006469 or die_error(404, "Object does not exist");
Jakub Narebskica946012006-12-10 13:25:47 +01006470
6471 # - hash_base and file_name
6472 } elsif ($hash_base && defined $file_name) {
6473 $file_name =~ s,/+$,,;
6474
6475 system(git_cmd(), "cat-file", '-e', $hash_base) == 0
Lea Wiemann074afaa2008-06-19 22:03:21 +02006476 or die_error(404, "Base object does not exist");
Jakub Narebskica946012006-12-10 13:25:47 +01006477
6478 # here errors should not hapen
6479 open my $fd, "-|", git_cmd(), "ls-tree", $hash_base, "--", $file_name
Lea Wiemann074afaa2008-06-19 22:03:21 +02006480 or die_error(500, "Open git-ls-tree failed");
Jakub Narebskica946012006-12-10 13:25:47 +01006481 my $line = <$fd>;
6482 close $fd;
6483
6484 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
6485 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006486 die_error(404, "File or directory for given base does not exist");
Jakub Narebskica946012006-12-10 13:25:47 +01006487 }
6488 $type = $2;
6489 $hash = $3;
6490 } else {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006491 die_error(400, "Not enough information to find object");
Jakub Narebskica946012006-12-10 13:25:47 +01006492 }
6493
6494 print $cgi->redirect(-uri => href(action=>$type, -full=>1,
6495 hash=>$hash, hash_base=>$hash_base,
6496 file_name=>$file_name),
6497 -status => '302 Found');
6498}
6499
Kay Sievers09bd7892005-08-07 20:21:23 +02006500sub git_blobdiff {
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006501 my $format = shift || 'html';
6502
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006503 my $fd;
6504 my @difftree;
6505 my %diffinfo;
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006506 my $expires;
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006507
6508 # preparing $fd and %diffinfo for git_patchset_body
6509 # new style URI
6510 if (defined $hash_base && defined $hash_parent_base) {
6511 if (defined $file_name) {
6512 # read raw output
Jakub Narebski45bd0c82006-10-30 22:29:06 +01006513 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
6514 $hash_parent_base, $hash_base,
Jakub Narebski5ae917a2007-03-30 23:41:26 +02006515 "--", (defined $file_parent ? $file_parent : ()), $file_name
Lea Wiemann074afaa2008-06-19 22:03:21 +02006516 or die_error(500, "Open git-diff-tree failed");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006517 @difftree = map { chomp; $_ } <$fd>;
6518 close $fd
Lea Wiemann074afaa2008-06-19 22:03:21 +02006519 or die_error(404, "Reading git-diff-tree failed");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006520 @difftree
Lea Wiemann074afaa2008-06-19 22:03:21 +02006521 or die_error(404, "Blob diff not found");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006522
Jakub Narebski0aea3372006-08-27 23:45:26 +02006523 } elsif (defined $hash &&
6524 $hash =~ /[0-9a-fA-F]{40}/) {
6525 # try to find filename from $hash
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006526
6527 # read filtered raw output
Jakub Narebski45bd0c82006-10-30 22:29:06 +01006528 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
6529 $hash_parent_base, $hash_base, "--"
Lea Wiemann074afaa2008-06-19 22:03:21 +02006530 or die_error(500, "Open git-diff-tree failed");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006531 @difftree =
6532 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
6533 # $hash == to_id
6534 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
6535 map { chomp; $_ } <$fd>;
6536 close $fd
Lea Wiemann074afaa2008-06-19 22:03:21 +02006537 or die_error(404, "Reading git-diff-tree failed");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006538 @difftree
Lea Wiemann074afaa2008-06-19 22:03:21 +02006539 or die_error(404, "Blob diff not found");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006540
6541 } else {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006542 die_error(400, "Missing one of the blob diff parameters");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006543 }
6544
6545 if (@difftree > 1) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006546 die_error(400, "Ambiguous blob diff specification");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006547 }
6548
6549 %diffinfo = parse_difftree_raw_line($difftree[0]);
Jakub Narebski9d301452007-11-01 12:38:08 +01006550 $file_parent ||= $diffinfo{'from_file'} || $file_name;
6551 $file_name ||= $diffinfo{'to_file'};
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006552
6553 $hash_parent ||= $diffinfo{'from_id'};
6554 $hash ||= $diffinfo{'to_id'};
6555
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006556 # non-textual hash id's can be cached
6557 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
6558 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
6559 $expires = '+1d';
6560 }
6561
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006562 # open patch output
Dennis Stosberg25691fb2006-08-28 17:49:58 +02006563 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
Jakub Narebski957d6ea2007-04-05 13:45:41 +02006564 '-p', ($format eq 'html' ? "--full-index" : ()),
6565 $hash_parent_base, $hash_base,
Jakub Narebski5ae917a2007-03-30 23:41:26 +02006566 "--", (defined $file_parent ? $file_parent : ()), $file_name
Lea Wiemann074afaa2008-06-19 22:03:21 +02006567 or die_error(500, "Open git-diff-tree failed");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006568 }
6569
Junio C Hamanob54dc9f2008-12-16 19:42:02 -08006570 # old/legacy style URI -- not generated anymore since 1.4.3.
6571 if (!%diffinfo) {
6572 die_error('404 Not Found', "Missing one of the blob diff parameters")
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006573 }
6574
6575 # header
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006576 if ($format eq 'html') {
6577 my $formats_nav =
Jakub Narebskia3823e52007-11-01 13:06:29 +01006578 $cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},
Petr Baudis35329cc2006-09-22 03:19:50 +02006579 "raw");
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006580 git_header_html(undef, $expires);
6581 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
6582 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
6583 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
6584 } else {
6585 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
Jakub Narebski3017ed62010-12-15 00:34:01 +01006586 print "<div class=\"title\">".esc_html("$hash vs $hash_parent")."</div>\n";
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006587 }
6588 if (defined $file_name) {
6589 git_print_page_path($file_name, "blob", $hash_base);
6590 } else {
6591 print "<div class=\"page_path\"></div>\n";
6592 }
6593
6594 } elsif ($format eq 'plain') {
6595 print $cgi->header(
6596 -type => 'text/plain',
6597 -charset => 'utf-8',
6598 -expires => $expires,
Luben Tuikova2a3bf72006-09-28 16:51:43 -07006599 -content_disposition => 'inline; filename="' . "$file_name" . '.patch"');
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006600
6601 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
6602
Kay Sievers09bd7892005-08-07 20:21:23 +02006603 } else {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006604 die_error(400, "Unknown blobdiff format");
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006605 }
6606
6607 # patch
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006608 if ($format eq 'html') {
6609 print "<div class=\"page_body\">\n";
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006610
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006611 git_patchset_body($fd, [ \%diffinfo ], $hash_base, $hash_parent_base);
6612 close $fd;
Jakub Narebski7c5e2eb2006-08-25 21:13:34 +02006613
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006614 print "</div>\n"; # class="page_body"
6615 git_footer_html();
6616
6617 } else {
6618 while (my $line = <$fd>) {
Jakub Narebski403d0902006-11-08 11:48:56 +01006619 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
6620 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006621
6622 print $line;
6623
6624 last if $line =~ m!^\+\+\+!;
6625 }
6626 local $/ = undef;
6627 print <$fd>;
6628 close $fd;
6629 }
Kay Sievers09bd7892005-08-07 20:21:23 +02006630}
6631
Kay Sievers19806692005-08-07 20:26:27 +02006632sub git_blobdiff_plain {
Jakub Narebski9b71b1f2006-08-25 21:14:49 +02006633 git_blobdiff('plain');
Kay Sievers19806692005-08-07 20:26:27 +02006634}
6635
Kay Sievers09bd7892005-08-07 20:21:23 +02006636sub git_commitdiff {
Giuseppe Bilotta20209852008-12-18 08:13:17 +01006637 my %params = @_;
6638 my $format = $params{-format} || 'html';
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006639
Giuseppe Bilotta75bf2cb2008-12-18 08:13:19 +01006640 my ($patch_max) = gitweb_get_feature('patches');
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006641 if ($format eq 'patch') {
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006642 die_error(403, "Patch view not allowed") unless $patch_max;
6643 }
6644
Jakub Narebski9954f772006-11-18 23:35:41 +01006645 $hash ||= $hash_base || "HEAD";
Lea Wiemann074afaa2008-06-19 22:03:21 +02006646 my %co = parse_commit($hash)
6647 or die_error(404, "Unknown commit object");
Jakub Narebski151602d2006-10-23 00:37:56 +02006648
Jakub Narebskicd030c32007-06-08 13:33:28 +02006649 # choose format for commitdiff for merge
6650 if (! defined $hash_parent && @{$co{'parents'}} > 1) {
6651 $hash_parent = '--cc';
6652 }
6653 # we need to prepare $formats_nav before almost any parameter munging
Jakub Narebski151602d2006-10-23 00:37:56 +02006654 my $formats_nav;
6655 if ($format eq 'html') {
6656 $formats_nav =
Jakub Narebskia3823e52007-11-01 13:06:29 +01006657 $cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},
Jakub Narebski151602d2006-10-23 00:37:56 +02006658 "raw");
Jakub Narebski1655c982009-10-09 14:26:44 +02006659 if ($patch_max && @{$co{'parents'}} <= 1) {
Giuseppe Bilotta75bf2cb2008-12-18 08:13:19 +01006660 $formats_nav .= " | " .
6661 $cgi->a({-href => href(action=>"patch", -replay=>1)},
6662 "patch");
6663 }
Jakub Narebski151602d2006-10-23 00:37:56 +02006664
Jakub Narebskicd030c32007-06-08 13:33:28 +02006665 if (defined $hash_parent &&
6666 $hash_parent ne '-c' && $hash_parent ne '--cc') {
Jakub Narebski151602d2006-10-23 00:37:56 +02006667 # commitdiff with two commits given
6668 my $hash_parent_short = $hash_parent;
6669 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
6670 $hash_parent_short = substr($hash_parent, 0, 7);
6671 }
6672 $formats_nav .=
Jakub Narebskiada3e1f2007-06-08 13:26:31 +02006673 ' (from';
6674 for (my $i = 0; $i < @{$co{'parents'}}; $i++) {
6675 if ($co{'parents'}[$i] eq $hash_parent) {
6676 $formats_nav .= ' parent ' . ($i+1);
6677 last;
6678 }
6679 }
6680 $formats_nav .= ': ' .
Jakub Narebski151602d2006-10-23 00:37:56 +02006681 $cgi->a({-href => href(action=>"commitdiff",
6682 hash=>$hash_parent)},
6683 esc_html($hash_parent_short)) .
6684 ')';
6685 } elsif (!$co{'parent'}) {
6686 # --root commitdiff
6687 $formats_nav .= ' (initial)';
6688 } elsif (scalar @{$co{'parents'}} == 1) {
6689 # single parent commit
6690 $formats_nav .=
6691 ' (parent: ' .
6692 $cgi->a({-href => href(action=>"commitdiff",
6693 hash=>$co{'parent'})},
6694 esc_html(substr($co{'parent'}, 0, 7))) .
6695 ')';
6696 } else {
6697 # merge commit
Jakub Narebskicd030c32007-06-08 13:33:28 +02006698 if ($hash_parent eq '--cc') {
6699 $formats_nav .= ' | ' .
6700 $cgi->a({-href => href(action=>"commitdiff",
6701 hash=>$hash, hash_parent=>'-c')},
6702 'combined');
6703 } else { # $hash_parent eq '-c'
6704 $formats_nav .= ' | ' .
6705 $cgi->a({-href => href(action=>"commitdiff",
6706 hash=>$hash, hash_parent=>'--cc')},
6707 'compact');
6708 }
Jakub Narebski151602d2006-10-23 00:37:56 +02006709 $formats_nav .=
6710 ' (merge: ' .
6711 join(' ', map {
6712 $cgi->a({-href => href(action=>"commitdiff",
6713 hash=>$_)},
6714 esc_html(substr($_, 0, 7)));
6715 } @{$co{'parents'}} ) .
6716 ')';
6717 }
6718 }
6719
Jakub Narebskifb1dde42007-05-07 01:10:07 +02006720 my $hash_parent_param = $hash_parent;
Jakub Narebskicd030c32007-06-08 13:33:28 +02006721 if (!defined $hash_parent_param) {
6722 # --cc for multiple parents, --root for parentless
Jakub Narebskifb1dde42007-05-07 01:10:07 +02006723 $hash_parent_param =
Jakub Narebskicd030c32007-06-08 13:33:28 +02006724 @{$co{'parents'}} > 1 ? '--cc' : $co{'parent'} || '--root';
Kay Sieversbddec012005-08-07 20:25:42 +02006725 }
Jakub Narebskieee08902006-08-24 00:15:14 +02006726
6727 # read commitdiff
6728 my $fd;
6729 my @difftree;
Jakub Narebskieee08902006-08-24 00:15:14 +02006730 if ($format eq 'html') {
Dennis Stosberg25691fb2006-08-28 17:49:58 +02006731 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
Jakub Narebski45bd0c82006-10-30 22:29:06 +01006732 "--no-commit-id", "--patch-with-raw", "--full-index",
Jakub Narebskifb1dde42007-05-07 01:10:07 +02006733 $hash_parent_param, $hash, "--"
Lea Wiemann074afaa2008-06-19 22:03:21 +02006734 or die_error(500, "Open git-diff-tree failed");
Jakub Narebskieee08902006-08-24 00:15:14 +02006735
Jakub Narebski04408c32006-11-18 23:35:38 +01006736 while (my $line = <$fd>) {
6737 chomp $line;
Jakub Narebskieee08902006-08-24 00:15:14 +02006738 # empty line ends raw part of diff-tree output
6739 last unless $line;
Jakub Narebski493e01d2007-05-07 01:10:06 +02006740 push @difftree, scalar parse_difftree_raw_line($line);
Jakub Narebskieee08902006-08-24 00:15:14 +02006741 }
Jakub Narebskieee08902006-08-24 00:15:14 +02006742
Jakub Narebskieee08902006-08-24 00:15:14 +02006743 } elsif ($format eq 'plain') {
Dennis Stosberg25691fb2006-08-28 17:49:58 +02006744 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
Jakub Narebskifb1dde42007-05-07 01:10:07 +02006745 '-p', $hash_parent_param, $hash, "--"
Lea Wiemann074afaa2008-06-19 22:03:21 +02006746 or die_error(500, "Open git-diff-tree failed");
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006747 } elsif ($format eq 'patch') {
6748 # For commit ranges, we limit the output to the number of
6749 # patches specified in the 'patches' feature.
6750 # For single commits, we limit the output to a single patch,
6751 # diverging from the git-format-patch default.
6752 my @commit_spec = ();
6753 if ($hash_parent) {
6754 if ($patch_max > 0) {
6755 push @commit_spec, "-$patch_max";
6756 }
6757 push @commit_spec, '-n', "$hash_parent..$hash";
6758 } else {
Giuseppe Bilottaa3411f82008-12-18 08:13:18 +01006759 if ($params{-single}) {
6760 push @commit_spec, '-1';
6761 } else {
6762 if ($patch_max > 0) {
6763 push @commit_spec, "-$patch_max";
6764 }
6765 push @commit_spec, "-n";
6766 }
6767 push @commit_spec, '--root', $hash;
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006768 }
Pavan Kumar Sunkara04794fd2010-05-10 18:41:35 +02006769 open $fd, "-|", git_cmd(), "format-patch", @diff_opts,
6770 '--encoding=utf8', '--stdout', @commit_spec
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006771 or die_error(500, "Open git-format-patch failed");
Jakub Narebskieee08902006-08-24 00:15:14 +02006772 } else {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006773 die_error(400, "Unknown commitdiff format");
Jakub Narebskieee08902006-08-24 00:15:14 +02006774 }
Kay Sievers4c02e3c2005-08-07 19:52:52 +02006775
Kay Sievers11044292005-10-19 03:18:45 +02006776 # non-textual hash id's can be cached
6777 my $expires;
6778 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
6779 $expires = "+1d";
6780 }
Kay Sievers09bd7892005-08-07 20:21:23 +02006781
Jakub Narebskieee08902006-08-24 00:15:14 +02006782 # write commit message
6783 if ($format eq 'html') {
6784 my $refs = git_get_references();
6785 my $ref = format_ref_marker($refs, $co{'id'});
Kay Sievers19806692005-08-07 20:26:27 +02006786
Jakub Narebskieee08902006-08-24 00:15:14 +02006787 git_header_html(undef, $expires);
6788 git_print_page_nav('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
6789 git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash);
Giuseppe Bilottaf88bafa2009-06-30 00:00:49 +02006790 print "<div class=\"title_text\">\n" .
6791 "<table class=\"object_header\">\n";
6792 git_print_authorship_rows(\%co);
6793 print "</table>".
6794 "</div>\n";
Jakub Narebskieee08902006-08-24 00:15:14 +02006795 print "<div class=\"page_body\">\n";
Jakub Narebski82560982006-10-24 13:55:33 +02006796 if (@{$co{'comment'}} > 1) {
6797 print "<div class=\"log\">\n";
6798 git_print_log($co{'comment'}, -final_empty_line=> 1, -remove_title => 1);
6799 print "</div>\n"; # class="log"
6800 }
Kay Sievers1b1cd422005-08-07 20:28:01 +02006801
Jakub Narebskieee08902006-08-24 00:15:14 +02006802 } elsif ($format eq 'plain') {
6803 my $refs = git_get_references("tags");
Jakub Narebskiedf735a2006-08-24 19:45:30 +02006804 my $tagname = git_get_rev_name_tags($hash);
Jakub Narebskieee08902006-08-24 00:15:14 +02006805 my $filename = basename($project) . "-$hash.patch";
6806
6807 print $cgi->header(
6808 -type => 'text/plain',
6809 -charset => 'utf-8',
6810 -expires => $expires,
Luben Tuikova2a3bf72006-09-28 16:51:43 -07006811 -content_disposition => 'inline; filename="' . "$filename" . '"');
Jakub Narebskieee08902006-08-24 00:15:14 +02006812 my %ad = parse_date($co{'author_epoch'}, $co{'author_tz'});
Yasushi SHOJI77202242008-01-29 21:16:02 +09006813 print "From: " . to_utf8($co{'author'}) . "\n";
6814 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
6815 print "Subject: " . to_utf8($co{'title'}) . "\n";
6816
Jakub Narebskiedf735a2006-08-24 19:45:30 +02006817 print "X-Git-Tag: $tagname\n" if $tagname;
Jakub Narebskieee08902006-08-24 00:15:14 +02006818 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
Jakub Narebskiedf735a2006-08-24 19:45:30 +02006819
Jakub Narebskieee08902006-08-24 00:15:14 +02006820 foreach my $line (@{$co{'comment'}}) {
Yasushi SHOJI77202242008-01-29 21:16:02 +09006821 print to_utf8($line) . "\n";
Kay Sievers19806692005-08-07 20:26:27 +02006822 }
Jakub Narebskieee08902006-08-24 00:15:14 +02006823 print "---\n\n";
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006824 } elsif ($format eq 'patch') {
6825 my $filename = basename($project) . "-$hash.patch";
6826
6827 print $cgi->header(
6828 -type => 'text/plain',
6829 -charset => 'utf-8',
6830 -expires => $expires,
6831 -content_disposition => 'inline; filename="' . "$filename" . '"');
Kay Sievers19806692005-08-07 20:26:27 +02006832 }
Jakub Narebskieee08902006-08-24 00:15:14 +02006833
6834 # write patch
6835 if ($format eq 'html') {
Jakub Narebskicd030c32007-06-08 13:33:28 +02006836 my $use_parents = !defined $hash_parent ||
6837 $hash_parent eq '-c' || $hash_parent eq '--cc';
6838 git_difftree_body(\@difftree, $hash,
6839 $use_parents ? @{$co{'parents'}} : $hash_parent);
Jakub Narebskib4657e72006-08-28 14:48:14 +02006840 print "<br/>\n";
Jakub Narebskieee08902006-08-24 00:15:14 +02006841
Jakub Narebskicd030c32007-06-08 13:33:28 +02006842 git_patchset_body($fd, \@difftree, $hash,
6843 $use_parents ? @{$co{'parents'}} : $hash_parent);
Jakub Narebski157e43b2006-08-24 19:34:36 +02006844 close $fd;
Jakub Narebskieee08902006-08-24 00:15:14 +02006845 print "</div>\n"; # class="page_body"
6846 git_footer_html();
6847
6848 } elsif ($format eq 'plain') {
6849 local $/ = undef;
6850 print <$fd>;
6851 close $fd
6852 or print "Reading git-diff-tree failed\n";
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006853 } elsif ($format eq 'patch') {
6854 local $/ = undef;
6855 print <$fd>;
6856 close $fd
6857 or print "Reading git-format-patch failed\n";
Jakub Narebskieee08902006-08-24 00:15:14 +02006858 }
6859}
6860
6861sub git_commitdiff_plain {
Giuseppe Bilotta20209852008-12-18 08:13:17 +01006862 git_commitdiff(-format => 'plain');
Kay Sievers19806692005-08-07 20:26:27 +02006863}
6864
Giuseppe Bilotta9872cd62008-12-18 08:13:16 +01006865# format-patch-style patches
6866sub git_patch {
Jakub Narebski1655c982009-10-09 14:26:44 +02006867 git_commitdiff(-format => 'patch', -single => 1);
Giuseppe Bilottaa3411f82008-12-18 08:13:18 +01006868}
6869
6870sub git_patches {
Giuseppe Bilotta20209852008-12-18 08:13:17 +01006871 git_commitdiff(-format => 'patch');
Kay Sievers09bd7892005-08-07 20:21:23 +02006872}
6873
6874sub git_history {
Jakub Narebski69ca37d2009-11-13 02:02:14 +01006875 git_log_generic('history', \&git_history_body,
6876 $hash_base, $hash_parent_base,
6877 $file_name, $hash);
Kay Sievers161332a2005-08-07 19:49:46 +02006878}
Kay Sievers19806692005-08-07 20:26:27 +02006879
6880sub git_search {
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08006881 gitweb_check_feature('search') or die_error(403, "Search is disabled");
Kay Sievers19806692005-08-07 20:26:27 +02006882 if (!defined $searchtext) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006883 die_error(400, "Text field is empty");
Kay Sievers19806692005-08-07 20:26:27 +02006884 }
6885 if (!defined $hash) {
Jakub Narebski847e01f2006-08-14 02:05:47 +02006886 $hash = git_get_head_hash($project);
Kay Sievers19806692005-08-07 20:26:27 +02006887 }
Jakub Narebski847e01f2006-08-14 02:05:47 +02006888 my %co = parse_commit($hash);
Kay Sievers19806692005-08-07 20:26:27 +02006889 if (!%co) {
Lea Wiemann074afaa2008-06-19 22:03:21 +02006890 die_error(404, "Unknown commit object");
Kay Sievers19806692005-08-07 20:26:27 +02006891 }
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006892 if (!defined $page) {
6893 $page = 0;
6894 }
Jakub Narebski04f7a942006-09-11 00:29:27 +02006895
Petr Baudis88ad7292006-10-24 05:15:46 +02006896 $searchtype ||= 'commit';
6897 if ($searchtype eq 'pickaxe') {
Jakub Narebski04f7a942006-09-11 00:29:27 +02006898 # pickaxe may take all resources of your box and run for several minutes
6899 # with every query - so decide by yourself how public you make this feature
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08006900 gitweb_check_feature('pickaxe')
Lea Wiemann074afaa2008-06-19 22:03:21 +02006901 or die_error(403, "Pickaxe is disabled");
Kay Sieversc994d622005-08-07 20:27:18 +02006902 }
Petr Baudise7738552007-05-17 04:31:12 +02006903 if ($searchtype eq 'grep') {
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08006904 gitweb_check_feature('grep')
Lea Wiemann074afaa2008-06-19 22:03:21 +02006905 or die_error(403, "Grep is disabled");
Petr Baudise7738552007-05-17 04:31:12 +02006906 }
Petr Baudis88ad7292006-10-24 05:15:46 +02006907
Kay Sievers19806692005-08-07 20:26:27 +02006908 git_header_html();
Kay Sievers19806692005-08-07 20:26:27 +02006909
Petr Baudis88ad7292006-10-24 05:15:46 +02006910 if ($searchtype eq 'commit' or $searchtype eq 'author' or $searchtype eq 'committer') {
Robert Fitzsimons8e574fb2006-12-23 03:35:14 +00006911 my $greptype;
6912 if ($searchtype eq 'commit') {
6913 $greptype = "--grep=";
6914 } elsif ($searchtype eq 'author') {
6915 $greptype = "--author=";
6916 } elsif ($searchtype eq 'committer') {
6917 $greptype = "--committer=";
6918 }
Jakub Narebski0270cd02008-02-26 13:22:07 +01006919 $greptype .= $searchtext;
6920 my @commitlist = parse_commits($hash, 101, (100 * $page), undef,
Petr Baudis0e559912008-02-26 13:22:08 +01006921 $greptype, '--regexp-ignore-case',
6922 $search_use_regexp ? '--extended-regexp' : '--fixed-strings');
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006923
6924 my $paging_nav = '';
6925 if ($page > 0) {
6926 $paging_nav .=
6927 $cgi->a({-href => href(action=>"search", hash=>$hash,
Jakub Narebski0270cd02008-02-26 13:22:07 +01006928 searchtext=>$searchtext,
6929 searchtype=>$searchtype)},
Jakub Narebskia23f0a72007-04-01 22:21:38 +02006930 "first");
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006931 $paging_nav .= " &sdot; " .
Jakub Narebski7afd77b2007-11-01 13:06:28 +01006932 $cgi->a({-href => href(-replay=>1, page=>$page-1),
Jakub Narebskia23f0a72007-04-01 22:21:38 +02006933 -accesskey => "p", -title => "Alt-p"}, "prev");
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006934 } else {
6935 $paging_nav .= "first";
6936 $paging_nav .= " &sdot; prev";
6937 }
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006938 my $next_link = '';
Robert Fitzsimons5ad66082006-12-24 14:31:46 +00006939 if ($#commitlist >= 100) {
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006940 $next_link =
Jakub Narebski7afd77b2007-11-01 13:06:28 +01006941 $cgi->a({-href => href(-replay=>1, page=>$page+1),
Jakub Narebskia23f0a72007-04-01 22:21:38 +02006942 -accesskey => "n", -title => "Alt-n"}, "next");
Jakub Narebski7afd77b2007-11-01 13:06:28 +01006943 $paging_nav .= " &sdot; $next_link";
6944 } else {
6945 $paging_nav .= " &sdot; next";
6946 }
6947
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006948 git_print_page_nav('','', $hash,$co{'tree'},$hash, $paging_nav);
6949 git_print_header_div('commit', esc_html($co{'title'}), $hash);
Jonathan Nieder497d9c32010-08-07 16:56:47 -05006950 if ($page == 0 && !@commitlist) {
6951 print "<p>No match.</p>\n";
6952 } else {
6953 git_search_grep_body(\@commitlist, 0, 99, $next_link);
6954 }
Kay Sieversc994d622005-08-07 20:27:18 +02006955 }
6956
Petr Baudis88ad7292006-10-24 05:15:46 +02006957 if ($searchtype eq 'pickaxe') {
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006958 git_print_page_nav('','', $hash,$co{'tree'},$hash);
6959 git_print_header_div('commit', esc_html($co{'title'}), $hash);
6960
Jakub Narebski591ebf62007-11-19 14:16:11 +01006961 print "<table class=\"pickaxe search\">\n";
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00006962 my $alternate = 1;
Jakub Narebski34122b52009-05-11 03:29:40 +02006963 local $/ = "\n";
Jakub Narebskic582aba2008-03-05 09:31:55 +01006964 open my $fd, '-|', git_cmd(), '--no-pager', 'log', @diff_opts,
6965 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
6966 ($search_use_regexp ? '--pickaxe-regex' : ());
Kay Sieversc994d622005-08-07 20:27:18 +02006967 undef %co;
6968 my @files;
6969 while (my $line = <$fd>) {
Jakub Narebskic582aba2008-03-05 09:31:55 +01006970 chomp $line;
6971 next unless $line;
6972
6973 my %set = parse_difftree_raw_line($line);
6974 if (defined $set{'commit'}) {
6975 # finish previous commit
Kay Sieversc994d622005-08-07 20:27:18 +02006976 if (%co) {
Kay Sieversc994d622005-08-07 20:27:18 +02006977 print "</td>\n" .
6978 "<td class=\"link\">" .
Martin Waitz756d2f02006-08-17 00:28:36 +02006979 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})}, "commit") .
Jakub Narebski952c65f2006-08-22 16:52:50 +02006980 " | " .
6981 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})}, "tree");
Kay Sieversc994d622005-08-07 20:27:18 +02006982 print "</td>\n" .
6983 "</tr>\n";
6984 }
Jakub Narebskic582aba2008-03-05 09:31:55 +01006985
6986 if ($alternate) {
6987 print "<tr class=\"dark\">\n";
6988 } else {
6989 print "<tr class=\"light\">\n";
6990 }
6991 $alternate ^= 1;
6992 %co = parse_commit($set{'commit'});
6993 my $author = chop_and_escape_str($co{'author_name'}, 15, 5);
6994 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6995 "<td><i>$author</i></td>\n" .
6996 "<td>" .
6997 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),
6998 -class => "list subject"},
6999 chop_and_escape_str($co{'title'}, 50) . "<br/>");
7000 } elsif (defined $set{'to_id'}) {
7001 next if ($set{'to_id'} =~ m/^0{40}$/);
7002
7003 print $cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},
7004 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),
7005 -class => "list"},
7006 "<span class=\"match\">" . esc_path($set{'file'}) . "</span>") .
7007 "<br/>\n";
Kay Sieversc994d622005-08-07 20:27:18 +02007008 }
7009 }
7010 close $fd;
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00007011
Jakub Narebskic582aba2008-03-05 09:31:55 +01007012 # finish last commit (warning: repetition!)
7013 if (%co) {
7014 print "</td>\n" .
7015 "<td class=\"link\">" .
7016 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})}, "commit") .
7017 " | " .
7018 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})}, "tree");
7019 print "</td>\n" .
7020 "</tr>\n";
7021 }
7022
Robert Fitzsimons8dbc0fc2006-12-23 14:57:12 +00007023 print "</table>\n";
Kay Sievers19806692005-08-07 20:26:27 +02007024 }
Petr Baudise7738552007-05-17 04:31:12 +02007025
7026 if ($searchtype eq 'grep') {
7027 git_print_page_nav('','', $hash,$co{'tree'},$hash);
7028 git_print_header_div('commit', esc_html($co{'title'}), $hash);
7029
Jakub Narebski591ebf62007-11-19 14:16:11 +01007030 print "<table class=\"grep_search\">\n";
Petr Baudise7738552007-05-17 04:31:12 +02007031 my $alternate = 1;
7032 my $matches = 0;
Jakub Narebski34122b52009-05-11 03:29:40 +02007033 local $/ = "\n";
Petr Baudis0e559912008-02-26 13:22:08 +01007034 open my $fd, "-|", git_cmd(), 'grep', '-n',
7035 $search_use_regexp ? ('-E', '-i') : '-F',
7036 $searchtext, $co{'tree'};
Petr Baudise7738552007-05-17 04:31:12 +02007037 my $lastfile = '';
7038 while (my $line = <$fd>) {
7039 chomp $line;
7040 my ($file, $lno, $ltext, $binary);
7041 last if ($matches++ > 1000);
7042 if ($line =~ /^Binary file (.+) matches$/) {
7043 $file = $1;
7044 $binary = 1;
7045 } else {
7046 (undef, $file, $lno, $ltext) = split(/:/, $line, 4);
7047 }
7048 if ($file ne $lastfile) {
7049 $lastfile and print "</td></tr>\n";
7050 if ($alternate++) {
7051 print "<tr class=\"dark\">\n";
7052 } else {
7053 print "<tr class=\"light\">\n";
7054 }
7055 print "<td class=\"list\">".
7056 $cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},
7057 file_name=>"$file"),
7058 -class => "list"}, esc_path($file));
7059 print "</td><td>\n";
7060 $lastfile = $file;
7061 }
7062 if ($binary) {
7063 print "<div class=\"binary\">Binary file</div>\n";
7064 } else {
7065 $ltext = untabify($ltext);
Petr Baudis0e559912008-02-26 13:22:08 +01007066 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
Petr Baudise7738552007-05-17 04:31:12 +02007067 $ltext = esc_html($1, -nbsp=>1);
7068 $ltext .= '<span class="match">';
7069 $ltext .= esc_html($2, -nbsp=>1);
7070 $ltext .= '</span>';
7071 $ltext .= esc_html($3, -nbsp=>1);
7072 } else {
7073 $ltext = esc_html($ltext, -nbsp=>1);
7074 }
7075 print "<div class=\"pre\">" .
7076 $cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},
7077 file_name=>"$file").'#l'.$lno,
7078 -class => "linenr"}, sprintf('%4i', $lno))
7079 . ' ' . $ltext . "</div>\n";
7080 }
7081 }
7082 if ($lastfile) {
7083 print "</td></tr>\n";
7084 if ($matches > 1000) {
7085 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
7086 }
7087 } else {
7088 print "<div class=\"diff nodifferences\">No matches found</div>\n";
7089 }
7090 close $fd;
7091
7092 print "</table>\n";
7093 }
Kay Sievers19806692005-08-07 20:26:27 +02007094 git_footer_html();
7095}
7096
Petr Baudis88ad7292006-10-24 05:15:46 +02007097sub git_search_help {
7098 git_header_html();
7099 git_print_page_nav('','', $hash,$hash,$hash);
7100 print <<EOT;
Petr Baudis0e559912008-02-26 13:22:08 +01007101<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
7102regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
7103the pattern entered is recognized as the POSIX extended
7104<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
7105insensitive).</p>
Petr Baudis88ad7292006-10-24 05:15:46 +02007106<dl>
7107<dt><b>commit</b></dt>
Petr Baudis0e559912008-02-26 13:22:08 +01007108<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
Petr Baudise7738552007-05-17 04:31:12 +02007109EOT
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08007110 my $have_grep = gitweb_check_feature('grep');
Petr Baudise7738552007-05-17 04:31:12 +02007111 if ($have_grep) {
7112 print <<EOT;
7113<dt><b>grep</b></dt>
7114<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
Petr Baudis0e559912008-02-26 13:22:08 +01007115 a different one) are searched for the given pattern. On large trees, this search can take
7116a while and put some strain on the server, so please use it with some consideration. Note that
7117due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
7118case-sensitive.</dd>
Petr Baudise7738552007-05-17 04:31:12 +02007119EOT
7120 }
7121 print <<EOT;
Petr Baudis88ad7292006-10-24 05:15:46 +02007122<dt><b>author</b></dt>
Petr Baudis0e559912008-02-26 13:22:08 +01007123<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
Petr Baudis88ad7292006-10-24 05:15:46 +02007124<dt><b>committer</b></dt>
Petr Baudis0e559912008-02-26 13:22:08 +01007125<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
Petr Baudis88ad7292006-10-24 05:15:46 +02007126EOT
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08007127 my $have_pickaxe = gitweb_check_feature('pickaxe');
Petr Baudis88ad7292006-10-24 05:15:46 +02007128 if ($have_pickaxe) {
7129 print <<EOT;
7130<dt><b>pickaxe</b></dt>
7131<dd>All commits that caused the string to appear or disappear from any file (changes that
7132added, removed or "modified" the string) will be listed. This search can take a while and
Petr Baudis0e559912008-02-26 13:22:08 +01007133takes a lot of strain on the server, so please use it wisely. Note that since you may be
7134interested even in changes just changing the case as well, this search is case sensitive.</dd>
Petr Baudis88ad7292006-10-24 05:15:46 +02007135EOT
7136 }
7137 print "</dl>\n";
7138 git_footer_html();
7139}
7140
Kay Sievers19806692005-08-07 20:26:27 +02007141sub git_shortlog {
Jakub Narebski69ca37d2009-11-13 02:02:14 +01007142 git_log_generic('shortlog', \&git_shortlog_body,
7143 $hash, $hash_parent);
Kay Sievers19806692005-08-07 20:26:27 +02007144}
Jakub Narebski717b8312006-07-31 21:22:15 +02007145
7146## ......................................................................
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007147## feeds (RSS, Atom; OPML)
Jakub Narebski717b8312006-07-31 21:22:15 +02007148
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007149sub git_feed {
7150 my $format = shift || 'atom';
Giuseppe Bilotta25b27902008-11-29 13:07:29 -08007151 my $have_blame = gitweb_check_feature('blame');
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007152
7153 # Atom: http://www.atomenabled.org/developers/syndication/
7154 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
7155 if ($format ne 'rss' && $format ne 'atom') {
Lea Wiemann074afaa2008-06-19 22:03:21 +02007156 die_error(400, "Unknown web feed format");
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007157 }
7158
7159 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
7160 my $head = $hash || 'HEAD';
Jakub Narebski311e5522008-02-26 13:22:06 +01007161 my @commitlist = parse_commits($head, 150, 0, $file_name);
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007162
7163 my %latest_commit;
7164 my %latest_date;
7165 my $content_type = "application/$format+xml";
7166 if (defined $cgi->http('HTTP_ACCEPT') &&
7167 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
7168 # browser (feed reader) prefers text/xml
7169 $content_type = 'text/xml';
7170 }
Robert Fitzsimonsb6093a52006-12-24 14:31:47 +00007171 if (defined($commitlist[0])) {
7172 %latest_commit = %{$commitlist[0]};
Giuseppe Bilottacd956c72009-01-26 12:50:16 +01007173 my $latest_epoch = $latest_commit{'committer_epoch'};
Jakub Narebski6368d9f2011-03-19 23:53:55 +01007174 %latest_date = parse_date($latest_epoch, $latest_commit{'comitter_tz'});
Giuseppe Bilottacd956c72009-01-26 12:50:16 +01007175 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
7176 if (defined $if_modified) {
7177 my $since;
7178 if (eval { require HTTP::Date; 1; }) {
7179 $since = HTTP::Date::str2time($if_modified);
7180 } elsif (eval { require Time::ParseDate; 1; }) {
7181 $since = Time::ParseDate::parsedate($if_modified, GMT => 1);
7182 }
7183 if (defined $since && $latest_epoch <= $since) {
7184 print $cgi->header(
7185 -type => $content_type,
7186 -charset => 'utf-8',
7187 -last_modified => $latest_date{'rfc2822'},
7188 -status => '304 Not Modified');
7189 return;
7190 }
7191 }
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007192 print $cgi->header(
7193 -type => $content_type,
7194 -charset => 'utf-8',
7195 -last_modified => $latest_date{'rfc2822'});
7196 } else {
7197 print $cgi->header(
7198 -type => $content_type,
7199 -charset => 'utf-8');
7200 }
7201
7202 # Optimization: skip generating the body if client asks only
7203 # for Last-Modified date.
7204 return if ($cgi->request_method() eq 'HEAD');
7205
7206 # header variables
7207 my $title = "$site_name - $project/$action";
7208 my $feed_type = 'log';
7209 if (defined $hash) {
7210 $title .= " - '$hash'";
7211 $feed_type = 'branch log';
7212 if (defined $file_name) {
7213 $title .= " :: $file_name";
7214 $feed_type = 'history';
7215 }
7216 } elsif (defined $file_name) {
7217 $title .= " - $file_name";
7218 $feed_type = 'history';
7219 }
7220 $title .= " $feed_type";
7221 my $descr = git_get_project_description($project);
7222 if (defined $descr) {
7223 $descr = esc_html($descr);
7224 } else {
7225 $descr = "$project " .
7226 ($format eq 'rss' ? 'RSS' : 'Atom') .
7227 " feed";
7228 }
7229 my $owner = git_get_project_owner($project);
7230 $owner = esc_html($owner);
7231
7232 #header
7233 my $alt_url;
7234 if (defined $file_name) {
7235 $alt_url = href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);
7236 } elsif (defined $hash) {
7237 $alt_url = href(-full=>1, action=>"log", hash=>$hash);
7238 } else {
7239 $alt_url = href(-full=>1, action=>"summary");
7240 }
7241 print qq!<?xml version="1.0" encoding="utf-8"?>\n!;
7242 if ($format eq 'rss') {
7243 print <<XML;
Jakub Narebski59b9f612006-08-22 23:42:53 +02007244<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
7245<channel>
Jakub Narebski59b9f612006-08-22 23:42:53 +02007246XML
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007247 print "<title>$title</title>\n" .
7248 "<link>$alt_url</link>\n" .
7249 "<description>$descr</description>\n" .
Giuseppe Bilotta3ac109a2009-01-26 12:50:13 +01007250 "<language>en</language>\n" .
7251 # project owner is responsible for 'editorial' content
7252 "<managingEditor>$owner</managingEditor>\n";
Giuseppe Bilotta1ba68ce2009-01-26 12:50:11 +01007253 if (defined $logo || defined $favicon) {
7254 # prefer the logo to the favicon, since RSS
7255 # doesn't allow both
7256 my $img = esc_url($logo || $favicon);
7257 print "<image>\n" .
7258 "<url>$img</url>\n" .
7259 "<title>$title</title>\n" .
7260 "<link>$alt_url</link>\n" .
7261 "</image>\n";
7262 }
Giuseppe Bilotta0cf31282009-01-26 12:50:14 +01007263 if (%latest_date) {
7264 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
7265 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
7266 }
Giuseppe Bilottaad59a7a2009-01-26 12:50:12 +01007267 print "<generator>gitweb v.$version/$git_version</generator>\n";
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007268 } elsif ($format eq 'atom') {
7269 print <<XML;
7270<feed xmlns="http://www.w3.org/2005/Atom">
7271XML
7272 print "<title>$title</title>\n" .
7273 "<subtitle>$descr</subtitle>\n" .
7274 '<link rel="alternate" type="text/html" href="' .
7275 $alt_url . '" />' . "\n" .
7276 '<link rel="self" type="' . $content_type . '" href="' .
7277 $cgi->self_url() . '" />' . "\n" .
7278 "<id>" . href(-full=>1) . "</id>\n" .
7279 # use project owner for feed author
7280 "<author><name>$owner</name></author>\n";
7281 if (defined $favicon) {
7282 print "<icon>" . esc_url($favicon) . "</icon>\n";
7283 }
Jonathan Nieder9d9f5e72010-09-03 19:44:39 -05007284 if (defined $logo) {
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007285 # not twice as wide as tall: 72 x 27 pixels
Jakub Narebskie1147262006-12-04 14:09:43 +01007286 print "<logo>" . esc_url($logo) . "</logo>\n";
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007287 }
7288 if (! %latest_date) {
7289 # dummy date to keep the feed valid until commits trickle in:
7290 print "<updated>1970-01-01T00:00:00Z</updated>\n";
7291 } else {
7292 print "<updated>$latest_date{'iso-8601'}</updated>\n";
7293 }
Giuseppe Bilottaad59a7a2009-01-26 12:50:12 +01007294 print "<generator version='$version/$git_version'>gitweb</generator>\n";
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007295 }
Jakub Narebski717b8312006-07-31 21:22:15 +02007296
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007297 # contents
Robert Fitzsimonsb6093a52006-12-24 14:31:47 +00007298 for (my $i = 0; $i <= $#commitlist; $i++) {
7299 my %co = %{$commitlist[$i]};
7300 my $commit = $co{'id'};
Jakub Narebski717b8312006-07-31 21:22:15 +02007301 # we read 150, we always show 30 and the ones more recent than 48 hours
Jakub Narebski91fd2bf2006-11-25 15:54:34 +01007302 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
Jakub Narebski717b8312006-07-31 21:22:15 +02007303 last;
7304 }
Jakub Narebski6368d9f2011-03-19 23:53:55 +01007305 my %cd = parse_date($co{'author_epoch'}, $co{'author_tz'});
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007306
7307 # get list of changed files
Robert Fitzsimonsb6093a52006-12-24 14:31:47 +00007308 open my $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
Jakub Narebskic906b182007-05-19 02:47:51 +02007309 $co{'parent'} || "--root",
7310 $co{'id'}, "--", (defined $file_name ? $file_name : ())
Jakub Narebski6bcf4b42006-08-27 23:49:36 +02007311 or next;
Jakub Narebski717b8312006-07-31 21:22:15 +02007312 my @difftree = map { chomp; $_ } <$fd>;
Jakub Narebski6bcf4b42006-08-27 23:49:36 +02007313 close $fd
7314 or next;
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007315
7316 # print element (entry, item)
Florian La Rochee62a6412008-02-03 12:38:46 +01007317 my $co_url = href(-full=>1, action=>"commitdiff", hash=>$commit);
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007318 if ($format eq 'rss') {
7319 print "<item>\n" .
7320 "<title>" . esc_html($co{'title'}) . "</title>\n" .
7321 "<author>" . esc_html($co{'author'}) . "</author>\n" .
7322 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
7323 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
7324 "<link>$co_url</link>\n" .
7325 "<description>" . esc_html($co{'title'}) . "</description>\n" .
7326 "<content:encoded>" .
7327 "<![CDATA[\n";
7328 } elsif ($format eq 'atom') {
7329 print "<entry>\n" .
7330 "<title type=\"html\">" . esc_html($co{'title'}) . "</title>\n" .
7331 "<updated>$cd{'iso-8601'}</updated>\n" .
Jakub Narebskiab23c192006-11-25 15:54:33 +01007332 "<author>\n" .
7333 " <name>" . esc_html($co{'author_name'}) . "</name>\n";
7334 if ($co{'author_email'}) {
7335 print " <email>" . esc_html($co{'author_email'}) . "</email>\n";
7336 }
7337 print "</author>\n" .
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007338 # use committer for contributor
Jakub Narebskiab23c192006-11-25 15:54:33 +01007339 "<contributor>\n" .
7340 " <name>" . esc_html($co{'committer_name'}) . "</name>\n";
7341 if ($co{'committer_email'}) {
7342 print " <email>" . esc_html($co{'committer_email'}) . "</email>\n";
7343 }
7344 print "</contributor>\n" .
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007345 "<published>$cd{'iso-8601'}</published>\n" .
7346 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
7347 "<id>$co_url</id>\n" .
7348 "<content type=\"xhtml\" xml:base=\"" . esc_url($my_url) . "\">\n" .
7349 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
7350 }
Jakub Narebski717b8312006-07-31 21:22:15 +02007351 my $comment = $co{'comment'};
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007352 print "<pre>\n";
Jakub Narebski717b8312006-07-31 21:22:15 +02007353 foreach my $line (@$comment) {
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007354 $line = esc_html($line);
7355 print "$line\n";
Jakub Narebski717b8312006-07-31 21:22:15 +02007356 }
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007357 print "</pre><ul>\n";
7358 foreach my $difftree_line (@difftree) {
7359 my %difftree = parse_difftree_raw_line($difftree_line);
7360 next if !$difftree{'from_id'};
7361
7362 my $file = $difftree{'file'} || $difftree{'to_file'};
7363
7364 print "<li>" .
7365 "[" .
7366 $cgi->a({-href => href(-full=>1, action=>"blobdiff",
7367 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},
7368 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},
7369 file_name=>$file, file_parent=>$difftree{'from_file'}),
7370 -title => "diff"}, 'D');
7371 if ($have_blame) {
7372 print $cgi->a({-href => href(-full=>1, action=>"blame",
7373 file_name=>$file, hash_base=>$commit),
7374 -title => "blame"}, 'B');
Jakub Narebski717b8312006-07-31 21:22:15 +02007375 }
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007376 # if this is not a feed of a file history
7377 if (!defined $file_name || $file_name ne $file) {
7378 print $cgi->a({-href => href(-full=>1, action=>"history",
7379 file_name=>$file, hash=>$commit),
7380 -title => "history"}, 'H');
7381 }
7382 $file = esc_path($file);
7383 print "] ".
7384 "$file</li>\n";
Jakub Narebski717b8312006-07-31 21:22:15 +02007385 }
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007386 if ($format eq 'rss') {
7387 print "</ul>]]>\n" .
7388 "</content:encoded>\n" .
7389 "</item>\n";
7390 } elsif ($format eq 'atom') {
7391 print "</ul>\n</div>\n" .
7392 "</content>\n" .
7393 "</entry>\n";
7394 }
Jakub Narebski717b8312006-07-31 21:22:15 +02007395 }
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007396
7397 # end of feed
7398 if ($format eq 'rss') {
7399 print "</channel>\n</rss>\n";
Jakub Narebski3278fbc2009-05-11 19:37:28 +02007400 } elsif ($format eq 'atom') {
Jakub Narebskiaf6feeb2006-11-19 15:05:22 +01007401 print "</feed>\n";
7402 }
7403}
7404
7405sub git_rss {
7406 git_feed('rss');
7407}
7408
7409sub git_atom {
7410 git_feed('atom');
Jakub Narebski717b8312006-07-31 21:22:15 +02007411}
7412
7413sub git_opml {
Jakub Narebski847e01f2006-08-14 02:05:47 +02007414 my @list = git_get_projects_list();
Jakub Narebski12b14432011-04-29 19:51:56 +02007415 if (!@list) {
7416 die_error(404, "No projects found");
7417 }
Jakub Narebski717b8312006-07-31 21:22:15 +02007418
Giuseppe Bilottaae357852009-01-02 13:49:30 +01007419 print $cgi->header(
7420 -type => 'text/xml',
7421 -charset => 'utf-8',
7422 -content_disposition => 'inline; filename="opml.xml"');
7423
Jakub Narebski59b9f612006-08-22 23:42:53 +02007424 print <<XML;
7425<?xml version="1.0" encoding="utf-8"?>
7426<opml version="1.0">
7427<head>
Petr Baudis8be28902006-10-24 05:18:39 +02007428 <title>$site_name OPML Export</title>
Jakub Narebski59b9f612006-08-22 23:42:53 +02007429</head>
7430<body>
7431<outline text="git RSS feeds">
7432XML
Jakub Narebski717b8312006-07-31 21:22:15 +02007433
7434 foreach my $pr (@list) {
7435 my %proj = %$pr;
Jakub Narebski847e01f2006-08-14 02:05:47 +02007436 my $head = git_get_head_hash($proj{'path'});
Jakub Narebski717b8312006-07-31 21:22:15 +02007437 if (!defined $head) {
7438 next;
7439 }
Dennis Stosberg25691fb2006-08-28 17:49:58 +02007440 $git_dir = "$projectroot/$proj{'path'}";
Jakub Narebski847e01f2006-08-14 02:05:47 +02007441 my %co = parse_commit($head);
Jakub Narebski717b8312006-07-31 21:22:15 +02007442 if (!%co) {
7443 next;
7444 }
7445
7446 my $path = esc_html(chop_str($proj{'path'}, 25, 5));
Giuseppe Bilottadf63fbb2009-01-02 13:15:28 +01007447 my $rss = href('project' => $proj{'path'}, 'action' => 'rss', -full => 1);
7448 my $html = href('project' => $proj{'path'}, 'action' => 'summary', -full => 1);
Jakub Narebski717b8312006-07-31 21:22:15 +02007449 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
7450 }
Jakub Narebski59b9f612006-08-22 23:42:53 +02007451 print <<XML;
7452</outline>
7453</body>
7454</opml>
7455XML
Jakub Narebski717b8312006-07-31 21:22:15 +02007456}