2006-05-02 04:34:33 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# Page inlining and blogging.
|
|
|
|
package IkiWiki::Plugin::inline;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2006-05-02 08:53:33 +02:00
|
|
|
use IkiWiki;
|
2006-08-04 04:22:16 +02:00
|
|
|
use URI;
|
2006-05-02 04:34:33 +02:00
|
|
|
|
|
|
|
sub import { #{{{
|
2006-05-03 21:58:58 +02:00
|
|
|
IkiWiki::hook(type => "preprocess", id => "inline",
|
|
|
|
call => \&IkiWiki::preprocess_inline);
|
2006-06-27 03:13:03 +02:00
|
|
|
# Hook to change to do pinging since it's called late.
|
|
|
|
# This ensures each page only pings once and prevents slow
|
|
|
|
# pings interrupting page builds.
|
|
|
|
IkiWiki::hook(type => "change", id => "inline",
|
|
|
|
call => \&IkiWiki::pingurl);
|
2006-05-02 04:34:33 +02:00
|
|
|
} # }}}
|
|
|
|
|
|
|
|
# Back to ikiwiki namespace for the rest, this code is very much
|
|
|
|
# internal to ikiwiki even though it's separated into a plugin.
|
|
|
|
package IkiWiki;
|
2006-06-27 03:13:03 +02:00
|
|
|
|
|
|
|
my %toping;
|
2006-07-29 23:38:50 +02:00
|
|
|
my $processing_inline=0;
|
2006-06-27 03:13:03 +02:00
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
sub preprocess_inline (@) { #{{{
|
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
if (! exists $params{pages}) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
if (! exists $params{archive}) {
|
|
|
|
$params{archive}="no";
|
|
|
|
}
|
|
|
|
if (! exists $params{show} && $params{archive} eq "no") {
|
|
|
|
$params{show}=10;
|
|
|
|
}
|
2006-08-01 22:08:42 +02:00
|
|
|
if (! exists $params{rss}) {
|
|
|
|
$params{rss}="yes";
|
|
|
|
}
|
2006-07-02 21:44:42 +02:00
|
|
|
|
2006-07-29 23:38:50 +02:00
|
|
|
# Avoid nested inlines, to avoid loops etc.
|
|
|
|
if ($processing_inline) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
$processing_inline=1;
|
|
|
|
|
2006-07-02 21:44:42 +02:00
|
|
|
my @list;
|
|
|
|
foreach my $page (keys %pagesources) {
|
|
|
|
next if $page eq $params{page};
|
2006-08-02 02:14:31 +02:00
|
|
|
if (pagespec_match($page, $params{pages})) {
|
2006-07-02 21:44:42 +02:00
|
|
|
push @list, $page;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@list=sort { $pagectime{$b} <=> $pagectime{$a} } @list;
|
|
|
|
if ($params{show} && @list > $params{show}) {
|
|
|
|
@list=@list[0..$params{show} - 1];
|
|
|
|
}
|
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
add_depends($params{page}, $params{pages});
|
|
|
|
|
|
|
|
my $ret="";
|
|
|
|
|
2006-07-30 02:20:11 +02:00
|
|
|
if (exists $params{rootpage} && $config{cgiurl}) {
|
2006-05-02 04:34:33 +02:00
|
|
|
# Add a blog post form, with a rss link button.
|
2006-07-02 21:06:08 +02:00
|
|
|
my $formtemplate=template("blogpost.tmpl", blind_cache => 1);
|
2006-05-02 04:34:33 +02:00
|
|
|
$formtemplate->param(cgiurl => $config{cgiurl});
|
|
|
|
$formtemplate->param(rootpage => $params{rootpage});
|
|
|
|
if ($config{rss}) {
|
|
|
|
$formtemplate->param(rssurl => rsspage(basename($params{page})));
|
|
|
|
}
|
|
|
|
$ret.=$formtemplate->output;
|
|
|
|
}
|
2006-08-01 22:12:15 +02:00
|
|
|
elsif ($config{rss} && $params{rss} eq "yes") {
|
2006-05-02 04:34:33 +02:00
|
|
|
# Add a rss link button.
|
2006-07-02 21:06:08 +02:00
|
|
|
my $linktemplate=template("rsslink.tmpl", blind_cache => 1);
|
2006-05-02 04:34:33 +02:00
|
|
|
$linktemplate->param(rssurl => rsspage(basename($params{page})));
|
|
|
|
$ret.=$linktemplate->output;
|
|
|
|
}
|
|
|
|
|
2006-07-02 21:06:08 +02:00
|
|
|
my $template=template(
|
|
|
|
(($params{archive} eq "no")
|
|
|
|
? "inlinepage.tmpl"
|
|
|
|
: "inlinepagetitle.tmpl"),
|
|
|
|
blind_cache => 1,
|
|
|
|
);
|
2006-05-02 04:34:33 +02:00
|
|
|
|
2006-07-02 21:44:42 +02:00
|
|
|
foreach my $page (@list) {
|
2006-07-31 01:51:48 +02:00
|
|
|
# Don't use htmllink because this way the title is separate
|
|
|
|
# and can be overridden by other plugins.
|
|
|
|
my $link=htmlpage(bestlink($params{page}, $page));
|
|
|
|
$link=abs2rel($link, dirname($params{page}));
|
|
|
|
$template->param(pageurl => $link);
|
2006-07-31 02:34:18 +02:00
|
|
|
$template->param(title => pagetitle(basename($page)));
|
2006-07-28 01:41:58 +02:00
|
|
|
$template->param(content => get_inline_content($page, $params{page}))
|
2006-05-02 04:34:33 +02:00
|
|
|
if $params{archive} eq "no";
|
2006-05-29 07:09:43 +02:00
|
|
|
$template->param(ctime => displaytime($pagectime{$page}));
|
2006-07-28 01:08:03 +02:00
|
|
|
|
2006-07-30 02:20:11 +02:00
|
|
|
run_hooks(pagetemplate => sub {
|
|
|
|
shift->(page => $page, destpage => $params{page},
|
|
|
|
template => $template,);
|
|
|
|
});
|
2006-07-28 01:08:03 +02:00
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
$ret.=$template->output;
|
2006-07-28 01:08:03 +02:00
|
|
|
$template->clear_params;
|
2006-05-02 04:34:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# TODO: should really add this to renderedfiles and call
|
|
|
|
# check_overwrite, but currently renderedfiles
|
|
|
|
# only supports listing one file per page.
|
2006-08-01 22:08:42 +02:00
|
|
|
if ($config{rss} && $params{rss} eq "yes") {
|
2006-05-02 04:34:33 +02:00
|
|
|
writefile(rsspage($params{page}), $config{destdir},
|
2006-07-02 21:44:42 +02:00
|
|
|
genrss($params{page}, @list));
|
2006-07-04 03:02:04 +02:00
|
|
|
$toping{$params{page}}=1 unless $config{rebuild};
|
2006-05-02 04:34:33 +02:00
|
|
|
}
|
|
|
|
|
2006-07-29 23:38:50 +02:00
|
|
|
$processing_inline=0;
|
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
return $ret;
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub get_inline_content ($$) { #{{{
|
|
|
|
my $page=shift;
|
2006-07-28 01:41:58 +02:00
|
|
|
my $destpage=shift;
|
2006-05-02 04:34:33 +02:00
|
|
|
|
|
|
|
my $file=$pagesources{$page};
|
|
|
|
my $type=pagetype($file);
|
2006-07-04 00:14:52 +02:00
|
|
|
if (defined $type) {
|
2006-07-29 23:38:50 +02:00
|
|
|
return htmlize($type, preprocess($page, $destpage, linkify($page, $destpage, readfile(srcfile($file)))));
|
2006-05-02 04:34:33 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub date_822 ($) { #{{{
|
|
|
|
my $time=shift;
|
|
|
|
|
|
|
|
eval q{use POSIX};
|
2006-08-05 02:45:03 +02:00
|
|
|
my $lc_time= POSIX::setlocale(&POSIX::LC_TIME);
|
|
|
|
POSIX::setlocale(&POSIX::LC_TIME, "C");
|
|
|
|
my $ret=POSIX::strftime("%a, %d %b %Y %H:%M:%S %z", localtime($time));
|
|
|
|
POSIX::setlocale(&POSIX::LC_TIME, $lc_time);
|
|
|
|
return $ret;
|
2006-05-02 04:34:33 +02:00
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub absolute_urls ($$) { #{{{
|
|
|
|
# sucky sub because rss sucks
|
|
|
|
my $content=shift;
|
|
|
|
my $url=shift;
|
|
|
|
|
|
|
|
$url=~s/[^\/]+$//;
|
|
|
|
|
2006-06-08 08:07:45 +02:00
|
|
|
$content=~s/<a\s+href="(?![^:]+:\/\/)([^"]+)"/<a href="$url$1"/ig;
|
|
|
|
$content=~s/<img\s+src="(?![^:]+:\/\/)([^"]+)"/<img src="$url$1"/ig;
|
2006-05-02 04:34:33 +02:00
|
|
|
return $content;
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub rsspage ($) { #{{{
|
|
|
|
my $page=shift;
|
|
|
|
|
|
|
|
return $page.".rss";
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub genrss ($@) { #{{{
|
|
|
|
my $page=shift;
|
|
|
|
my @pages=@_;
|
|
|
|
|
2006-08-04 05:06:23 +02:00
|
|
|
my $url=URI->new(encode_utf8("$config{url}/".htmlpage($page)));
|
2006-05-02 04:34:33 +02:00
|
|
|
|
2006-07-31 02:34:18 +02:00
|
|
|
my $itemtemplate=template("rssitem.tmpl", blind_cache => 1,
|
2006-07-29 09:25:17 +02:00
|
|
|
die_on_bad_params => 0);
|
2006-07-31 02:34:18 +02:00
|
|
|
my $content="";
|
2006-05-02 04:34:33 +02:00
|
|
|
foreach my $p (@pages) {
|
2006-07-31 02:34:18 +02:00
|
|
|
next unless exists $renderedfiles{$p};
|
|
|
|
|
2006-08-04 05:06:23 +02:00
|
|
|
my $u=URI->new(encode_utf8("$config{url}/$renderedfiles{$p}"));
|
2006-08-04 03:57:32 +02:00
|
|
|
|
2006-07-31 02:34:18 +02:00
|
|
|
$itemtemplate->param(
|
|
|
|
title => pagetitle(basename($p)),
|
2006-08-04 03:57:32 +02:00
|
|
|
url => $u,
|
|
|
|
permalink => $u,
|
2006-07-31 02:34:18 +02:00
|
|
|
pubdate => date_822($pagectime{$p}),
|
|
|
|
content => absolute_urls(get_inline_content($p, $page), $url),
|
|
|
|
);
|
|
|
|
run_hooks(pagetemplate => sub {
|
|
|
|
shift->(page => $p, destpage => $page,
|
|
|
|
template => $itemtemplate);
|
|
|
|
});
|
2006-08-04 02:01:51 +02:00
|
|
|
|
2006-07-31 02:34:18 +02:00
|
|
|
$content.=$itemtemplate->output;
|
|
|
|
$itemtemplate->clear_params;
|
2006-05-02 04:34:33 +02:00
|
|
|
}
|
|
|
|
|
2006-07-31 02:34:18 +02:00
|
|
|
my $template=template("rsspage.tmpl", blind_cache => 1);
|
2006-05-02 04:34:33 +02:00
|
|
|
$template->param(
|
|
|
|
title => $config{wikiname},
|
2006-07-31 01:51:48 +02:00
|
|
|
wikiname => $config{wikiname},
|
2006-05-02 04:34:33 +02:00
|
|
|
pageurl => $url,
|
2006-07-31 02:34:18 +02:00
|
|
|
content => $content,
|
2006-05-02 04:34:33 +02:00
|
|
|
);
|
2006-07-30 02:20:11 +02:00
|
|
|
run_hooks(pagetemplate => sub {
|
|
|
|
shift->(page => $page, destpage => $page,
|
|
|
|
template => $template);
|
|
|
|
});
|
2006-07-29 09:25:17 +02:00
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
return $template->output;
|
|
|
|
} #}}}
|
|
|
|
|
2006-06-27 03:13:03 +02:00
|
|
|
sub pingurl (@) { #{{{
|
|
|
|
return unless $config{pingurl} && %toping;
|
|
|
|
|
|
|
|
eval q{require RPC::XML::Client};
|
|
|
|
if ($@) {
|
|
|
|
debug("RPC::XML::Client not found, not pinging");
|
2006-06-27 03:14:46 +02:00
|
|
|
return;
|
2006-06-27 03:13:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $page (keys %toping) {
|
|
|
|
my $title=pagetitle(basename($page));
|
|
|
|
my $url="$config{url}/".htmlpage($page);
|
|
|
|
foreach my $pingurl (@{$config{pingurl}}) {
|
|
|
|
my $client = RPC::XML::Client->new($pingurl);
|
|
|
|
my $req = RPC::XML::request->new('weblogUpdates.ping',
|
|
|
|
$title, $url);
|
|
|
|
debug("Pinging $pingurl for $page");
|
|
|
|
my $res = $client->send_request($req);
|
|
|
|
if (! ref $res) {
|
|
|
|
debug("Did not receive response to ping");
|
|
|
|
}
|
|
|
|
my $r=$res->value;
|
|
|
|
if (! exists $r->{flerror} || $r->{flerror}) {
|
|
|
|
debug("Ping rejected: ".$r->{message});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
1
|