2006-05-02 08:53:33 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
package IkiWiki;
|
2008-07-11 12:08:36 +02:00
|
|
|
|
2006-05-02 08:53:33 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
2006-07-03 22:18:16 +02:00
|
|
|
use Encode;
|
2006-08-02 02:14:31 +02:00
|
|
|
use HTML::Entities;
|
2007-03-08 07:25:20 +01:00
|
|
|
use URI::Escape q{uri_escape_utf8};
|
2007-04-10 03:49:16 +02:00
|
|
|
use POSIX;
|
2008-03-21 14:07:44 +01:00
|
|
|
use Storable;
|
2006-07-04 00:14:52 +02:00
|
|
|
use open qw{:utf8 :std};
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2007-03-24 16:10:58 +01:00
|
|
|
use vars qw{%config %links %oldlinks %pagemtime %pagectime %pagecase
|
2008-09-27 22:45:27 +02:00
|
|
|
%pagestate %wikistate %renderedfiles %oldrenderedfiles
|
|
|
|
%pagesources %destsources %depends %hooks %forcerebuild
|
|
|
|
$gettext_obj %loaded_plugins};
|
2006-09-10 00:50:27 +02:00
|
|
|
|
|
|
|
use Exporter q{import};
|
|
|
|
our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
|
|
|
|
bestlink htmllink readfile writefile pagetype srcfile pagename
|
2007-04-01 21:59:42 +02:00
|
|
|
displaytime will_render gettext urlto targetpage
|
2008-09-30 00:51:16 +02:00
|
|
|
add_underlay pagetitle titlepage linkpage newpagefile
|
2008-10-21 23:57:19 +02:00
|
|
|
inject
|
2008-09-27 22:45:27 +02:00
|
|
|
%config %links %pagestate %wikistate %renderedfiles
|
2007-12-08 23:40:50 +01:00
|
|
|
%pagesources %destsources);
|
2008-12-23 22:34:19 +01:00
|
|
|
our $VERSION = 3.00; # plugin interface version, next is ikiwiki version
|
2007-04-13 20:41:06 +02:00
|
|
|
our $version='unknown'; # VERSION_AUTOREPLACE done by Makefile, DNE
|
2009-01-13 00:55:56 +01:00
|
|
|
our $installdir=''; # INSTALLDIR_AUTOREPLACE done by Makefile, DNE
|
2007-04-13 20:41:06 +02:00
|
|
|
|
2006-07-04 18:34:27 +02:00
|
|
|
# Optimisation.
|
|
|
|
use Memoize;
|
|
|
|
memoize("abs2rel");
|
2006-08-02 05:39:19 +02:00
|
|
|
memoize("pagespec_translate");
|
2006-12-21 20:36:15 +01:00
|
|
|
memoize("file_pruned");
|
2006-07-04 18:34:27 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub getsetup () {
|
2008-07-26 20:39:12 +02:00
|
|
|
wikiname => {
|
|
|
|
type => "string",
|
|
|
|
default => "wiki",
|
|
|
|
description => "name of the wiki",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-08-03 23:02:00 +02:00
|
|
|
adminemail => {
|
|
|
|
type => "string",
|
|
|
|
default => undef,
|
|
|
|
example => 'me@example.com',
|
|
|
|
description => "contact email for wiki",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
adminuser => {
|
|
|
|
type => "string",
|
|
|
|
default => [],
|
|
|
|
description => "users who are wiki admins",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
banned_users => {
|
|
|
|
type => "string",
|
|
|
|
default => [],
|
|
|
|
description => "users who are banned from the wiki",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-26 20:39:12 +02:00
|
|
|
srcdir => {
|
|
|
|
type => "string",
|
|
|
|
default => undef,
|
|
|
|
example => "$ENV{HOME}/wiki",
|
|
|
|
description => "where the source of the wiki is located",
|
|
|
|
safe => 0, # path
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
destdir => {
|
|
|
|
type => "string",
|
|
|
|
default => undef,
|
|
|
|
example => "/var/www/wiki",
|
|
|
|
description => "where to build the wiki",
|
|
|
|
safe => 0, # path
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
url => {
|
|
|
|
type => "string",
|
|
|
|
default => '',
|
|
|
|
example => "http://example.com/wiki",
|
|
|
|
description => "base url to the wiki",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
cgiurl => {
|
|
|
|
type => "string",
|
|
|
|
default => '',
|
2008-07-27 03:00:11 +02:00
|
|
|
example => "http://example.com/wiki/ikiwiki.cgi",
|
2008-07-26 20:39:12 +02:00
|
|
|
description => "url to the ikiwiki.cgi",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-07-27 03:00:11 +02:00
|
|
|
cgi_wrapper => {
|
|
|
|
type => "string",
|
|
|
|
default => '',
|
|
|
|
example => "/var/www/wiki/ikiwiki.cgi",
|
2008-12-18 20:49:24 +01:00
|
|
|
description => "filename of cgi wrapper to generate",
|
2008-07-27 03:00:11 +02:00
|
|
|
safe => 0, # file
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
cgi_wrappermode => {
|
|
|
|
type => "string",
|
|
|
|
default => '06755',
|
|
|
|
description => "mode for cgi_wrapper (can safely be made suid)",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-26 20:39:12 +02:00
|
|
|
rcs => {
|
|
|
|
type => "string",
|
|
|
|
default => '',
|
|
|
|
description => "rcs backend to use",
|
|
|
|
safe => 0, # don't allow overriding
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-27 00:36:56 +02:00
|
|
|
default_plugins => {
|
|
|
|
type => "internal",
|
2008-11-06 22:08:11 +01:00
|
|
|
default => [qw{mdwn link inline meta htmlscrubber passwordauth
|
2008-07-27 00:36:56 +02:00
|
|
|
openid signinedit lockedit conditional
|
2008-09-05 19:57:25 +02:00
|
|
|
recentchanges parentlinks editpage}],
|
2008-07-27 00:36:56 +02:00
|
|
|
description => "plugins to enable by default",
|
2008-07-30 20:36:40 +02:00
|
|
|
safe => 0,
|
2008-07-27 00:36:56 +02:00
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
add_plugins => {
|
|
|
|
type => "string",
|
|
|
|
default => [],
|
|
|
|
description => "plugins to add to the default configuration",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
disable_plugins => {
|
|
|
|
type => "string",
|
|
|
|
default => [],
|
|
|
|
description => "plugins to disable",
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
templatedir => {
|
|
|
|
type => "string",
|
|
|
|
default => "$installdir/share/ikiwiki/templates",
|
|
|
|
description => "location of template files",
|
2008-08-03 20:57:24 +02:00
|
|
|
advanced => 1,
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 0, # path
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
underlaydir => {
|
|
|
|
type => "string",
|
|
|
|
default => "$installdir/share/ikiwiki/basewiki",
|
|
|
|
description => "base wiki source location",
|
2008-08-03 20:57:24 +02:00
|
|
|
advanced => 1,
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 0, # path
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-27 03:00:11 +02:00
|
|
|
wrappers => {
|
|
|
|
type => "internal",
|
|
|
|
default => [],
|
|
|
|
description => "wrappers to generate",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-26 20:39:12 +02:00
|
|
|
underlaydirs => {
|
|
|
|
type => "internal",
|
|
|
|
default => [],
|
|
|
|
description => "additional underlays to use",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
verbose => {
|
|
|
|
type => "boolean",
|
2008-08-06 01:16:24 +02:00
|
|
|
example => 1,
|
2009-01-24 19:04:59 +01:00
|
|
|
description => "display verbose messages?",
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
syslog => {
|
|
|
|
type => "boolean",
|
2008-08-06 01:16:24 +02:00
|
|
|
example => 1,
|
2008-07-26 20:43:47 +02:00
|
|
|
description => "log to syslog?",
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
usedirs => {
|
|
|
|
type => "boolean",
|
|
|
|
default => 1,
|
|
|
|
description => "create output files named page/index.html?",
|
|
|
|
safe => 0, # changing requires manual transition
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
prefix_directives => {
|
|
|
|
type => "boolean",
|
2008-12-23 22:24:43 +01:00
|
|
|
default => 1,
|
2008-07-26 20:39:12 +02:00
|
|
|
description => "use '!'-prefixed preprocessor directives?",
|
|
|
|
safe => 0, # changing requires manual transition
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-09-29 23:30:30 +02:00
|
|
|
indexpages => {
|
|
|
|
type => "boolean",
|
2008-10-01 21:55:50 +02:00
|
|
|
default => 0,
|
2008-09-29 23:30:30 +02:00
|
|
|
description => "use page/index.mdwn source files",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-07-27 00:36:56 +02:00
|
|
|
discussion => {
|
|
|
|
type => "boolean",
|
|
|
|
default => 1,
|
|
|
|
description => "enable Discussion pages?",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-08-03 23:02:00 +02:00
|
|
|
sslcookie => {
|
|
|
|
type => "boolean",
|
|
|
|
default => 0,
|
|
|
|
description => "only send cookies over SSL connections?",
|
|
|
|
advanced => 1,
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-26 20:39:12 +02:00
|
|
|
default_pageext => {
|
|
|
|
type => "string",
|
|
|
|
default => "mdwn",
|
|
|
|
description => "extension to use for new pages",
|
|
|
|
safe => 0, # not sanitized
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
htmlext => {
|
|
|
|
type => "string",
|
|
|
|
default => "html",
|
|
|
|
description => "extension to use for html files",
|
|
|
|
safe => 0, # not sanitized
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
timeformat => {
|
|
|
|
type => "string",
|
|
|
|
default => '%c',
|
|
|
|
description => "strftime format string to display date",
|
2008-08-03 20:57:24 +02:00
|
|
|
advanced => 1,
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
locale => {
|
|
|
|
type => "string",
|
|
|
|
default => undef,
|
|
|
|
example => "en_US.UTF-8",
|
|
|
|
description => "UTF-8 locale to use",
|
2008-08-03 20:57:24 +02:00
|
|
|
advanced => 1,
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 0,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
userdir => {
|
|
|
|
type => "string",
|
|
|
|
default => "",
|
|
|
|
example => "users",
|
|
|
|
description => "put user pages below specified page",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
numbacklinks => {
|
|
|
|
type => "integer",
|
|
|
|
default => 10,
|
|
|
|
description => "how many backlinks to show before hiding excess (0 to show all)",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
hardlink => {
|
|
|
|
type => "boolean",
|
|
|
|
default => 0,
|
2008-07-26 20:43:47 +02:00
|
|
|
description => "attempt to hardlink source files? (optimisation for large files)",
|
2008-08-03 20:57:24 +02:00
|
|
|
advanced => 1,
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 0, # paranoia
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-27 01:28:15 +02:00
|
|
|
umask => {
|
|
|
|
type => "integer",
|
|
|
|
example => "022",
|
|
|
|
description => "force ikiwiki to use a particular umask",
|
2008-08-03 20:57:24 +02:00
|
|
|
advanced => 1,
|
2008-07-27 01:28:15 +02:00
|
|
|
safe => 0, # paranoia
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-11-26 19:28:16 +01:00
|
|
|
wrappergroup => {
|
|
|
|
type => "string",
|
|
|
|
example => "ikiwiki",
|
|
|
|
description => "group for wrappers to run in",
|
|
|
|
advanced => 1,
|
|
|
|
safe => 0, # paranoia
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-27 01:28:15 +02:00
|
|
|
libdir => {
|
|
|
|
type => "string",
|
|
|
|
default => "",
|
|
|
|
example => "$ENV{HOME}/.ikiwiki/",
|
|
|
|
description => "extra library and plugin directory",
|
2008-08-03 20:57:24 +02:00
|
|
|
advanced => 1,
|
2008-07-27 01:28:15 +02:00
|
|
|
safe => 0, # directory
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
ENV => {
|
|
|
|
type => "string",
|
|
|
|
default => {},
|
|
|
|
description => "environment variables",
|
|
|
|
safe => 0, # paranoia
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-26 21:34:38 +02:00
|
|
|
exclude => {
|
|
|
|
type => "string",
|
|
|
|
default => undef,
|
|
|
|
example => '\.wav$',
|
|
|
|
description => "regexp of source files to ignore",
|
2008-08-03 20:57:24 +02:00
|
|
|
advanced => 1,
|
2008-07-26 21:34:38 +02:00
|
|
|
safe => 0, # regexp
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-07-26 20:39:12 +02:00
|
|
|
wiki_file_prune_regexps => {
|
|
|
|
type => "internal",
|
|
|
|
default => [qr/(^|\/)\.\.(\/|$)/, qr/^\./, qr/\/\./,
|
|
|
|
qr/\.x?html?$/, qr/\.ikiwiki-new$/,
|
|
|
|
qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//,
|
|
|
|
qr/(^|\/)_MTN\//,
|
|
|
|
qr/\.dpkg-tmp$/],
|
|
|
|
description => "regexps of source files to ignore",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-09-04 20:13:10 +02:00
|
|
|
wiki_file_chars => {
|
|
|
|
type => "string",
|
|
|
|
description => "specifies the characters that are allowed in source filenames",
|
|
|
|
default => "-[:alnum:]+/.:_",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
2008-07-26 20:39:12 +02:00
|
|
|
wiki_file_regexp => {
|
|
|
|
type => "internal",
|
|
|
|
description => "regexp of legal source files",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 1,
|
|
|
|
},
|
|
|
|
web_commit_regexp => {
|
|
|
|
type => "internal",
|
|
|
|
default => qr/^web commit (by (.*?(?=: |$))|from (\d+\.\d+\.\d+\.\d+)):?(.*)/,
|
|
|
|
description => "regexp to parse web commits from logs",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
cgi => {
|
|
|
|
type => "internal",
|
|
|
|
default => 0,
|
|
|
|
description => "run as a cgi",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
cgi_disable_uploads => {
|
|
|
|
type => "internal",
|
|
|
|
default => 1,
|
|
|
|
description => "whether CGI should accept file uploads",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
post_commit => {
|
|
|
|
type => "internal",
|
|
|
|
default => 0,
|
|
|
|
description => "run as a post-commit hook",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
rebuild => {
|
|
|
|
type => "internal",
|
|
|
|
default => 0,
|
|
|
|
description => "running in rebuild mode",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-08-06 07:58:04 +02:00
|
|
|
setup => {
|
|
|
|
type => "internal",
|
|
|
|
default => undef,
|
|
|
|
description => "running in setup mode",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-26 20:39:12 +02:00
|
|
|
refresh => {
|
|
|
|
type => "internal",
|
|
|
|
default => 0,
|
|
|
|
description => "running in refresh mode",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-10-23 02:52:34 +02:00
|
|
|
test_receive => {
|
|
|
|
type => "internal",
|
|
|
|
default => 0,
|
|
|
|
description => "running in receive test mode",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-07-26 20:39:12 +02:00
|
|
|
getctime => {
|
|
|
|
type => "internal",
|
|
|
|
default => 0,
|
|
|
|
description => "running in getctime mode",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
|
|
|
w3mmode => {
|
|
|
|
type => "internal",
|
|
|
|
default => 0,
|
|
|
|
description => "running in w3mmode",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-11-07 18:22:01 +01:00
|
|
|
wikistatedir => {
|
|
|
|
type => "internal",
|
|
|
|
default => undef,
|
|
|
|
description => "path to the .ikiwiki directory holding ikiwiki state",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-08-06 07:58:04 +02:00
|
|
|
setupfile => {
|
2008-07-26 20:39:12 +02:00
|
|
|
type => "internal",
|
|
|
|
default => undef,
|
2008-08-06 07:58:04 +02:00
|
|
|
description => "path to setup file",
|
2008-07-26 20:39:12 +02:00
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-09-09 20:50:37 +02:00
|
|
|
allow_symlinks_before_srcdir => {
|
2008-10-29 19:11:09 +01:00
|
|
|
type => "boolean",
|
2008-09-09 20:50:37 +02:00
|
|
|
default => 0,
|
|
|
|
description => "allow symlinks in the path leading to the srcdir (potentially insecure)",
|
|
|
|
safe => 0,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-26 20:39:12 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub defaultconfig () {
|
2008-07-26 20:39:12 +02:00
|
|
|
my %s=getsetup();
|
|
|
|
my @ret;
|
|
|
|
foreach my $key (keys %s) {
|
|
|
|
push @ret, $key, $s{$key}->{default};
|
|
|
|
}
|
|
|
|
use Data::Dumper;
|
|
|
|
return @ret;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-08-14 21:44:59 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub checkconfig () {
|
2006-07-29 23:04:31 +02:00
|
|
|
# locale stuff; avoid LC_ALL since it overrides everything
|
|
|
|
if (defined $ENV{LC_ALL}) {
|
|
|
|
$ENV{LANG} = $ENV{LC_ALL};
|
|
|
|
delete $ENV{LC_ALL};
|
|
|
|
}
|
|
|
|
if (defined $config{locale}) {
|
2007-01-28 03:24:43 +01:00
|
|
|
if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
|
|
|
|
$ENV{LANG}=$config{locale};
|
|
|
|
$gettext_obj=undef;
|
|
|
|
}
|
2006-07-29 23:04:31 +02:00
|
|
|
}
|
2008-09-04 20:13:10 +02:00
|
|
|
|
|
|
|
if (! defined $config{wiki_file_regexp}) {
|
|
|
|
$config{wiki_file_regexp}=qr/(^[$config{wiki_file_chars}]+$)/;
|
|
|
|
}
|
2006-07-29 23:04:31 +02:00
|
|
|
|
2008-05-16 00:20:52 +02:00
|
|
|
if (ref $config{ENV} eq 'HASH') {
|
|
|
|
foreach my $val (keys %{$config{ENV}}) {
|
|
|
|
$ENV{$val}=$config{ENV}{$val};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-07 23:00:48 +02:00
|
|
|
if ($config{w3mmode}) {
|
|
|
|
eval q{use Cwd q{abs_path}};
|
2006-11-08 22:03:33 +01:00
|
|
|
error($@) if $@;
|
2006-07-07 23:00:48 +02:00
|
|
|
$config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
|
|
|
|
$config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
|
|
|
|
$config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
|
|
|
|
unless $config{cgiurl} =~ m!file:///!;
|
|
|
|
$config{url}="file://".$config{destdir};
|
|
|
|
}
|
|
|
|
|
2006-05-02 08:53:33 +02:00
|
|
|
if ($config{cgi} && ! length $config{url}) {
|
2006-12-29 05:38:40 +01:00
|
|
|
error(gettext("Must specify url to wiki with --url when using --cgi"));
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$config{wikistatedir}="$config{srcdir}/.ikiwiki"
|
2008-11-07 18:22:01 +01:00
|
|
|
unless exists $config{wikistatedir} && defined $config{wikistatedir};
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-07-27 01:28:15 +02:00
|
|
|
if (defined $config{umask}) {
|
2007-11-27 22:46:02 +01:00
|
|
|
umask(possibly_foolish_untaint($config{umask}));
|
|
|
|
}
|
|
|
|
|
2006-07-30 02:20:11 +02:00
|
|
|
run_hooks(checkconfig => sub { shift->() });
|
2007-08-15 10:08:32 +02:00
|
|
|
|
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-07-28 07:26:49 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub listplugins () {
|
2008-07-27 01:10:11 +02:00
|
|
|
my %ret;
|
|
|
|
|
|
|
|
foreach my $dir (@INC, $config{libdir}) {
|
2008-07-28 01:20:14 +02:00
|
|
|
next unless defined $dir && length $dir;
|
2008-07-27 01:10:11 +02:00
|
|
|
foreach my $file (glob("$dir/IkiWiki/Plugin/*.pm")) {
|
|
|
|
my ($plugin)=$file=~/.*\/(.*)\.pm$/;
|
|
|
|
$ret{$plugin}=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach my $dir ($config{libdir}, "$installdir/lib/ikiwiki") {
|
2008-07-28 01:20:14 +02:00
|
|
|
next unless defined $dir && length $dir;
|
2008-07-27 01:10:11 +02:00
|
|
|
foreach my $file (glob("$dir/plugins/*")) {
|
|
|
|
$ret{basename($file)}=1 if -x $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return keys %ret;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 01:10:11 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub loadplugins () {
|
2008-07-28 01:20:14 +02:00
|
|
|
if (defined $config{libdir} && length $config{libdir}) {
|
2007-08-21 18:47:01 +02:00
|
|
|
unshift @INC, possibly_foolish_untaint($config{libdir});
|
2007-07-27 02:48:06 +02:00
|
|
|
}
|
|
|
|
|
2008-08-30 00:40:41 +02:00
|
|
|
foreach my $plugin (@{$config{default_plugins}}, @{$config{add_plugins}}) {
|
|
|
|
loadplugin($plugin);
|
|
|
|
}
|
2008-08-01 22:02:01 +02:00
|
|
|
|
|
|
|
if ($config{rcs}) {
|
|
|
|
if (exists $IkiWiki::hooks{rcs}) {
|
|
|
|
error(gettext("cannot use multiple rcs plugins"));
|
|
|
|
}
|
|
|
|
loadplugin($config{rcs});
|
|
|
|
}
|
|
|
|
if (! exists $IkiWiki::hooks{rcs}) {
|
|
|
|
loadplugin("norcs");
|
|
|
|
}
|
2007-07-27 02:48:06 +02:00
|
|
|
|
2006-07-30 09:41:26 +02:00
|
|
|
run_hooks(getopt => sub { shift->() });
|
|
|
|
if (grep /^-/, @ARGV) {
|
|
|
|
print STDERR "Unknown option: $_\n"
|
|
|
|
foreach grep /^-/, @ARGV;
|
|
|
|
usage();
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
|
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub loadplugin ($) {
|
2006-11-22 03:28:42 +01:00
|
|
|
my $plugin=shift;
|
|
|
|
|
2006-12-29 05:49:55 +01:00
|
|
|
return if grep { $_ eq $plugin} @{$config{disable_plugins}};
|
|
|
|
|
2007-08-21 21:51:05 +02:00
|
|
|
foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef,
|
2007-08-21 18:47:01 +02:00
|
|
|
"$installdir/lib/ikiwiki") {
|
2007-08-13 05:07:31 +02:00
|
|
|
if (defined $dir && -x "$dir/plugins/$plugin") {
|
2008-09-11 07:41:55 +02:00
|
|
|
eval { require IkiWiki::Plugin::external };
|
|
|
|
if ($@) {
|
|
|
|
my $reason=$@;
|
|
|
|
error(sprintf(gettext("failed to load external plugin needed for %s plugin: %s"), $plugin, $reason));
|
|
|
|
}
|
2007-08-13 05:07:31 +02:00
|
|
|
import IkiWiki::Plugin::external "$dir/plugins/$plugin";
|
2008-08-02 22:40:46 +02:00
|
|
|
$loaded_plugins{$plugin}=1;
|
2007-08-13 05:07:31 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-22 03:28:42 +01:00
|
|
|
my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
|
|
|
|
eval qq{use $mod};
|
|
|
|
if ($@) {
|
|
|
|
error("Failed to load plugin $mod: $@");
|
|
|
|
}
|
2008-08-02 22:40:46 +02:00
|
|
|
$loaded_plugins{$plugin}=1;
|
2007-08-13 05:07:31 +02:00
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-11-22 03:28:42 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub error ($;$) {
|
2007-02-15 03:22:08 +01:00
|
|
|
my $message=shift;
|
|
|
|
my $cleaner=shift;
|
2007-04-10 01:09:43 +02:00
|
|
|
log_message('err' => $message) if $config{syslog};
|
2007-02-15 03:22:08 +01:00
|
|
|
if (defined $cleaner) {
|
|
|
|
$cleaner->();
|
|
|
|
}
|
|
|
|
die $message."\n";
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub debug ($) {
|
2006-05-02 08:53:33 +02:00
|
|
|
return unless $config{verbose};
|
2007-08-15 10:08:32 +02:00
|
|
|
return log_message(debug => @_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-16 23:17:49 +02:00
|
|
|
|
|
|
|
my $log_open=0;
|
2008-12-17 21:22:16 +01:00
|
|
|
sub log_message ($$) {
|
2006-08-16 23:17:49 +02:00
|
|
|
my $type=shift;
|
|
|
|
|
|
|
|
if ($config{syslog}) {
|
|
|
|
require Sys::Syslog;
|
2007-08-15 10:08:32 +02:00
|
|
|
if (! $log_open) {
|
2006-08-16 23:17:49 +02:00
|
|
|
Sys::Syslog::setlogsock('unix');
|
|
|
|
Sys::Syslog::openlog('ikiwiki', '', 'user');
|
|
|
|
$log_open=1;
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
return eval {
|
2007-04-27 19:48:11 +02:00
|
|
|
Sys::Syslog::syslog($type, "[$config{wikiname}] %s", join(" ", @_));
|
2007-04-10 01:09:43 +02:00
|
|
|
};
|
2006-08-16 23:17:49 +02:00
|
|
|
}
|
|
|
|
elsif (! $config{cgi}) {
|
2007-08-15 10:08:32 +02:00
|
|
|
return print "@_\n";
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-08-15 10:08:32 +02:00
|
|
|
return print STDERR "@_\n";
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub possibly_foolish_untaint ($) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $tainted=shift;
|
2007-06-03 18:24:22 +02:00
|
|
|
my ($untainted)=$tainted=~/(.*)/s;
|
2006-05-02 08:53:33 +02:00
|
|
|
return $untainted;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub basename ($) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $file=shift;
|
|
|
|
|
|
|
|
$file=~s!.*/+!!;
|
|
|
|
return $file;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub dirname ($) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $file=shift;
|
|
|
|
|
|
|
|
$file=~s!/*[^/]+$!!;
|
|
|
|
return $file;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2009-02-20 00:38:45 +01:00
|
|
|
sub isinternal ($) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $page=shift;
|
2009-02-20 00:38:45 +01:00
|
|
|
return exists $pagesources{$page} &&
|
|
|
|
$pagesources{$page} =~ /\._([^.]+)$/;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub pagetype ($) {
|
|
|
|
my $file=shift;
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2009-02-20 00:38:45 +01:00
|
|
|
if ($file =~ /\.([^.]+)$/) {
|
2006-07-04 00:08:04 +02:00
|
|
|
return $1 if exists $hooks{htmlize}{$1};
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
2009-02-20 00:38:45 +01:00
|
|
|
elsif ($hooks{htmlize}{basename($file)}{noextension}) {
|
|
|
|
return basename($file);
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
return;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub pagename ($) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $file=shift;
|
|
|
|
|
|
|
|
my $type=pagetype($file);
|
|
|
|
my $page=$file;
|
2009-02-20 00:38:45 +01:00
|
|
|
$page=~s/\Q.$type\E*$//
|
|
|
|
if defined $type && !$hooks{htmlize}{$type}{keepextension}
|
|
|
|
&& !$hooks{htmlize}{$type}{noextension};
|
2008-09-29 23:30:30 +02:00
|
|
|
if ($config{indexpages} && $page=~/(.*)\/index$/) {
|
|
|
|
$page=$1;
|
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
return $page;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub newpagefile ($$) {
|
2008-09-30 00:51:16 +02:00
|
|
|
my $page=shift;
|
|
|
|
my $type=shift;
|
|
|
|
|
|
|
|
if (! $config{indexpages} || $page eq 'index') {
|
|
|
|
return $page.".".$type;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return $page."/index.".$type;
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-09-30 00:51:16 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub targetpage ($$;$) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $page=shift;
|
2007-04-01 21:59:42 +02:00
|
|
|
my $ext=shift;
|
2008-12-11 21:01:26 +01:00
|
|
|
my $filename=shift;
|
2007-04-01 21:59:42 +02:00
|
|
|
|
2008-12-11 21:01:26 +01:00
|
|
|
if (defined $filename) {
|
|
|
|
return $page."/".$filename.".".$ext;
|
|
|
|
}
|
|
|
|
elsif (! $config{usedirs} || $page eq 'index') {
|
2007-04-01 21:59:42 +02:00
|
|
|
return $page.".".$ext;
|
2008-09-30 00:51:16 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-04-01 21:59:42 +02:00
|
|
|
return $page."/index.".$ext;
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub htmlpage ($) {
|
2007-04-01 21:59:42 +02:00
|
|
|
my $page=shift;
|
|
|
|
|
2007-07-25 03:16:53 +02:00
|
|
|
return targetpage($page, $config{htmlext});
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub srcfile_stat {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $file=shift;
|
2008-05-02 19:02:07 +02:00
|
|
|
my $nothrow=shift;
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-05-07 20:11:56 +02:00
|
|
|
return "$config{srcdir}/$file", stat(_) if -e "$config{srcdir}/$file";
|
2007-08-28 03:59:01 +02:00
|
|
|
foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
|
2008-05-07 20:11:56 +02:00
|
|
|
return "$dir/$file", stat(_) if -e "$dir/$file";
|
2007-08-28 03:59:01 +02:00
|
|
|
}
|
2008-05-02 19:02:07 +02:00
|
|
|
error("internal error: $file cannot be found in $config{srcdir} or underlay") unless $nothrow;
|
2007-08-15 10:08:32 +02:00
|
|
|
return;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub srcfile ($;$) {
|
2008-05-07 20:11:56 +02:00
|
|
|
return (srcfile_stat(@_))[0];
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-05-07 20:11:56 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub add_underlay ($) {
|
2007-08-28 03:59:01 +02:00
|
|
|
my $dir=shift;
|
|
|
|
|
2008-10-18 01:53:04 +02:00
|
|
|
if ($dir !~ /^\//) {
|
|
|
|
$dir="$config{underlaydir}/../$dir";
|
2007-08-28 03:59:01 +02:00
|
|
|
}
|
2008-10-18 01:53:04 +02:00
|
|
|
|
|
|
|
if (! grep { $_ eq $dir } @{$config{underlaydirs}}) {
|
|
|
|
unshift @{$config{underlaydirs}}, $dir;
|
2007-08-28 03:59:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-08-28 03:59:01 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub readfile ($;$$) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $file=shift;
|
|
|
|
my $binary=shift;
|
2007-02-03 04:27:33 +01:00
|
|
|
my $wantfd=shift;
|
2006-05-02 08:53:33 +02:00
|
|
|
|
|
|
|
if (-l $file) {
|
|
|
|
error("cannot read a symlink ($file)");
|
|
|
|
}
|
|
|
|
|
|
|
|
local $/=undef;
|
2007-08-15 10:08:32 +02:00
|
|
|
open (my $in, "<", $file) || error("failed to read $file: $!");
|
2007-08-14 07:47:29 +02:00
|
|
|
binmode($in) if ($binary);
|
|
|
|
return \*$in if $wantfd;
|
|
|
|
my $ret=<$in>;
|
check for invalid utf-8, and toss it back to avoid crashes
Since ikiwiki uses open :utf8, perl assumes that files contain valid utf-8.
If it turns out to be malformed it may later crash while processing strings
read from them, with 'Malformed UTF-8 character (fatal)'.
As at least a quick fix, use utf8::valid as soon as data is read, and if
it's not valid, call encode_utf8 on the string, thus clearing the utf-8
flag. This may cause follow-on encoding problems, but will avoid this
crash, and the input file was broken anyway, so GIGO is a reasonable
response. (I looked at calling decode_utf8 after, but it seemed to cause
more trouble than it was worth. BTW, use open ':encoding(utf8)' avaoids
this problem, but the corrupted data later causes Storable to crash when
writing the index.)
This is a quick fix, clearly imperfect:
- It might be better to explicitly call decode_utf8 when reading files,
rather than using the IO layer.
- Data read other than by readfile() can still sneak in bad utf-8. While
ikiwiki does very little file input not using it, stdin for the CGI
would be one way.
2008-11-12 23:19:41 +01:00
|
|
|
# check for invalid utf-8, and toss it back to avoid crashes
|
|
|
|
if (! utf8::valid($ret)) {
|
|
|
|
$ret=encode_utf8($ret);
|
|
|
|
}
|
2007-08-14 07:47:29 +02:00
|
|
|
close $in || error("failed to read $file: $!");
|
2006-05-02 08:53:33 +02:00
|
|
|
return $ret;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub prep_writefile ($$) {
|
2008-03-30 03:02:47 +02:00
|
|
|
my $file=shift;
|
|
|
|
my $destdir=shift;
|
2006-05-02 08:53:33 +02:00
|
|
|
|
|
|
|
my $test=$file;
|
|
|
|
while (length $test) {
|
|
|
|
if (-l "$destdir/$test") {
|
|
|
|
error("cannot write to a symlink ($test)");
|
|
|
|
}
|
|
|
|
$test=dirname($test);
|
|
|
|
}
|
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
my $dir=dirname("$destdir/$file");
|
2006-05-02 08:53:33 +02:00
|
|
|
if (! -d $dir) {
|
|
|
|
my $d="";
|
|
|
|
foreach my $s (split(m!/+!, $dir)) {
|
|
|
|
$d.="$s/";
|
|
|
|
if (! -d $d) {
|
|
|
|
mkdir($d) || error("failed to create directory $d: $!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-02-15 03:22:08 +01:00
|
|
|
|
2008-03-30 03:02:47 +02:00
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-03-30 03:02:47 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub writefile ($$$;$$) {
|
2008-03-30 03:02:47 +02:00
|
|
|
my $file=shift; # can include subdirs
|
|
|
|
my $destdir=shift; # directory to put file in
|
|
|
|
my $content=shift;
|
|
|
|
my $binary=shift;
|
|
|
|
my $writer=shift;
|
|
|
|
|
|
|
|
prep_writefile($file, $destdir);
|
|
|
|
|
|
|
|
my $newfile="$destdir/$file.ikiwiki-new";
|
|
|
|
if (-l $newfile) {
|
|
|
|
error("cannot write to a symlink ($newfile)");
|
|
|
|
}
|
|
|
|
|
2007-02-15 03:22:08 +01:00
|
|
|
my $cleanup = sub { unlink($newfile) };
|
2007-08-14 07:47:29 +02:00
|
|
|
open (my $out, '>', $newfile) || error("failed to write $newfile: $!", $cleanup);
|
|
|
|
binmode($out) if ($binary);
|
2007-02-15 03:22:08 +01:00
|
|
|
if ($writer) {
|
2007-08-14 07:47:29 +02:00
|
|
|
$writer->(\*$out, $cleanup);
|
2007-02-15 03:22:08 +01:00
|
|
|
}
|
|
|
|
else {
|
2007-08-14 07:47:29 +02:00
|
|
|
print $out $content or error("failed writing to $newfile: $!", $cleanup);
|
2007-02-15 03:22:08 +01:00
|
|
|
}
|
2007-08-14 07:47:29 +02:00
|
|
|
close $out || error("failed saving $newfile: $!", $cleanup);
|
2007-02-15 03:22:08 +01:00
|
|
|
rename($newfile, "$destdir/$file") ||
|
|
|
|
error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
|
2007-08-15 10:08:32 +02:00
|
|
|
|
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2006-10-16 20:51:13 +02:00
|
|
|
my %cleared;
|
2008-12-17 21:22:16 +01:00
|
|
|
sub will_render ($$;$) {
|
2006-10-08 23:56:50 +02:00
|
|
|
my $page=shift;
|
|
|
|
my $dest=shift;
|
|
|
|
my $clear=shift;
|
|
|
|
|
|
|
|
# Important security check.
|
|
|
|
if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
|
2008-09-27 23:04:25 +02:00
|
|
|
! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}}, @{$wikistate{editpage}{previews}})) {
|
2006-10-08 23:56:50 +02:00
|
|
|
error("$config{destdir}/$dest independently created, not overwriting with version from $page");
|
|
|
|
}
|
|
|
|
|
2006-10-16 20:51:13 +02:00
|
|
|
if (! $clear || $cleared{$page}) {
|
2006-10-08 23:56:50 +02:00
|
|
|
$renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
|
|
|
|
}
|
|
|
|
else {
|
2007-04-10 03:18:03 +02:00
|
|
|
foreach my $old (@{$renderedfiles{$page}}) {
|
|
|
|
delete $destsources{$old};
|
|
|
|
}
|
2006-10-08 23:56:50 +02:00
|
|
|
$renderedfiles{$page}=[$dest];
|
2006-10-16 20:51:13 +02:00
|
|
|
$cleared{$page}=1;
|
2006-10-08 23:56:50 +02:00
|
|
|
}
|
2007-04-10 03:18:03 +02:00
|
|
|
$destsources{$dest}=$page;
|
2007-08-15 10:08:32 +02:00
|
|
|
|
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-10-08 23:56:50 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub bestlink ($$) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $page=shift;
|
2006-08-13 04:03:43 +02:00
|
|
|
my $link=shift;
|
2006-05-02 08:53:33 +02:00
|
|
|
|
|
|
|
my $cwd=$page;
|
2006-12-21 23:15:11 +01:00
|
|
|
if ($link=~s/^\/+//) {
|
|
|
|
# absolute links
|
|
|
|
$cwd="";
|
2006-12-21 21:11:18 +01:00
|
|
|
}
|
2007-11-17 22:32:02 +01:00
|
|
|
$link=~s/\/$//;
|
2006-12-21 21:11:18 +01:00
|
|
|
|
2006-05-02 08:53:33 +02:00
|
|
|
do {
|
|
|
|
my $l=$cwd;
|
|
|
|
$l.="/" if length $l;
|
|
|
|
$l.=$link;
|
|
|
|
|
|
|
|
if (exists $links{$l}) {
|
|
|
|
return $l;
|
|
|
|
}
|
2006-08-13 04:03:43 +02:00
|
|
|
elsif (exists $pagecase{lc $l}) {
|
|
|
|
return $pagecase{lc $l};
|
|
|
|
}
|
2008-09-04 20:13:10 +02:00
|
|
|
} while $cwd=~s{/?[^/]+$}{};
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2007-04-27 11:11:14 +02:00
|
|
|
if (length $config{userdir}) {
|
|
|
|
my $l = "$config{userdir}/".lc($link);
|
|
|
|
if (exists $links{$l}) {
|
|
|
|
return $l;
|
|
|
|
}
|
|
|
|
elsif (exists $pagecase{lc $l}) {
|
|
|
|
return $pagecase{lc $l};
|
|
|
|
}
|
2006-12-29 06:33:20 +01:00
|
|
|
}
|
|
|
|
|
2006-05-02 08:53:33 +02:00
|
|
|
#print STDERR "warning: page $page, broken link: $link\n";
|
|
|
|
return "";
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub isinlinableimage ($) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $file=shift;
|
|
|
|
|
2007-08-15 10:08:32 +02:00
|
|
|
return $file =~ /\.(png|gif|jpg|jpeg)$/i;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub pagetitle ($;$) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $page=shift;
|
2006-12-21 22:52:06 +01:00
|
|
|
my $unescaped=shift;
|
|
|
|
|
|
|
|
if ($unescaped) {
|
2007-03-02 01:37:22 +01:00
|
|
|
$page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
|
2006-12-21 22:52:06 +01:00
|
|
|
}
|
|
|
|
else {
|
2007-03-02 01:37:22 +01:00
|
|
|
$page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
|
2006-12-21 22:52:06 +01:00
|
|
|
}
|
|
|
|
|
2006-05-02 08:53:33 +02:00
|
|
|
return $page;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub titlepage ($) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $title=shift;
|
2008-09-04 20:13:10 +02:00
|
|
|
# support use w/o %config set
|
|
|
|
my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
|
|
|
|
$title=~s/([^$chars]|_)/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
|
2006-05-02 08:53:33 +02:00
|
|
|
return $title;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub linkpage ($) {
|
2007-03-07 10:48:59 +01:00
|
|
|
my $link=shift;
|
2008-09-04 20:13:10 +02:00
|
|
|
my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
|
|
|
|
$link=~s/([^$chars])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
|
2007-03-07 10:48:59 +01:00
|
|
|
return $link;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-03-07 10:48:59 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub cgiurl (@) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my %params=@_;
|
|
|
|
|
2007-03-08 07:03:59 +01:00
|
|
|
return $config{cgiurl}."?".
|
2007-03-08 07:25:20 +01:00
|
|
|
join("&", map $_."=".uri_escape_utf8($params{$_}), keys %params);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub baseurl (;$) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $page=shift;
|
|
|
|
|
2006-08-22 00:27:02 +02:00
|
|
|
return "$config{url}/" if ! defined $page;
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2007-04-01 21:59:42 +02:00
|
|
|
$page=htmlpage($page);
|
2006-05-02 08:53:33 +02:00
|
|
|
$page=~s/[^\/]+$//;
|
|
|
|
$page=~s/[^\/]+\//..\//g;
|
2006-08-22 00:27:02 +02:00
|
|
|
return $page;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub abs2rel ($$) {
|
2006-07-04 05:42:19 +02:00
|
|
|
# Work around very innefficient behavior in File::Spec if abs2rel
|
|
|
|
# is passed two relative paths. It's much faster if paths are
|
2006-12-07 05:56:06 +01:00
|
|
|
# absolute! (Debian bug #376658; fixed in debian unstable now)
|
2006-07-04 05:42:19 +02:00
|
|
|
my $path="/".shift;
|
|
|
|
my $base="/".shift;
|
|
|
|
|
|
|
|
require File::Spec;
|
|
|
|
my $ret=File::Spec->abs2rel($path, $base);
|
|
|
|
$ret=~s/^// if defined $ret;
|
|
|
|
return $ret;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-07-04 05:42:19 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub displaytime ($;$) {
|
2008-10-21 23:57:19 +02:00
|
|
|
# Plugins can override this function to mark up the time to
|
|
|
|
# display.
|
|
|
|
return '<span class="date">'.formattime(@_).'</span>';
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-20 01:13:40 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub formattime ($;$) {
|
2008-10-21 23:57:19 +02:00
|
|
|
# Plugins can override this function to format the time.
|
2006-09-10 00:50:27 +02:00
|
|
|
my $time=shift;
|
2007-11-13 22:14:48 +01:00
|
|
|
my $format=shift;
|
|
|
|
if (! defined $format) {
|
|
|
|
$format=$config{timeformat};
|
|
|
|
}
|
2006-09-10 00:50:27 +02:00
|
|
|
|
|
|
|
# strftime doesn't know about encodings, so make sure
|
|
|
|
# its output is properly treated as utf8
|
2007-11-13 22:14:48 +01:00
|
|
|
return decode_utf8(POSIX::strftime($format, localtime($time)));
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-10 00:50:27 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub beautify_urlpath ($) {
|
2007-04-01 21:59:42 +02:00
|
|
|
my $url=shift;
|
|
|
|
|
2008-11-20 18:55:57 +01:00
|
|
|
# Ensure url is not an empty link, and if necessary,
|
|
|
|
# add ./ to avoid colon confusion.
|
2008-12-21 16:24:42 +01:00
|
|
|
if ($url !~ /^\// && $url !~ /^\.\.?\//) {
|
2008-07-11 16:31:08 +02:00
|
|
|
$url="./$url";
|
|
|
|
}
|
2007-04-01 21:59:42 +02:00
|
|
|
|
2008-12-21 16:23:59 +01:00
|
|
|
if ($config{usedirs}) {
|
|
|
|
$url =~ s!/index.$config{htmlext}$!/!;
|
|
|
|
}
|
|
|
|
|
2007-04-01 21:59:42 +02:00
|
|
|
return $url;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-04-01 21:59:42 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub urlto ($$;$) {
|
2007-04-01 21:59:42 +02:00
|
|
|
my $to=shift;
|
|
|
|
my $from=shift;
|
2008-07-25 22:16:44 +02:00
|
|
|
my $absolute=shift;
|
|
|
|
|
2007-04-01 21:59:42 +02:00
|
|
|
if (! length $to) {
|
2008-07-11 16:33:41 +02:00
|
|
|
return beautify_urlpath(baseurl($from)."index.$config{htmlext}");
|
2007-04-01 21:59:42 +02:00
|
|
|
}
|
|
|
|
|
2007-04-10 03:18:03 +02:00
|
|
|
if (! $destsources{$to}) {
|
2007-04-01 21:59:42 +02:00
|
|
|
$to=htmlpage($to);
|
|
|
|
}
|
|
|
|
|
2008-07-25 22:16:44 +02:00
|
|
|
if ($absolute) {
|
|
|
|
return $config{url}.beautify_urlpath("/".$to);
|
|
|
|
}
|
|
|
|
|
2007-04-01 21:59:42 +02:00
|
|
|
my $link = abs2rel($to, dirname(htmlpage($from)));
|
|
|
|
|
2008-07-11 16:33:41 +02:00
|
|
|
return beautify_urlpath($link);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-04-01 21:59:42 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub htmllink ($$$;@) {
|
2006-05-26 18:11:53 +02:00
|
|
|
my $lpage=shift; # the page doing the linking
|
|
|
|
my $page=shift; # the page that will contain the link (different for inline)
|
2006-05-02 08:53:33 +02:00
|
|
|
my $link=shift;
|
2007-02-20 04:05:47 +01:00
|
|
|
my %opts=@_;
|
2007-11-17 22:32:02 +01:00
|
|
|
|
2007-11-17 22:26:34 +01:00
|
|
|
$link=~s/\/$//;
|
2006-05-02 08:53:33 +02:00
|
|
|
|
|
|
|
my $bestlink;
|
2007-02-20 04:05:47 +01:00
|
|
|
if (! $opts{forcesubpage}) {
|
2006-05-26 18:11:53 +02:00
|
|
|
$bestlink=bestlink($lpage, $link);
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
|
|
|
else {
|
2006-05-26 18:11:53 +02:00
|
|
|
$bestlink="$lpage/".lc($link);
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
|
|
|
|
2007-02-20 04:05:47 +01:00
|
|
|
my $linktext;
|
|
|
|
if (defined $opts{linktext}) {
|
|
|
|
$linktext=$opts{linktext};
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$linktext=pagetitle(basename($link));
|
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2006-08-18 02:24:22 +02:00
|
|
|
return "<span class=\"selflink\">$linktext</span>"
|
2007-11-18 01:58:17 +01:00
|
|
|
if length $bestlink && $page eq $bestlink &&
|
|
|
|
! defined $opts{anchor};
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2007-04-10 03:18:03 +02:00
|
|
|
if (! $destsources{$bestlink}) {
|
2006-05-02 08:53:33 +02:00
|
|
|
$bestlink=htmlpage($bestlink);
|
2007-04-10 03:18:03 +02:00
|
|
|
|
|
|
|
if (! $destsources{$bestlink}) {
|
|
|
|
return $linktext unless length $config{cgiurl};
|
2007-10-14 01:08:38 +02:00
|
|
|
return "<span class=\"createlink\"><a href=\"".
|
2007-04-10 03:18:03 +02:00
|
|
|
cgiurl(
|
|
|
|
do => "create",
|
2008-07-06 21:52:04 +02:00
|
|
|
page => lc($link),
|
2007-04-10 03:18:03 +02:00
|
|
|
from => $lpage
|
|
|
|
).
|
2008-05-28 09:09:04 +02:00
|
|
|
"\" rel=\"nofollow\">?</a>$linktext</span>"
|
2007-04-10 03:18:03 +02:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
|
|
|
|
2007-04-01 21:59:42 +02:00
|
|
|
$bestlink=abs2rel($bestlink, dirname(htmlpage($page)));
|
2008-07-11 16:33:41 +02:00
|
|
|
$bestlink=beautify_urlpath($bestlink);
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2007-02-20 04:05:47 +01:00
|
|
|
if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
|
2006-05-02 08:53:33 +02:00
|
|
|
return "<img src=\"$bestlink\" alt=\"$linktext\" />";
|
|
|
|
}
|
2007-02-20 02:49:52 +01:00
|
|
|
|
2007-02-20 04:05:47 +01:00
|
|
|
if (defined $opts{anchor}) {
|
|
|
|
$bestlink.="#".$opts{anchor};
|
|
|
|
}
|
|
|
|
|
2007-08-05 22:48:13 +02:00
|
|
|
my @attrs;
|
|
|
|
if (defined $opts{rel}) {
|
|
|
|
push @attrs, ' rel="'.$opts{rel}.'"';
|
|
|
|
}
|
2007-09-22 18:32:24 +02:00
|
|
|
if (defined $opts{class}) {
|
|
|
|
push @attrs, ' class="'.$opts{class}.'"';
|
|
|
|
}
|
2007-08-05 22:48:13 +02:00
|
|
|
|
|
|
|
return "<a href=\"$bestlink\"@attrs>$linktext</a>";
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub userlink ($) {
|
2008-01-29 07:48:55 +01:00
|
|
|
my $user=shift;
|
|
|
|
|
2008-01-30 08:39:17 +01:00
|
|
|
my $oiduser=eval { openiduser($user) };
|
2008-01-29 07:48:55 +01:00
|
|
|
if (defined $oiduser) {
|
|
|
|
return "<a href=\"$user\">$oiduser</a>";
|
2008-01-29 04:58:31 +01:00
|
|
|
}
|
|
|
|
else {
|
2008-04-10 23:39:51 +02:00
|
|
|
eval q{use CGI 'escapeHTML'};
|
|
|
|
error($@) if $@;
|
|
|
|
|
2008-01-29 07:48:55 +01:00
|
|
|
return htmllink("", "", escapeHTML(
|
|
|
|
length $config{userdir} ? $config{userdir}."/".$user : $user
|
|
|
|
), noimageinline => 1);
|
2008-01-29 04:58:31 +01:00
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-01-29 04:58:31 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub htmlize ($$$$) {
|
2006-09-10 00:50:27 +02:00
|
|
|
my $page=shift;
|
2008-06-04 07:24:23 +02:00
|
|
|
my $destpage=shift;
|
2006-09-10 00:50:27 +02:00
|
|
|
my $type=shift;
|
|
|
|
my $content=shift;
|
2008-01-09 20:45:07 +01:00
|
|
|
|
|
|
|
my $oneline = $content !~ /\n/;
|
2006-09-10 00:50:27 +02:00
|
|
|
|
|
|
|
if (exists $hooks{htmlize}{$type}) {
|
|
|
|
$content=$hooks{htmlize}{$type}{call}->(
|
|
|
|
page => $page,
|
|
|
|
content => $content,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
error("htmlization of $type not supported");
|
|
|
|
}
|
|
|
|
|
|
|
|
run_hooks(sanitize => sub {
|
|
|
|
$content=shift->(
|
|
|
|
page => $page,
|
2008-06-04 07:24:23 +02:00
|
|
|
destpage => $destpage,
|
2006-09-10 00:50:27 +02:00
|
|
|
content => $content,
|
|
|
|
);
|
|
|
|
});
|
2008-01-09 20:41:28 +01:00
|
|
|
|
|
|
|
if ($oneline) {
|
|
|
|
# hack to get rid of enclosing junk added by markdown
|
|
|
|
# and other htmlizers
|
|
|
|
$content=~s/^<p>//i;
|
|
|
|
$content=~s/<\/p>$//i;
|
|
|
|
chomp $content;
|
|
|
|
}
|
2006-09-10 00:50:27 +02:00
|
|
|
|
|
|
|
return $content;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-10 00:50:27 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub linkify ($$$) {
|
2008-02-12 04:48:27 +01:00
|
|
|
my $page=shift;
|
|
|
|
my $destpage=shift;
|
2006-09-10 00:50:27 +02:00
|
|
|
my $content=shift;
|
|
|
|
|
2008-02-12 04:48:27 +01:00
|
|
|
run_hooks(linkify => sub {
|
|
|
|
$content=shift->(
|
|
|
|
page => $page,
|
2008-02-24 21:58:20 +01:00
|
|
|
destpage => $destpage,
|
2008-02-12 04:48:27 +01:00
|
|
|
content => $content,
|
|
|
|
);
|
|
|
|
});
|
2006-09-10 00:50:27 +02:00
|
|
|
|
|
|
|
return $content;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-10 00:50:27 +02:00
|
|
|
|
2008-06-04 06:58:46 +02:00
|
|
|
our %preprocessing;
|
2007-03-06 23:37:05 +01:00
|
|
|
our $preprocess_preview=0;
|
2008-12-17 21:22:16 +01:00
|
|
|
sub preprocess ($$$;$$) {
|
2006-09-10 00:50:27 +02:00
|
|
|
my $page=shift; # the page the data comes from
|
|
|
|
my $destpage=shift; # the page the data will appear in (different for inline)
|
|
|
|
my $content=shift;
|
2006-10-28 07:07:56 +02:00
|
|
|
my $scan=shift;
|
2007-03-06 23:37:05 +01:00
|
|
|
my $preview=shift;
|
|
|
|
|
|
|
|
# Using local because it needs to be set within any nested calls
|
|
|
|
# of this function.
|
|
|
|
local $preprocess_preview=$preview if defined $preview;
|
2006-09-10 00:50:27 +02:00
|
|
|
|
|
|
|
my $handle=sub {
|
|
|
|
my $escape=shift;
|
2008-01-28 01:13:54 +01:00
|
|
|
my $prefix=shift;
|
2006-09-10 00:50:27 +02:00
|
|
|
my $command=shift;
|
|
|
|
my $params=shift;
|
2008-08-04 20:58:21 +02:00
|
|
|
$params="" if ! defined $params;
|
|
|
|
|
2008-08-06 01:39:50 +02:00
|
|
|
if (length $escape) {
|
2008-01-28 01:13:54 +01:00
|
|
|
return "[[$prefix$command $params]]";
|
2006-09-10 00:50:27 +02:00
|
|
|
}
|
|
|
|
elsif (exists $hooks{preprocess}{$command}) {
|
2006-10-28 07:07:56 +02:00
|
|
|
return "" if $scan && ! $hooks{preprocess}{$command}{scan};
|
2006-09-10 00:50:27 +02:00
|
|
|
# Note: preserve order of params, some plugins may
|
|
|
|
# consider it significant.
|
|
|
|
my @params;
|
2007-06-02 01:40:43 +02:00
|
|
|
while ($params =~ m{
|
2007-12-12 22:13:15 +01:00
|
|
|
(?:([-\w]+)=)? # 1: named parameter key?
|
2007-06-02 01:40:43 +02:00
|
|
|
(?:
|
|
|
|
"""(.*?)""" # 2: triple-quoted value
|
|
|
|
|
|
|
|
|
"([^"]+)" # 3: single-quoted value
|
|
|
|
|
|
|
|
|
(\S+) # 4: unquoted value
|
|
|
|
)
|
|
|
|
(?:\s+|$) # delimiter to next param
|
|
|
|
}sgx) {
|
2006-09-10 00:50:27 +02:00
|
|
|
my $key=$1;
|
|
|
|
my $val;
|
|
|
|
if (defined $2) {
|
|
|
|
$val=$2;
|
|
|
|
$val=~s/\r\n/\n/mg;
|
|
|
|
$val=~s/^\n+//g;
|
|
|
|
$val=~s/\n+$//g;
|
|
|
|
}
|
|
|
|
elsif (defined $3) {
|
|
|
|
$val=$3;
|
|
|
|
}
|
|
|
|
elsif (defined $4) {
|
|
|
|
$val=$4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defined $key) {
|
|
|
|
push @params, $key, $val;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
push @params, $val, '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($preprocessing{$page}++ > 3) {
|
|
|
|
# Avoid loops of preprocessed pages preprocessing
|
|
|
|
# other pages that preprocess them, etc.
|
2008-07-26 23:53:03 +02:00
|
|
|
return "[[!$command <span class=\"error\">".
|
|
|
|
sprintf(gettext("preprocessing loop detected on %s at depth %i"),
|
|
|
|
$page, $preprocessing{$page}).
|
|
|
|
"</span>]]";
|
2006-09-10 00:50:27 +02:00
|
|
|
}
|
2008-01-09 08:30:46 +01:00
|
|
|
my $ret;
|
|
|
|
if (! $scan) {
|
2008-07-13 20:41:40 +02:00
|
|
|
$ret=eval {
|
|
|
|
$hooks{preprocess}{$command}{call}->(
|
|
|
|
@params,
|
|
|
|
page => $page,
|
|
|
|
destpage => $destpage,
|
|
|
|
preview => $preprocess_preview,
|
|
|
|
);
|
|
|
|
};
|
|
|
|
if ($@) {
|
|
|
|
chomp $@;
|
|
|
|
$ret="[[!$command <span class=\"error\">".
|
|
|
|
gettext("Error").": $@"."</span>]]";
|
|
|
|
}
|
2008-01-09 08:30:46 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
# use void context during scan pass
|
2008-07-13 20:41:40 +02:00
|
|
|
eval {
|
|
|
|
$hooks{preprocess}{$command}{call}->(
|
|
|
|
@params,
|
|
|
|
page => $page,
|
|
|
|
destpage => $destpage,
|
|
|
|
preview => $preprocess_preview,
|
|
|
|
);
|
|
|
|
};
|
2008-01-09 08:30:46 +01:00
|
|
|
$ret="";
|
|
|
|
}
|
2006-09-10 00:50:27 +02:00
|
|
|
$preprocessing{$page}--;
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
else {
|
2008-01-28 01:13:54 +01:00
|
|
|
return "[[$prefix$command $params]]";
|
2006-09-10 00:50:27 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-01-28 01:13:54 +01:00
|
|
|
my $regex;
|
|
|
|
if ($config{prefix_directives}) {
|
|
|
|
$regex = qr{
|
|
|
|
(\\?) # 1: escape?
|
|
|
|
\[\[(!) # directive open; 2: prefix
|
|
|
|
([-\w]+) # 3: command
|
|
|
|
( # 4: the parameters..
|
|
|
|
\s+ # Must have space if parameters present
|
|
|
|
(?:
|
|
|
|
(?:[-\w]+=)? # named parameter key?
|
|
|
|
(?:
|
|
|
|
""".*?""" # triple-quoted value
|
|
|
|
|
|
|
|
|
"[^"]+" # single-quoted value
|
|
|
|
|
|
|
|
|
[^\s\]]+ # unquoted value
|
|
|
|
)
|
|
|
|
\s* # whitespace or end
|
|
|
|
# of directive
|
|
|
|
)
|
|
|
|
*)? # 0 or more parameters
|
|
|
|
\]\] # directive closed
|
|
|
|
}sx;
|
2008-07-17 06:22:25 +02:00
|
|
|
}
|
|
|
|
else {
|
2008-01-28 01:13:54 +01:00
|
|
|
$regex = qr{
|
|
|
|
(\\?) # 1: escape?
|
|
|
|
\[\[(!?) # directive open; 2: optional prefix
|
|
|
|
([-\w]+) # 3: command
|
|
|
|
\s+
|
|
|
|
( # 4: the parameters..
|
2007-06-02 01:40:43 +02:00
|
|
|
(?:
|
2008-01-28 01:13:54 +01:00
|
|
|
(?:[-\w]+=)? # named parameter key?
|
|
|
|
(?:
|
|
|
|
""".*?""" # triple-quoted value
|
|
|
|
|
|
|
|
|
"[^"]+" # single-quoted value
|
|
|
|
|
|
|
|
|
[^\s\]]+ # unquoted value
|
|
|
|
)
|
|
|
|
\s* # whitespace or end
|
|
|
|
# of directive
|
2007-06-02 01:40:43 +02:00
|
|
|
)
|
2008-01-28 01:13:54 +01:00
|
|
|
*) # 0 or more parameters
|
|
|
|
\]\] # directive closed
|
|
|
|
}sx;
|
|
|
|
}
|
|
|
|
|
2008-08-04 20:58:21 +02:00
|
|
|
$content =~ s{$regex}{$handle->($1, $2, $3, $4)}eg;
|
2006-09-10 00:50:27 +02:00
|
|
|
return $content;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-10 00:50:27 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub filter ($$$) {
|
2006-09-10 00:50:27 +02:00
|
|
|
my $page=shift;
|
2007-05-17 21:55:11 +02:00
|
|
|
my $destpage=shift;
|
2006-09-10 00:50:27 +02:00
|
|
|
my $content=shift;
|
|
|
|
|
|
|
|
run_hooks(filter => sub {
|
2007-05-17 21:55:11 +02:00
|
|
|
$content=shift->(page => $page, destpage => $destpage,
|
|
|
|
content => $content);
|
2006-09-10 00:50:27 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return $content;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-09-10 00:50:27 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub indexlink () {
|
2006-05-02 08:53:33 +02:00
|
|
|
return "<a href=\"$config{url}\">$config{wikiname}</a>";
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2009-02-12 22:31:05 +01:00
|
|
|
sub check_canedit ($$$;$) {
|
|
|
|
my $page=shift;
|
|
|
|
my $q=shift;
|
|
|
|
my $session=shift;
|
|
|
|
my $nonfatal=shift;
|
|
|
|
|
|
|
|
my $canedit;
|
|
|
|
run_hooks(canedit => sub {
|
|
|
|
return if defined $canedit;
|
|
|
|
my $ret=shift->($page, $q, $session);
|
|
|
|
if (defined $ret) {
|
|
|
|
if ($ret eq "") {
|
|
|
|
$canedit=1;
|
|
|
|
}
|
|
|
|
elsif (ref $ret eq 'CODE') {
|
|
|
|
$ret->() unless $nonfatal;
|
|
|
|
$canedit=0;
|
|
|
|
}
|
|
|
|
elsif (defined $ret) {
|
|
|
|
error($ret) unless $nonfatal;
|
|
|
|
$canedit=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return defined $canedit ? $canedit : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub check_content (@) {
|
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
return 1 if ! exists $hooks{checkcontent}; # optimisation
|
|
|
|
|
|
|
|
if (exists $pagesources{$params{page}}) {
|
|
|
|
my @diff;
|
|
|
|
my %old=map { $_ => 1 }
|
|
|
|
split("\n", readfile(srcfile($pagesources{$params{page}})));
|
|
|
|
foreach my $line (split("\n", $params{content})) {
|
|
|
|
push @diff, $line if ! exists $old{$_};
|
|
|
|
}
|
|
|
|
$params{content}=join("\n", @diff);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $ok;
|
|
|
|
run_hooks(checkcontent => sub {
|
|
|
|
return if defined $ok;
|
|
|
|
my $ret=shift->(%params);
|
|
|
|
if (defined $ret) {
|
|
|
|
if ($ret eq "") {
|
|
|
|
$ok=1;
|
|
|
|
}
|
|
|
|
elsif (ref $ret eq 'CODE') {
|
|
|
|
$ret->() unless $params{nonfatal};
|
|
|
|
$ok=0;
|
|
|
|
}
|
|
|
|
elsif (defined $ret) {
|
|
|
|
error($ret) unless $params{nonfatal};
|
|
|
|
$ok=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
return defined $ok ? $ok : 1;
|
|
|
|
}
|
|
|
|
|
2007-08-15 10:08:32 +02:00
|
|
|
my $wikilock;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub lockwiki () {
|
2006-05-02 08:53:33 +02:00
|
|
|
# Take an exclusive lock on the wiki to prevent multiple concurrent
|
|
|
|
# run issues. The lock will be dropped on program exit.
|
|
|
|
if (! -d $config{wikistatedir}) {
|
|
|
|
mkdir($config{wikistatedir});
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
open($wikilock, '>', "$config{wikistatedir}/lockfile") ||
|
2006-05-02 08:53:33 +02:00
|
|
|
error ("cannot write to $config{wikistatedir}/lockfile: $!");
|
2008-11-11 21:54:52 +01:00
|
|
|
if (! flock($wikilock, 2)) { # LOCK_EX
|
|
|
|
error("failed to get lock");
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
2007-05-21 04:52:51 +02:00
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub unlockwiki () {
|
2008-11-12 02:48:02 +01:00
|
|
|
POSIX::close($ENV{IKIWIKI_CGILOCK_FD}) if exists $ENV{IKIWIKI_CGILOCK_FD};
|
2007-08-26 19:38:17 +02:00
|
|
|
return close($wikilock) if $wikilock;
|
|
|
|
return;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2007-08-15 10:08:32 +02:00
|
|
|
my $commitlock;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub commit_hook_enabled () {
|
2007-08-15 10:08:32 +02:00
|
|
|
open($commitlock, '+>', "$config{wikistatedir}/commitlock") ||
|
|
|
|
error("cannot write to $config{wikistatedir}/commitlock: $!");
|
|
|
|
if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
|
|
|
|
close($commitlock) || error("failed closing commitlock: $!");
|
2007-02-21 09:55:28 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
close($commitlock) || error("failed closing commitlock: $!");
|
2007-02-21 09:55:28 +01:00
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-02-21 09:55:28 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub disable_commit_hook () {
|
2007-08-15 10:08:32 +02:00
|
|
|
open($commitlock, '>', "$config{wikistatedir}/commitlock") ||
|
|
|
|
error("cannot write to $config{wikistatedir}/commitlock: $!");
|
|
|
|
if (! flock($commitlock, 2)) { # LOCK_EX
|
2007-02-21 09:55:28 +01:00
|
|
|
error("failed to get commit lock");
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-02-21 09:55:28 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub enable_commit_hook () {
|
2007-08-26 19:38:17 +02:00
|
|
|
return close($commitlock) if $commitlock;
|
|
|
|
return;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-02-21 09:55:28 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub loadindex () {
|
2007-10-10 20:46:25 +02:00
|
|
|
%oldrenderedfiles=%pagectime=();
|
|
|
|
if (! $config{rebuild}) {
|
|
|
|
%pagesources=%pagemtime=%oldlinks=%links=%depends=
|
2008-03-21 14:07:44 +01:00
|
|
|
%destsources=%renderedfiles=%pagecase=%pagestate=();
|
2007-10-10 20:46:25 +02:00
|
|
|
}
|
2008-03-21 14:37:52 +01:00
|
|
|
my $in;
|
|
|
|
if (! open ($in, "<", "$config{wikistatedir}/indexdb")) {
|
|
|
|
if (-e "$config{wikistatedir}/index") {
|
2008-03-21 18:56:52 +01:00
|
|
|
system("ikiwiki-transition", "indexdb", $config{srcdir});
|
2008-03-21 14:37:52 +01:00
|
|
|
open ($in, "<", "$config{wikistatedir}/indexdb") || return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2008-09-27 22:34:09 +02:00
|
|
|
|
|
|
|
my $index=Storable::fd_retrieve($in);
|
|
|
|
if (! defined $index) {
|
2008-03-21 14:07:44 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2008-09-27 22:34:09 +02:00
|
|
|
|
|
|
|
my $pages;
|
|
|
|
if (exists $index->{version} && ! ref $index->{version}) {
|
|
|
|
$pages=$index->{page};
|
2008-09-27 22:45:27 +02:00
|
|
|
%wikistate=%{$index->{state}};
|
2008-09-27 22:34:09 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$pages=$index;
|
2008-09-27 22:45:27 +02:00
|
|
|
%wikistate=();
|
2008-09-27 22:34:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $src (keys %$pages) {
|
|
|
|
my $d=$pages->{$src};
|
2008-03-21 19:42:59 +01:00
|
|
|
my $page=pagename($src);
|
2008-09-27 22:34:09 +02:00
|
|
|
$pagectime{$page}=$d->{ctime};
|
2006-05-02 08:53:33 +02:00
|
|
|
if (! $config{rebuild}) {
|
2008-03-21 19:42:59 +01:00
|
|
|
$pagesources{$page}=$src;
|
2008-09-27 22:34:09 +02:00
|
|
|
$pagemtime{$page}=$d->{mtime};
|
|
|
|
$renderedfiles{$page}=$d->{dest};
|
|
|
|
if (exists $d->{links} && ref $d->{links}) {
|
|
|
|
$links{$page}=$d->{links};
|
|
|
|
$oldlinks{$page}=[@{$d->{links}}];
|
2008-03-21 14:07:44 +01:00
|
|
|
}
|
2008-09-27 22:34:09 +02:00
|
|
|
if (exists $d->{depends}) {
|
|
|
|
$depends{$page}=$d->{depends};
|
2008-03-21 14:07:44 +01:00
|
|
|
}
|
2008-09-27 22:34:09 +02:00
|
|
|
if (exists $d->{state}) {
|
|
|
|
$pagestate{$page}=$d->{state};
|
2007-12-08 23:40:50 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
2008-09-27 22:34:09 +02:00
|
|
|
$oldrenderedfiles{$page}=[@{$d->{dest}}];
|
2008-03-21 14:07:44 +01:00
|
|
|
}
|
|
|
|
foreach my $page (keys %pagesources) {
|
|
|
|
$pagecase{lc $page}=$page;
|
|
|
|
}
|
|
|
|
foreach my $page (keys %renderedfiles) {
|
|
|
|
$destsources{$_}=$page foreach @{$renderedfiles{$page}};
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
return close($in);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub saveindex () {
|
2006-07-30 03:38:50 +02:00
|
|
|
run_hooks(savestate => sub { shift->() });
|
|
|
|
|
2007-12-08 23:40:50 +01:00
|
|
|
my %hookids;
|
|
|
|
foreach my $type (keys %hooks) {
|
2008-03-21 14:07:44 +01:00
|
|
|
$hookids{$_}=1 foreach keys %{$hooks{$type}};
|
2007-12-08 23:40:50 +01:00
|
|
|
}
|
2008-03-21 14:07:44 +01:00
|
|
|
my @hookids=keys %hookids;
|
2007-12-08 23:40:50 +01:00
|
|
|
|
2006-05-02 08:53:33 +02:00
|
|
|
if (! -d $config{wikistatedir}) {
|
|
|
|
mkdir($config{wikistatedir});
|
|
|
|
}
|
2008-03-21 14:37:52 +01:00
|
|
|
my $newfile="$config{wikistatedir}/indexdb.new";
|
2007-02-15 03:22:08 +01:00
|
|
|
my $cleanup = sub { unlink($newfile) };
|
2007-08-14 07:47:29 +02:00
|
|
|
open (my $out, '>', $newfile) || error("cannot write to $newfile: $!", $cleanup);
|
2008-09-27 22:45:27 +02:00
|
|
|
|
2008-03-21 14:07:44 +01:00
|
|
|
my %index;
|
2007-03-24 16:10:58 +01:00
|
|
|
foreach my $page (keys %pagemtime) {
|
|
|
|
next unless $pagemtime{$page};
|
2008-03-21 19:42:59 +01:00
|
|
|
my $src=$pagesources{$page};
|
2008-03-21 14:07:44 +01:00
|
|
|
|
2008-09-27 22:34:09 +02:00
|
|
|
$index{page}{$src}={
|
2008-03-21 14:07:44 +01:00
|
|
|
ctime => $pagectime{$page},
|
|
|
|
mtime => $pagemtime{$page},
|
|
|
|
dest => $renderedfiles{$page},
|
|
|
|
links => $links{$page},
|
|
|
|
};
|
|
|
|
|
2006-05-02 08:53:33 +02:00
|
|
|
if (exists $depends{$page}) {
|
2008-09-27 22:34:09 +02:00
|
|
|
$index{page}{$src}{depends} = $depends{$page};
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
2008-03-21 14:07:44 +01:00
|
|
|
|
2007-12-08 23:40:50 +01:00
|
|
|
if (exists $pagestate{$page}) {
|
|
|
|
foreach my $id (@hookids) {
|
|
|
|
foreach my $key (keys %{$pagestate{$page}{$id}}) {
|
2008-09-27 22:34:09 +02:00
|
|
|
$index{page}{$src}{state}{$id}{$key}=$pagestate{$page}{$id}{$key};
|
2007-12-08 23:40:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
}
|
2008-09-27 22:45:27 +02:00
|
|
|
|
|
|
|
$index{state}={};
|
|
|
|
foreach my $id (@hookids) {
|
|
|
|
foreach my $key (keys %{$wikistate{$id}}) {
|
|
|
|
$index{state}{$id}{$key}=$wikistate{$id}{$key};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-27 22:34:09 +02:00
|
|
|
$index{version}="3";
|
2008-03-21 14:07:44 +01:00
|
|
|
my $ret=Storable::nstore_fd(\%index, $out);
|
|
|
|
return if ! defined $ret || ! $ret;
|
2007-08-14 07:47:29 +02:00
|
|
|
close $out || error("failed saving to $newfile: $!", $cleanup);
|
2008-03-21 14:37:52 +01:00
|
|
|
rename($newfile, "$config{wikistatedir}/indexdb") ||
|
|
|
|
error("failed renaming $newfile to $config{wikistatedir}/indexdb", $cleanup);
|
2007-08-15 10:08:32 +02:00
|
|
|
|
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub template_file ($) {
|
2007-01-12 21:48:19 +01:00
|
|
|
my $template=shift;
|
|
|
|
|
|
|
|
foreach my $dir ($config{templatedir}, "$installdir/share/ikiwiki/templates") {
|
|
|
|
return "$dir/$template" if -e "$dir/$template";
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
return;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-01-12 21:48:19 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub template_params (@) {
|
2007-01-12 21:48:19 +01:00
|
|
|
my $filename=template_file(shift);
|
|
|
|
|
|
|
|
if (! defined $filename) {
|
|
|
|
return if wantarray;
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
my @ret=(
|
|
|
|
filter => sub {
|
2006-07-02 21:47:22 +02:00
|
|
|
my $text_ref = shift;
|
2007-09-05 19:22:26 +02:00
|
|
|
${$text_ref} = decode_utf8(${$text_ref});
|
2006-07-02 21:47:22 +02:00
|
|
|
},
|
2007-01-12 21:48:19 +01:00
|
|
|
filename => $filename,
|
2006-08-05 05:21:14 +02:00
|
|
|
loop_context_vars => 1,
|
2006-08-12 18:36:35 +02:00
|
|
|
die_on_bad_params => 0,
|
2007-01-12 21:48:19 +01:00
|
|
|
@_
|
|
|
|
);
|
|
|
|
return wantarray ? @ret : {@ret};
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-07-02 21:06:08 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub template ($;@) {
|
2007-06-27 00:11:59 +02:00
|
|
|
require HTML::Template;
|
2007-08-15 10:08:32 +02:00
|
|
|
return HTML::Template->new(template_params(@_));
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-07-02 21:06:08 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub misctemplate ($$;@) {
|
2006-05-02 08:53:33 +02:00
|
|
|
my $title=shift;
|
|
|
|
my $pagebody=shift;
|
|
|
|
|
2006-07-02 21:06:08 +02:00
|
|
|
my $template=template("misc.tmpl");
|
2006-05-02 08:53:33 +02:00
|
|
|
$template->param(
|
|
|
|
title => $title,
|
|
|
|
indexlink => indexlink(),
|
|
|
|
wikiname => $config{wikiname},
|
|
|
|
pagebody => $pagebody,
|
2006-09-15 05:15:34 +02:00
|
|
|
baseurl => baseurl(),
|
|
|
|
@_,
|
2006-05-02 08:53:33 +02:00
|
|
|
);
|
2006-09-16 02:52:26 +02:00
|
|
|
run_hooks(pagetemplate => sub {
|
|
|
|
shift->(page => "", destpage => "", template => $template);
|
|
|
|
});
|
2006-05-02 08:53:33 +02:00
|
|
|
return $template->output;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub hook (@) {
|
2006-05-03 21:58:58 +02:00
|
|
|
my %param=@_;
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2006-05-03 21:58:58 +02:00
|
|
|
if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
|
2007-08-15 10:08:32 +02:00
|
|
|
error 'hook requires type, call, and id parameters';
|
2006-05-03 21:58:58 +02:00
|
|
|
}
|
2006-10-15 21:33:52 +02:00
|
|
|
|
|
|
|
return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
|
2006-05-03 21:58:58 +02:00
|
|
|
|
|
|
|
$hooks{$param{type}}{$param{id}}=\%param;
|
2007-08-15 10:08:32 +02:00
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-02 08:53:33 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub run_hooks ($$) {
|
2006-07-30 02:20:11 +02:00
|
|
|
# Calls the given sub for each hook of the given type,
|
|
|
|
# passing it the hook function to call.
|
|
|
|
my $type=shift;
|
|
|
|
my $sub=shift;
|
|
|
|
|
|
|
|
if (exists $hooks{$type}) {
|
inline: Run format hook first
inline has a format hook that is an optimisation hack. Until this hook
runs, the inlined content is not present on the page. This can prevent
other format hooks, that process that content, from acting on inlined
content. In bug ##509710, we discovered this happened commonly for the
embed plugin, but it could in theory happen for many other plugins (color,
cutpaste, etc) that use format to fill in special html after sanitization.
The ordering was essentially random (hash key order). That's kinda a good
thing, because hooks should be independent of other hooks and able to run
in any order. But for things like inline, that just doesn't work.
To fix the immediate problem, let's make hooks able to be registered as
running "first". There was already the ability to make them run "last".
Now, this simple first/middle/last ordering is obviously not going to work
if a lot of things need to run first, or last, since then we'll be back to
being unable to specify ordering inside those sets. But before worrying about
that too much, and considering dependency ordering, etc, observe how few
plugins use last ordering: Exactly one needs it. And, so far, exactly one
needs first ordering. So for now, KISS.
Another implementation note: I could have sorted the plugins with
first/last/middle as the primary key, and plugin name secondary, to get a
guaranteed stable order. Instead, I chose to preserve hash order. Two
opposing things pulled me toward that decision:
1. Since has order is randomish, it will ensure that no accidental
ordering assumptions are made.
2. Assume for a minute that ordering matters a lot more than expected.
Drastically changing the order a particular configuration uses could
result in a lot of subtle bugs cropping up. (I hope this assumption is
false, partly due to #1, but can't rule it out.)
2008-12-26 22:08:33 +01:00
|
|
|
my (@first, @middle, @last);
|
2006-07-30 02:20:11 +02:00
|
|
|
foreach my $id (keys %{$hooks{$type}}) {
|
inline: Run format hook first
inline has a format hook that is an optimisation hack. Until this hook
runs, the inlined content is not present on the page. This can prevent
other format hooks, that process that content, from acting on inlined
content. In bug ##509710, we discovered this happened commonly for the
embed plugin, but it could in theory happen for many other plugins (color,
cutpaste, etc) that use format to fill in special html after sanitization.
The ordering was essentially random (hash key order). That's kinda a good
thing, because hooks should be independent of other hooks and able to run
in any order. But for things like inline, that just doesn't work.
To fix the immediate problem, let's make hooks able to be registered as
running "first". There was already the ability to make them run "last".
Now, this simple first/middle/last ordering is obviously not going to work
if a lot of things need to run first, or last, since then we'll be back to
being unable to specify ordering inside those sets. But before worrying about
that too much, and considering dependency ordering, etc, observe how few
plugins use last ordering: Exactly one needs it. And, so far, exactly one
needs first ordering. So for now, KISS.
Another implementation note: I could have sorted the plugins with
first/last/middle as the primary key, and plugin name secondary, to get a
guaranteed stable order. Instead, I chose to preserve hash order. Two
opposing things pulled me toward that decision:
1. Since has order is randomish, it will ensure that no accidental
ordering assumptions are made.
2. Assume for a minute that ordering matters a lot more than expected.
Drastically changing the order a particular configuration uses could
result in a lot of subtle bugs cropping up. (I hope this assumption is
false, partly due to #1, but can't rule it out.)
2008-12-26 22:08:33 +01:00
|
|
|
if ($hooks{$type}{$id}{first}) {
|
|
|
|
push @first, $id;
|
|
|
|
}
|
|
|
|
elsif ($hooks{$type}{$id}{last}) {
|
|
|
|
push @last, $id;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
push @middle, $id;
|
2006-11-20 21:37:27 +01:00
|
|
|
}
|
|
|
|
}
|
inline: Run format hook first
inline has a format hook that is an optimisation hack. Until this hook
runs, the inlined content is not present on the page. This can prevent
other format hooks, that process that content, from acting on inlined
content. In bug ##509710, we discovered this happened commonly for the
embed plugin, but it could in theory happen for many other plugins (color,
cutpaste, etc) that use format to fill in special html after sanitization.
The ordering was essentially random (hash key order). That's kinda a good
thing, because hooks should be independent of other hooks and able to run
in any order. But for things like inline, that just doesn't work.
To fix the immediate problem, let's make hooks able to be registered as
running "first". There was already the ability to make them run "last".
Now, this simple first/middle/last ordering is obviously not going to work
if a lot of things need to run first, or last, since then we'll be back to
being unable to specify ordering inside those sets. But before worrying about
that too much, and considering dependency ordering, etc, observe how few
plugins use last ordering: Exactly one needs it. And, so far, exactly one
needs first ordering. So for now, KISS.
Another implementation note: I could have sorted the plugins with
first/last/middle as the primary key, and plugin name secondary, to get a
guaranteed stable order. Instead, I chose to preserve hash order. Two
opposing things pulled me toward that decision:
1. Since has order is randomish, it will ensure that no accidental
ordering assumptions are made.
2. Assume for a minute that ordering matters a lot more than expected.
Drastically changing the order a particular configuration uses could
result in a lot of subtle bugs cropping up. (I hope this assumption is
false, partly due to #1, but can't rule it out.)
2008-12-26 22:08:33 +01:00
|
|
|
foreach my $id (@first, @middle, @last) {
|
2006-07-30 02:20:11 +02:00
|
|
|
$sub->($hooks{$type}{$id}{call});
|
|
|
|
}
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
|
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-07-30 02:20:11 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_update () {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_update}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_prepedit ($) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_prepedit}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_commit ($$$;$$) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_commit}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_commit_staged ($$$) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_commit_staged}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_add ($) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_add}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_remove ($) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_remove}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_rename ($$) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_rename}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_recentchanges ($) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_recentchanges}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_diff ($) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_diff}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_getctime ($) {
|
2008-07-27 04:27:58 +02:00
|
|
|
$hooks{rcs}{rcs_getctime}{call}->(@_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 04:27:58 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rcs_receive () {
|
2008-10-24 00:05:57 +02:00
|
|
|
$hooks{rcs}{rcs_receive}{call}->();
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-23 02:52:34 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub safequote ($) {
|
2006-08-02 02:14:31 +02:00
|
|
|
my $s=shift;
|
|
|
|
$s=~s/[{}]//g;
|
|
|
|
return "q{$s}";
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub add_depends ($$) {
|
2007-01-28 01:35:32 +01:00
|
|
|
my $page=shift;
|
|
|
|
my $pagespec=shift;
|
|
|
|
|
2008-03-17 19:04:59 +01:00
|
|
|
return unless pagespec_valid($pagespec);
|
|
|
|
|
2007-01-28 01:35:32 +01:00
|
|
|
if (! exists $depends{$page}) {
|
|
|
|
$depends{$page}=$pagespec;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$depends{$page}=pagespec_merge($depends{$page}, $pagespec);
|
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
|
|
|
|
return 1;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-01-28 01:35:32 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub file_pruned ($$) {
|
2007-01-28 01:35:32 +01:00
|
|
|
require File::Spec;
|
|
|
|
my $file=File::Spec->canonpath(shift);
|
|
|
|
my $base=File::Spec->canonpath(shift);
|
2007-12-10 21:12:56 +01:00
|
|
|
$file =~ s#^\Q$base\E/+##;
|
2007-01-28 01:35:32 +01:00
|
|
|
|
|
|
|
my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
|
2007-12-10 21:12:56 +01:00
|
|
|
return $file =~ m/$regexp/ && $file ne $base;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-01-28 01:35:32 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub gettext {
|
2007-01-28 01:35:32 +01:00
|
|
|
# Only use gettext in the rare cases it's needed.
|
2007-08-21 23:19:53 +02:00
|
|
|
if ((exists $ENV{LANG} && length $ENV{LANG}) ||
|
|
|
|
(exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
|
|
|
|
(exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
|
2007-01-28 01:35:32 +01:00
|
|
|
if (! $gettext_obj) {
|
|
|
|
$gettext_obj=eval q{
|
|
|
|
use Locale::gettext q{textdomain};
|
|
|
|
Locale::gettext->domain('ikiwiki')
|
|
|
|
};
|
|
|
|
if ($@) {
|
|
|
|
print STDERR "$@";
|
|
|
|
$gettext_obj=undef;
|
|
|
|
return shift;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $gettext_obj->get(shift);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return shift;
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-01-28 01:35:32 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub yesno ($) {
|
2008-07-12 18:01:08 +02:00
|
|
|
my $val=shift;
|
|
|
|
|
2009-01-03 18:52:47 +01:00
|
|
|
return (defined $val && (lc($val) eq gettext("yes") || lc($val) eq "yes" || $val eq "1"));
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-12 18:01:08 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub inject {
|
2008-10-21 23:57:19 +02:00
|
|
|
# Injects a new function into the symbol table to replace an
|
|
|
|
# exported function.
|
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
# This is deep ugly perl foo, beware.
|
|
|
|
no strict;
|
|
|
|
no warnings;
|
|
|
|
if (! defined $params{parent}) {
|
|
|
|
$params{parent}='::';
|
|
|
|
$params{old}=\&{$params{name}};
|
|
|
|
$params{name}=~s/.*:://;
|
|
|
|
}
|
|
|
|
my $parent=$params{parent};
|
|
|
|
foreach my $ns (grep /^\w+::/, keys %{$parent}) {
|
|
|
|
$ns = $params{parent} . $ns;
|
|
|
|
inject(%params, parent => $ns) unless $ns eq '::main::';
|
|
|
|
*{$ns . $params{name}} = $params{call}
|
|
|
|
if exists ${$ns}{$params{name}} &&
|
|
|
|
\&{${$ns}{$params{name}}} == $params{old};
|
|
|
|
}
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-21 23:57:19 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub pagespec_merge ($$) {
|
2006-08-02 02:14:31 +02:00
|
|
|
my $a=shift;
|
|
|
|
my $b=shift;
|
|
|
|
|
2006-08-23 08:44:47 +02:00
|
|
|
return $a if $a eq $b;
|
2006-08-02 02:14:31 +02:00
|
|
|
return "($a) or ($b)";
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub pagespec_translate ($) {
|
2006-08-02 02:14:31 +02:00
|
|
|
my $spec=shift;
|
|
|
|
|
|
|
|
# Convert spec to perl code.
|
|
|
|
my $code="";
|
2007-06-02 01:40:43 +02:00
|
|
|
while ($spec=~m{
|
|
|
|
\s* # ignore whitespace
|
|
|
|
( # 1: match a single word
|
|
|
|
\! # !
|
|
|
|
|
|
|
|
|
\( # (
|
|
|
|
|
|
|
|
|
\) # )
|
|
|
|
|
|
2007-08-12 01:31:57 +02:00
|
|
|
\w+\([^\)]*\) # command(params)
|
2007-06-02 01:40:43 +02:00
|
|
|
|
|
|
|
|
[^\s()]+ # any other text
|
|
|
|
)
|
|
|
|
\s* # ignore whitespace
|
|
|
|
}igx) {
|
2006-08-02 02:14:31 +02:00
|
|
|
my $word=$1;
|
2007-08-15 10:08:32 +02:00
|
|
|
if (lc $word eq 'and') {
|
|
|
|
$code.=' &&';
|
2006-08-02 02:14:31 +02:00
|
|
|
}
|
2007-08-15 10:08:32 +02:00
|
|
|
elsif (lc $word eq 'or') {
|
|
|
|
$code.=' ||';
|
2006-08-02 02:14:31 +02:00
|
|
|
}
|
|
|
|
elsif ($word eq "(" || $word eq ")" || $word eq "!") {
|
2007-08-15 10:08:32 +02:00
|
|
|
$code.=' '.$word;
|
2006-08-02 02:14:31 +02:00
|
|
|
}
|
2007-02-12 03:44:47 +01:00
|
|
|
elsif ($word =~ /^(\w+)\((.*)\)$/) {
|
|
|
|
if (exists $IkiWiki::PageSpec::{"match_$1"}) {
|
2008-03-21 11:36:07 +01:00
|
|
|
$code.="IkiWiki::PageSpec::match_$1(\$page, ".safequote($2).", \@_)";
|
2007-02-12 03:44:47 +01:00
|
|
|
}
|
|
|
|
else {
|
2009-01-20 22:30:59 +01:00
|
|
|
$code.="IkiWiki::FailReason->new(".safequote(qq{unknown function in pagespec "$word"}).")";
|
2007-02-12 03:44:47 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
}
|
|
|
|
else {
|
2008-03-21 11:36:07 +01:00
|
|
|
$code.=" IkiWiki::PageSpec::match_glob(\$page, ".safequote($word).", \@_)";
|
2006-08-02 02:14:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-24 19:49:15 +02:00
|
|
|
if (! length $code) {
|
2009-01-20 22:30:59 +01:00
|
|
|
$code="IkiWiki::FailReason->new('empty pagespec')";
|
2008-04-24 19:49:15 +02:00
|
|
|
}
|
|
|
|
|
2008-05-22 19:11:25 +02:00
|
|
|
no warnings;
|
2008-03-21 11:36:07 +01:00
|
|
|
return eval 'sub { my $page=shift; '.$code.' }';
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 05:39:19 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub pagespec_match ($$;@) {
|
2006-08-02 05:39:19 +02:00
|
|
|
my $page=shift;
|
|
|
|
my $spec=shift;
|
2007-04-27 04:55:52 +02:00
|
|
|
my @params=@_;
|
|
|
|
|
|
|
|
# Backwards compatability with old calling convention.
|
|
|
|
if (@params == 1) {
|
2007-08-15 10:08:32 +02:00
|
|
|
unshift @params, 'location';
|
2007-04-27 04:55:52 +02:00
|
|
|
}
|
2006-08-02 05:39:19 +02:00
|
|
|
|
2008-03-21 11:36:07 +01:00
|
|
|
my $sub=pagespec_translate($spec);
|
2008-12-18 00:56:32 +01:00
|
|
|
return IkiWiki::FailReason->new("syntax error in pagespec \"$spec\"")
|
|
|
|
if $@ || ! defined $sub;
|
2008-03-21 11:36:07 +01:00
|
|
|
return $sub->($page, @params);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub pagespec_valid ($) {
|
2008-03-17 19:04:59 +01:00
|
|
|
my $spec=shift;
|
|
|
|
|
2008-03-21 11:36:07 +01:00
|
|
|
my $sub=pagespec_translate($spec);
|
2008-03-17 19:04:59 +01:00
|
|
|
return ! $@;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-21 23:57:19 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub glob2re ($) {
|
2008-07-02 23:33:37 +02:00
|
|
|
my $re=quotemeta(shift);
|
|
|
|
$re=~s/\\\*/.*/g;
|
|
|
|
$re=~s/\\\?/./g;
|
|
|
|
return $re;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-03-17 19:04:59 +01:00
|
|
|
|
2007-04-27 09:55:40 +02:00
|
|
|
package IkiWiki::FailReason;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
use overload (
|
2007-04-27 19:01:52 +02:00
|
|
|
'""' => sub { ${$_[0]} },
|
|
|
|
'0+' => sub { 0 },
|
2007-04-27 10:34:09 +02:00
|
|
|
'!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
|
|
|
|
fallback => 1,
|
2008-12-17 21:22:16 +01:00
|
|
|
);
|
2007-04-27 10:34:09 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub new {
|
2008-05-05 20:50:26 +02:00
|
|
|
my $class = shift;
|
|
|
|
my $value = shift;
|
|
|
|
return bless \$value, $class;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2007-04-27 10:34:09 +02:00
|
|
|
|
|
|
|
package IkiWiki::SuccessReason;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
use overload (
|
2007-04-27 19:01:52 +02:00
|
|
|
'""' => sub { ${$_[0]} },
|
|
|
|
'0+' => sub { 1 },
|
2007-04-27 10:34:09 +02:00
|
|
|
'!' => sub { bless $_[0], 'IkiWiki::FailReason'},
|
2007-04-27 09:55:40 +02:00
|
|
|
fallback => 1,
|
2008-12-17 21:22:16 +01:00
|
|
|
);
|
2007-04-27 09:55:40 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub new {
|
2008-05-05 20:50:26 +02:00
|
|
|
my $class = shift;
|
|
|
|
my $value = shift;
|
|
|
|
return bless \$value, $class;
|
2008-12-17 21:22:16 +01:00
|
|
|
};
|
2007-04-27 09:55:40 +02:00
|
|
|
|
2007-02-12 03:44:47 +01:00
|
|
|
package IkiWiki::PageSpec;
|
|
|
|
|
2009-01-10 20:24:21 +01:00
|
|
|
sub derel ($$) {
|
|
|
|
my $path=shift;
|
|
|
|
my $from=shift;
|
|
|
|
|
|
|
|
if ($path =~ m!^\./!) {
|
|
|
|
$from=~s#/?[^/]+$## if defined $from;
|
|
|
|
$path=~s#^\./##;
|
|
|
|
$path="$from/$path" if length $from;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_glob ($$;@) {
|
2006-08-02 02:14:31 +02:00
|
|
|
my $page=shift;
|
|
|
|
my $glob=shift;
|
2007-04-27 04:55:52 +02:00
|
|
|
my %params=@_;
|
|
|
|
|
2009-01-10 20:24:21 +01:00
|
|
|
$glob=derel($glob, $params{location});
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-07-03 00:08:47 +02:00
|
|
|
my $regexp=IkiWiki::glob2re($glob);
|
2008-07-02 23:33:37 +02:00
|
|
|
if ($page=~/^$regexp$/i) {
|
2008-01-29 21:05:49 +01:00
|
|
|
if (! IkiWiki::isinternal($page) || $params{internal}) {
|
|
|
|
return IkiWiki::SuccessReason->new("$glob matches $page");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return IkiWiki::FailReason->new("$glob matches $page, but the page is an internal page");
|
|
|
|
}
|
2007-04-27 09:55:40 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
return IkiWiki::FailReason->new("$glob does not match $page");
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_internal ($$;@) {
|
2008-01-29 21:05:49 +01:00
|
|
|
return match_glob($_[0], $_[1], @_, internal => 1)
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-01-29 21:05:49 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_link ($$;@) {
|
2006-08-02 02:14:31 +02:00
|
|
|
my $page=shift;
|
2006-08-13 04:03:43 +02:00
|
|
|
my $link=lc(shift);
|
2007-04-27 04:55:52 +02:00
|
|
|
my %params=@_;
|
|
|
|
|
2009-01-10 20:24:21 +01:00
|
|
|
$link=derel($link, $params{location});
|
2007-08-15 10:08:32 +02:00
|
|
|
my $from=exists $params{location} ? $params{location} : '';
|
2007-03-22 00:11:09 +01:00
|
|
|
|
2007-08-15 10:08:32 +02:00
|
|
|
my $links = $IkiWiki::links{$page};
|
|
|
|
return IkiWiki::FailReason->new("$page has no links") unless $links && @{$links};
|
2007-03-22 00:11:09 +01:00
|
|
|
my $bestlink = IkiWiki::bestlink($from, $link);
|
2007-08-15 10:08:32 +02:00
|
|
|
foreach my $p (@{$links}) {
|
2007-05-30 21:54:08 +02:00
|
|
|
if (length $bestlink) {
|
|
|
|
return IkiWiki::SuccessReason->new("$page links to $link")
|
|
|
|
if $bestlink eq IkiWiki::bestlink($page, $p);
|
|
|
|
}
|
|
|
|
else {
|
2007-09-22 20:10:40 +02:00
|
|
|
return IkiWiki::SuccessReason->new("$page links to page $p matching $link")
|
2007-05-30 21:54:08 +02:00
|
|
|
if match_glob($p, $link, %params);
|
2008-11-09 21:31:57 +01:00
|
|
|
$p=~s/^\///;
|
|
|
|
$link=~s/^\///;
|
|
|
|
return IkiWiki::SuccessReason->new("$page links to page $p matching $link")
|
|
|
|
if match_glob($p, $link, %params);
|
2007-05-30 21:54:08 +02:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
}
|
2007-04-27 09:55:40 +02:00
|
|
|
return IkiWiki::FailReason->new("$page does not link to $link");
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_backlink ($$;@) {
|
2007-08-15 10:08:32 +02:00
|
|
|
return match_link($_[1], $_[0], @_);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_created_before ($$;@) {
|
2006-08-03 18:55:52 +02:00
|
|
|
my $page=shift;
|
|
|
|
my $testpage=shift;
|
2009-01-10 20:36:03 +01:00
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
$testpage=derel($testpage, $params{location});
|
2006-08-03 18:55:52 +02:00
|
|
|
|
2007-02-12 03:44:47 +01:00
|
|
|
if (exists $IkiWiki::pagectime{$testpage}) {
|
2007-04-27 10:34:09 +02:00
|
|
|
if ($IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage}) {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::SuccessReason->new("$page created before $testpage");
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::FailReason->new("$page not created before $testpage");
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
2006-08-03 18:55:52 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-04-27 10:34:09 +02:00
|
|
|
return IkiWiki::FailReason->new("$testpage has no ctime");
|
2006-08-03 18:55:52 +02:00
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-03 18:55:52 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_created_after ($$;@) {
|
2006-08-03 18:55:52 +02:00
|
|
|
my $page=shift;
|
|
|
|
my $testpage=shift;
|
2009-01-10 20:36:03 +01:00
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
$testpage=derel($testpage, $params{location});
|
2006-08-03 18:55:52 +02:00
|
|
|
|
2007-02-12 03:44:47 +01:00
|
|
|
if (exists $IkiWiki::pagectime{$testpage}) {
|
2007-04-27 10:34:09 +02:00
|
|
|
if ($IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage}) {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::SuccessReason->new("$page created after $testpage");
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::FailReason->new("$page not created after $testpage");
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
2006-08-03 18:55:52 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-04-27 10:34:09 +02:00
|
|
|
return IkiWiki::FailReason->new("$testpage has no ctime");
|
2006-08-03 18:55:52 +02:00
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-03 18:55:52 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_creation_day ($$;@) {
|
2007-04-27 10:34:09 +02:00
|
|
|
if ((gmtime($IkiWiki::pagectime{shift()}))[3] == shift) {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::SuccessReason->new('creation_day matched');
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::FailReason->new('creation_day did not match');
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_creation_month ($$;@) {
|
2007-04-27 10:34:09 +02:00
|
|
|
if ((gmtime($IkiWiki::pagectime{shift()}))[4] + 1 == shift) {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::SuccessReason->new('creation_month matched');
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::FailReason->new('creation_month did not match');
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_creation_year ($$;@) {
|
2007-04-27 10:34:09 +02:00
|
|
|
if ((gmtime($IkiWiki::pagectime{shift()}))[5] + 1900 == shift) {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::SuccessReason->new('creation_year matched');
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-08-15 10:08:32 +02:00
|
|
|
return IkiWiki::FailReason->new('creation_year did not match');
|
2007-04-27 10:34:09 +02:00
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-08-02 02:14:31 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_user ($$;@) {
|
2008-10-08 23:47:38 +02:00
|
|
|
shift;
|
|
|
|
my $user=shift;
|
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
if (! exists $params{user}) {
|
|
|
|
return IkiWiki::FailReason->new("no user specified");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defined $params{user} && lc $params{user} eq lc $user) {
|
|
|
|
return IkiWiki::SuccessReason->new("user is $user");
|
|
|
|
}
|
|
|
|
elsif (! defined $params{user}) {
|
|
|
|
return IkiWiki::FailReason->new("not logged in");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return IkiWiki::FailReason->new("user is $params{user}, not $user");
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-08 23:47:38 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_admin ($$;@) {
|
2008-10-08 23:47:38 +02:00
|
|
|
shift;
|
|
|
|
shift;
|
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
if (! exists $params{user}) {
|
|
|
|
return IkiWiki::FailReason->new("no user specified");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defined $params{user} && IkiWiki::is_admin($params{user})) {
|
|
|
|
return IkiWiki::SuccessReason->new("user is an admin");
|
|
|
|
}
|
|
|
|
elsif (! defined $params{user}) {
|
|
|
|
return IkiWiki::FailReason->new("not logged in");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return IkiWiki::FailReason->new("user is not an admin");
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-08 23:47:38 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub match_ip ($$;@) {
|
2008-10-08 23:47:38 +02:00
|
|
|
shift;
|
|
|
|
my $ip=shift;
|
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
if (! exists $params{ip}) {
|
|
|
|
return IkiWiki::FailReason->new("no IP specified");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defined $params{ip} && lc $params{ip} eq lc $ip) {
|
|
|
|
return IkiWiki::SuccessReason->new("IP is $ip");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-08 23:47:38 +02:00
|
|
|
|
2006-05-02 08:53:33 +02:00
|
|
|
1
|