Initial work adding support for Bazaar.
parent
fafb2edaa7
commit
0be7aad67d
|
@ -0,0 +1,178 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
use IkiWiki;
|
||||||
|
use Encode;
|
||||||
|
use open qw{:utf8 :std};
|
||||||
|
|
||||||
|
package IkiWiki;
|
||||||
|
|
||||||
|
sub bazaar_log($) {
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub rcs_update () { #{{{
|
||||||
|
my @cmdline = ("bzr", "$config{srcdir}", "update");
|
||||||
|
if (system(@cmdline) != 0) {
|
||||||
|
warn "'@cmdline' failed: $!";
|
||||||
|
}
|
||||||
|
} #}}}
|
||||||
|
|
||||||
|
sub rcs_prepedit ($) { #{{{
|
||||||
|
return "";
|
||||||
|
} #}}}
|
||||||
|
|
||||||
|
sub rcs_commit ($$$;$$) { #{{{
|
||||||
|
my ($file, $message, $rcstoken, $user, $ipaddr) = @_;
|
||||||
|
|
||||||
|
if (defined $user) {
|
||||||
|
$user = possibly_foolish_untaint($user);
|
||||||
|
}
|
||||||
|
elsif (defined $ipaddr) {
|
||||||
|
$user = "Anonymous from ".possibly_foolish_untaint($ipaddr);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$user = "Anonymous";
|
||||||
|
}
|
||||||
|
|
||||||
|
$message = possibly_foolish_untaint($message);
|
||||||
|
if (! length $message) {
|
||||||
|
$message = "no message given";
|
||||||
|
}
|
||||||
|
|
||||||
|
my @cmdline = ("bzr", "commit",
|
||||||
|
"-m", $message, "--author", $user, $config{srcdir});
|
||||||
|
if (system(@cmdline) != 0) {
|
||||||
|
warn "'@cmdline' failed: $!";
|
||||||
|
}
|
||||||
|
|
||||||
|
return undef; # success
|
||||||
|
} #}}}
|
||||||
|
|
||||||
|
sub rcs_add ($) { # {{{
|
||||||
|
my ($file) = @_;
|
||||||
|
|
||||||
|
my @cmdline = ("bzr", "add", "$config{srcdir}/$file");
|
||||||
|
if (system(@cmdline) != 0) {
|
||||||
|
warn "'@cmdline' failed: $!";
|
||||||
|
}
|
||||||
|
} #}}}
|
||||||
|
|
||||||
|
sub rcs_recentchanges ($) { #{{{
|
||||||
|
my ($num) = @_;
|
||||||
|
|
||||||
|
eval q{use CGI 'escapeHTML'};
|
||||||
|
error($@) if $@;
|
||||||
|
|
||||||
|
my @cmdline = ("bzr", "log", "-v", "--limit", $num, $config{srcdir});
|
||||||
|
open (my $out, "@cmdline |");
|
||||||
|
|
||||||
|
eval q{use Date::Parse};
|
||||||
|
error($@) if $@;
|
||||||
|
|
||||||
|
my @ret;
|
||||||
|
foreach my $info (bazaar_log($out)) {
|
||||||
|
my @pages = ();
|
||||||
|
my @message = ();
|
||||||
|
|
||||||
|
foreach my $msgline (split(/\n/, $info->{description})) {
|
||||||
|
push @message, { line => $msgline };
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach my $file (split / /,$info->{files}) {
|
||||||
|
my $diffurl = $config{'diffurl'};
|
||||||
|
$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, {
|
||||||
|
rev => $info->{"changeset"},
|
||||||
|
user => $user,
|
||||||
|
committype => "bazaar",
|
||||||
|
when => time - str2time($info->{"date"}),
|
||||||
|
message => [@message],
|
||||||
|
pages => [@pages],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return @ret;
|
||||||
|
} #}}}
|
||||||
|
|
||||||
|
sub rcs_notify () { #{{{
|
||||||
|
# TODO
|
||||||
|
} #}}}
|
||||||
|
|
||||||
|
sub rcs_getctime ($) { #{{{
|
||||||
|
my ($file) = @_;
|
||||||
|
|
||||||
|
# XXX filename passes through the shell here, should try to avoid
|
||||||
|
# that just in case
|
||||||
|
my @cmdline = ("bzr", "log", "-v", "--limit", '1', "$config{srcdir}/$file");
|
||||||
|
open (my $out, "@cmdline |");
|
||||||
|
|
||||||
|
my @log = bazaar_log($out);
|
||||||
|
|
||||||
|
if (length @log < 1) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
eval q{use Date::Parse};
|
||||||
|
error($@) if $@;
|
||||||
|
|
||||||
|
my $ctime = str2time($log[0]->{"date"});
|
||||||
|
return $ctime;
|
||||||
|
} #}}}
|
||||||
|
|
||||||
|
1
|
|
@ -0,0 +1,62 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
my $dir;
|
||||||
|
BEGIN {
|
||||||
|
$dir = "/tmp/ikiwiki-test-bzr.$$";
|
||||||
|
my $bzr=`which bzr`;
|
||||||
|
chomp $bzr;
|
||||||
|
if (! -x $bzr || ! mkdir($dir)) {
|
||||||
|
eval q{
|
||||||
|
use Test::More skip_all => "bzr not available or could not make test dir"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
use Test::More tests => 11;
|
||||||
|
|
||||||
|
BEGIN { use_ok("IkiWiki"); }
|
||||||
|
|
||||||
|
%config=IkiWiki::defaultconfig();
|
||||||
|
$config{rcs} = "bazaar";
|
||||||
|
$config{srcdir} = "$dir/repo";
|
||||||
|
IkiWiki::checkconfig();
|
||||||
|
|
||||||
|
system "bzr init $config{srcdir}";
|
||||||
|
|
||||||
|
# Web commit
|
||||||
|
my $test1 = readfile("t/test1.mdwn");
|
||||||
|
writefile('test1.mdwn', $config{srcdir}, $test1);
|
||||||
|
IkiWiki::rcs_add("test1.mdwn");
|
||||||
|
IkiWiki::rcs_commit("test1.mdwn", "Added the first page", "moo", "Joe User");
|
||||||
|
|
||||||
|
my @changes;
|
||||||
|
@changes = IkiWiki::rcs_recentchanges(3);
|
||||||
|
|
||||||
|
is($#changes, 0);
|
||||||
|
is($changes[0]{message}[0]{"line"}, "Added the first page");
|
||||||
|
is($changes[0]{pages}[0]{"page"}, "test1.mdwn");
|
||||||
|
is($changes[0]{user}, "Joe User");
|
||||||
|
|
||||||
|
# Manual commit
|
||||||
|
my $username = "Foo Bar";
|
||||||
|
my $user = "$username <foo.bar\@example.com>";
|
||||||
|
my $message = "Added the second page";
|
||||||
|
|
||||||
|
my $test2 = readfile("t/test2.mdwn");
|
||||||
|
writefile('test2.mdwn', $config{srcdir}, $test2);
|
||||||
|
system "bzr add -R $config{srcdir} $config{srcdir}/test2.mdwn";
|
||||||
|
system "bzr commit -R $config{srcdir} -u \"$user\" -m \"$message\" -d \"0 0\"";
|
||||||
|
|
||||||
|
@changes = IkiWiki::rcs_recentchanges(3);
|
||||||
|
|
||||||
|
is($#changes, 1);
|
||||||
|
is($changes[0]{message}[0]{"line"}, $message);
|
||||||
|
is($changes[0]{user}, $username);
|
||||||
|
is($changes[0]{pages}[0]{"page"}, "test2.mdwn");
|
||||||
|
|
||||||
|
is($changes[1]{pages}[0]{"page"}, "test1.mdwn");
|
||||||
|
|
||||||
|
my $ctime = IkiWiki::rcs_getctime("test2.mdwn");
|
||||||
|
is($ctime, 0);
|
||||||
|
|
||||||
|
system "rm -rf $dir";
|
Loading…
Reference in New Issue