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 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
108 open(my $savedout, ">&STDOUT");
109 open(STDOUT, ">", "/dev/null");
110 my $ret = system(@cmd);
111 open(STDOUT, ">&", $savedout);
113 return ($ret == 0) ? 1 : 0;
116 sub cvs_is_controlling {
118 $dir=$config{srcdir} unless defined($dir);
119 return (-d "$dir/CVS") ? 1 : 0;
123 return unless cvs_is_controlling;
124 cvs_runcvs('update', '-dP');
127 sub rcs_prepedit ($) {
128 # Prepares to edit a file under revision control. Returns a token
129 # that must be passed into rcs_commit when the file is ready
131 # The file is relative to the srcdir.
134 return unless cvs_is_controlling;
136 # For cvs, return the revision of the file when
138 my $rev=cvs_info("Repository revision", "$file");
139 return defined $rev ? $rev : "";
142 sub rcs_commit ($$$;$$) {
143 # Tries to commit the page; returns undef on _success_ and
144 # a version of the page with the rcs's conflict markers on failure.
145 # The file is relative to the srcdir.
152 return unless cvs_is_controlling;
155 $message="web commit by $user".(length $message ? ": $message" : "");
157 elsif (defined $ipaddr) {
158 $message="web commit from $ipaddr".(length $message ? ": $message" : "");
161 # Check to see if the page has been changed by someone
162 # else since rcs_prepedit was called.
163 my ($oldrev)=$rcstoken=~/^([0-9]+)$/; # untaint
164 my $rev=cvs_info("Repository revision", "$config{srcdir}/$file");
165 if (defined $rev && defined $oldrev && $rev != $oldrev) {
166 # Merge their changes into the file that we've
168 cvs_runcvs('update', $file) ||
169 warn("cvs merge from $oldrev to $rev failed\n");
172 if (! cvs_runcvs('commit', '-m',
173 IkiWiki::possibly_foolish_untaint $message)) {
174 my $conflict=readfile("$config{srcdir}/$file");
175 cvs_runcvs('update', '-C', $file) ||
176 warn("cvs revert failed\n");
180 return undef # success
183 sub rcs_commit_staged ($$$) {
184 # Commits all staged changes. Changes can be staged using rcs_add,
185 # rcs_remove, and rcs_rename.
186 my ($message, $user, $ipaddr)=@_;
189 $message="web commit by $user".(length $message ? ": $message" : "");
191 elsif (defined $ipaddr) {
192 $message="web commit from $ipaddr".(length $message ? ": $message" : "");
195 if (! cvs_runcvs('commit', '-m',
196 IkiWiki::possibly_foolish_untaint $message)) {
197 warn "cvs staged commit failed\n";
200 return undef # success
204 # filename is relative to the root of the srcdir
206 my $parent=IkiWiki::dirname($file);
207 my @files_to_add = ($file);
209 eval q{use File::MimeInfo};
212 until ((length($parent) == 0) || cvs_is_controlling("$config{srcdir}/$parent")){
213 push @files_to_add, $parent;
214 $parent = IkiWiki::dirname($parent);
217 while ($file = pop @files_to_add) {
218 if (@files_to_add == 0) {
220 my $filemime = File::MimeInfo::default($file);
221 if (defined($filemime) && $filemime eq 'text/plain') {
222 cvs_runcvs('add', $file) ||
223 warn("cvs add $file failed\n");
225 cvs_runcvs('add', '-kb', $file) ||
226 warn("cvs add binary $file failed\n");
230 cvs_runcvs('add', $file) ||
231 warn("cvs add $file failed\n");
237 # filename is relative to the root of the srcdir
240 return unless cvs_is_controlling;
242 cvs_runcvs('rm', '-f', $file) ||
243 warn("cvs rm $file failed\n");
246 sub rcs_rename ($$) {
247 # filenames relative to the root of the srcdir
250 return unless cvs_is_controlling;
252 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
254 if (system("mv", "$src", "$dest") != 0) {
255 warn("filesystem rename failed\n");
262 sub rcs_recentchanges($) {
266 return unless cvs_is_controlling;
268 eval q{use Date::Parse};
271 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
273 # There's no cvsps option to get the last N changesets.
274 # Write full output to a temp file and read backwards.
276 eval q{use File::Temp qw/tempfile/};
278 eval q{use File::ReadBackwards};
281 my (undef, $tmpfile) = tempfile(OPEN=>0);
282 system("env TZ=UTC cvsps -q --cvs-direct -z 30 -x >$tmpfile");
284 error "couldn't run cvsps: $!\n";
285 } elsif (($? >> 8) != 0) {
286 error "cvsps exited " . ($? >> 8) . ": $!\n";
289 tie(*SPSVC, 'File::ReadBackwards', $tmpfile)
290 || error "couldn't open $tmpfile for read: $!\n";
292 while (my $line = <SPSVC>) {
293 $line =~ /^$/ || error "expected blank line, got $line";
295 my ($rev, $user, $committype, $when);
296 my (@message, @pages);
298 # We're reading backwards.
299 # Forwards, an entry looks like so:
300 # ---------------------
303 # Author: $user (or user CGI runs as, for web commits)
309 # @pages (and revisions)
312 while ($line = <SPSVC>) {
313 last if ($line =~ /^Members:/);
318 my ($page, $revs) = split(/:/, $line);
319 my ($oldrev, $newrev) = split(/->/, $revs);
320 $oldrev =~ s/INITIAL/0/;
321 $newrev =~ s/\(DEAD\)//;
322 my $diffurl = defined $config{diffurl} ? $config{diffurl} : "";
323 $diffurl=~s/\[\[file\]\]/$page/g;
324 $diffurl=~s/\[\[r1\]\]/$oldrev/g;
325 $diffurl=~s/\[\[r2\]\]/$newrev/g;
327 page => pagename($page),
332 while ($line = <SPSVC>) {
333 last if ($line =~ /^Log:$/);
335 unshift @message, { line => $line };
338 if (defined $message[0] &&
339 $message[0]->{line}=~/$config{web_commit_regexp}/) {
340 $user=defined $2 ? "$2" : "$3";
341 $message[0]->{line}=$4;
346 $line = <SPSVC>; # Tag
347 $line = <SPSVC>; # Branch
350 if ($line =~ /^Author: (.*)$/) {
351 $user = $1 unless defined $user && length $user;
353 error "expected Author, got $line";
357 if ($line =~ /^Date: (.*)$/) {
358 $when = str2time($1, 'UTC');
360 error "expected Date, got $line";
364 if ($line =~ /^PatchSet (.*)$/) {
367 error "expected PatchSet, got $line";
370 $line = <SPSVC>; # ---------------------
375 committype => $committype,
377 message => [@message],
380 last if @ret >= $num;
383 unlink($tmpfile) || error "couldn't unlink $tmpfile: $!\n";
389 my $rev=IkiWiki::possibly_foolish_untaint(int(shift));
391 chdir $config{srcdir} || error("Cannot chdir to $config{srcdir}: $!");
393 # diff output is unavoidably preceded by the cvsps PatchSet entry
394 my @cvsps = `env TZ=UTC cvsps -q --cvs-direct -z 30 -g -s $rev`;
395 my $blank_lines_seen = 0;
397 while (my $line = shift @cvsps) {
398 $blank_lines_seen++ if ($line =~ /^$/);
399 last if $blank_lines_seen == 2;
405 return join("", @cvsps);
409 sub rcs_getctime ($) {
412 my $cvs_log_infoline=qr/^date: (.+);\s+author/;
414 open CVSLOG, "cvs -Q log -r1.1 '$file' |"
415 || error "couldn't get cvs log output: $!\n";
419 if (/$cvs_log_infoline/) {
423 close CVSLOG || warn "cvs log $file exited $?";
425 if (! defined $date) {
426 warn "failed to parse cvs log for $file\n";
430 eval q{use Date::Parse};
432 $date=str2time($date, 'UTC');
433 debug("found ctime ".localtime($date)." for $file");