summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/git.pm
blob: 5922494bce8859124b99dcd53613ca7c49320fe6 (plain)
  1. #!/usr/bin/perl
  2. package IkiWiki::Plugin::git;
  3. use warnings;
  4. use strict;
  5. use IkiWiki;
  6. use Encode;
  7. use open qw{:utf8 :std};
  8. my $sha1_pattern = qr/[0-9a-fA-F]{40}/; # pattern to validate Git sha1sums
  9. my $dummy_commit_msg = 'dummy commit'; # message to skip in recent changes
  10. my $no_chdir=0;
  11. sub import {
  12. hook(type => "checkconfig", id => "git", call => \&checkconfig);
  13. hook(type => "getsetup", id => "git", call => \&getsetup);
  14. hook(type => "genwrapper", id => "git", call => \&genwrapper);
  15. hook(type => "rcs", id => "rcs_update", call => \&rcs_update);
  16. hook(type => "rcs", id => "rcs_prepedit", call => \&rcs_prepedit);
  17. hook(type => "rcs", id => "rcs_commit", call => \&rcs_commit);
  18. hook(type => "rcs", id => "rcs_commit_staged", call => \&rcs_commit_staged);
  19. hook(type => "rcs", id => "rcs_add", call => \&rcs_add);
  20. hook(type => "rcs", id => "rcs_remove", call => \&rcs_remove);
  21. hook(type => "rcs", id => "rcs_rename", call => \&rcs_rename);
  22. hook(type => "rcs", id => "rcs_recentchanges", call => \&rcs_recentchanges);
  23. hook(type => "rcs", id => "rcs_diff", call => \&rcs_diff);
  24. hook(type => "rcs", id => "rcs_getctime", call => \&rcs_getctime);
  25. hook(type => "rcs", id => "rcs_getmtime", call => \&rcs_getmtime);
  26. hook(type => "rcs", id => "rcs_receive", call => \&rcs_receive);
  27. hook(type => "rcs", id => "rcs_preprevert", call => \&rcs_preprevert);
  28. hook(type => "rcs", id => "rcs_revert", call => \&rcs_revert);
  29. hook(type => "rcs", id => "rcs_showpatch", call => \&rcs_showpatch);
  30. }
  31. sub checkconfig () {
  32. if (! defined $config{gitorigin_branch}) {
  33. $config{gitorigin_branch}="origin";
  34. }
  35. if (! defined $config{gitmaster_branch}) {
  36. $config{gitmaster_branch}="master";
  37. }
  38. if (defined $config{git_wrapper} &&
  39. length $config{git_wrapper}) {
  40. push @{$config{wrappers}}, {
  41. wrapper => $config{git_wrapper},
  42. wrappermode => (defined $config{git_wrappermode} ? $config{git_wrappermode} : "06755"),
  43. wrapper_background_command => $config{git_wrapper_background_command},
  44. };
  45. }
  46. if (defined $config{git_test_receive_wrapper} &&
  47. length $config{git_test_receive_wrapper} &&
  48. defined $config{untrusted_committers} &&
  49. @{$config{untrusted_committers}}) {
  50. push @{$config{wrappers}}, {
  51. test_receive => 1,
  52. wrapper => $config{git_test_receive_wrapper},
  53. wrappermode => (defined $config{git_wrappermode} ? $config{git_wrappermode} : "06755"),
  54. };
  55. }
  56. # Avoid notes, parser does not handle and they only slow things down.
  57. $ENV{GIT_NOTES_REF}="";
  58. # Run receive test only if being called by the wrapper, and not
  59. # when generating same.
  60. if ($config{test_receive} && ! exists $config{wrapper}) {
  61. require IkiWiki::Receive;
  62. IkiWiki::Receive::test();
  63. }
  64. }
  65. sub getsetup () {
  66. return
  67. plugin => {
  68. safe => 0, # rcs plugin
  69. rebuild => undef,
  70. section => "rcs",
  71. },
  72. git_wrapper => {
  73. type => "string",
  74. example => "/git/wiki.git/hooks/post-update",
  75. description => "git hook to generate",
  76. safe => 0, # file
  77. rebuild => 0,
  78. },
  79. git_wrapper_background_command => {
  80. type => "string",
  81. example => "git push github",
  82. description => "shell command for git_wrapper to run, in the background",
  83. safe => 0, # command
  84. rebuild => 0,
  85. },
  86. git_wrappermode => {
  87. type => "string",
  88. example => '06755',
  89. description => "mode for git_wrapper (can safely be made suid)",
  90. safe => 0,
  91. rebuild => 0,
  92. },
  93. git_test_receive_wrapper => {
  94. type => "string",
  95. example => "/git/wiki.git/hooks/pre-receive",
  96. description => "git pre-receive hook to generate",
  97. safe => 0, # file
  98. rebuild => 0,
  99. },
  100. untrusted_committers => {
  101. type => "string",
  102. example => [],
  103. description => "unix users whose commits should be checked by the pre-receive hook",
  104. safe => 0,
  105. rebuild => 0,
  106. },
  107. historyurl => {
  108. type => "string",
  109. example => "http://git.example.com/gitweb.cgi?p=wiki.git;a=history;f=[[file]];hb=HEAD",
  110. description => "gitweb url to show file history ([[file]] substituted)",
  111. safe => 1,
  112. rebuild => 1,
  113. },
  114. diffurl => {
  115. type => "string",
  116. example => "http://git.example.com/gitweb.cgi?p=wiki.git;a=blobdiff;f=[[file]];h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_commit]];hpb=[[sha1_parent]]",
  117. description => "gitweb url to show a diff ([[file]], [[sha1_to]], [[sha1_from]], [[sha1_commit]], and [[sha1_parent]] substituted)",
  118. safe => 1,
  119. rebuild => 1,
  120. },
  121. gitorigin_branch => {
  122. type => "string",
  123. example => "origin",
  124. description => "where to pull and push changes (set to empty string to disable)",
  125. safe => 0, # paranoia
  126. rebuild => 0,
  127. },
  128. gitmaster_branch => {
  129. type => "string",
  130. example => "master",
  131. description => "branch that the wiki is stored in",
  132. safe => 0, # paranoia
  133. rebuild => 0,
  134. },
  135. }
  136. sub genwrapper {
  137. if ($config{test_receive}) {
  138. require IkiWiki::Receive;
  139. return IkiWiki::Receive::genwrapper();
  140. }
  141. else {
  142. return "";
  143. }
  144. }
  145. sub safe_git (&@) {
  146. # Start a child process safely without resorting /bin/sh.
  147. # Return command output or success state (in scalar context).
  148. my ($error_handler, @cmdline) = @_;
  149. my $pid = open my $OUT, "-|";
  150. error("Cannot fork: $!") if !defined $pid;
  151. if (!$pid) {
  152. # In child.
  153. # Git commands want to be in wc.
  154. if (! $no_chdir) {
  155. chdir $config{srcdir}
  156. or error("Cannot chdir to $config{srcdir}: $!");
  157. }
  158. exec @cmdline or error("Cannot exec '@cmdline': $!");
  159. }
  160. # In parent.
  161. # git output is probably utf-8 encoded, but may contain
  162. # other encodings or invalidly encoded stuff. So do not rely
  163. # on the normal utf-8 IO layer, decode it by hand.
  164. binmode($OUT);
  165. my @lines;
  166. while (<$OUT>) {
  167. $_=decode_utf8($_, 0);
  168. chomp;
  169. push @lines, $_;
  170. }
  171. close $OUT;
  172. $error_handler->("'@cmdline' failed: $!") if $? && $error_handler;
  173. return wantarray ? @lines : ($? == 0);
  174. }
  175. # Convenient wrappers.
  176. sub run_or_die ($@) { safe_git(\&error, @_) }
  177. sub run_or_cry ($@) { safe_git(sub { warn @_ }, @_) }
  178. sub run_or_non ($@) { safe_git(undef, @_) }
  179. sub merge_past ($$$) {
  180. # Unlike with Subversion, Git cannot make a 'svn merge -rN:M file'.
  181. # Git merge commands work with the committed changes, except in the
  182. # implicit case of '-m' of git checkout(1). So we should invent a
  183. # kludge here. In principle, we need to create a throw-away branch
  184. # in preparing for the merge itself. Since branches are cheap (and
  185. # branching is fast), this shouldn't cost high.
  186. #
  187. # The main problem is the presence of _uncommitted_ local changes. One
  188. # possible approach to get rid of this situation could be that we first
  189. # make a temporary commit in the master branch and later restore the
  190. # initial state (this is possible since Git has the ability to undo a
  191. # commit, i.e. 'git reset --soft HEAD^'). The method can be summarized
  192. # as follows:
  193. #
  194. # - create a diff of HEAD:current-sha1
  195. # - dummy commit
  196. # - create a dummy branch and switch to it
  197. # - rewind to past (reset --hard to the current-sha1)
  198. # - apply the diff and commit
  199. # - switch to master and do the merge with the dummy branch
  200. # - make a soft reset (undo the last commit of master)
  201. #
  202. # The above method has some drawbacks: (1) it needs a redundant commit
  203. # just to get rid of local changes, (2) somewhat slow because of the
  204. # required system forks. Until someone points a more straight method
  205. # (which I would be grateful) I have implemented an alternative method.
  206. # In this approach, we hide all the modified files from Git by renaming
  207. # them (using the 'rename' builtin) and later restore those files in
  208. # the throw-away branch (that is, we put the files themselves instead
  209. # of applying a patch).
  210. my ($sha1, $file, $message) = @_;
  211. my @undo; # undo stack for cleanup in case of an error
  212. my $conflict; # file content with conflict markers
  213. eval {
  214. # Hide local changes from Git by renaming the modified file.
  215. # Relative paths must be converted to absolute for renaming.
  216. my ($target, $hidden) = (
  217. "$config{srcdir}/${file}", "$config{srcdir}/${file}.${sha1}"
  218. );
  219. rename($target, $hidden)
  220. or error("rename '$target' to '$hidden' failed: $!");
  221. # Ensure to restore the renamed file on error.
  222. push @undo, sub {
  223. return if ! -e "$hidden"; # already renamed
  224. rename($hidden, $target)
  225. or warn "rename '$hidden' to '$target' failed: $!";
  226. };
  227. my $branch = "throw_away_${sha1}"; # supposed to be unique
  228. # Create a throw-away branch and rewind backward.
  229. push @undo, sub { run_or_cry('git', 'branch', '-D', $branch) };
  230. run_or_die('git', 'branch', $branch, $sha1);
  231. # Switch to throw-away branch for the merge operation.
  232. push @undo, sub {
  233. if (!run_or_cry('git', 'checkout', $config{gitmaster_branch})) {
  234. run_or_cry('git', 'checkout','-f',$config{gitmaster_branch});
  235. }
  236. };
  237. run_or_die('git', 'checkout', $branch);
  238. # Put the modified file in _this_ branch.
  239. rename($hidden, $target)
  240. or error("rename '$hidden' to '$target' failed: $!");
  241. # _Silently_ commit all modifications in the current branch.
  242. run_or_non('git', 'commit', '-m', $message, '-a');
  243. # ... and re-switch to master.
  244. run_or_die('git', 'checkout', $config{gitmaster_branch});
  245. # Attempt to merge without complaining.
  246. if (!run_or_non('git', 'pull', '--no-commit', '.', $branch)) {
  247. $conflict = readfile($target);
  248. run_or_die('git', 'reset', '--hard');
  249. }
  250. };
  251. my $failure = $@;
  252. # Process undo stack (in reverse order). By policy cleanup
  253. # actions should normally print a warning on failure.
  254. while (my $handle = pop @undo) {
  255. $handle->();
  256. }
  257. error("Git merge failed!\n$failure\n") if $failure;
  258. return $conflict;
  259. }
  260. {
  261. my $prefix;
  262. sub decode_git_file ($) {
  263. my $file=shift;
  264. # git does not output utf-8 filenames, but instead
  265. # double-quotes them with the utf-8 characters
  266. # escaped as \nnn\nnn.
  267. if ($file =~ m/^"(.*)"$/) {
  268. ($file=$1) =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
  269. }
  270. # strip prefix if in a subdir
  271. if (! defined $prefix) {
  272. ($prefix) = run_or_die('git', 'rev-parse', '--show-prefix');
  273. if (! defined $prefix) {
  274. $prefix="";
  275. }
  276. }
  277. $file =~ s/^\Q$prefix\E//;
  278. return decode("utf8", $file);
  279. }
  280. }
  281. sub parse_diff_tree ($) {
  282. # Parse the raw diff tree chunk and return the info hash.
  283. # See git-diff-tree(1) for the syntax.
  284. my $dt_ref = shift;
  285. # End of stream?
  286. return if !defined @{ $dt_ref } ||
  287. !defined @{ $dt_ref }[0] || !length @{ $dt_ref }[0];
  288. my %ci;
  289. # Header line.
  290. while (my $line = shift @{ $dt_ref }) {
  291. return if $line !~ m/^(.+) ($sha1_pattern)/;
  292. my $sha1 = $2;
  293. $ci{'sha1'} = $sha1;
  294. last;
  295. }
  296. # Identification lines for the commit.
  297. while (my $line = shift @{ $dt_ref }) {
  298. # Regexps are semi-stolen from gitweb.cgi.
  299. if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
  300. $ci{'tree'} = $1;
  301. }
  302. elsif ($line =~ m/^parent ([0-9a-fA-F]{40})$/) {
  303. # XXX: collecting in reverse order
  304. push @{ $ci{'parents'} }, $1;
  305. }
  306. elsif ($line =~ m/^(author|committer) (.*) ([0-9]+) (.*)$/) {
  307. my ($who, $name, $epoch, $tz) =
  308. ($1, $2, $3, $4 );
  309. $ci{ $who } = $name;
  310. $ci{ "${who}_epoch" } = $epoch;
  311. $ci{ "${who}_tz" } = $tz;
  312. if ($name =~ m/^([^<]+)\s+<([^@>]+)/) {
  313. $ci{"${who}_name"} = $1;
  314. $ci{"${who}_username"} = $2;
  315. }
  316. elsif ($name =~ m/^([^<]+)\s+<>$/) {
  317. $ci{"${who}_username"} = $1;
  318. }
  319. else {
  320. $ci{"${who}_username"} = $name;
  321. }
  322. }
  323. elsif ($line =~ m/^$/) {
  324. # Trailing empty line signals next section.
  325. last;
  326. }
  327. }
  328. debug("No 'tree' seen in diff-tree output") if !defined $ci{'tree'};
  329. if (defined $ci{'parents'}) {
  330. $ci{'parent'} = @{ $ci{'parents'} }[0];
  331. }
  332. else {
  333. $ci{'parent'} = 0 x 40;
  334. }
  335. # Commit message (optional).
  336. while ($dt_ref->[0] =~ /^ /) {
  337. my $line = shift @{ $dt_ref };
  338. $line =~ s/^ //;
  339. push @{ $ci{'comment'} }, $line;
  340. }
  341. shift @{ $dt_ref } if $dt_ref->[0] =~ /^$/;
  342. # Modified files.
  343. while (my $line = shift @{ $dt_ref }) {
  344. if ($line =~ m{^
  345. (:+) # number of parents
  346. ([^\t]+)\t # modes, sha1, status
  347. (.*) # file names
  348. $}xo) {
  349. my $num_parents = length $1;
  350. my @tmp = split(" ", $2);
  351. my ($file, $file_to) = split("\t", $3);
  352. my @mode_from = splice(@tmp, 0, $num_parents);
  353. my $mode_to = shift(@tmp);
  354. my @sha1_from = splice(@tmp, 0, $num_parents);
  355. my $sha1_to = shift(@tmp);
  356. my $status = shift(@tmp);
  357. if (length $file) {
  358. push @{ $ci{'details'} }, {
  359. 'file' => decode_git_file($file),
  360. 'sha1_from' => $sha1_from[0],
  361. 'sha1_to' => $sha1_to,
  362. 'mode_from' => $mode_from[0],
  363. 'mode_to' => $mode_to,
  364. 'status' => $status,
  365. };
  366. }
  367. next;
  368. };
  369. last;
  370. }
  371. return \%ci;
  372. }
  373. sub git_commit_info ($;$) {
  374. # Return an array of commit info hashes of num commits
  375. # starting from the given sha1sum.
  376. my ($sha1, $num) = @_;
  377. my @opts;
  378. push @opts, "--max-count=$num" if defined $num;
  379. my @raw_lines = run_or_die('git', 'log', @opts,
  380. '--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
  381. '-r', $sha1, '--', '.');
  382. my @ci;
  383. while (my $parsed = parse_diff_tree(\@raw_lines)) {
  384. push @ci, $parsed;
  385. }
  386. warn "Cannot parse commit info for '$sha1' commit" if !@ci;
  387. return wantarray ? @ci : $ci[0];
  388. }
  389. sub git_sha1 (;$) {
  390. # Return head sha1sum (of given file).
  391. my $file = shift || q{--};
  392. # Ignore error since a non-existing file might be given.
  393. my ($sha1) = run_or_non('git', 'rev-list', '--max-count=1', 'HEAD',
  394. '--', $file);
  395. if ($sha1) {
  396. ($sha1) = $sha1 =~ m/($sha1_pattern)/; # sha1 is untainted now
  397. }
  398. else {
  399. debug("Empty sha1sum for '$file'.");
  400. }
  401. return defined $sha1 ? $sha1 : q{};
  402. }
  403. sub rcs_update () {
  404. # Update working directory.
  405. if (length $config{gitorigin_branch}) {
  406. run_or_cry('git', 'pull', '--prune', $config{gitorigin_branch});
  407. }
  408. }
  409. sub rcs_prepedit ($) {
  410. # Return the commit sha1sum of the file when editing begins.
  411. # This will be later used in rcs_commit if a merge is required.
  412. my ($file) = @_;
  413. return git_sha1($file);
  414. }
  415. sub rcs_commit (@) {
  416. # Try to commit the page; returns undef on _success_ and
  417. # a version of the page with the rcs's conflict markers on
  418. # failure.
  419. my %params=@_;
  420. # Check to see if the page has been changed by someone else since
  421. # rcs_prepedit was called.
  422. my $cur = git_sha1($params{file});
  423. my ($prev) = $params{token} =~ /^($sha1_pattern)$/; # untaint
  424. if (defined $cur && defined $prev && $cur ne $prev) {
  425. my $conflict = merge_past($prev, $params{file}, $dummy_commit_msg);
  426. return $conflict if defined $conflict;
  427. }
  428. rcs_add($params{file});
  429. return rcs_commit_staged(
  430. message => $params{message},
  431. session => $params{session},
  432. );
  433. }
  434. sub rcs_commit_staged (@) {
  435. # Commits all staged changes. Changes can be staged using rcs_add,
  436. # rcs_remove, and rcs_rename.
  437. my %params=@_;
  438. my %env=%ENV;
  439. if (defined $params{session}) {
  440. # Set the commit author and email based on web session info.
  441. my $u;
  442. if (defined $params{session}->param("name")) {
  443. $u=$params{session}->param("name");
  444. }
  445. elsif (defined $params{session}->remote_addr()) {
  446. $u=$params{session}->remote_addr();
  447. }
  448. if (defined $u) {
  449. $u=encode_utf8($u);
  450. $ENV{GIT_AUTHOR_NAME}=$u;
  451. }
  452. if (defined $params{session}->param("nickname")) {
  453. $u=encode_utf8($params{session}->param("nickname"));
  454. $u=~s/\s+/_/g;
  455. $u=~s/[^-_0-9[:alnum:]]+//g;
  456. }
  457. if (defined $u) {
  458. $ENV{GIT_AUTHOR_EMAIL}="$u\@web";
  459. }
  460. }
  461. $params{message} = IkiWiki::possibly_foolish_untaint($params{message});
  462. my @opts;
  463. if ($params{message} !~ /\S/) {
  464. # Force git to allow empty commit messages.
  465. # (If this version of git supports it.)
  466. my ($version)=`git --version` =~ /git version (.*)/;
  467. if ($version ge "1.5.4") {
  468. push @opts, '--cleanup=verbatim';
  469. }
  470. else {
  471. $params{message}.=".";
  472. }
  473. }
  474. push @opts, '-q';
  475. # git commit returns non-zero if file has not been really changed.
  476. # so we should ignore its exit status (hence run_or_non).
  477. if (run_or_non('git', 'commit', @opts, '-m', $params{message})) {
  478. if (length $config{gitorigin_branch}) {
  479. run_or_cry('git', 'push', $config{gitorigin_branch});
  480. }
  481. }
  482. %ENV=%env;
  483. return undef; # success
  484. }
  485. sub rcs_add ($) {
  486. # Add file to archive.
  487. my ($file) = @_;
  488. run_or_cry('git', 'add', $file);
  489. }
  490. sub rcs_remove ($) {
  491. # Remove file from archive.
  492. my ($file) = @_;
  493. run_or_cry('git', 'rm', '-f', $file);
  494. }
  495. sub rcs_rename ($$) {
  496. my ($src, $dest) = @_;
  497. run_or_cry('git', 'mv', '-f', $src, $dest);
  498. }
  499. sub rcs_recentchanges ($) {
  500. # List of recent changes.
  501. my ($num) = @_;
  502. eval q{use Date::Parse};
  503. error($@) if $@;
  504. my @rets;
  505. foreach my $ci (git_commit_info('HEAD', $num || 1)) {
  506. # Skip redundant commits.
  507. next if ($ci->{'comment'} && @{$ci->{'comment'}}[0] eq $dummy_commit_msg);
  508. my ($sha1, $when) = (
  509. $ci->{'sha1'},
  510. $ci->{'author_epoch'}
  511. );
  512. my @pages;
  513. foreach my $detail (@{ $ci->{'details'} }) {
  514. my $file = $detail->{'file'};
  515. my $diffurl = defined $config{'diffurl'} ? $config{'diffurl'} : "";
  516. $diffurl =~ s/\[\[file\]\]/$file/go;
  517. $diffurl =~ s/\[\[sha1_parent\]\]/$ci->{'parent'}/go;
  518. $diffurl =~ s/\[\[sha1_from\]\]/$detail->{'sha1_from'}/go;
  519. $diffurl =~ s/\[\[sha1_to\]\]/$detail->{'sha1_to'}/go;
  520. $diffurl =~ s/\[\[sha1_commit\]\]/$sha1/go;
  521. push @pages, {
  522. page => pagename($file),
  523. diffurl => $diffurl,
  524. };
  525. }
  526. my @messages;
  527. my $pastblank=0;
  528. foreach my $line (@{$ci->{'comment'}}) {
  529. $pastblank=1 if $line eq '';
  530. next if $pastblank && $line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i;
  531. push @messages, { line => $line };
  532. }
  533. my $user=$ci->{'author_username'};
  534. my $web_commit = ($ci->{'author'} =~ /\@web>/);
  535. my $nickname;
  536. # Set nickname only if a non-url author_username is available,
  537. # and author_name is an url.
  538. if ($user !~ /:\/\// && defined $ci->{'author_name'} &&
  539. $ci->{'author_name'} =~ /:\/\//) {
  540. $nickname=$user;
  541. $user=$ci->{'author_name'};
  542. }
  543. # compatability code for old web commit messages
  544. if (! $web_commit &&
  545. defined $messages[0] &&
  546. $messages[0]->{line} =~ m/$config{web_commit_regexp}/) {
  547. $user = defined $2 ? "$2" : "$3";
  548. $messages[0]->{line} = $4;
  549. $web_commit=1;
  550. }
  551. push @rets, {
  552. rev => $sha1,
  553. user => $user,
  554. nickname => $nickname,
  555. committype => $web_commit ? "web" : "git",
  556. when => $when,
  557. message => [@messages],
  558. pages => [@pages],
  559. } if @pages;
  560. last if @rets >= $num;
  561. }
  562. return @rets;
  563. }
  564. sub rcs_diff ($) {
  565. my $rev=shift;
  566. my ($sha1) = $rev =~ /^($sha1_pattern)$/; # untaint
  567. my @lines;
  568. foreach my $line (run_or_non("git", "show", $sha1)) {
  569. if (@lines || $line=~/^diff --git/) {
  570. push @lines, $line."\n";
  571. }
  572. }
  573. if (wantarray) {
  574. return @lines;
  575. }
  576. else {
  577. return join("", @lines);
  578. }
  579. }
  580. {
  581. my %time_cache;
  582. sub findtimes ($$) {
  583. my $file=shift;
  584. my $id=shift; # 0 = mtime ; 1 = ctime
  585. if (! keys %time_cache) {
  586. my $date;
  587. foreach my $line (run_or_die('git', 'log',
  588. '--pretty=format:%ct',
  589. '--name-only', '--relative')) {
  590. if (! defined $date && $line =~ /^(\d+)$/) {
  591. $date=$line;
  592. }
  593. elsif (! length $line) {
  594. $date=undef;
  595. }
  596. else {
  597. my $f=decode_git_file($line);
  598. if (! $time_cache{$f}) {
  599. $time_cache{$f}[0]=$date; # mtime
  600. }
  601. $time_cache{$f}[1]=$date; # ctime
  602. }
  603. }
  604. }
  605. return exists $time_cache{$file} ? $time_cache{$file}[$id] : 0;
  606. }
  607. }
  608. sub rcs_getctime ($) {
  609. my $file=shift;
  610. return findtimes($file, 1);
  611. }
  612. sub rcs_getmtime ($) {
  613. my $file=shift;
  614. return findtimes($file, 0);
  615. }
  616. {
  617. my $git_root;
  618. sub git_find_root {
  619. # The wiki may not be the only thing in the git repo.
  620. # Determine if it is in a subdirectory by examining the srcdir,
  621. # and its parents, looking for the .git directory.
  622. return $git_root if defined $git_root;
  623. my $subdir="";
  624. my $dir=$config{srcdir};
  625. while (! -d "$dir/.git") {
  626. $subdir=IkiWiki::basename($dir)."/".$subdir;
  627. $dir=IkiWiki::dirname($dir);
  628. if (! length $dir) {
  629. error("cannot determine root of git repo");
  630. }
  631. }
  632. return $git_root=$subdir;
  633. }
  634. }
  635. sub git_parse_changes {
  636. my @changes = @_;
  637. my $subdir = git_find_root();
  638. my @rets;
  639. foreach my $ci (@changes) {
  640. foreach my $detail (@{ $ci->{'details'} }) {
  641. my $file = $detail->{'file'};
  642. # check that all changed files are in the subdir
  643. if (length $subdir &&
  644. ! ($file =~ s/^\Q$subdir\E//)) {
  645. error sprintf(gettext("you are not allowed to change %s"), $file);
  646. }
  647. my ($action, $mode, $path);
  648. if ($detail->{'status'} =~ /^[M]+\d*$/) {
  649. $action="change";
  650. $mode=$detail->{'mode_to'};
  651. }
  652. elsif ($detail->{'status'} =~ /^[AM]+\d*$/) {
  653. $action="add";
  654. $mode=$detail->{'mode_to'};
  655. }
  656. elsif ($detail->{'status'} =~ /^[DAM]+\d*/) {
  657. $action="remove";
  658. $mode=$detail->{'mode_from'};
  659. }
  660. else {
  661. error "unknown status ".$detail->{'status'};
  662. }
  663. # test that the file mode is ok
  664. if ($mode !~ /^100[64][64][64]$/) {
  665. error sprintf(gettext("you cannot act on a file with mode %s"), $mode);
  666. }
  667. if ($action eq "change") {
  668. if ($detail->{'mode_from'} ne $detail->{'mode_to'}) {
  669. error gettext("you are not allowed to change file modes");
  670. }
  671. }
  672. # extract attachment to temp file
  673. if (($action eq 'add' || $action eq 'change') &&
  674. ! pagetype($file)) {
  675. eval q{use File::Temp};
  676. die $@ if $@;
  677. my $fh;
  678. ($fh, $path)=File::Temp::tempfile("XXXXXXXXXX", UNLINK => 1);
  679. # Ensure we run this in the right place,
  680. # see comments in rcs_receive.
  681. my $cmd = ($no_chdir ? '' : "cd $config{srcdir} && ")
  682. . "git show $detail->{sha1_to} > '$path'";
  683. if (system($cmd) != 0) {
  684. error("failed writing temp file '$path'.");
  685. }
  686. }
  687. push @rets, {
  688. file => $file,
  689. action => $action,
  690. path => $path,
  691. };
  692. }
  693. }
  694. return @rets;
  695. }
  696. sub rcs_receive () {
  697. my @rets;
  698. while (<>) {
  699. chomp;
  700. my ($oldrev, $newrev, $refname) = split(' ', $_, 3);
  701. # only allow changes to gitmaster_branch
  702. if ($refname !~ /^refs\/heads\/\Q$config{gitmaster_branch}\E$/) {
  703. error sprintf(gettext("you are not allowed to change %s"), $refname);
  704. }
  705. # Avoid chdir when running git here, because the changes
  706. # are in the master git repo, not the srcdir repo.
  707. # The pre-receive hook already puts us in the right place.
  708. $no_chdir=1;
  709. push @rets, git_parse_changes(git_commit_info($oldrev."..".$newrev));
  710. $no_chdir=0;
  711. }
  712. return reverse @rets;
  713. }
  714. sub rcs_preprevert (@) {
  715. my %params = @_;
  716. my $rev = $params{rev};
  717. # Note test_changes expects 'cgi' and 'session' parameters.
  718. require IkiWiki::Receive;
  719. IkiWiki::Receive::test_changes(%params, changes =>
  720. [git_parse_changes(git_commit_info($rev, 1))]);
  721. }
  722. sub rcs_revert (@) {
  723. # Try to revert the given patch; returns undef on _success_.
  724. my %params = @_;
  725. my $rev = $params{rev};
  726. if (run_or_non('git', 'revert', '--no-commit', $rev)) {
  727. debug "Committing revert for patch '$rev'.";
  728. rcs_commit_staged(message =>
  729. sprintf(gettext("This reverts commit %s"), $rev), @_);
  730. }
  731. else {
  732. # No idea what is actually getting reverted, so all we can
  733. # do is say we failed.
  734. run_or_die('git', 'reset', '--hard');
  735. return sprintf(gettext("Failed to revert commit %s"), $rev);
  736. }
  737. }
  738. sub rcs_showpatch (@) {
  739. # Show the patch with the given revision id.
  740. my %params = @_;
  741. my $rev = $params{rev};
  742. return join "\n", run_or_die('git', 'show', $rev);
  743. }
  744. 1