2008-01-28 06:16:56 +01:00
|
|
|
#!/usr/bin/perl
|
2008-07-27 04:27:58 +02:00
|
|
|
package IkiWiki::Plugin::bzr;
|
2008-07-11 12:07:48 +02:00
|
|
|
|
2008-01-28 06:16:56 +01:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
use IkiWiki;
|
|
|
|
use Encode;
|
|
|
|
use open qw{:utf8 :std};
|
|
|
|
|
2008-07-27 04:27:58 +02:00
|
|
|
sub import { #{{{
|
|
|
|
hook(type => "checkconfig", id => "bzr", call => \&checkconfig);
|
|
|
|
hook(type => "getsetup", id => "bzr", 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);
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub checkconfig () { #{{{
|
|
|
|
if (defined $config{bzr_wrapper} && length $config{bzr_wrapper}) {
|
2008-07-27 03:00:11 +02:00
|
|
|
push @{$config{wrappers}}, {
|
|
|
|
wrapper => $config{bzr_wrapper},
|
|
|
|
wrappermode => (defined $config{bzr_wrappermode} ? $config{bzr_wrappermode} : "06755"),
|
|
|
|
};
|
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
} #}}}
|
2008-07-27 03:00:11 +02:00
|
|
|
|
2008-07-27 04:27:58 +02:00
|
|
|
sub getsetup () { #{{{
|
2008-07-27 00:26:39 +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
|
|
|
bzr_wrapper => {
|
|
|
|
type => "string",
|
|
|
|
#example => "", # FIXME add example
|
2008-08-03 04:46:16 +02:00
|
|
|
description => "bzr post-commit hook to generate",
|
2008-07-27 03:00:11 +02:00
|
|
|
safe => 0, # file
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
bzr_wrappermode => {
|
|
|
|
type => "string",
|
|
|
|
example => '06755',
|
|
|
|
description => "mode for bzr_wrapper (can safely be made suid)",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-27 00:26:39 +02:00
|
|
|
historyurl => {
|
|
|
|
type => "string",
|
|
|
|
#example => "", # FIXME add example
|
|
|
|
description => "url to show file history, using loggerhead ([[file]] substituted)",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
diffurl => {
|
|
|
|
type => "string",
|
|
|
|
example => "http://example.com/revision?start_revid=[[r2]]#[[file]]-s",
|
|
|
|
description => "url to view a diff, using loggerhead ([[file]] and [[r2]] substituted)",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-07-27 04:27:58 +02:00
|
|
|
} #}}}
|
2008-07-27 00:26:39 +02:00
|
|
|
|
2008-01-30 01:48:30 +01:00
|
|
|
sub bzr_log ($) { #{{{
|
2008-01-28 06:16:56 +01:00
|
|
|
my $out = shift;
|
2008-01-28 07:30:37 +01:00
|
|
|
my @infos = ();
|
|
|
|
my $key = undef;
|
2008-01-28 06:16:56 +01:00
|
|
|
|
|
|
|
while (<$out>) {
|
|
|
|
my $line = $_;
|
2008-01-28 07:30:37 +01:00
|
|
|
my ($value);
|
|
|
|
if ($line =~ /^message:/) {
|
|
|
|
$key = "message";
|
|
|
|
$infos[$#infos]{$key} = "";
|
2008-01-30 01:36:35 +01:00
|
|
|
}
|
|
|
|
elsif ($line =~ /^(modified|added|renamed|renamed and modified|removed):/) {
|
2008-01-28 07:30:37 +01:00
|
|
|
$key = "files";
|
|
|
|
unless (defined($infos[$#infos]{$key})) { $infos[$#infos]{$key} = ""; }
|
2008-01-30 01:36:35 +01:00
|
|
|
}
|
|
|
|
elsif (defined($key) and $line =~ /^ (.*)/) {
|
2008-07-25 20:13:45 +02:00
|
|
|
$infos[$#infos]{$key} .= "$1\n";
|
2008-01-30 01:36:35 +01:00
|
|
|
}
|
|
|
|
elsif ($line eq "------------------------------------------------------------\n") {
|
2008-01-28 07:30:37 +01:00
|
|
|
$key = undef;
|
|
|
|
push (@infos, {});
|
2008-01-30 01:36:35 +01:00
|
|
|
}
|
|
|
|
else {
|
2008-01-28 07:30:37 +01:00
|
|
|
chomp $line;
|
|
|
|
($key, $value) = split /: +/, $line, 2;
|
2008-01-28 06:16:56 +01:00
|
|
|
$infos[$#infos]{$key} = $value;
|
2008-01-28 07:30:37 +01:00
|
|
|
}
|
2008-01-28 06:16:56 +01:00
|
|
|
}
|
|
|
|
close $out;
|
|
|
|
|
|
|
|
return @infos;
|
2008-01-30 01:36:35 +01:00
|
|
|
} #}}}
|
2008-01-28 06:16:56 +01:00
|
|
|
|
|
|
|
sub rcs_update () { #{{{
|
2008-04-10 23:44:40 +02:00
|
|
|
my @cmdline = ("bzr", "update", "--quiet", $config{srcdir});
|
2008-01-28 06:16:56 +01:00
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub rcs_prepedit ($) { #{{{
|
|
|
|
return "";
|
|
|
|
} #}}}
|
|
|
|
|
2008-07-24 22:43:57 +02:00
|
|
|
sub bzr_author ($$) { #{{{
|
|
|
|
my ($user, $ipaddr) = @_;
|
2008-01-28 06:16:56 +01:00
|
|
|
|
|
|
|
if (defined $user) {
|
2008-07-27 04:27:58 +02:00
|
|
|
return IkiWiki::possibly_foolish_untaint($user);
|
2008-01-28 06:16:56 +01:00
|
|
|
}
|
|
|
|
elsif (defined $ipaddr) {
|
2008-07-27 04:27:58 +02:00
|
|
|
return "Anonymous from ".IkiWiki::possibly_foolish_untaint($ipaddr);
|
2008-01-28 06:16:56 +01:00
|
|
|
}
|
|
|
|
else {
|
2008-07-24 22:43:57 +02:00
|
|
|
return "Anonymous";
|
2008-01-28 06:16:56 +01:00
|
|
|
}
|
2008-07-24 22:43:57 +02:00
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub rcs_commit ($$$;$$) { #{{{
|
|
|
|
my ($file, $message, $rcstoken, $user, $ipaddr) = @_;
|
|
|
|
|
|
|
|
$user = bzr_author($user, $ipaddr);
|
2008-01-28 06:16:56 +01:00
|
|
|
|
2008-07-27 04:27:58 +02:00
|
|
|
$message = IkiWiki::possibly_foolish_untaint($message);
|
2008-01-28 06:16:56 +01:00
|
|
|
if (! length $message) {
|
|
|
|
$message = "no message given";
|
|
|
|
}
|
|
|
|
|
2008-04-10 23:44:40 +02:00
|
|
|
my @cmdline = ("bzr", "commit", "--quiet", "-m", $message, "--author", $user,
|
2008-01-30 01:44:26 +01:00
|
|
|
$config{srcdir}."/".$file);
|
2008-01-28 06:16:56 +01:00
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
|
|
|
|
|
|
|
return undef; # success
|
|
|
|
} #}}}
|
|
|
|
|
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)=@_;
|
2008-07-24 22:43:57 +02:00
|
|
|
|
|
|
|
$user = bzr_author($user, $ipaddr);
|
|
|
|
|
2008-07-27 04:27:58 +02:00
|
|
|
$message = IkiWiki::possibly_foolish_untaint($message);
|
2008-07-24 22:43:57 +02:00
|
|
|
if (! length $message) {
|
|
|
|
$message = "no message given";
|
|
|
|
}
|
|
|
|
|
|
|
|
my @cmdline = ("bzr", "commit", "--quiet", "-m", $message, "--author", $user,
|
|
|
|
$config{srcdir});
|
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
|
|
|
|
|
|
|
return undef; # success
|
|
|
|
} #}}}
|
2008-07-22 22:14:33 +02:00
|
|
|
|
2008-01-28 06:16:56 +01:00
|
|
|
sub rcs_add ($) { # {{{
|
|
|
|
my ($file) = @_;
|
|
|
|
|
2008-04-10 23:44:40 +02:00
|
|
|
my @cmdline = ("bzr", "add", "--quiet", "$config{srcdir}/$file");
|
2008-01-28 06:16:56 +01:00
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
2008-07-21 19:40:06 +02:00
|
|
|
sub rcs_remove ($) { # {{{
|
|
|
|
my ($file) = @_;
|
|
|
|
|
2008-07-24 22:43:57 +02:00
|
|
|
my @cmdline = ("bzr", "rm", "--force", "--quiet", "$config{srcdir}/$file");
|
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
2008-07-21 19:40:06 +02:00
|
|
|
} #}}}
|
|
|
|
|
2008-07-22 22:14:33 +02:00
|
|
|
sub rcs_rename ($$) { # {{{
|
|
|
|
my ($src, $dest) = @_;
|
|
|
|
|
2008-07-27 04:27:58 +02:00
|
|
|
my $parent = IkiWiki::dirname($dest);
|
2008-07-25 20:13:45 +02:00
|
|
|
if (system("bzr", "add", "--quiet", "$config{srcdir}/$parent") != 0) {
|
|
|
|
warn("bzr add $parent failed\n");
|
|
|
|
}
|
|
|
|
|
2008-07-24 22:43:57 +02:00
|
|
|
my @cmdline = ("bzr", "mv", "--quiet", "$config{srcdir}/$src", "$config{srcdir}/$dest");
|
|
|
|
if (system(@cmdline) != 0) {
|
|
|
|
warn "'@cmdline' failed: $!";
|
|
|
|
}
|
2008-07-22 22:14:33 +02:00
|
|
|
} #}}}
|
|
|
|
|
2008-01-28 06:16:56 +01:00
|
|
|
sub rcs_recentchanges ($) { #{{{
|
|
|
|
my ($num) = @_;
|
|
|
|
|
2008-01-30 02:29:28 +01:00
|
|
|
my @cmdline = ("bzr", "log", "-v", "--show-ids", "--limit", $num,
|
|
|
|
$config{srcdir});
|
2008-01-28 06:16:56 +01:00
|
|
|
open (my $out, "@cmdline |");
|
|
|
|
|
|
|
|
eval q{use Date::Parse};
|
|
|
|
error($@) if $@;
|
|
|
|
|
|
|
|
my @ret;
|
2008-01-30 01:48:30 +01:00
|
|
|
foreach my $info (bzr_log($out)) {
|
2008-01-28 06:16:56 +01:00
|
|
|
my @pages = ();
|
|
|
|
my @message = ();
|
|
|
|
|
2008-01-28 07:30:37 +01:00
|
|
|
foreach my $msgline (split(/\n/, $info->{message})) {
|
2008-01-28 06:16:56 +01:00
|
|
|
push @message, { line => $msgline };
|
|
|
|
}
|
|
|
|
|
2008-01-28 07:30:37 +01:00
|
|
|
foreach my $file (split(/\n/, $info->{files})) {
|
2008-07-25 20:13:45 +02:00
|
|
|
my ($filename, $fileid) = ($file =~ /^(.*?) +([^ ]+)$/);
|
|
|
|
|
|
|
|
# Skip directories
|
|
|
|
next if ($filename =~ /\/$/);
|
|
|
|
|
|
|
|
# Skip source name in renames
|
|
|
|
$filename =~ s/^.* => //;
|
|
|
|
|
2008-07-27 06:54:15 +02:00
|
|
|
my $diffurl = defined $config{'diffurl'} ? $config{'diffurl'} : "";
|
2008-01-30 02:29:28 +01:00
|
|
|
$diffurl =~ s/\[\[file\]\]/$filename/go;
|
|
|
|
$diffurl =~ s/\[\[file-id\]\]/$fileid/go;
|
2008-01-28 07:30:37 +01:00
|
|
|
$diffurl =~ s/\[\[r2\]\]/$info->{revno}/go;
|
2008-01-28 06:16:56 +01:00
|
|
|
|
|
|
|
push @pages, {
|
2008-01-30 02:29:28 +01:00
|
|
|
page => pagename($filename),
|
2008-01-28 06:16:56 +01:00
|
|
|
diffurl => $diffurl,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2008-01-28 07:30:37 +01:00
|
|
|
my $user = $info->{"committer"};
|
|
|
|
if (defined($info->{"author"})) { $user = $info->{"author"}; }
|
2008-01-28 06:16:56 +01:00
|
|
|
$user =~ s/\s*<.*>\s*$//;
|
|
|
|
$user =~ s/^\s*//;
|
|
|
|
|
|
|
|
push @ret, {
|
2008-01-28 07:30:37 +01:00
|
|
|
rev => $info->{"revno"},
|
2008-01-28 06:16:56 +01:00
|
|
|
user => $user,
|
2008-01-30 01:48:30 +01:00
|
|
|
committype => "bzr",
|
2008-01-28 07:30:37 +01:00
|
|
|
when => time - str2time($info->{"timestamp"}),
|
2008-01-28 06:16:56 +01:00
|
|
|
message => [@message],
|
|
|
|
pages => [@pages],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return @ret;
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub rcs_getctime ($) { #{{{
|
|
|
|
my ($file) = @_;
|
|
|
|
|
|
|
|
# XXX filename passes through the shell here, should try to avoid
|
|
|
|
# that just in case
|
2008-01-28 07:30:37 +01:00
|
|
|
my @cmdline = ("bzr", "log", "--limit", '1', "$config{srcdir}/$file");
|
2008-01-28 06:16:56 +01:00
|
|
|
open (my $out, "@cmdline |");
|
|
|
|
|
2008-01-30 01:48:30 +01:00
|
|
|
my @log = bzr_log($out);
|
2008-01-28 06:16:56 +01:00
|
|
|
|
|
|
|
if (length @log < 1) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
eval q{use Date::Parse};
|
|
|
|
error($@) if $@;
|
|
|
|
|
2008-01-28 07:30:37 +01:00
|
|
|
my $ctime = str2time($log[0]->{"timestamp"});
|
2008-01-28 06:16:56 +01:00
|
|
|
return $ctime;
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
1
|