/usr/share/perl5/IkiWiki/Plugin/bzr.pm is in ikiwiki 3.20130904.1ubuntu1.
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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | #!/usr/bin/perl
package IkiWiki::Plugin::bzr;
use warnings;
use strict;
use IkiWiki;
use Encode;
use URI::Escape q{uri_escape_utf8};
use open qw{:utf8 :std};
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);
hook(type => "rcs", id => "rcs_getmtime", call => \&rcs_getmtime);
}
sub checkconfig () {
if (defined $config{bzr_wrapper} && length $config{bzr_wrapper}) {
push @{$config{wrappers}}, {
wrapper => $config{bzr_wrapper},
wrappermode => (defined $config{bzr_wrappermode} ? $config{bzr_wrappermode} : "06755"),
};
}
}
sub getsetup () {
return
plugin => {
safe => 0, # rcs plugin
rebuild => undef,
section => "rcs",
},
bzr_wrapper => {
type => "string",
#example => "", # FIXME add example
description => "bzr post-commit hook to generate",
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,
},
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,
},
}
sub bzr_log ($) {
my $out = shift;
my @infos = ();
my $key = undef;
my %info;
while (<$out>) {
my $line = $_;
my ($value);
if ($line =~ /^message:/) {
$key = "message";
$info{$key} = "";
}
elsif ($line =~ /^(modified|added|renamed|renamed and modified|removed):/) {
$key = "files";
$info{$key} = "" unless defined $info{$key};
}
elsif (defined($key) and $line =~ /^ (.*)/) {
$info{$key} .= "$1\n";
}
elsif ($line eq "------------------------------------------------------------\n") {
push @infos, {%info} if keys %info;
%info = ();
$key = undef;
}
elsif ($line =~ /: /) {
chomp $line;
if ($line =~ /^revno: (\d+)/) {
$key = "revno";
$value = $1;
}
else {
($key, $value) = split /: +/, $line, 2;
}
$info{$key} = $value;
}
}
close $out;
push @infos, {%info} if keys %info;
return @infos;
}
sub rcs_update () {
my @cmdline = ("bzr", "update", "--quiet", $config{srcdir});
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}
}
sub rcs_prepedit ($) {
return "";
}
sub bzr_author ($) {
my $session=shift;
return unless defined $session;
my $user=$session->param("name");
my $ipaddr=$session->remote_addr();
if (defined $user) {
return IkiWiki::possibly_foolish_untaint($user);
}
elsif (defined $ipaddr) {
return "Anonymous from ".IkiWiki::possibly_foolish_untaint($ipaddr);
}
else {
return "Anonymous";
}
}
sub rcs_commit (@) {
my %params=@_;
my $user=bzr_author($params{session});
$params{message} = IkiWiki::possibly_foolish_untaint($params{message});
if (! length $params{message}) {
$params{message} = "no message given";
}
my @cmdline = ("bzr", "commit", "--quiet", "-m", $params{message},
(defined $user ? ("--author", $user) : ()),
$config{srcdir}."/".$params{file});
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}
return undef; # success
}
sub rcs_commit_staged (@) {
my %params=@_;
my $user=bzr_author($params{session});
$params{message} = IkiWiki::possibly_foolish_untaint($params{message});
if (! length $params{message}) {
$params{message} = "no message given";
}
my @cmdline = ("bzr", "commit", "--quiet", "-m", $params{message},
(defined $user ? ("--author", $user) : ()),
$config{srcdir});
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}
return undef; # success
}
sub rcs_add ($) {
my ($file) = @_;
my @cmdline = ("bzr", "add", "--quiet", "$config{srcdir}/$file");
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}
}
sub rcs_remove ($) {
my ($file) = @_;
my @cmdline = ("bzr", "rm", "--quiet", "$config{srcdir}/$file");
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}
}
sub rcs_rename ($$) {
my ($src, $dest) = @_;
my $parent = IkiWiki::dirname($dest);
if (system("bzr", "add", "--quiet", "$config{srcdir}/$parent") != 0) {
warn("bzr add $parent failed\n");
}
my @cmdline = ("bzr", "mv", "--quiet", "$config{srcdir}/$src", "$config{srcdir}/$dest");
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}
}
sub rcs_recentchanges ($) {
my ($num) = @_;
my @cmdline = ("bzr", "log", "-v", "--show-ids", "--limit", $num,
$config{srcdir});
open (my $out, "@cmdline |");
eval q{use Date::Parse};
error($@) if $@;
my @ret;
foreach my $info (bzr_log($out)) {
my @pages = ();
my @message = ();
foreach my $msgline (split(/\n/, $info->{message})) {
push @message, { line => $msgline };
}
foreach my $file (split(/\n/, $info->{files})) {
my ($filename, $fileid) = ($file =~ /^(.*?) +([^ ]+)$/);
# Skip directories
next if ($filename =~ /\/$/);
# Skip source name in renames
$filename =~ s/^.* => //;
my $efilename = uri_escape_utf8($filename);
my $diffurl = defined $config{'diffurl'} ? $config{'diffurl'} : "";
$diffurl =~ s/\[\[file\]\]/$efilename/go;
$diffurl =~ s/\[\[file-id\]\]/$fileid/go;
$diffurl =~ s/\[\[r2\]\]/$info->{revno}/go;
push @pages, {
page => pagename($filename),
diffurl => $diffurl,
};
}
my $user = $info->{"committer"};
if (defined($info->{"author"})) { $user = $info->{"author"}; }
$user =~ s/\s*<.*>\s*$//;
$user =~ s/^\s*//;
push @ret, {
rev => $info->{"revno"},
user => $user,
committype => "bzr",
when => str2time($info->{"timestamp"}),
message => [@message],
pages => [@pages],
};
}
return @ret;
}
sub rcs_diff ($;$) {
my $taintedrev=shift;
my $maxlines=shift;
my ($rev) = $taintedrev =~ /^(\d+(\.\d+)*)$/; # untaint
my $prevspec = "before:" . $rev;
my $revspec = "revno:" . $rev;
my @cmdline = ("bzr", "diff", "--old", $config{srcdir},
"--new", $config{srcdir},
"-r", $prevspec . ".." . $revspec);
open (my $out, "@cmdline |");
my @lines;
while (my $line=<$out>) {
last if defined $maxlines && @lines == $maxlines;
push @lines, $line;
}
if (wantarray) {
return @lines;
}
else {
return join("", @lines);
}
}
sub extract_timestamp (@) {
open (my $out, "-|", @_);
my @log = bzr_log($out);
if (length(scalar(@log)) < 1) {
return 0;
}
eval q{use Date::Parse};
error($@) if $@;
my $time = str2time($log[0]->{"timestamp"});
return $time;
}
sub rcs_getctime ($) {
my ($file) = @_;
my @cmdline = ("bzr", "log", "--forward", "--limit", '1', "$config{srcdir}/$file");
return extract_timestamp(@cmdline);
}
sub rcs_getmtime ($) {
my ($file) = @_;
my @cmdline = ("bzr", "log", "--limit", '1', "$config{srcdir}/$file");
return extract_timestamp(@cmdline);
}
1
|