2006-09-06 22:31:55 +02:00
|
|
|
#!/usr/bin/perl
|
2008-07-27 04:27:58 +02:00
|
|
|
package IkiWiki::Plugin::mercurial;
|
2008-07-11 12:07:48 +02:00
|
|
|
|
2006-09-06 22:31:55 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
use IkiWiki;
|
|
|
|
use Encode;
|
|
|
|
use open qw{:utf8 :std};
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub import {
|
2008-07-27 04:27:58 +02:00
|
|
|
hook(type => "checkconfig", id => "mercurial", call => \&checkconfig);
|
|
|
|
hook(type => "getsetup", id => "mercurial", call => \&getsetup);
|
|
|
|
hook(type => "rcs", id => "rcs_update", call => \&rcs_update);
|
|
|
|
hook(type => "rcs", id => "rcs_prepedit", call => \&rcs_prepedit);
|
|
|
|
hook(type => "rcs", id => "rcs_commit", call => \&rcs_commit);
|
|
|
|
hook(type => "rcs", id => "rcs_commit_staged", call => \&rcs_commit_staged);
|
|
|
|
hook(type => "rcs", id => "rcs_add", call => \&rcs_add);
|
|
|
|
hook(type => "rcs", id => "rcs_remove", call => \&rcs_remove);
|
|
|
|
hook(type => "rcs", id => "rcs_rename", call => \&rcs_rename);
|
|
|
|
hook(type => "rcs", id => "rcs_recentchanges", call => \&rcs_recentchanges);
|
|
|
|
hook(type => "rcs", id => "rcs_diff", call => \&rcs_diff);
|
|
|
|
hook(type => "rcs", id => "rcs_getctime", call => \&rcs_getctime);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub checkconfig () {
|
2008-07-27 04:27:58 +02:00
|
|
|
if (exists $config{mercurial_wrapper} && length $config{mercurial_wrapper}) {
|
2008-07-27 03:00:11 +02:00
|
|
|
push @{$config{wrappers}}, {
|
|
|
|
wrapper => $config{mercurial_wrapper},
|
|
|
|
wrappermode => (defined $config{mercurial_wrappermode} ? $config{mercurial_wrappermode} : "06755"),
|
|
|
|
};
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 03:00:11 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub getsetup () {
|
2008-07-27 00:13:16 +02:00
|
|
|
return
|
2008-08-03 22:40:12 +02:00
|
|
|
plugin => {
|
|
|
|
safe => 0, # rcs plugin
|
|
|
|
rebuild => undef,
|
|
|
|
},
|
2008-07-27 03:00:11 +02:00
|
|
|
mercurial_wrapper => {
|
|
|
|
type => "string",
|
|
|
|
#example => # FIXME add example
|
2008-08-03 04:46:16 +02:00
|
|
|
description => "mercurial post-commit hook to generate",
|
2008-07-27 03:00:11 +02:00
|
|
|
safe => 0, # file
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
mercurial_wrappermode => {
|
|
|
|
type => "string",
|
|
|
|
example => '06755',
|
|
|
|
description => "mode for mercurial_wrapper (can safely be made suid)",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-27 00:13:16 +02:00
|
|
|
historyurl => {
|
|
|
|
type => "string",
|
|
|
|
example => "http://example.com:8000/log/tip/[[file]]",
|
|
|
|
description => "url to hg serve'd repository, to show file history ([[file]] substituted)",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
diffurl => {
|
|
|
|
type => "string",
|
|
|
|
example => "http://localhost:8000/?fd=[[r2]];file=[[file]]",
|
|
|
|
description => "url to hg serve'd repository, to show diff ([[file]] and [[r2]] substituted)",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 00:13:16 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub mercurial_log ($) {
|
2006-09-06 22:31:55 +02:00
|
|
|
my $out = shift;
|
|
|
|
my @infos;
|
|
|
|
|
|
|
|
while (<$out>) {
|
|
|
|
my $line = $_;
|
|
|
|
my ($key, $value);
|
|
|
|
|
|
|
|
if (/^description:/) {
|
|
|
|
$key = "description";
|
|
|
|
$value = "";
|
|
|
|
|
|
|
|
# slurp everything as the description text
|
|
|
|
# until the next changeset
|
|
|
|
while (<$out>) {
|
|
|
|
if (/^changeset: /) {
|
|
|
|
$line = $_;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
|
|
|
|
$value .= $_;
|
|
|
|
}
|
|
|
|
|
|
|
|
local $/ = "";
|
|
|
|
chomp $value;
|
|
|
|
$infos[$#infos]{$key} = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
chomp $line;
|
|
|
|
($key, $value) = split /: +/, $line, 2;
|
|
|
|
|
|
|
|
if ($key eq "changeset") {
|
|
|
|
push @infos, {};
|
|
|
|
|
|
|
|
# remove the revision index, which is strictly
|
|
|
|
# local to the repository
|
|
|
|
$value =~ s/^\d+://;
|
|
|
|
}
|
|
|
|
|
|
|
|
$infos[$#infos]{$key} = $value;
|
|
|
|
}
|
|
|
|
close $out;
|
|
|
|
|
|
|
|
return @infos;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_update () {
|
2007-03-18 23:20:44 +01:00
|
|
|
my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "update");
|
2006-09-06 22:31:55 +02:00
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_prepedit ($) {
|
2006-09-06 22:31:55 +02:00
|
|
|
return "";
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_commit ($$$;$$) {
|
2006-11-22 15:28:38 +01:00
|
|
|
my ($file, $message, $rcstoken, $user, $ipaddr) = @_;
|
|
|
|
|
|
|
|
if (defined $user) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$user = IkiWiki::possibly_foolish_untaint($user);
|
2006-11-22 15:28:38 +01:00
|
|
|
}
|
|
|
|
elsif (defined $ipaddr) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$user = "Anonymous from ".IkiWiki::possibly_foolish_untaint($ipaddr);
|
2006-11-26 20:55:46 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$user = "Anonymous";
|
2006-11-22 15:28:38 +01:00
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
2008-07-27 04:27:58 +02:00
|
|
|
$message = IkiWiki::possibly_foolish_untaint($message);
|
2007-03-24 16:14:53 +01:00
|
|
|
if (! length $message) {
|
|
|
|
$message = "no message given";
|
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
2007-03-24 16:14:53 +01:00
|
|
|
my @cmdline = ("hg", "-q", "-R", $config{srcdir}, "commit",
|
|
|
|
"-m", $message, "-u", $user);
|
2006-09-06 22:31:55 +02:00
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
|
|
|
|
|
|
|
return undef; # success
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
2008-07-22 22:14:33 +02:00
|
|
|
sub rcs_commit_staged ($$$) {
|
|
|
|
# Commits all staged changes. Changes can be staged using rcs_add,
|
|
|
|
# rcs_remove, and rcs_rename.
|
|
|
|
my ($message, $user, $ipaddr)=@_;
|
|
|
|
|
|
|
|
error("rcs_commit_staged not implemented for mercurial"); # TODO
|
|
|
|
}
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_add ($) {
|
2006-09-06 22:31:55 +02:00
|
|
|
my ($file) = @_;
|
|
|
|
|
2007-04-29 05:25:09 +02:00
|
|
|
my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$config{srcdir}/$file");
|
2006-09-06 22:31:55 +02:00
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_remove ($) {
|
2008-07-21 19:40:06 +02:00
|
|
|
my ($file) = @_;
|
|
|
|
|
|
|
|
error("rcs_remove not implemented for mercurial"); # TODO
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-21 19:40:06 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_rename ($$) {
|
2008-07-22 22:14:33 +02:00
|
|
|
my ($src, $dest) = @_;
|
|
|
|
|
|
|
|
error("rcs_rename not implemented for mercurial"); # TODO
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-22 22:14:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_recentchanges ($) {
|
2006-09-06 22:31:55 +02:00
|
|
|
my ($num) = @_;
|
|
|
|
|
2007-08-29 04:01:23 +02:00
|
|
|
my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", "-l", $num,
|
2007-08-29 04:09:43 +02:00
|
|
|
"--style", "default");
|
2006-09-06 22:31:55 +02:00
|
|
|
open (my $out, "@cmdline |");
|
|
|
|
|
2006-11-26 21:01:43 +01:00
|
|
|
eval q{use Date::Parse};
|
|
|
|
error($@) if $@;
|
|
|
|
|
2006-09-06 22:31:55 +02:00
|
|
|
my @ret;
|
|
|
|
foreach my $info (mercurial_log($out)) {
|
|
|
|
my @pages = ();
|
|
|
|
my @message = ();
|
|
|
|
|
|
|
|
foreach my $msgline (split(/\n/, $info->{description})) {
|
|
|
|
push @message, { line => $msgline };
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $file (split / /,$info->{files}) {
|
2008-07-27 06:54:15 +02:00
|
|
|
my $diffurl = defined $config{diffurl} ? $config{'diffurl'} : "";
|
2006-09-06 22:31:55 +02:00
|
|
|
$diffurl =~ s/\[\[file\]\]/$file/go;
|
|
|
|
$diffurl =~ s/\[\[r2\]\]/$info->{changeset}/go;
|
|
|
|
|
|
|
|
push @pages, {
|
|
|
|
page => pagename($file),
|
|
|
|
diffurl => $diffurl,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
my $user = $info->{"user"};
|
|
|
|
$user =~ s/\s*<.*>\s*$//;
|
|
|
|
$user =~ s/^\s*//;
|
|
|
|
|
|
|
|
push @ret, {
|
2008-01-29 03:23:56 +01:00
|
|
|
rev => $info->{"changeset"},
|
2006-09-06 22:31:55 +02:00
|
|
|
user => $user,
|
|
|
|
committype => "mercurial",
|
2008-01-29 04:57:22 +01:00
|
|
|
when => str2time($info->{"date"}),
|
2006-09-06 22:31:55 +02:00
|
|
|
message => [@message],
|
|
|
|
pages => [@pages],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return @ret;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_diff ($) {
|
2008-03-03 21:53:34 +01:00
|
|
|
# TODO
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-03-03 21:53:34 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_getctime ($) {
|
2006-11-26 21:01:43 +01:00
|
|
|
my ($file) = @_;
|
|
|
|
|
|
|
|
# XXX filename passes through the shell here, should try to avoid
|
|
|
|
# that just in case
|
2007-08-29 04:16:45 +02:00
|
|
|
my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", "-l", '1',
|
2007-08-29 05:02:41 +02:00
|
|
|
"--style", "default", "$config{srcdir}/$file");
|
2006-11-26 21:01:43 +01:00
|
|
|
open (my $out, "@cmdline |");
|
|
|
|
|
|
|
|
my @log = mercurial_log($out);
|
|
|
|
|
|
|
|
if (length @log < 1) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
eval q{use Date::Parse};
|
|
|
|
error($@) if $@;
|
|
|
|
|
|
|
|
my $ctime = str2time($log[0]->{"date"});
|
|
|
|
return $ctime;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-06 22:31:55 +02:00
|
|
|
|
|
|
|
1
|