2 # For subversion support.
10 my $svn_webcommit=qr/^web commit by (\w+):?(.*)/;
12 sub svn_info ($$) { #{{{
16 my $info=`LANG=C svn info $file`;
17 my ($ret)=$info=~/^$field: (.*)$/m;
21 sub rcs_update () { #{{{
22 if (-d "$config{srcdir}/.svn") {
23 if (system("svn", "update", "--quiet", $config{srcdir}) != 0) {
24 warn("svn update failed\n");
29 sub rcs_prepedit ($) { #{{{
30 # Prepares to edit a file under revision control. Returns a token
31 # that must be passed into rcs_commit when the file is ready
33 # The file is relative to the srcdir.
36 if (-d "$config{srcdir}/.svn") {
37 # For subversion, return the revision of the file when
39 my $rev=svn_info("Revision", "$config{srcdir}/$file");
40 return defined $rev ? $rev : "";
44 sub rcs_commit ($$$) { #{{{
45 # Tries to commit the page; returns undef on _success_ and
46 # a version of the page with the rcs's conflict markers on failure.
47 # The file is relative to the srcdir.
52 if (-d "$config{srcdir}/.svn") {
53 # Check to see if the page has been changed by someone
54 # else since rcs_prepedit was called.
55 my ($oldrev)=$rcstoken=~/^([0-9]+)$/; # untaint
56 my $rev=svn_info("Revision", "$config{srcdir}/$file");
57 if (defined $rev && defined $oldrev && $rev != $oldrev) {
58 # Merge their changes into the file that we've
60 chdir($config{srcdir}); # svn merge wants to be here
61 if (system("svn", "merge", "--quiet", "-r$oldrev:$rev",
62 "$config{srcdir}/$file") != 0) {
63 warn("svn merge -r$oldrev:$rev failed\n");
67 if (system("svn", "commit", "--quiet",
68 "--encoding", "UTF-8", "-m",
69 possibly_foolish_untaint($message),
70 "$config{srcdir}") != 0) {
71 my $conflict=readfile("$config{srcdir}/$file");
72 if (system("svn", "revert", "--quiet", "$config{srcdir}/$file") != 0) {
73 warn("svn revert failed\n");
78 return undef # success
81 sub rcs_add ($) { #{{{
82 # filename is relative to the root of the srcdir
85 if (-d "$config{srcdir}/.svn") {
86 my $parent=dirname($file);
87 while (! -d "$config{srcdir}/$parent/.svn") {
89 $parent=dirname($file);
92 if (system("svn", "add", "--quiet", "$config{srcdir}/$file") != 0) {
93 warn("svn add failed\n");
98 sub rcs_recentchanges ($) { #{{{
102 return unless -d "$config{srcdir}/.svn";
104 eval q{use CGI 'escapeHTML'};
105 eval q{use Date::Parse};
106 eval q{use Time::Duration};
107 eval q{use XML::Simple};
109 my $svn_url=svn_info("URL", $config{srcdir});
110 my $xml = XMLin(scalar `svn --xml -v log '$svn_url'`,
111 ForceArray => [ 'logentry', 'path' ],
112 GroupTags => { paths => 'path' },
113 KeyAttr => { path => 'content' },
115 foreach my $logentry (@{$xml->{logentry}}) {
116 my (@pages, @message);
118 my $rev = $logentry->{revision};
119 my $user = $logentry->{author};
121 my $date = $logentry->{date};
123 $date =~ s/\.\d+Z$//;
124 my $when=concise(ago(time - str2time($date, 'UTC')));
126 foreach my $msgline (split(/\n/, $logentry->{msg})) {
127 push @message, { line => escapeHTML($msgline) };
129 unshift @message, { line => "\n" } if @message > 1;
131 my $committype="web";
132 if (defined $message[0] &&
133 $message[0]->{line}=~/$svn_webcommit/) {
135 $message[0]->{line}=$2;
141 foreach (keys %{$logentry->{paths}}) {
142 next unless /^\/\Q$config{svnpath}\E\/([^ ]+)(?:$|\s)/;
144 my $diffurl=$config{diffurl};
145 $diffurl=~s/\[\[file\]\]/$file/g;
146 $diffurl=~s/\[\[r1\]\]/$rev - 1/eg;
147 $diffurl=~s/\[\[r2\]\]/$rev/g;
149 link => htmllink("", "", pagename($file), 1),
153 push @ret, { rev => $rev,
154 user => htmllink("", "", $user, 1),
155 committype => $committype,
157 message => [@message],
160 return @ret if @ret >= $num;
166 sub rcs_notify () { #{{{
167 if (! exists $ENV{REV}) {
168 error("REV is not set, not running from svn post-commit hook, cannot send notifications");
170 my $rev=int(possibly_foolish_untaint($ENV{REV}));
172 my $user=`svnlook author $config{svnrepo} -r $rev`;
174 my $message=`svnlook log $config{svnrepo} -r $rev`;
175 if ($message=~/$svn_webcommit/) {
181 foreach my $change (`svnlook changed $config{svnrepo} -r $rev`) {
183 if ($change =~ /^[A-Z]+\s+\Q$config{svnpath}\E\/(.*)/) {
184 push @changed_pages, $1;
188 require IkiWiki::UserInfo;
189 my @email_recipients=commit_notify_list($user, @changed_pages);
190 if (@email_recipients) {
191 # TODO: if a commit spans multiple pages, this will send
192 # subscribers a diff that might contain pages they did not
193 # sign up for. Should separate the diff per page and
194 # reassemble into one mail with just the pages subscribed to.
195 my $diff=`svnlook diff $config{svnrepo} -r $rev --no-diff-deleted`;
197 my $subject="$config{wikiname} update of ";
198 if (@changed_pages > 2) {
199 $subject.="$changed_pages[0] $changed_pages[1] etc";
202 $subject.=join(" ", @changed_pages);
204 $subject.=" by $user";
206 my $template=template("notifymail.tmpl");
208 wikiname => $config{wikiname},
214 eval q{use Mail::Sendmail};
215 foreach my $email (@email_recipients) {
218 From => "$config{wikiname} <$config{adminemail}>",
220 Message => $template->output,
221 ) or error("Failed to send update notification mail");
226 sub rcs_getctime ($) { #{{{
228 eval q{use Date::Parse};
230 my $svn_log_infoline=qr/^r\d+\s+\|\s+[^\s]+\s+\|\s+(\d+-\d+-\d+\s+\d+:\d+:\d+\s+[-+]?\d+).*/;
232 my $child = open(SVNLOG, "-|");
234 exec("svn", "log", $file) || error("svn log $file failed to run");
239 if (/$svn_log_infoline/) {
243 close SVNLOG || warn "svn log $file exited $?";
245 if (! defined $date) {
246 warn "failed to parse svn log for $file\n";
250 $date=str2time($date);
251 debug("found ctime ".localtime($date)." for $file");