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-08-18 05:56:18 +02:00
|
|
|
|
|
|
|
sub yesno ($) { #{{{
|
|
|
|
my $val=shift;
|
|
|
|
return (defined $val && lc($val) eq "yes");
|
|
|
|
} #}}}
|
2006-06-27 03:13:03 +02:00
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
sub preprocess_inline (@) { #{{{
|
|
|
|
my %params=@_;
|
2006-08-18 05:56:18 +02:00
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
if (! exists $params{pages}) {
|
|
|
|
return "";
|
|
|
|
}
|
2006-08-18 05:56:18 +02:00
|
|
|
my $raw=yesno($params{raw});
|
|
|
|
my $archive=yesno($params{archive});
|
|
|
|
my $rss=exists $params{rss} ? yesno($params{rss}) : 1;
|
|
|
|
if (! exists $params{show} && ! $archive) {
|
2006-05-02 04:34:33 +02:00
|
|
|
$params{show}=10;
|
|
|
|
}
|
2006-08-26 19:36:46 +02:00
|
|
|
my $desc;
|
|
|
|
if (exists $params{description}) {
|
|
|
|
$desc = $params{description}
|
|
|
|
} else {
|
|
|
|
$desc = $config{wikiname};
|
|
|
|
}
|
2006-08-28 21:43:07 +02:00
|
|
|
my $actions=yesno($params{actions});
|
2006-07-29 23:38:50 +02:00
|
|
|
|
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-18 05:56:18 +02:00
|
|
|
elsif ($config{rss} && $rss) {
|
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(
|
2006-08-18 05:56:18 +02:00
|
|
|
($archive ? "inlinepagetitle.tmpl" : "inlinepage.tmpl"),
|
2006-07-02 21:06:08 +02:00
|
|
|
blind_cache => 1,
|
2006-08-18 05:56:18 +02:00
|
|
|
) unless $raw;
|
2006-05-02 04:34:33 +02:00
|
|
|
|
2006-07-02 21:44:42 +02:00
|
|
|
foreach my $page (@list) {
|
2006-08-18 05:56:18 +02:00
|
|
|
if (! $raw) {
|
2006-08-22 19:02:01 +02:00
|
|
|
# Get the content before populating the template,
|
|
|
|
# since getting the content uses the same template
|
|
|
|
# if inlines are nested.
|
|
|
|
# TODO: if $archive=1, the only reason to do this
|
|
|
|
# is to let the meta plugin get page title info; so stop
|
|
|
|
# calling this next line then once the meta plugin can
|
|
|
|
# store that accross runs (also tags plugin).
|
|
|
|
my $content=get_inline_content($page, $params{page});
|
2006-08-18 05:56:18 +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);
|
|
|
|
$template->param(title => pagetitle(basename($page)));
|
2006-08-22 19:02:01 +02:00
|
|
|
$template->param(content => $content);
|
2006-08-18 05:56:18 +02:00
|
|
|
$template->param(ctime => displaytime($pagectime{$page}));
|
|
|
|
|
2006-08-28 21:43:07 +02:00
|
|
|
if ($actions) {
|
|
|
|
my $file = $pagesources{$page};
|
|
|
|
my $type = pagetype($file);
|
|
|
|
if ($config{discussion}) {
|
2006-08-28 21:46:00 +02:00
|
|
|
$template->param(have_actions => 1);
|
2006-08-28 21:43:07 +02:00
|
|
|
$template->param(discussionlink => htmllink($page, $page, "Discussion", 1, 1));
|
|
|
|
}
|
|
|
|
if (length $config{cgiurl} && defined $type) {
|
2006-08-28 21:46:00 +02:00
|
|
|
$template->param(have_actions => 1);
|
2006-08-28 21:43:07 +02:00
|
|
|
$template->param(editurl => cgiurl(do => "edit", page => $page));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-18 05:56:18 +02:00
|
|
|
run_hooks(pagetemplate => sub {
|
|
|
|
shift->(page => $page, destpage => $params{page},
|
|
|
|
template => $template,);
|
|
|
|
});
|
|
|
|
|
|
|
|
$ret.=$template->output;
|
|
|
|
$template->clear_params;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
my $file=$pagesources{$page};
|
|
|
|
my $type=pagetype($file);
|
|
|
|
if (defined $type) {
|
|
|
|
$ret.="\n".
|
|
|
|
linkify($page, $params{page},
|
2006-08-23 22:23:57 +02:00
|
|
|
preprocess($page, $params{page},
|
2006-08-18 05:56:18 +02:00
|
|
|
filter($page,
|
|
|
|
readfile(srcfile($file)))));
|
|
|
|
}
|
|
|
|
}
|
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-18 05:56:18 +02:00
|
|
|
if ($config{rss} && $rss) {
|
2006-05-02 04:34:33 +02:00
|
|
|
writefile(rsspage($params{page}), $config{destdir},
|
2006-08-26 19:36:46 +02:00
|
|
|
genrss($desc, $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
|
|
|
}
|
|
|
|
|
|
|
|
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-08-28 20:17:59 +02:00
|
|
|
return htmlize($page, $type,
|
2006-08-18 02:44:46 +02:00
|
|
|
linkify($page, $destpage,
|
2006-08-23 22:23:57 +02:00
|
|
|
preprocess($page, $destpage,
|
2006-08-18 02:44:46 +02:00
|
|
|
filter($page,
|
|
|
|
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";
|
|
|
|
} #}}}
|
|
|
|
|
2006-08-26 19:36:46 +02:00
|
|
|
sub genrss ($$@) { #{{{
|
|
|
|
my $desc = shift;
|
2006-05-02 04:34:33 +02:00
|
|
|
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-08-12 18:36:35 +02:00
|
|
|
my $itemtemplate=template("rssitem.tmpl", blind_cache => 1);
|
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-08-26 19:36:46 +02:00
|
|
|
rssdesc => $desc,
|
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}) {
|
2006-08-15 20:06:55 +02:00
|
|
|
debug("Ping rejected: ".(exists $r->{message} ? $r->{message} : "[unknown reason]"));
|
2006-06-27 03:13:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
1
|