2008-05-07 01:06:53 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
package IkiWiki::Plugin::pinger;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2008-12-23 22:34:19 +01:00
|
|
|
use IkiWiki 3.00;
|
2008-05-07 01:06:53 +02:00
|
|
|
|
|
|
|
my %pages;
|
|
|
|
my $pinged=0;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub import {
|
2008-07-26 00:05:55 +02:00
|
|
|
hook(type => "getsetup", id => "pinger", call => \&getsetup);
|
2008-05-07 01:06:53 +02:00
|
|
|
hook(type => "needsbuild", id => "pinger", call => \&needsbuild);
|
|
|
|
hook(type => "preprocess", id => "ping", call => \&preprocess);
|
|
|
|
hook(type => "delete", id => "pinger", call => \&ping);
|
|
|
|
hook(type => "change", id => "pinger", call => \&ping);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-05-07 01:06:53 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub getsetup () {
|
2008-07-26 00:05:55 +02:00
|
|
|
return
|
2008-08-03 23:20:21 +02:00
|
|
|
plugin => {
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-26 00:05:55 +02:00
|
|
|
pinger_timeout => {
|
2008-07-26 19:07:48 +02:00
|
|
|
type => "integer",
|
2008-07-27 03:07:15 +02:00
|
|
|
example => 15,
|
2008-07-26 00:05:55 +02:00
|
|
|
description => "how many seconds to try pinging before timing out",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-26 00:05:55 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub needsbuild (@) {
|
2008-05-07 01:06:53 +02:00
|
|
|
my $needsbuild=shift;
|
|
|
|
foreach my $page (keys %pagestate) {
|
|
|
|
if (exists $pagestate{$page}{pinger}) {
|
|
|
|
$pages{$page}=1;
|
|
|
|
if (exists $pagesources{$page} &&
|
|
|
|
grep { $_ eq $pagesources{$page} } @$needsbuild) {
|
|
|
|
# remove state, will be re-added if
|
|
|
|
# the ping directive is still present
|
|
|
|
# on rebuild.
|
|
|
|
delete $pagestate{$page}{pinger};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-05-07 01:06:53 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub preprocess (@) {
|
2008-05-07 01:06:53 +02:00
|
|
|
my %params=@_;
|
|
|
|
if (! exists $params{from} || ! exists $params{to}) {
|
2008-07-13 21:05:34 +02:00
|
|
|
error gettext("requires 'from' and 'to' parameters");
|
2008-05-07 01:06:53 +02:00
|
|
|
}
|
|
|
|
if ($params{from} eq $config{url}) {
|
|
|
|
$pagestate{$params{destpage}}{pinger}{$params{to}}=1;
|
|
|
|
$pages{$params{destpage}}=1;
|
|
|
|
return sprintf(gettext("Will ping %s"), $params{to});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return sprintf(gettext("Ignoring ping directive for wiki %s (this wiki is %s)"), $params{from}, $config{url});
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-05-07 01:06:53 +02:00
|
|
|
|
|
|
|
sub ping {
|
|
|
|
if (! $pinged && %pages) {
|
|
|
|
$pinged=1;
|
|
|
|
|
|
|
|
my $ua;
|
|
|
|
eval q{use LWPx::ParanoidAgent};
|
|
|
|
if (!$@) {
|
|
|
|
$ua=LWPx::ParanoidAgent->new;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
eval q{use LWP};
|
|
|
|
if ($@) {
|
|
|
|
debug(gettext("LWP not found, not pinging"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$ua=LWP::UserAgent->new;
|
|
|
|
}
|
|
|
|
$ua->timeout($config{pinger_timeout} || 15);
|
|
|
|
|
|
|
|
# daemonise here so slow pings don't slow down wiki updates
|
|
|
|
defined(my $pid = fork) or error("Can't fork: $!");
|
|
|
|
return if $pid;
|
|
|
|
chdir '/';
|
|
|
|
open STDIN, '/dev/null';
|
|
|
|
open STDOUT, '>/dev/null';
|
|
|
|
POSIX::setsid() or error("Can't start a new session: $!");
|
|
|
|
open STDERR, '>&STDOUT' or error("Can't dup stdout: $!");
|
|
|
|
|
|
|
|
# Don't need to keep a lock on the wiki as a daemon.
|
|
|
|
IkiWiki::unlockwiki();
|
|
|
|
|
|
|
|
my %urls;
|
|
|
|
foreach my $page (%pages) {
|
|
|
|
if (exists $pagestate{$page}{pinger}) {
|
|
|
|
$urls{$_}=1 foreach keys %{$pagestate{$page}{pinger}};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach my $url (keys %urls) {
|
|
|
|
# Try to avoid pinging ourselves. If this check
|
|
|
|
# fails, it's not the end of the world, since we
|
|
|
|
# only ping when a page was changed, so a ping loop
|
|
|
|
# will still be avoided.
|
|
|
|
next if $url=~/^\Q$config{cgiurl}\E/;
|
|
|
|
|
2009-01-11 20:27:27 +01:00
|
|
|
$ua->get($url);
|
2008-05-07 01:06:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
1
|