/usr/share/perl5/IkiWiki/Plugin/tla.pm is in ikiwiki 3.20141016.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | #!/usr/bin/perl
package IkiWiki::Plugin::tla;
use warnings;
use strict;
use IkiWiki;
use URI::Escape q{uri_escape_utf8};
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);
hook(type => "rcs", id => "rcs_getmtime", call => \&rcs_getmtime);
}
sub checkconfig () {
if (defined $config{tla_wrapper} && length $config{tla_wrapper}) {
push @{$config{wrappers}}, {
wrapper => $config{tla_wrapper},
wrappermode => (defined $config{tla_wrappermode} ? $config{tla_wrappermode} : "06755"),
};
}
}
sub getsetup () {
return
plugin => {
safe => 0, # rcs plugin
rebuild => undef,
section => "rcs",
},
tla_wrapper => {
type => "string",
#example => "", # TODO example
description => "tla post-commit hook to generate",
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,
},
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,
},
}
sub quiet_system (@) {
# See Debian bug #385939.
open (SAVEOUT, ">&STDOUT");
close STDOUT;
open (STDOUT, ">/dev/null");
my $ret=system(@_);
close STDOUT;
open (STDOUT, ">&SAVEOUT");
close SAVEOUT;
return $ret;
}
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 : "";
}
}
sub rcs_commit (@) {
my %params=@_;
my ($file, $message, $rcstoken)=
($params{file}, $params{message}, $params{token});
if (defined $params{session}) {
if (defined $params{session}->param("name")) {
$message="web commit by ".
$params{session}->param("name").
(length $message ? ": $message" : "");
}
elsif (defined $params{session}->remote_addr()) {
$message="web commit from ".
$params{session}->remote_addr().
(length $message ? ": $message" : "");
}
}
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.
if (quiet_system("tla", "update", "-d",
"$config{srcdir}") != 0) {
warn("tla update failed\n");
}
}
if (quiet_system("tla", "commit",
"-L".IkiWiki::possibly_foolish_untaint($message),
'-d', $config{srcdir}) != 0) {
my $conflict=readfile("$config{srcdir}/$file");
if (system("tla", "undo", "-n", "--quiet", "-d", "$config{srcdir}") != 0) {
warn("tla undo failed\n");
}
return $conflict;
}
}
return undef # success
}
sub rcs_commit_staged (@) {
# Commits all staged changes. Changes can be staged using rcs_add,
# rcs_remove, and rcs_rename.
my %params=@_;
error("rcs_commit_staged not implemented for tla"); # TODO
}
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");
}
}
}
sub rcs_remove ($) {
my $file = shift;
error("rcs_remove not implemented for tla"); # TODO
}
sub rcs_rename ($$) {
my ($src, $dest) = @_;
error("rcs_rename not implemented for tla"); # TODO
}
sub rcs_recentchanges ($) {
my $num=shift;
my @ret;
return unless -d "$config{srcdir}/{arch}";
eval q{use Date::Parse};
error($@) if $@;
eval q{use Mail::Header};
error($@) if $@;
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");
my $remfiles = $head->get("Removed-files");
my $user = $head->get("Creator");
my @paths = grep { !/^(.*\/)?\.arch-ids\/.*\.id$/ }
split(/ /, "$newfiles $modfiles .arch-ids/fake.id");
my $sdate = $head->get("Standard-date");
my $when = str2time($sdate, 'UTC');
my $committype = "web";
if (defined $summ && $summ =~ /$config{web_commit_regexp}/) {
$user = defined $2 ? "$2" : "$3";
$summ = $4;
}
else {
$committype="tla";
}
my @message;
push @message, { line => $summ };
my @pages;
foreach my $file (@paths) {
my $diffurl=defined $config{diffurl} ? $config{diffurl} : "";
my $efile = uri_escape_utf8($file);
$diffurl=~s/\[\[file\]\]/$efile/g;
$diffurl=~s/\[\[rev\]\]/$change/g;
push @pages, {
page => pagename($file),
diffurl => $diffurl,
} if length $file;
}
push @ret, {
rev => $change,
user => $user,
committype => $committype,
when => $when,
message => [@message],
pages => [@pages],
} if @pages;
last if $i == $num;
}
return @ret;
}
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];
return `tla diff -d $config{srcdir} $revminusone`;
}
sub rcs_getctime ($) {
my $file=shift;
eval q{use Date::Parse};
error($@) if $@;
eval q{use Mail::Header};
error($@) if $@;
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;
}
sub rcs_getmtime ($) {
error "rcs_getmtime is not implemented for tla\n"; # TODO
}
1
|