2 package IkiWiki::Plugin::cvs;
9 hook(type => "checkconfig", id => "cvs", call => \&checkconfig);
10 hook(type => "getsetup", id => "cvs", call => \&getsetup);
11 hook(type => "rcs", id => "rcs_update", call => \&rcs_update);
12 hook(type => "rcs", id => "rcs_prepedit", call => \&rcs_prepedit);
13 hook(type => "rcs", id => "rcs_commit", call => \&rcs_commit);
14 hook(type => "rcs", id => "rcs_commit_staged", call => \&rcs_commit_staged);
15 hook(type => "rcs", id => "rcs_add", call => \&rcs_add);
16 hook(type => "rcs", id => "rcs_remove", call => \&rcs_remove);
17 hook(type => "rcs", id => "rcs_rename", call => \&rcs_rename);
18 hook(type => "rcs", id => "rcs_recentchanges", call => \&rcs_recentchanges);
19 hook(type => "rcs", id => "rcs_diff", call => \&rcs_diff);
20 hook(type => "rcs", id => "rcs_getctime", call => \&rcs_getctime);
24 if (! defined $config{cvspath}) {
25 $config{cvspath}="ikiwiki";
27 if (exists $config{cvspath}) {
28 # code depends on the path not having extraneous slashes
29 $config{cvspath}=~tr#/#/#s;
30 $config{cvspath}=~s/\/$//;
31 $config{cvspath}=~s/^\///;
33 if (defined $config{cvs_wrapper} && length $config{cvs_wrapper}) {
34 push @{$config{wrappers}}, {
35 wrapper => $config{cvs_wrapper},
36 wrappermode => (defined $config{cvs_wrappermode} ? $config{cvs_wrappermode} : "04755"),
44 safe => 0, # rcs plugin
49 example => "/cvs/wikirepo",
50 description => "cvs repository location",
57 description => "path inside repository where the wiki is located",
63 example => "/cvs/wikirepo/CVSROOT/post-commit",
64 description => "cvs post-commit hook to generate (triggered by CVSROOT/loginfo entry",
71 description => "mode for cvs_wrapper (can safely be made suid)",
77 example => "http://cvs.example.org/cvsweb.cgi/ikiwiki/[[file]]",
78 description => "cvsweb url to show file history ([[file]] substituted)",
84 example => "http://cvs.example.org/cvsweb.cgi/ikiwiki/[[file]].diff?r1=text&tr1=[[r1]]&r2=text&tr2=[[r2]]",
85 description => "cvsweb url to show a diff ([[file]], [[r1]], and [[r2]] substituted)",
95 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
97 my $info=`cvs status $file`;
98 my ($ret)=$info=~/^\s*$field:\s*(\S+)/m;
104 unshift @$cmd, 'cvs', '-Q';
106 eval q{use IPC::Cmd};
109 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
111 debug("runcvs: " . join(" ", @$cmd));
113 my ($success, $error_code, $full_buf, $stdout_buf, $stderr_buf) =
114 IPC::Cmd::run(command => $cmd, verbose => 0);
116 warn(join(" ", @$cmd) . " exited with code $error_code\n");
117 warn(join "", @$stderr_buf);
122 sub cvs_shquote_commit ($) {
125 eval q{use String::ShellQuote};
128 return shell_quote(IkiWiki::possibly_foolish_untaint($message));
131 sub cvs_is_controlling {
133 $dir=$config{srcdir} unless defined($dir);
134 return (-d "$dir/CVS") ? 1 : 0;
138 return unless cvs_is_controlling;
139 cvs_runcvs(['update', '-dP']);
142 sub rcs_prepedit ($) {
143 # Prepares to edit a file under revision control. Returns a token
144 # that must be passed into rcs_commit when the file is ready
146 # The file is relative to the srcdir.
149 return unless cvs_is_controlling;
151 # For cvs, return the revision of the file when
153 my $rev=cvs_info("Repository revision", "$file");
154 return defined $rev ? $rev : "";
157 sub rcs_commit ($$$;$$) {
158 # Tries to commit the page; returns undef on _success_ and
159 # a version of the page with the rcs's conflict markers on failure.
160 # The file is relative to the srcdir.
167 return unless cvs_is_controlling;
170 $message="web commit by $user".(length $message ? ": $message" : "");
172 elsif (defined $ipaddr) {
173 $message="web commit from $ipaddr".(length $message ? ": $message" : "");
176 # Check to see if the page has been changed by someone
177 # else since rcs_prepedit was called.
178 my ($oldrev)=$rcstoken=~/^([0-9]+)$/; # untaint
179 my $rev=cvs_info("Repository revision", "$config{srcdir}/$file");
180 if (defined $rev && defined $oldrev && $rev != $oldrev) {
181 # Merge their changes into the file that we've
183 cvs_runcvs(['update', $file]) ||
184 warn("cvs merge from $oldrev to $rev failed\n");
187 if (! cvs_runcvs(['commit', '-m', cvs_shquote_commit $message])) {
188 my $conflict=readfile("$config{srcdir}/$file");
189 cvs_runcvs(['update', '-C', $file]) ||
190 warn("cvs revert failed\n");
194 return undef # success
197 sub rcs_commit_staged ($$$) {
198 # Commits all staged changes. Changes can be staged using rcs_add,
199 # rcs_remove, and rcs_rename.
200 my ($message, $user, $ipaddr)=@_;
203 $message="web commit by $user".(length $message ? ": $message" : "");
205 elsif (defined $ipaddr) {
206 $message="web commit from $ipaddr".(length $message ? ": $message" : "");
209 if (! cvs_runcvs(['commit', '-m', cvs_shquote_commit $message])) {
210 warn "cvs staged commit failed\n";
213 return undef # success
217 # filename is relative to the root of the srcdir
219 my $parent=IkiWiki::dirname($file);
220 my @files_to_add = ($file);
222 eval q{use File::MimeInfo};
225 until ((length($parent) == 0) || cvs_is_controlling("$config{srcdir}/$parent")){
226 push @files_to_add, $parent;
227 $parent = IkiWiki::dirname($parent);
230 while ($file = pop @files_to_add) {
231 if ((@files_to_add == 0) &&
232 (File::MimeInfo::default $file ne 'text/plain')) {
233 # it's a binary file, add specially
234 cvs_runcvs(['add', '-kb', $file]) ||
235 warn("cvs add $file failed\n");
237 # directory or regular file
238 cvs_runcvs(['add', $file]) ||
239 warn("cvs add $file failed\n");
245 # filename is relative to the root of the srcdir
248 return unless cvs_is_controlling;
250 cvs_runcvs(['rm', '-f', $file]) ||
251 warn("cvs rm $file failed\n");
254 sub rcs_rename ($$) {
255 # filenames relative to the root of the srcdir
258 return unless cvs_is_controlling;
260 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
262 if (system("mv", "$src", "$dest") != 0) {
263 warn("filesystem rename failed\n");
270 sub rcs_recentchanges($) {
274 return unless cvs_is_controlling;
276 eval q{use Date::Parse};
279 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
281 # there's no option to get the last N changesets, so read backwards
282 open CVSPS, "env TZ=UTC cvsps -q --cvs-direct -z 30 -x |" || error "couldn't get cvsps output: $!\n";
283 my @spsvc = reverse <CVSPS>; # is this great? no it is not
284 close CVSPS || error "couldn't close cvsps output: $!\n";
286 while (my $line = shift @spsvc) {
287 $line =~ /^$/ || error "expected blank line, got $line";
289 my ($rev, $user, $committype, $when);
290 my (@message, @pages);
292 # We're reading backwards.
293 # Forwards, an entry looks like so:
294 # ---------------------
297 # Author: $user (or user CGI runs as, for web commits)
303 # @pages (and revisions)
306 while ($line = shift @spsvc) {
307 last if ($line =~ /^Members:/);
312 my ($page, $revs) = split(/:/, $line);
313 my ($oldrev, $newrev) = split(/->/, $revs);
314 $oldrev =~ s/INITIAL/0/;
315 $newrev =~ s/\(DEAD\)//;
316 my $diffurl = defined $config{diffurl} ? $config{diffurl} : "";
317 $diffurl=~s/\[\[file\]\]/$page/g;
318 $diffurl=~s/\[\[r1\]\]/$oldrev/g;
319 $diffurl=~s/\[\[r2\]\]/$newrev/g;
321 page => pagename($page),
326 while ($line = shift @spsvc) {
327 last if ($line =~ /^Log:$/);
329 unshift @message, { line => $line };
332 if (defined $message[0] &&
333 $message[0]->{line}=~/$config{web_commit_regexp}/) {
334 $user=defined $2 ? "$2" : "$3";
335 $message[0]->{line}=$4;
340 $line = shift @spsvc; # Tag
341 $line = shift @spsvc; # Branch
343 $line = shift @spsvc;
344 if ($line =~ /^Author: (.*)$/) {
345 $user = $1 unless defined $user && length $user;
347 error "expected Author, got $line";
350 $line = shift @spsvc;
351 if ($line =~ /^Date: (.*)$/) {
352 $when = str2time($1, 'UTC');
354 error "expected Date, got $line";
357 $line = shift @spsvc;
358 if ($line =~ /^PatchSet (.*)$/) {
361 error "expected PatchSet, got $line";
364 $line = shift @spsvc; # ---------------------
369 committype => $committype,
371 message => [@message],
374 return @ret if @ret >= $num;
381 my $rev=IkiWiki::possibly_foolish_untaint(int(shift));
383 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
385 # diff output is unavoidably preceded by the cvsps PatchSet entry
386 my @cvsps = `env TZ=UTC cvsps -q --cvs-direct -z 30 -g -s $rev`;
387 my $blank_lines_seen = 0;
389 while (my $line = shift @cvsps) {
390 $blank_lines_seen++ if ($line =~ /^$/);
391 last if $blank_lines_seen == 2;
397 return join("", @cvsps);
401 sub rcs_getctime ($) {
404 my $cvs_log_infoline=qr/^date: (.+);\s+author/;
406 open CVSLOG, "cvs -Q log -r1.1 '$file' |"
407 || error "couldn't get cvs log output: $!\n";
411 if (/$cvs_log_infoline/) {
415 close CVSLOG || warn "cvs log $file exited $?";
417 if (! defined $date) {
418 warn "failed to parse cvs log for $file\n";
422 eval q{use Date::Parse};
424 $date=str2time($date, 'UTC');
425 debug("found ctime ".localtime($date)." for $file");