2006-09-04 08:15:54 +02:00
|
|
|
#!/usr/bin/perl
|
2008-07-27 04:27:58 +02:00
|
|
|
package IkiWiki::Plugin::tla;
|
2008-07-11 12:07:48 +02:00
|
|
|
|
2006-09-04 08:15:54 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
use IkiWiki;
|
|
|
|
|
2008-07-27 04:27:58 +02:00
|
|
|
sub import { #{{{
|
|
|
|
hook(type => "checkconfig", id => "tla", call => \&checkconfig);
|
|
|
|
hook(type => "getsetup", id => "tla", 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{tla_wrapper} && length $config{tla_wrapper}) {
|
2008-07-27 03:00:11 +02:00
|
|
|
push @{$config{wrappers}}, {
|
|
|
|
wrapper => $config{tla_wrapper},
|
|
|
|
wrappermode => (defined $config{tla_wrappermode} ? $config{tla_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:31:27 +02:00
|
|
|
return
|
2008-08-04 01:35:35 +02:00
|
|
|
plugin => {
|
|
|
|
safe => 0, # rcs plugin
|
|
|
|
rebuild => undef,
|
|
|
|
},
|
2008-07-27 03:00:11 +02:00
|
|
|
tla_wrapper => {
|
|
|
|
type => "string",
|
|
|
|
#example => "", # TODO example
|
2008-08-03 04:46:16 +02:00
|
|
|
description => "tla post-commit hook to generate",
|
2008-07-27 03:00:11 +02:00
|
|
|
safe => 0, # file
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
tla_wrappermode => {
|
|
|
|
type => "string",
|
|
|
|
example => '06755',
|
|
|
|
description => "mode for tla_wrapper (can safely be made suid)",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-27 00:31:27 +02:00
|
|
|
historyurl => {
|
|
|
|
type => "string",
|
|
|
|
#example => "", # TODO example
|
|
|
|
description => "url to show file history ([[file]] substituted)",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
diffurl => {
|
|
|
|
type => "string",
|
|
|
|
#example => "", # TODO example
|
|
|
|
description => "url to show a diff ([[file]] and [[rev]] substituted)",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-07-27 04:27:58 +02:00
|
|
|
} #}}}
|
2008-07-27 00:31:27 +02:00
|
|
|
|
2008-07-27 04:27:58 +02:00
|
|
|
sub quiet_system (@) { #{{{
|
2006-09-04 08:24:27 +02:00
|
|
|
# See Debian bug #385939.
|
2006-09-04 08:15:54 +02:00
|
|
|
open (SAVEOUT, ">&STDOUT");
|
|
|
|
close STDOUT;
|
2006-09-16 06:09:06 +02:00
|
|
|
open (STDOUT, ">/dev/null");
|
2006-09-04 08:15:54 +02:00
|
|
|
my $ret=system(@_);
|
2006-09-17 19:30:18 +02:00
|
|
|
close STDOUT;
|
2006-09-04 08:15:54 +02:00
|
|
|
open (STDOUT, ">&SAVEOUT");
|
|
|
|
close SAVEOUT;
|
|
|
|
return $ret;
|
2008-07-27 04:27:58 +02:00
|
|
|
} #}}}
|
2006-09-04 08:15:54 +02:00
|
|
|
|
|
|
|
sub rcs_update () { #{{{
|
|
|
|
if (-d "$config{srcdir}/{arch}") {
|
|
|
|
if (quiet_system("tla", "replay", "-d", $config{srcdir}) != 0) {
|
|
|
|
warn("tla replay failed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub rcs_prepedit ($) { #{{{
|
|
|
|
my $file=shift;
|
|
|
|
|
|
|
|
if (-d "$config{srcdir}/{arch}") {
|
|
|
|
# For Arch, return the tree-id of archive when
|
|
|
|
# editing begins.
|
|
|
|
my $rev=`tla tree-id $config{srcdir}`;
|
|
|
|
return defined $rev ? $rev : "";
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
2006-11-22 15:28:38 +01:00
|
|
|
sub rcs_commit ($$$;$$) { #{{{
|
2006-09-04 08:15:54 +02:00
|
|
|
my $file=shift;
|
|
|
|
my $message=shift;
|
|
|
|
my $rcstoken=shift;
|
2006-11-22 15:28:38 +01:00
|
|
|
my $user=shift;
|
|
|
|
my $ipaddr=shift;
|
|
|
|
|
|
|
|
if (defined $user) {
|
|
|
|
$message="web commit by $user".(length $message ? ": $message" : "");
|
|
|
|
}
|
|
|
|
elsif (defined $ipaddr) {
|
|
|
|
$message="web commit from $ipaddr".(length $message ? ": $message" : "");
|
|
|
|
}
|
2006-09-04 08:15:54 +02:00
|
|
|
|
|
|
|
if (-d "$config{srcdir}/{arch}") {
|
|
|
|
# Check to see if the page has been changed by someone
|
|
|
|
# else since rcs_prepedit was called.
|
|
|
|
my ($oldrev)=$rcstoken=~/^([A-Za-z0-9@\/._-]+)$/; # untaint
|
|
|
|
my $rev=`tla tree-id $config{srcdir}`;
|
|
|
|
if (defined $rev && defined $oldrev && $rev ne $oldrev) {
|
|
|
|
# Merge their changes into the file that we've
|
|
|
|
# changed.
|
2006-09-16 06:09:06 +02:00
|
|
|
if (quiet_system("tla", "update", "-d",
|
|
|
|
"$config{srcdir}") != 0) {
|
2006-09-04 08:15:54 +02:00
|
|
|
warn("tla update failed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (quiet_system("tla", "commit",
|
2008-07-27 04:27:58 +02:00
|
|
|
"-L".IkiWiki::possibly_foolish_untaint($message),
|
2006-09-04 08:15:54 +02:00
|
|
|
'-d', $config{srcdir}) != 0) {
|
|
|
|
my $conflict=readfile("$config{srcdir}/$file");
|
2006-09-08 21:19:56 +02:00
|
|
|
if (system("tla", "undo", "-n", "--quiet", "-d", "$config{srcdir}") != 0) {
|
2006-09-04 08:15:54 +02:00
|
|
|
warn("tla undo failed\n");
|
|
|
|
}
|
|
|
|
return $conflict;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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)=@_;
|
|
|
|
|
|
|
|
error("rcs_commit_staged not implemented for tla"); # TODO
|
|
|
|
}
|
|
|
|
|
2006-09-04 08:15:54 +02:00
|
|
|
sub rcs_add ($) { #{{{
|
|
|
|
my $file=shift;
|
|
|
|
|
|
|
|
if (-d "$config{srcdir}/{arch}") {
|
|
|
|
if (quiet_system("tla", "add", "$config{srcdir}/$file") != 0) {
|
|
|
|
warn("tla add failed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
2008-07-21 19:40:06 +02:00
|
|
|
sub rcs_remove ($) { # {{{
|
|
|
|
my $file = shift;
|
|
|
|
|
|
|
|
error("rcs_remove not implemented for tla"); # TODO
|
|
|
|
} #}}}
|
|
|
|
|
2008-07-22 22:14:33 +02:00
|
|
|
sub rcs_rename ($$) { # {{{a
|
|
|
|
my ($src, $dest) = @_;
|
|
|
|
|
|
|
|
error("rcs_rename not implemented for tla"); # TODO
|
|
|
|
} #}}}
|
|
|
|
|
2006-09-04 08:15:54 +02:00
|
|
|
sub rcs_recentchanges ($) {
|
|
|
|
my $num=shift;
|
|
|
|
my @ret;
|
|
|
|
|
|
|
|
return unless -d "$config{srcdir}/{arch}";
|
|
|
|
|
|
|
|
eval q{use Date::Parse};
|
2006-11-08 22:03:33 +01:00
|
|
|
error($@) if $@;
|
2006-09-04 08:15:54 +02:00
|
|
|
eval q{use Mail::Header};
|
2006-11-08 22:03:33 +01:00
|
|
|
error($@) if $@;
|
2006-09-04 08:15:54 +02:00
|
|
|
|
|
|
|
my $logs = `tla logs -d $config{srcdir}`;
|
|
|
|
my @changesets = reverse split(/\n/, $logs);
|
|
|
|
|
|
|
|
for (my $i=0; $i<$num && $i<$#changesets; $i++) {
|
|
|
|
my ($change)=$changesets[$i]=~/^([A-Za-z0-9@\/._-]+)$/; # untaint
|
|
|
|
|
|
|
|
open(LOG, "tla cat-log -d $config{srcdir} $change|");
|
|
|
|
my $head = Mail::Header->new(\*LOG);
|
|
|
|
close(LOG);
|
|
|
|
|
|
|
|
my $rev = $head->get("Revision");
|
|
|
|
my $summ = $head->get("Summary");
|
|
|
|
my $newfiles = $head->get("New-files");
|
|
|
|
my $modfiles = $head->get("Modified-files");
|
2006-09-17 19:30:18 +02:00
|
|
|
my $remfiles = $head->get("Removed-files");
|
2006-09-04 08:15:54 +02:00
|
|
|
my $user = $head->get("Creator");
|
|
|
|
|
2006-09-16 06:16:17 +02:00
|
|
|
my @paths = grep { !/^(.*\/)?\.arch-ids\/.*\.id$/ }
|
|
|
|
split(/ /, "$newfiles $modfiles .arch-ids/fake.id");
|
2006-09-04 08:15:54 +02:00
|
|
|
|
|
|
|
my $sdate = $head->get("Standard-date");
|
2008-01-29 04:57:22 +01:00
|
|
|
my $when = str2time($sdate, 'UTC');
|
2006-09-04 08:15:54 +02:00
|
|
|
|
|
|
|
my $committype = "web";
|
2006-11-20 03:46:58 +01:00
|
|
|
if (defined $summ && $summ =~ /$config{web_commit_regexp}/) {
|
2006-09-04 08:15:54 +02:00
|
|
|
$user = defined $2 ? "$2" : "$3";
|
|
|
|
$summ = $4;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$committype="tla";
|
|
|
|
}
|
|
|
|
|
|
|
|
my @message;
|
2008-02-20 22:45:02 +01:00
|
|
|
push @message, { line => $summ };
|
2006-09-04 08:15:54 +02:00
|
|
|
|
|
|
|
my @pages;
|
|
|
|
|
|
|
|
foreach my $file (@paths) {
|
2008-07-27 06:54:15 +02:00
|
|
|
my $diffurl=defined $config{diffurl} ? $config{diffurl} : "";
|
2006-09-04 08:15:54 +02:00
|
|
|
$diffurl=~s/\[\[file\]\]/$file/g;
|
|
|
|
$diffurl=~s/\[\[rev\]\]/$change/g;
|
|
|
|
push @pages, {
|
|
|
|
page => pagename($file),
|
|
|
|
diffurl => $diffurl,
|
|
|
|
} if length $file;
|
|
|
|
}
|
2008-01-29 02:34:11 +01:00
|
|
|
push @ret, {
|
2008-01-29 03:23:56 +01:00
|
|
|
rev => $change,
|
2006-09-04 08:15:54 +02:00
|
|
|
user => $user,
|
|
|
|
committype => $committype,
|
|
|
|
when => $when,
|
|
|
|
message => [@message],
|
|
|
|
pages => [@pages],
|
|
|
|
} if @pages;
|
|
|
|
|
|
|
|
last if $i == $num;
|
|
|
|
}
|
|
|
|
|
|
|
|
return @ret;
|
|
|
|
}
|
|
|
|
|
2008-03-03 21:53:34 +01:00
|
|
|
sub rcs_diff ($) { #{{{
|
|
|
|
my $rev=shift;
|
|
|
|
my $logs = `tla logs -d $config{srcdir}`;
|
|
|
|
my @changesets = reverse split(/\n/, $logs);
|
|
|
|
my $i;
|
|
|
|
|
|
|
|
for($i=0;$i<$#changesets;$i++) {
|
|
|
|
last if $changesets[$i] eq $rev;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $revminusone = $changesets[$i+1];
|
2008-03-12 20:45:10 +01:00
|
|
|
return `tla diff -d $config{srcdir} $revminusone`;
|
2008-03-03 21:53:34 +01:00
|
|
|
} #}}}
|
|
|
|
|
2006-09-04 08:15:54 +02:00
|
|
|
sub rcs_getctime ($) { #{{{
|
|
|
|
my $file=shift;
|
|
|
|
eval q{use Date::Parse};
|
2006-11-08 22:03:33 +01:00
|
|
|
error($@) if $@;
|
2006-09-04 08:15:54 +02:00
|
|
|
eval q{use Mail::Header};
|
2006-11-08 22:03:33 +01:00
|
|
|
error($@) if $@;
|
2006-09-04 08:15:54 +02:00
|
|
|
|
|
|
|
my $logs = `tla logs -d $config{srcdir}`;
|
|
|
|
my @changesets = reverse split(/\n/, $logs);
|
|
|
|
my $sdate;
|
|
|
|
|
|
|
|
for (my $i=0; $i<$#changesets; $i++) {
|
|
|
|
my $change = $changesets[$i];
|
|
|
|
|
|
|
|
open(LOG, "tla cat-log -d $config{srcdir} $change|");
|
|
|
|
my $head = Mail::Header->new(\*LOG);
|
|
|
|
close(LOG);
|
|
|
|
|
|
|
|
$sdate = $head->get("Standard-date");
|
|
|
|
my $newfiles = $head->get("New-files");
|
|
|
|
|
|
|
|
my ($lastcreation) = grep {/^$file$/} split(/ /, "$newfiles");
|
|
|
|
last if defined($lastcreation);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $date=str2time($sdate, 'UTC');
|
|
|
|
debug("found ctime ".localtime($date)." for $file");
|
|
|
|
return $date;
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
1
|