2 package IkiWiki::Plugin::pinger;
12 hook(type => "getsetup", id => "pinger", call => \&getsetup);
13 hook(type => "needsbuild", id => "pinger", call => \&needsbuild);
14 hook(type => "preprocess", id => "ping", call => \&preprocess);
15 hook(type => "delete", id => "pinger", call => \&ping);
16 hook(type => "change", id => "pinger", call => \&ping);
28 description => "how many seconds to try pinging before timing out",
36 foreach my $page (keys %pagestate) {
37 if (exists $pagestate{$page}{pinger}) {
39 if (exists $pagesources{$page} &&
40 grep { $_ eq $pagesources{$page} } @$needsbuild) {
41 # remove state, will be re-added if
42 # the ping directive is still present
44 delete $pagestate{$page}{pinger};
53 if (! exists $params{from} || ! exists $params{to}) {
54 error gettext("requires 'from' and 'to' parameters");
56 if ($params{from} eq $config{url}) {
57 $pagestate{$params{destpage}}{pinger}{$params{to}}=1;
58 $pages{$params{destpage}}=1;
59 return sprintf(gettext("Will ping %s"), $params{to});
62 return sprintf(gettext("Ignoring ping directive for wiki %s (this wiki is %s)"), $params{from}, $config{url});
67 if (! $pinged && %pages) {
71 eval q{use LWPx::ParanoidAgent};
73 $ua=LWPx::ParanoidAgent->new;
78 debug(gettext("LWP not found, not pinging"));
81 $ua=LWP::UserAgent->new;
83 $ua->timeout($config{pinger_timeout} || 15);
85 # daemonise here so slow pings don't slow down wiki updates
86 defined(my $pid = fork) or error("Can't fork: $!");
89 open STDIN, '/dev/null';
90 open STDOUT, '>/dev/null';
91 POSIX::setsid() or error("Can't start a new session: $!");
92 open STDERR, '>&STDOUT' or error("Can't dup stdout: $!");
94 # Don't need to keep a lock on the wiki as a daemon.
95 IkiWiki::unlockwiki();
98 foreach my $page (%pages) {
99 if (exists $pagestate{$page}{pinger}) {
100 $urls{$_}=1 foreach keys %{$pagestate{$page}{pinger}};
103 foreach my $url (keys %urls) {
104 # Try to avoid pinging ourselves. If this check
105 # fails, it's not the end of the world, since we
106 # only ping when a page was changed, so a ping loop
107 # will still be avoided.
108 next if $url=~/^\Q$config{cgiurl}\E/;