summaryrefslogtreecommitdiff
path: root/IkiWiki.pm
blob: ec8b32a639b5a7e319aa2615d29d00ead603b813 (plain)
  1. #!/usr/bin/perl
  2. package IkiWiki;
  3. use warnings;
  4. use strict;
  5. use Encode;
  6. use HTML::Entities;
  7. use URI::Escape q{uri_escape_utf8};
  8. use POSIX ();
  9. use Storable;
  10. use open qw{:utf8 :std};
  11. use vars qw{%config %links %oldlinks %pagemtime %pagectime %pagecase
  12. %pagestate %wikistate %renderedfiles %oldrenderedfiles
  13. %pagesources %destsources %depends %depends_simple %hooks
  14. %forcerebuild %loaded_plugins %typedlinks %oldtypedlinks
  15. %autofiles};
  16. use Exporter q{import};
  17. our @EXPORT = qw(hook debug error template htmlpage deptype
  18. add_depends pagespec_match pagespec_match_list bestlink
  19. htmllink readfile writefile pagetype srcfile pagename
  20. displaytime will_render gettext ngettext urlto targetpage
  21. add_underlay pagetitle titlepage linkpage newpagefile
  22. inject add_link add_autofile
  23. %config %links %pagestate %wikistate %renderedfiles
  24. %pagesources %destsources %typedlinks);
  25. our $VERSION = 3.00; # plugin interface version, next is ikiwiki version
  26. our $version='unknown'; # VERSION_AUTOREPLACE done by Makefile, DNE
  27. our $installdir='/usr'; # INSTALLDIR_AUTOREPLACE done by Makefile, DNE
  28. # Page dependency types.
  29. our $DEPEND_CONTENT=1;
  30. our $DEPEND_PRESENCE=2;
  31. our $DEPEND_LINKS=4;
  32. # Optimisation.
  33. use Memoize;
  34. memoize("abs2rel");
  35. memoize("sortspec_translate");
  36. memoize("pagespec_translate");
  37. memoize("template_file");
  38. sub getsetup () {
  39. wikiname => {
  40. type => "string",
  41. default => "wiki",
  42. description => "name of the wiki",
  43. safe => 1,
  44. rebuild => 1,
  45. },
  46. adminemail => {
  47. type => "string",
  48. default => undef,
  49. example => 'me@example.com',
  50. description => "contact email for wiki",
  51. safe => 1,
  52. rebuild => 0,
  53. },
  54. adminuser => {
  55. type => "string",
  56. default => [],
  57. description => "users who are wiki admins",
  58. safe => 1,
  59. rebuild => 0,
  60. },
  61. banned_users => {
  62. type => "string",
  63. default => [],
  64. description => "users who are banned from the wiki",
  65. safe => 1,
  66. rebuild => 0,
  67. },
  68. srcdir => {
  69. type => "string",
  70. default => undef,
  71. example => "$ENV{HOME}/wiki",
  72. description => "where the source of the wiki is located",
  73. safe => 0, # path
  74. rebuild => 1,
  75. },
  76. destdir => {
  77. type => "string",
  78. default => undef,
  79. example => "/var/www/wiki",
  80. description => "where to build the wiki",
  81. safe => 0, # path
  82. rebuild => 1,
  83. },
  84. url => {
  85. type => "string",
  86. default => '',
  87. example => "http://example.com/wiki",
  88. description => "base url to the wiki",
  89. safe => 1,
  90. rebuild => 1,
  91. },
  92. cgiurl => {
  93. type => "string",
  94. default => '',
  95. example => "http://example.com/wiki/ikiwiki.cgi",
  96. description => "url to the ikiwiki.cgi",
  97. safe => 1,
  98. rebuild => 1,
  99. },
  100. cgi_wrapper => {
  101. type => "string",
  102. default => '',
  103. example => "/var/www/wiki/ikiwiki.cgi",
  104. description => "filename of cgi wrapper to generate",
  105. safe => 0, # file
  106. rebuild => 0,
  107. },
  108. cgi_wrappermode => {
  109. type => "string",
  110. default => '06755',
  111. description => "mode for cgi_wrapper (can safely be made suid)",
  112. safe => 0,
  113. rebuild => 0,
  114. },
  115. rcs => {
  116. type => "string",
  117. default => '',
  118. description => "rcs backend to use",
  119. safe => 0, # don't allow overriding
  120. rebuild => 0,
  121. },
  122. default_plugins => {
  123. type => "internal",
  124. default => [qw{mdwn link inline meta htmlscrubber passwordauth
  125. openid signinedit lockedit conditional
  126. recentchanges parentlinks editpage}],
  127. description => "plugins to enable by default",
  128. safe => 0,
  129. rebuild => 1,
  130. },
  131. add_plugins => {
  132. type => "string",
  133. default => [],
  134. description => "plugins to add to the default configuration",
  135. safe => 1,
  136. rebuild => 1,
  137. },
  138. disable_plugins => {
  139. type => "string",
  140. default => [],
  141. description => "plugins to disable",
  142. safe => 1,
  143. rebuild => 1,
  144. },
  145. templatedir => {
  146. type => "string",
  147. default => "$installdir/share/ikiwiki/templates",
  148. description => "location of template files",
  149. advanced => 1,
  150. safe => 0, # path
  151. rebuild => 1,
  152. },
  153. templatedirs => {
  154. type => "internal",
  155. default => [],
  156. description => "additional directories containing template files",
  157. safe => 0,
  158. rebuild => 0,
  159. },
  160. underlaydir => {
  161. type => "string",
  162. default => "$installdir/share/ikiwiki/basewiki",
  163. description => "base wiki source location",
  164. advanced => 1,
  165. safe => 0, # path
  166. rebuild => 0,
  167. },
  168. underlaydirbase => {
  169. type => "internal",
  170. default => "$installdir/share/ikiwiki",
  171. description => "parent directory containing additional underlays",
  172. safe => 0,
  173. rebuild => 0,
  174. },
  175. wrappers => {
  176. type => "internal",
  177. default => [],
  178. description => "wrappers to generate",
  179. safe => 0,
  180. rebuild => 0,
  181. },
  182. underlaydirs => {
  183. type => "internal",
  184. default => [],
  185. description => "additional underlays to use",
  186. safe => 0,
  187. rebuild => 0,
  188. },
  189. verbose => {
  190. type => "boolean",
  191. example => 1,
  192. description => "display verbose messages?",
  193. safe => 1,
  194. rebuild => 0,
  195. },
  196. syslog => {
  197. type => "boolean",
  198. example => 1,
  199. description => "log to syslog?",
  200. safe => 1,
  201. rebuild => 0,
  202. },
  203. usedirs => {
  204. type => "boolean",
  205. default => 1,
  206. description => "create output files named page/index.html?",
  207. safe => 0, # changing requires manual transition
  208. rebuild => 1,
  209. },
  210. prefix_directives => {
  211. type => "boolean",
  212. default => 1,
  213. description => "use '!'-prefixed preprocessor directives?",
  214. safe => 0, # changing requires manual transition
  215. rebuild => 1,
  216. },
  217. indexpages => {
  218. type => "boolean",
  219. default => 0,
  220. description => "use page/index.mdwn source files",
  221. safe => 1,
  222. rebuild => 1,
  223. },
  224. discussion => {
  225. type => "boolean",
  226. default => 1,
  227. description => "enable Discussion pages?",
  228. safe => 1,
  229. rebuild => 1,
  230. },
  231. discussionpage => {
  232. type => "string",
  233. default => gettext("Discussion"),
  234. description => "name of Discussion pages",
  235. safe => 1,
  236. rebuild => 1,
  237. },
  238. sslcookie => {
  239. type => "boolean",
  240. default => 0,
  241. description => "only send cookies over SSL connections?",
  242. advanced => 1,
  243. safe => 1,
  244. rebuild => 0,
  245. },
  246. default_pageext => {
  247. type => "string",
  248. default => "mdwn",
  249. description => "extension to use for new pages",
  250. safe => 0, # not sanitized
  251. rebuild => 0,
  252. },
  253. htmlext => {
  254. type => "string",
  255. default => "html",
  256. description => "extension to use for html files",
  257. safe => 0, # not sanitized
  258. rebuild => 1,
  259. },
  260. timeformat => {
  261. type => "string",
  262. default => '%c',
  263. description => "strftime format string to display date",
  264. advanced => 1,
  265. safe => 1,
  266. rebuild => 1,
  267. },
  268. locale => {
  269. type => "string",
  270. default => undef,
  271. example => "en_US.UTF-8",
  272. description => "UTF-8 locale to use",
  273. advanced => 1,
  274. safe => 0,
  275. rebuild => 1,
  276. },
  277. userdir => {
  278. type => "string",
  279. default => "",
  280. example => "users",
  281. description => "put user pages below specified page",
  282. safe => 1,
  283. rebuild => 1,
  284. },
  285. numbacklinks => {
  286. type => "integer",
  287. default => 10,
  288. description => "how many backlinks to show before hiding excess (0 to show all)",
  289. safe => 1,
  290. rebuild => 1,
  291. },
  292. hardlink => {
  293. type => "boolean",
  294. default => 0,
  295. description => "attempt to hardlink source files? (optimisation for large files)",
  296. advanced => 1,
  297. safe => 0, # paranoia
  298. rebuild => 0,
  299. },
  300. umask => {
  301. type => "integer",
  302. example => "022",
  303. description => "force ikiwiki to use a particular umask",
  304. advanced => 1,
  305. safe => 0, # paranoia
  306. rebuild => 0,
  307. },
  308. wrappergroup => {
  309. type => "string",
  310. example => "ikiwiki",
  311. description => "group for wrappers to run in",
  312. advanced => 1,
  313. safe => 0, # paranoia
  314. rebuild => 0,
  315. },
  316. libdir => {
  317. type => "string",
  318. default => "",
  319. example => "$ENV{HOME}/.ikiwiki/",
  320. description => "extra library and plugin directory",
  321. advanced => 1,
  322. safe => 0, # directory
  323. rebuild => 0,
  324. },
  325. ENV => {
  326. type => "string",
  327. default => {},
  328. description => "environment variables",
  329. safe => 0, # paranoia
  330. rebuild => 0,
  331. },
  332. include => {
  333. type => "string",
  334. default => undef,
  335. example => '^\.htaccess$',
  336. description => "regexp of normally excluded files to include",
  337. advanced => 1,
  338. safe => 0, # regexp
  339. rebuild => 1,
  340. },
  341. exclude => {
  342. type => "string",
  343. default => undef,
  344. example => '^(*\.private|Makefile)$',
  345. description => "regexp of files that should be skipped",
  346. advanced => 1,
  347. safe => 0, # regexp
  348. rebuild => 1,
  349. },
  350. wiki_file_prune_regexps => {
  351. type => "internal",
  352. default => [qr/(^|\/)\.\.(\/|$)/, qr/^\//, qr/^\./, qr/\/\./,
  353. qr/\.x?html?$/, qr/\.ikiwiki-new$/,
  354. qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//,
  355. qr/(^|\/)_MTN\//, qr/(^|\/)_darcs\//,
  356. qr/(^|\/)CVS\//, qr/\.dpkg-tmp$/],
  357. description => "regexps of source files to ignore",
  358. safe => 0,
  359. rebuild => 1,
  360. },
  361. wiki_file_chars => {
  362. type => "string",
  363. description => "specifies the characters that are allowed in source filenames",
  364. default => "-[:alnum:]+/.:_",
  365. safe => 0,
  366. rebuild => 1,
  367. },
  368. wiki_file_regexp => {
  369. type => "internal",
  370. description => "regexp of legal source files",
  371. safe => 0,
  372. rebuild => 1,
  373. },
  374. web_commit_regexp => {
  375. type => "internal",
  376. default => qr/^web commit (by (.*?(?=: |$))|from ([0-9a-fA-F:.]+[0-9a-fA-F])):?(.*)/,
  377. description => "regexp to parse web commits from logs",
  378. safe => 0,
  379. rebuild => 0,
  380. },
  381. cgi => {
  382. type => "internal",
  383. default => 0,
  384. description => "run as a cgi",
  385. safe => 0,
  386. rebuild => 0,
  387. },
  388. cgi_disable_uploads => {
  389. type => "internal",
  390. default => 1,
  391. description => "whether CGI should accept file uploads",
  392. safe => 0,
  393. rebuild => 0,
  394. },
  395. post_commit => {
  396. type => "internal",
  397. default => 0,
  398. description => "run as a post-commit hook",
  399. safe => 0,
  400. rebuild => 0,
  401. },
  402. rebuild => {
  403. type => "internal",
  404. default => 0,
  405. description => "running in rebuild mode",
  406. safe => 0,
  407. rebuild => 0,
  408. },
  409. setup => {
  410. type => "internal",
  411. default => undef,
  412. description => "running in setup mode",
  413. safe => 0,
  414. rebuild => 0,
  415. },
  416. clean => {
  417. type => "internal",
  418. default => 0,
  419. description => "running in clean mode",
  420. safe => 0,
  421. rebuild => 0,
  422. },
  423. refresh => {
  424. type => "internal",
  425. default => 0,
  426. description => "running in refresh mode",
  427. safe => 0,
  428. rebuild => 0,
  429. },
  430. test_receive => {
  431. type => "internal",
  432. default => 0,
  433. description => "running in receive test mode",
  434. safe => 0,
  435. rebuild => 0,
  436. },
  437. gettime => {
  438. type => "internal",
  439. description => "running in gettime mode",
  440. safe => 0,
  441. rebuild => 0,
  442. },
  443. w3mmode => {
  444. type => "internal",
  445. default => 0,
  446. description => "running in w3mmode",
  447. safe => 0,
  448. rebuild => 0,
  449. },
  450. wikistatedir => {
  451. type => "internal",
  452. default => undef,
  453. description => "path to the .ikiwiki directory holding ikiwiki state",
  454. safe => 0,
  455. rebuild => 0,
  456. },
  457. setupfile => {
  458. type => "internal",
  459. default => undef,
  460. description => "path to setup file",
  461. safe => 0,
  462. rebuild => 0,
  463. },
  464. setuptype => {
  465. type => "internal",
  466. default => "Standard",
  467. description => "perl class to use to dump setup file",
  468. safe => 0,
  469. rebuild => 0,
  470. },
  471. allow_symlinks_before_srcdir => {
  472. type => "boolean",
  473. default => 0,
  474. description => "allow symlinks in the path leading to the srcdir (potentially insecure)",
  475. safe => 0,
  476. rebuild => 0,
  477. },
  478. }
  479. sub defaultconfig () {
  480. my %s=getsetup();
  481. my @ret;
  482. foreach my $key (keys %s) {
  483. push @ret, $key, $s{$key}->{default};
  484. }
  485. use Data::Dumper;
  486. return @ret;
  487. }
  488. sub checkconfig () {
  489. # locale stuff; avoid LC_ALL since it overrides everything
  490. if (defined $ENV{LC_ALL}) {
  491. $ENV{LANG} = $ENV{LC_ALL};
  492. delete $ENV{LC_ALL};
  493. }
  494. if (defined $config{locale}) {
  495. if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
  496. $ENV{LANG}=$config{locale};
  497. define_gettext();
  498. }
  499. }
  500. if (! defined $config{wiki_file_regexp}) {
  501. $config{wiki_file_regexp}=qr/(^[$config{wiki_file_chars}]+$)/;
  502. }
  503. if (ref $config{ENV} eq 'HASH') {
  504. foreach my $val (keys %{$config{ENV}}) {
  505. $ENV{$val}=$config{ENV}{$val};
  506. }
  507. }
  508. if ($config{w3mmode}) {
  509. eval q{use Cwd q{abs_path}};
  510. error($@) if $@;
  511. $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
  512. $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
  513. $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
  514. unless $config{cgiurl} =~ m!file:///!;
  515. $config{url}="file://".$config{destdir};
  516. }
  517. if ($config{cgi} && ! length $config{url}) {
  518. error(gettext("Must specify url to wiki with --url when using --cgi"));
  519. }
  520. $config{wikistatedir}="$config{srcdir}/.ikiwiki"
  521. unless exists $config{wikistatedir} && defined $config{wikistatedir};
  522. if (defined $config{umask}) {
  523. umask(possibly_foolish_untaint($config{umask}));
  524. }
  525. run_hooks(checkconfig => sub { shift->() });
  526. return 1;
  527. }
  528. sub listplugins () {
  529. my %ret;
  530. foreach my $dir (@INC, $config{libdir}) {
  531. next unless defined $dir && length $dir;
  532. foreach my $file (glob("$dir/IkiWiki/Plugin/*.pm")) {
  533. my ($plugin)=$file=~/.*\/(.*)\.pm$/;
  534. $ret{$plugin}=1;
  535. }
  536. }
  537. foreach my $dir ($config{libdir}, "$installdir/lib/ikiwiki") {
  538. next unless defined $dir && length $dir;
  539. foreach my $file (glob("$dir/plugins/*")) {
  540. $ret{basename($file)}=1 if -x $file;
  541. }
  542. }
  543. return keys %ret;
  544. }
  545. sub loadplugins () {
  546. if (defined $config{libdir} && length $config{libdir}) {
  547. unshift @INC, possibly_foolish_untaint($config{libdir});
  548. }
  549. foreach my $plugin (@{$config{default_plugins}}, @{$config{add_plugins}}) {
  550. loadplugin($plugin);
  551. }
  552. if ($config{rcs}) {
  553. if (exists $hooks{rcs}) {
  554. error(gettext("cannot use multiple rcs plugins"));
  555. }
  556. loadplugin($config{rcs});
  557. }
  558. if (! exists $hooks{rcs}) {
  559. loadplugin("norcs");
  560. }
  561. run_hooks(getopt => sub { shift->() });
  562. if (grep /^-/, @ARGV) {
  563. print STDERR "Unknown option (or missing parameter): $_\n"
  564. foreach grep /^-/, @ARGV;
  565. usage();
  566. }
  567. return 1;
  568. }
  569. sub loadplugin ($) {
  570. my $plugin=shift;
  571. return if grep { $_ eq $plugin} @{$config{disable_plugins}};
  572. foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef,
  573. "$installdir/lib/ikiwiki") {
  574. if (defined $dir && -x "$dir/plugins/$plugin") {
  575. eval { require IkiWiki::Plugin::external };
  576. if ($@) {
  577. my $reason=$@;
  578. error(sprintf(gettext("failed to load external plugin needed for %s plugin: %s"), $plugin, $reason));
  579. }
  580. import IkiWiki::Plugin::external "$dir/plugins/$plugin";
  581. $loaded_plugins{$plugin}=1;
  582. return 1;
  583. }
  584. }
  585. my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
  586. eval qq{use $mod};
  587. if ($@) {
  588. error("Failed to load plugin $mod: $@");
  589. }
  590. $loaded_plugins{$plugin}=1;
  591. return 1;
  592. }
  593. sub error ($;$) {
  594. my $message=shift;
  595. my $cleaner=shift;
  596. log_message('err' => $message) if $config{syslog};
  597. if (defined $cleaner) {
  598. $cleaner->();
  599. }
  600. die $message."\n";
  601. }
  602. sub debug ($) {
  603. return unless $config{verbose};
  604. return log_message(debug => @_);
  605. }
  606. my $log_open=0;
  607. sub log_message ($$) {
  608. my $type=shift;
  609. if ($config{syslog}) {
  610. require Sys::Syslog;
  611. if (! $log_open) {
  612. Sys::Syslog::setlogsock('unix');
  613. Sys::Syslog::openlog('ikiwiki', '', 'user');
  614. $log_open=1;
  615. }
  616. return eval {
  617. Sys::Syslog::syslog($type, "[$config{wikiname}] %s", join(" ", @_));
  618. };
  619. }
  620. elsif (! $config{cgi}) {
  621. return print "@_\n";
  622. }
  623. else {
  624. return print STDERR "@_\n";
  625. }
  626. }
  627. sub possibly_foolish_untaint ($) {
  628. my $tainted=shift;
  629. my ($untainted)=$tainted=~/(.*)/s;
  630. return $untainted;
  631. }
  632. sub basename ($) {
  633. my $file=shift;
  634. $file=~s!.*/+!!;
  635. return $file;
  636. }
  637. sub dirname ($) {
  638. my $file=shift;
  639. $file=~s!/*[^/]+$!!;
  640. return $file;
  641. }
  642. sub isinternal ($) {
  643. my $page=shift;
  644. return exists $pagesources{$page} &&
  645. $pagesources{$page} =~ /\._([^.]+)$/;
  646. }
  647. sub pagetype ($) {
  648. my $file=shift;
  649. if ($file =~ /\.([^.]+)$/) {
  650. return $1 if exists $hooks{htmlize}{$1};
  651. }
  652. my $base=basename($file);
  653. if (exists $hooks{htmlize}{$base} &&
  654. $hooks{htmlize}{$base}{noextension}) {
  655. return $base;
  656. }
  657. return;
  658. }
  659. my %pagename_cache;
  660. sub pagename ($) {
  661. my $file=shift;
  662. if (exists $pagename_cache{$file}) {
  663. return $pagename_cache{$file};
  664. }
  665. my $type=pagetype($file);
  666. my $page=$file;
  667. $page=~s/\Q.$type\E*$//
  668. if defined $type && !$hooks{htmlize}{$type}{keepextension}
  669. && !$hooks{htmlize}{$type}{noextension};
  670. if ($config{indexpages} && $page=~/(.*)\/index$/) {
  671. $page=$1;
  672. }
  673. $pagename_cache{$file} = $page;
  674. return $page;
  675. }
  676. sub newpagefile ($$) {
  677. my $page=shift;
  678. my $type=shift;
  679. if (! $config{indexpages} || $page eq 'index') {
  680. return $page.".".$type;
  681. }
  682. else {
  683. return $page."/index.".$type;
  684. }
  685. }
  686. sub targetpage ($$;$) {
  687. my $page=shift;
  688. my $ext=shift;
  689. my $filename=shift;
  690. if (defined $filename) {
  691. return $page."/".$filename.".".$ext;
  692. }
  693. elsif (! $config{usedirs} || $page eq 'index') {
  694. return $page.".".$ext;
  695. }
  696. else {
  697. return $page."/index.".$ext;
  698. }
  699. }
  700. sub htmlpage ($) {
  701. my $page=shift;
  702. return targetpage($page, $config{htmlext});
  703. }
  704. sub srcfile_stat {
  705. my $file=shift;
  706. my $nothrow=shift;
  707. return "$config{srcdir}/$file", stat(_) if -e "$config{srcdir}/$file";
  708. foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
  709. return "$dir/$file", stat(_) if -e "$dir/$file";
  710. }
  711. error("internal error: $file cannot be found in $config{srcdir} or underlay") unless $nothrow;
  712. return;
  713. }
  714. sub srcfile ($;$) {
  715. return (srcfile_stat(@_))[0];
  716. }
  717. sub add_underlay ($) {
  718. my $dir=shift;
  719. if ($dir !~ /^\//) {
  720. $dir="$config{underlaydirbase}/$dir";
  721. }
  722. if (! grep { $_ eq $dir } @{$config{underlaydirs}}) {
  723. unshift @{$config{underlaydirs}}, $dir;
  724. }
  725. return 1;
  726. }
  727. sub readfile ($;$$) {
  728. my $file=shift;
  729. my $binary=shift;
  730. my $wantfd=shift;
  731. if (-l $file) {
  732. error("cannot read a symlink ($file)");
  733. }
  734. local $/=undef;
  735. open (my $in, "<", $file) || error("failed to read $file: $!");
  736. binmode($in) if ($binary);
  737. return \*$in if $wantfd;
  738. my $ret=<$in>;
  739. # check for invalid utf-8, and toss it back to avoid crashes
  740. if (! utf8::valid($ret)) {
  741. $ret=encode_utf8($ret);
  742. }
  743. close $in || error("failed to read $file: $!");
  744. return $ret;
  745. }
  746. sub prep_writefile ($$) {
  747. my $file=shift;
  748. my $destdir=shift;
  749. my $test=$file;
  750. while (length $test) {
  751. if (-l "$destdir/$test") {
  752. error("cannot write to a symlink ($test)");
  753. }
  754. $test=dirname($test);
  755. }
  756. my $dir=dirname("$destdir/$file");
  757. if (! -d $dir) {
  758. my $d="";
  759. foreach my $s (split(m!/+!, $dir)) {
  760. $d.="$s/";
  761. if (! -d $d) {
  762. mkdir($d) || error("failed to create directory $d: $!");
  763. }
  764. }
  765. }
  766. return 1;
  767. }
  768. sub writefile ($$$;$$) {
  769. my $file=shift; # can include subdirs
  770. my $destdir=shift; # directory to put file in
  771. my $content=shift;
  772. my $binary=shift;
  773. my $writer=shift;
  774. prep_writefile($file, $destdir);
  775. my $newfile="$destdir/$file.ikiwiki-new";
  776. if (-l $newfile) {
  777. error("cannot write to a symlink ($newfile)");
  778. }
  779. my $cleanup = sub { unlink($newfile) };
  780. open (my $out, '>', $newfile) || error("failed to write $newfile: $!", $cleanup);
  781. binmode($out) if ($binary);
  782. if ($writer) {
  783. $writer->(\*$out, $cleanup);
  784. }
  785. else {
  786. print $out $content or error("failed writing to $newfile: $!", $cleanup);
  787. }
  788. close $out || error("failed saving $newfile: $!", $cleanup);
  789. rename($newfile, "$destdir/$file") ||
  790. error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
  791. return 1;
  792. }
  793. my %cleared;
  794. sub will_render ($$;$) {
  795. my $page=shift;
  796. my $dest=shift;
  797. my $clear=shift;
  798. # Important security check.
  799. if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
  800. ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}}, @{$wikistate{editpage}{previews}})) {
  801. error("$config{destdir}/$dest independently created, not overwriting with version from $page");
  802. }
  803. if (! $clear || $cleared{$page}) {
  804. $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
  805. }
  806. else {
  807. foreach my $old (@{$renderedfiles{$page}}) {
  808. delete $destsources{$old};
  809. }
  810. $renderedfiles{$page}=[$dest];
  811. $cleared{$page}=1;
  812. }
  813. $destsources{$dest}=$page;
  814. return 1;
  815. }
  816. sub bestlink ($$) {
  817. my $page=shift;
  818. my $link=shift;
  819. my $cwd=$page;
  820. if ($link=~s/^\/+//) {
  821. # absolute links
  822. $cwd="";
  823. }
  824. $link=~s/\/$//;
  825. do {
  826. my $l=$cwd;
  827. $l.="/" if length $l;
  828. $l.=$link;
  829. if (exists $pagesources{$l}) {
  830. return $l;
  831. }
  832. elsif (exists $pagecase{lc $l}) {
  833. return $pagecase{lc $l};
  834. }
  835. } while $cwd=~s{/?[^/]+$}{};
  836. if (length $config{userdir}) {
  837. my $l = "$config{userdir}/".lc($link);
  838. if (exists $pagesources{$l}) {
  839. return $l;
  840. }
  841. elsif (exists $pagecase{lc $l}) {
  842. return $pagecase{lc $l};
  843. }
  844. }
  845. #print STDERR "warning: page $page, broken link: $link\n";
  846. return "";
  847. }
  848. sub isinlinableimage ($) {
  849. my $file=shift;
  850. return $file =~ /\.(png|gif|jpg|jpeg)$/i;
  851. }
  852. sub pagetitle ($;$) {
  853. my $page=shift;
  854. my $unescaped=shift;
  855. if ($unescaped) {
  856. $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
  857. }
  858. else {
  859. $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
  860. }
  861. return $page;
  862. }
  863. sub titlepage ($) {
  864. my $title=shift;
  865. # support use w/o %config set
  866. my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
  867. $title=~s/([^$chars]|_)/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
  868. return $title;
  869. }
  870. sub linkpage ($) {
  871. my $link=shift;
  872. my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
  873. $link=~s/([^$chars])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
  874. return $link;
  875. }
  876. sub cgiurl (@) {
  877. my %params=@_;
  878. my $cgiurl=$config{cgiurl};
  879. if (exists $params{cgiurl}) {
  880. $cgiurl=$params{cgiurl};
  881. delete $params{cgiurl};
  882. }
  883. return $cgiurl."?".
  884. join("&amp;", map $_."=".uri_escape_utf8($params{$_}), keys %params);
  885. }
  886. sub baseurl (;$) {
  887. my $page=shift;
  888. return "$config{url}/" if ! defined $page;
  889. $page=htmlpage($page);
  890. $page=~s/[^\/]+$//;
  891. $page=~s/[^\/]+\//..\//g;
  892. return $page;
  893. }
  894. sub abs2rel ($$) {
  895. # Work around very innefficient behavior in File::Spec if abs2rel
  896. # is passed two relative paths. It's much faster if paths are
  897. # absolute! (Debian bug #376658; fixed in debian unstable now)
  898. my $path="/".shift;
  899. my $base="/".shift;
  900. require File::Spec;
  901. my $ret=File::Spec->abs2rel($path, $base);
  902. $ret=~s/^// if defined $ret;
  903. return $ret;
  904. }
  905. sub displaytime ($;$) {
  906. # Plugins can override this function to mark up the time to
  907. # display.
  908. return '<span class="date">'.formattime(@_).'</span>';
  909. }
  910. sub formattime ($;$) {
  911. # Plugins can override this function to format the time.
  912. my $time=shift;
  913. my $format=shift;
  914. if (! defined $format) {
  915. $format=$config{timeformat};
  916. }
  917. # strftime doesn't know about encodings, so make sure
  918. # its output is properly treated as utf8
  919. return decode_utf8(POSIX::strftime($format, localtime($time)));
  920. }
  921. sub beautify_urlpath ($) {
  922. my $url=shift;
  923. # Ensure url is not an empty link, and if necessary,
  924. # add ./ to avoid colon confusion.
  925. if ($url !~ /^\// && $url !~ /^\.\.?\//) {
  926. $url="./$url";
  927. }
  928. if ($config{usedirs}) {
  929. $url =~ s!/index.$config{htmlext}$!/!;
  930. }
  931. return $url;
  932. }
  933. sub urlto ($$;$) {
  934. my $to=shift;
  935. my $from=shift;
  936. my $absolute=shift;
  937. if (! length $to) {
  938. return beautify_urlpath(baseurl($from)."index.$config{htmlext}");
  939. }
  940. if (! $destsources{$to}) {
  941. $to=htmlpage($to);
  942. }
  943. if ($absolute) {
  944. return $config{url}.beautify_urlpath("/".$to);
  945. }
  946. my $link = abs2rel($to, dirname(htmlpage($from)));
  947. return beautify_urlpath($link);
  948. }
  949. sub htmllink ($$$;@) {
  950. my $lpage=shift; # the page doing the linking
  951. my $page=shift; # the page that will contain the link (different for inline)
  952. my $link=shift;
  953. my %opts=@_;
  954. $link=~s/\/$//;
  955. my $bestlink;
  956. if (! $opts{forcesubpage}) {
  957. $bestlink=bestlink($lpage, $link);
  958. }
  959. else {
  960. $bestlink="$lpage/".lc($link);
  961. }
  962. my $linktext;
  963. if (defined $opts{linktext}) {
  964. $linktext=$opts{linktext};
  965. }
  966. else {
  967. $linktext=pagetitle(basename($link));
  968. }
  969. return "<span class=\"selflink\">$linktext</span>"
  970. if length $bestlink && $page eq $bestlink &&
  971. ! defined $opts{anchor};
  972. if (! $destsources{$bestlink}) {
  973. $bestlink=htmlpage($bestlink);
  974. if (! $destsources{$bestlink}) {
  975. my $cgilink = "";
  976. if (length $config{cgiurl}) {
  977. $cgilink = "<a href=\"".
  978. cgiurl(
  979. do => "create",
  980. page => lc($link),
  981. from => $lpage
  982. )."\" rel=\"nofollow\">?</a>";
  983. }
  984. return "<span class=\"createlink\">$cgilink$linktext</span>"
  985. }
  986. }
  987. $bestlink=abs2rel($bestlink, dirname(htmlpage($page)));
  988. $bestlink=beautify_urlpath($bestlink);
  989. if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
  990. return "<img src=\"$bestlink\" alt=\"$linktext\" />";
  991. }
  992. if (defined $opts{anchor}) {
  993. $bestlink.="#".$opts{anchor};
  994. }
  995. my @attrs;
  996. foreach my $attr (qw{rel class title}) {
  997. if (defined $opts{$attr}) {
  998. push @attrs, " $attr=\"$opts{$attr}\"";
  999. }
  1000. }
  1001. return "<a href=\"$bestlink\"@attrs>$linktext</a>";
  1002. }
  1003. sub userpage ($) {
  1004. my $user=shift;
  1005. return length $config{userdir} ? "$config{userdir}/$user" : $user;
  1006. }
  1007. sub openiduser ($) {
  1008. my $user=shift;
  1009. if ($user =~ m!^https?://! &&
  1010. eval q{use Net::OpenID::VerifiedIdentity; 1} && !$@) {
  1011. my $display;
  1012. if (Net::OpenID::VerifiedIdentity->can("DisplayOfURL")) {
  1013. $display = Net::OpenID::VerifiedIdentity::DisplayOfURL($user);
  1014. }
  1015. else {
  1016. # backcompat with old version
  1017. my $oid=Net::OpenID::VerifiedIdentity->new(identity => $user);
  1018. $display=$oid->display;
  1019. }
  1020. # Convert "user.somehost.com" to "user [somehost.com]"
  1021. # (also "user.somehost.co.uk")
  1022. if ($display !~ /\[/) {
  1023. $display=~s/^([-a-zA-Z0-9]+?)\.([-.a-zA-Z0-9]+\.[a-z]+)$/$1 [$2]/;
  1024. }
  1025. # Convert "http://somehost.com/user" to "user [somehost.com]".
  1026. # (also "https://somehost.com/user/")
  1027. if ($display !~ /\[/) {
  1028. $display=~s/^https?:\/\/(.+)\/([^\/#?]+)\/?(?:[#?].*)?$/$2 [$1]/;
  1029. }
  1030. $display=~s!^https?://!!; # make sure this is removed
  1031. eval q{use CGI 'escapeHTML'};
  1032. error($@) if $@;
  1033. return escapeHTML($display);
  1034. }
  1035. return;
  1036. }
  1037. sub htmlize ($$$$) {
  1038. my $page=shift;
  1039. my $destpage=shift;
  1040. my $type=shift;
  1041. my $content=shift;
  1042. my $oneline = $content !~ /\n/;
  1043. if (exists $hooks{htmlize}{$type}) {
  1044. $content=$hooks{htmlize}{$type}{call}->(
  1045. page => $page,
  1046. content => $content,
  1047. );
  1048. }
  1049. else {
  1050. error("htmlization of $type not supported");
  1051. }
  1052. run_hooks(sanitize => sub {
  1053. $content=shift->(
  1054. page => $page,
  1055. destpage => $destpage,
  1056. content => $content,
  1057. );
  1058. });
  1059. if ($oneline) {
  1060. # hack to get rid of enclosing junk added by markdown
  1061. # and other htmlizers/sanitizers
  1062. $content=~s/^<p>//i;
  1063. $content=~s/<\/p>\n*$//i;
  1064. }
  1065. return $content;
  1066. }
  1067. sub linkify ($$$) {
  1068. my $page=shift;
  1069. my $destpage=shift;
  1070. my $content=shift;
  1071. run_hooks(linkify => sub {
  1072. $content=shift->(
  1073. page => $page,
  1074. destpage => $destpage,
  1075. content => $content,
  1076. );
  1077. });
  1078. return $content;
  1079. }
  1080. our %preprocessing;
  1081. our $preprocess_preview=0;
  1082. sub preprocess ($$$;$$) {
  1083. my $page=shift; # the page the data comes from
  1084. my $destpage=shift; # the page the data will appear in (different for inline)
  1085. my $content=shift;
  1086. my $scan=shift;
  1087. my $preview=shift;
  1088. # Using local because it needs to be set within any nested calls
  1089. # of this function.
  1090. local $preprocess_preview=$preview if defined $preview;
  1091. my $handle=sub {
  1092. my $escape=shift;
  1093. my $prefix=shift;
  1094. my $command=shift;
  1095. my $params=shift;
  1096. $params="" if ! defined $params;
  1097. if (length $escape) {
  1098. return "[[$prefix$command $params]]";
  1099. }
  1100. elsif (exists $hooks{preprocess}{$command}) {
  1101. return "" if $scan && ! $hooks{preprocess}{$command}{scan};
  1102. # Note: preserve order of params, some plugins may
  1103. # consider it significant.
  1104. my @params;
  1105. while ($params =~ m{
  1106. (?:([-\w]+)=)? # 1: named parameter key?
  1107. (?:
  1108. """(.*?)""" # 2: triple-quoted value
  1109. |
  1110. "([^"]*?)" # 3: single-quoted value
  1111. |
  1112. (\S+) # 4: unquoted value
  1113. )
  1114. (?:\s+|$) # delimiter to next param
  1115. }sgx) {
  1116. my $key=$1;
  1117. my $val;
  1118. if (defined $2) {
  1119. $val=$2;
  1120. $val=~s/\r\n/\n/mg;
  1121. $val=~s/^\n+//g;
  1122. $val=~s/\n+$//g;
  1123. }
  1124. elsif (defined $3) {
  1125. $val=$3;
  1126. }
  1127. elsif (defined $4) {
  1128. $val=$4;
  1129. }
  1130. if (defined $key) {
  1131. push @params, $key, $val;
  1132. }
  1133. else {
  1134. push @params, $val, '';
  1135. }
  1136. }
  1137. if ($preprocessing{$page}++ > 3) {
  1138. # Avoid loops of preprocessed pages preprocessing
  1139. # other pages that preprocess them, etc.
  1140. return "[[!$command <span class=\"error\">".
  1141. sprintf(gettext("preprocessing loop detected on %s at depth %i"),
  1142. $page, $preprocessing{$page}).
  1143. "</span>]]";
  1144. }
  1145. my $ret;
  1146. if (! $scan) {
  1147. $ret=eval {
  1148. $hooks{preprocess}{$command}{call}->(
  1149. @params,
  1150. page => $page,
  1151. destpage => $destpage,
  1152. preview => $preprocess_preview,
  1153. );
  1154. };
  1155. if ($@) {
  1156. my $error=$@;
  1157. chomp $error;
  1158. $ret="[[!$command <span class=\"error\">".
  1159. gettext("Error").": $error"."</span>]]";
  1160. }
  1161. }
  1162. else {
  1163. # use void context during scan pass
  1164. eval {
  1165. $hooks{preprocess}{$command}{call}->(
  1166. @params,
  1167. page => $page,
  1168. destpage => $destpage,
  1169. preview => $preprocess_preview,
  1170. );
  1171. };
  1172. $ret="";
  1173. }
  1174. $preprocessing{$page}--;
  1175. return $ret;
  1176. }
  1177. else {
  1178. return "[[$prefix$command $params]]";
  1179. }
  1180. };
  1181. my $regex;
  1182. if ($config{prefix_directives}) {
  1183. $regex = qr{
  1184. (\\?) # 1: escape?
  1185. \[\[(!) # directive open; 2: prefix
  1186. ([-\w]+) # 3: command
  1187. ( # 4: the parameters..
  1188. \s+ # Must have space if parameters present
  1189. (?:
  1190. (?:[-\w]+=)? # named parameter key?
  1191. (?:
  1192. """.*?""" # triple-quoted value
  1193. |
  1194. "[^"]*?" # single-quoted value
  1195. |
  1196. [^"\s\]]+ # unquoted value
  1197. )
  1198. \s* # whitespace or end
  1199. # of directive
  1200. )
  1201. *)? # 0 or more parameters
  1202. \]\] # directive closed
  1203. }sx;
  1204. }
  1205. else {
  1206. $regex = qr{
  1207. (\\?) # 1: escape?
  1208. \[\[(!?) # directive open; 2: optional prefix
  1209. ([-\w]+) # 3: command
  1210. \s+
  1211. ( # 4: the parameters..
  1212. (?:
  1213. (?:[-\w]+=)? # named parameter key?
  1214. (?:
  1215. """.*?""" # triple-quoted value
  1216. |
  1217. "[^"]*?" # single-quoted value
  1218. |
  1219. [^"\s\]]+ # unquoted value
  1220. )
  1221. \s* # whitespace or end
  1222. # of directive
  1223. )
  1224. *) # 0 or more parameters
  1225. \]\] # directive closed
  1226. }sx;
  1227. }
  1228. $content =~ s{$regex}{$handle->($1, $2, $3, $4)}eg;
  1229. return $content;
  1230. }
  1231. sub filter ($$$) {
  1232. my $page=shift;
  1233. my $destpage=shift;
  1234. my $content=shift;
  1235. run_hooks(filter => sub {
  1236. $content=shift->(page => $page, destpage => $destpage,
  1237. content => $content);
  1238. });
  1239. return $content;
  1240. }
  1241. sub indexlink () {
  1242. return "<a href=\"$config{url}\">$config{wikiname}</a>";
  1243. }
  1244. sub check_canedit ($$$;$) {
  1245. my $page=shift;
  1246. my $q=shift;
  1247. my $session=shift;
  1248. my $nonfatal=shift;
  1249. my $canedit;
  1250. run_hooks(canedit => sub {
  1251. return if defined $canedit;
  1252. my $ret=shift->($page, $q, $session);
  1253. if (defined $ret) {
  1254. if ($ret eq "") {
  1255. $canedit=1;
  1256. }
  1257. elsif (ref $ret eq 'CODE') {
  1258. $ret->() unless $nonfatal;
  1259. $canedit=0;
  1260. }
  1261. elsif (defined $ret) {
  1262. error($ret) unless $nonfatal;
  1263. $canedit=0;
  1264. }
  1265. }
  1266. });
  1267. return defined $canedit ? $canedit : 1;
  1268. }
  1269. sub check_content (@) {
  1270. my %params=@_;
  1271. return 1 if ! exists $hooks{checkcontent}; # optimisation
  1272. if (exists $pagesources{$params{page}}) {
  1273. my @diff;
  1274. my %old=map { $_ => 1 }
  1275. split("\n", readfile(srcfile($pagesources{$params{page}})));
  1276. foreach my $line (split("\n", $params{content})) {
  1277. push @diff, $line if ! exists $old{$line};
  1278. }
  1279. $params{diff}=join("\n", @diff);
  1280. }
  1281. my $ok;
  1282. run_hooks(checkcontent => sub {
  1283. return if defined $ok;
  1284. my $ret=shift->(%params);
  1285. if (defined $ret) {
  1286. if ($ret eq "") {
  1287. $ok=1;
  1288. }
  1289. elsif (ref $ret eq 'CODE') {
  1290. $ret->() unless $params{nonfatal};
  1291. $ok=0;
  1292. }
  1293. elsif (defined $ret) {
  1294. error($ret) unless $params{nonfatal};
  1295. $ok=0;
  1296. }
  1297. }
  1298. });
  1299. return defined $ok ? $ok : 1;
  1300. }
  1301. my $wikilock;
  1302. sub lockwiki () {
  1303. # Take an exclusive lock on the wiki to prevent multiple concurrent
  1304. # run issues. The lock will be dropped on program exit.
  1305. if (! -d $config{wikistatedir}) {
  1306. mkdir($config{wikistatedir});
  1307. }
  1308. open($wikilock, '>', "$config{wikistatedir}/lockfile") ||
  1309. error ("cannot write to $config{wikistatedir}/lockfile: $!");
  1310. if (! flock($wikilock, 2)) { # LOCK_EX
  1311. error("failed to get lock");
  1312. }
  1313. return 1;
  1314. }
  1315. sub unlockwiki () {
  1316. POSIX::close($ENV{IKIWIKI_CGILOCK_FD}) if exists $ENV{IKIWIKI_CGILOCK_FD};
  1317. return close($wikilock) if $wikilock;
  1318. return;
  1319. }
  1320. my $commitlock;
  1321. sub commit_hook_enabled () {
  1322. open($commitlock, '+>', "$config{wikistatedir}/commitlock") ||
  1323. error("cannot write to $config{wikistatedir}/commitlock: $!");
  1324. if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
  1325. close($commitlock) || error("failed closing commitlock: $!");
  1326. return 0;
  1327. }
  1328. close($commitlock) || error("failed closing commitlock: $!");
  1329. return 1;
  1330. }
  1331. sub disable_commit_hook () {
  1332. open($commitlock, '>', "$config{wikistatedir}/commitlock") ||
  1333. error("cannot write to $config{wikistatedir}/commitlock: $!");
  1334. if (! flock($commitlock, 2)) { # LOCK_EX
  1335. error("failed to get commit lock");
  1336. }
  1337. return 1;
  1338. }
  1339. sub enable_commit_hook () {
  1340. return close($commitlock) if $commitlock;
  1341. return;
  1342. }
  1343. sub loadindex () {
  1344. %oldrenderedfiles=%pagectime=();
  1345. if (! $config{rebuild}) {
  1346. %pagesources=%pagemtime=%oldlinks=%links=%depends=
  1347. %destsources=%renderedfiles=%pagecase=%pagestate=
  1348. %depends_simple=%typedlinks=%oldtypedlinks=();
  1349. }
  1350. my $in;
  1351. if (! open ($in, "<", "$config{wikistatedir}/indexdb")) {
  1352. if (-e "$config{wikistatedir}/index") {
  1353. system("ikiwiki-transition", "indexdb", $config{srcdir});
  1354. open ($in, "<", "$config{wikistatedir}/indexdb") || return;
  1355. }
  1356. else {
  1357. $config{gettime}=1; # first build
  1358. return;
  1359. }
  1360. }
  1361. my $index=Storable::fd_retrieve($in);
  1362. if (! defined $index) {
  1363. return 0;
  1364. }
  1365. my $pages;
  1366. if (exists $index->{version} && ! ref $index->{version}) {
  1367. $pages=$index->{page};
  1368. %wikistate=%{$index->{state}};
  1369. }
  1370. else {
  1371. $pages=$index;
  1372. %wikistate=();
  1373. }
  1374. foreach my $src (keys %$pages) {
  1375. my $d=$pages->{$src};
  1376. my $page=pagename($src);
  1377. $pagectime{$page}=$d->{ctime};
  1378. if (! $config{rebuild}) {
  1379. $pagesources{$page}=$src;
  1380. $pagemtime{$page}=$d->{mtime};
  1381. $renderedfiles{$page}=$d->{dest};
  1382. if (exists $d->{links} && ref $d->{links}) {
  1383. $links{$page}=$d->{links};
  1384. $oldlinks{$page}=[@{$d->{links}}];
  1385. }
  1386. if (ref $d->{depends_simple} eq 'ARRAY') {
  1387. # old format
  1388. $depends_simple{$page}={
  1389. map { $_ => 1 } @{$d->{depends_simple}}
  1390. };
  1391. }
  1392. elsif (exists $d->{depends_simple}) {
  1393. $depends_simple{$page}=$d->{depends_simple};
  1394. }
  1395. if (exists $d->{dependslist}) {
  1396. # old format
  1397. $depends{$page}={
  1398. map { $_ => $DEPEND_CONTENT }
  1399. @{$d->{dependslist}}
  1400. };
  1401. }
  1402. elsif (exists $d->{depends} && ! ref $d->{depends}) {
  1403. # old format
  1404. $depends{$page}={$d->{depends} => $DEPEND_CONTENT };
  1405. }
  1406. elsif (exists $d->{depends}) {
  1407. $depends{$page}=$d->{depends};
  1408. }
  1409. if (exists $d->{state}) {
  1410. $pagestate{$page}=$d->{state};
  1411. }
  1412. if (exists $d->{typedlinks}) {
  1413. $typedlinks{$page}=$d->{typedlinks};
  1414. while (my ($type, $links) = each %{$typedlinks{$page}}) {
  1415. next unless %$links;
  1416. $oldtypedlinks{$page}{$type} = {%$links};
  1417. }
  1418. }
  1419. }
  1420. $oldrenderedfiles{$page}=[@{$d->{dest}}];
  1421. }
  1422. foreach my $page (keys %pagesources) {
  1423. $pagecase{lc $page}=$page;
  1424. }
  1425. foreach my $page (keys %renderedfiles) {
  1426. $destsources{$_}=$page foreach @{$renderedfiles{$page}};
  1427. }
  1428. return close($in);
  1429. }
  1430. sub saveindex () {
  1431. run_hooks(savestate => sub { shift->() });
  1432. my %hookids;
  1433. foreach my $type (keys %hooks) {
  1434. $hookids{$_}=1 foreach keys %{$hooks{$type}};
  1435. }
  1436. my @hookids=keys %hookids;
  1437. if (! -d $config{wikistatedir}) {
  1438. mkdir($config{wikistatedir});
  1439. }
  1440. my $newfile="$config{wikistatedir}/indexdb.new";
  1441. my $cleanup = sub { unlink($newfile) };
  1442. open (my $out, '>', $newfile) || error("cannot write to $newfile: $!", $cleanup);
  1443. my %index;
  1444. foreach my $page (keys %pagemtime) {
  1445. next unless $pagemtime{$page};
  1446. my $src=$pagesources{$page};
  1447. $index{page}{$src}={
  1448. ctime => $pagectime{$page},
  1449. mtime => $pagemtime{$page},
  1450. dest => $renderedfiles{$page},
  1451. links => $links{$page},
  1452. };
  1453. if (exists $depends{$page}) {
  1454. $index{page}{$src}{depends} = $depends{$page};
  1455. }
  1456. if (exists $depends_simple{$page}) {
  1457. $index{page}{$src}{depends_simple} = $depends_simple{$page};
  1458. }
  1459. if (exists $typedlinks{$page} && %{$typedlinks{$page}}) {
  1460. $index{page}{$src}{typedlinks} = $typedlinks{$page};
  1461. }
  1462. if (exists $pagestate{$page}) {
  1463. foreach my $id (@hookids) {
  1464. foreach my $key (keys %{$pagestate{$page}{$id}}) {
  1465. $index{page}{$src}{state}{$id}{$key}=$pagestate{$page}{$id}{$key};
  1466. }
  1467. }
  1468. }
  1469. }
  1470. $index{state}={};
  1471. foreach my $id (@hookids) {
  1472. foreach my $key (keys %{$wikistate{$id}}) {
  1473. $index{state}{$id}{$key}=$wikistate{$id}{$key};
  1474. }
  1475. }
  1476. $index{version}="3";
  1477. my $ret=Storable::nstore_fd(\%index, $out);
  1478. return if ! defined $ret || ! $ret;
  1479. close $out || error("failed saving to $newfile: $!", $cleanup);
  1480. rename($newfile, "$config{wikistatedir}/indexdb") ||
  1481. error("failed renaming $newfile to $config{wikistatedir}/indexdb", $cleanup);
  1482. return 1;
  1483. }
  1484. sub template_file ($) {
  1485. my $template=shift;
  1486. foreach my $dir ($config{templatedir}, @{$config{templatedirs}},
  1487. "$installdir/share/ikiwiki/templates") {
  1488. return "$dir/$template" if -e "$dir/$template";
  1489. }
  1490. return;
  1491. }
  1492. sub template_params (@) {
  1493. my $filename=template_file(shift);
  1494. if (! defined $filename) {
  1495. return if wantarray;
  1496. return "";
  1497. }
  1498. my @ret=(
  1499. filter => sub {
  1500. my $text_ref = shift;
  1501. ${$text_ref} = decode_utf8(${$text_ref});
  1502. },
  1503. filename => $filename,
  1504. loop_context_vars => 1,
  1505. die_on_bad_params => 0,
  1506. @_
  1507. );
  1508. return wantarray ? @ret : {@ret};
  1509. }
  1510. sub template ($;@) {
  1511. require HTML::Template;
  1512. return HTML::Template->new(template_params(@_));
  1513. }
  1514. sub misctemplate ($$;@) {
  1515. my $title=shift;
  1516. my $pagebody=shift;
  1517. my $template=template("misc.tmpl");
  1518. $template->param(
  1519. title => $title,
  1520. indexlink => indexlink(),
  1521. wikiname => $config{wikiname},
  1522. pagebody => $pagebody,
  1523. baseurl => baseurl(),
  1524. @_,
  1525. );
  1526. run_hooks(pagetemplate => sub {
  1527. shift->(page => "", destpage => "", template => $template);
  1528. });
  1529. return $template->output;
  1530. }
  1531. sub hook (@) {
  1532. my %param=@_;
  1533. if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
  1534. error 'hook requires type, call, and id parameters';
  1535. }
  1536. return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
  1537. $hooks{$param{type}}{$param{id}}=\%param;
  1538. return 1;
  1539. }
  1540. sub run_hooks ($$) {
  1541. # Calls the given sub for each hook of the given type,
  1542. # passing it the hook function to call.
  1543. my $type=shift;
  1544. my $sub=shift;
  1545. if (exists $hooks{$type}) {
  1546. my (@first, @middle, @last);
  1547. foreach my $id (keys %{$hooks{$type}}) {
  1548. if ($hooks{$type}{$id}{first}) {
  1549. push @first, $id;
  1550. }
  1551. elsif ($hooks{$type}{$id}{last}) {
  1552. push @last, $id;
  1553. }
  1554. else {
  1555. push @middle, $id;
  1556. }
  1557. }
  1558. foreach my $id (@first, @middle, @last) {
  1559. $sub->($hooks{$type}{$id}{call});
  1560. }
  1561. }
  1562. return 1;
  1563. }
  1564. sub rcs_update () {
  1565. $hooks{rcs}{rcs_update}{call}->(@_);
  1566. }
  1567. sub rcs_prepedit ($) {
  1568. $hooks{rcs}{rcs_prepedit}{call}->(@_);
  1569. }
  1570. sub rcs_commit ($$$;$$) {
  1571. $hooks{rcs}{rcs_commit}{call}->(@_);
  1572. }
  1573. sub rcs_commit_staged ($$$) {
  1574. $hooks{rcs}{rcs_commit_staged}{call}->(@_);
  1575. }
  1576. sub rcs_add ($) {
  1577. $hooks{rcs}{rcs_add}{call}->(@_);
  1578. }
  1579. sub rcs_remove ($) {
  1580. $hooks{rcs}{rcs_remove}{call}->(@_);
  1581. }
  1582. sub rcs_rename ($$) {
  1583. $hooks{rcs}{rcs_rename}{call}->(@_);
  1584. }
  1585. sub rcs_recentchanges ($) {
  1586. $hooks{rcs}{rcs_recentchanges}{call}->(@_);
  1587. }
  1588. sub rcs_diff ($) {
  1589. $hooks{rcs}{rcs_diff}{call}->(@_);
  1590. }
  1591. sub rcs_getctime ($) {
  1592. $hooks{rcs}{rcs_getctime}{call}->(@_);
  1593. }
  1594. sub rcs_getmtime ($) {
  1595. $hooks{rcs}{rcs_getmtime}{call}->(@_);
  1596. }
  1597. sub rcs_receive () {
  1598. $hooks{rcs}{rcs_receive}{call}->();
  1599. }
  1600. sub add_depends ($$;$) {
  1601. my $page=shift;
  1602. my $pagespec=shift;
  1603. my $deptype=shift || $DEPEND_CONTENT;
  1604. # Is the pagespec a simple page name?
  1605. if ($pagespec =~ /$config{wiki_file_regexp}/ &&
  1606. $pagespec !~ /[\s*?()!]/) {
  1607. $depends_simple{$page}{lc $pagespec} |= $deptype;
  1608. return 1;
  1609. }
  1610. # Add explicit dependencies for influences.
  1611. my $sub=pagespec_translate($pagespec);
  1612. return unless defined $sub;
  1613. foreach my $p (keys %pagesources) {
  1614. my $r=$sub->($p, location => $page);
  1615. my $i=$r->influences;
  1616. my $static=$r->influences_static;
  1617. foreach my $k (keys %$i) {
  1618. next unless $r || $static || $k eq $page;
  1619. $depends_simple{$page}{lc $k} |= $i->{$k};
  1620. }
  1621. last if $static;
  1622. }
  1623. $depends{$page}{$pagespec} |= $deptype;
  1624. return 1;
  1625. }
  1626. sub deptype (@) {
  1627. my $deptype=0;
  1628. foreach my $type (@_) {
  1629. if ($type eq 'presence') {
  1630. $deptype |= $DEPEND_PRESENCE;
  1631. }
  1632. elsif ($type eq 'links') {
  1633. $deptype |= $DEPEND_LINKS;
  1634. }
  1635. elsif ($type eq 'content') {
  1636. $deptype |= $DEPEND_CONTENT;
  1637. }
  1638. }
  1639. return $deptype;
  1640. }
  1641. my $file_prune_regexp;
  1642. sub file_pruned ($) {
  1643. my $file=shift;
  1644. if (defined $config{include} && length $config{include}) {
  1645. return 0 if $file =~ m/$config{include}/;
  1646. }
  1647. if (! defined $file_prune_regexp) {
  1648. $file_prune_regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
  1649. $file_prune_regexp=qr/$file_prune_regexp/;
  1650. }
  1651. return $file =~ m/$file_prune_regexp/;
  1652. }
  1653. sub define_gettext () {
  1654. # If translation is needed, redefine the gettext function to do it.
  1655. # Otherwise, it becomes a quick no-op.
  1656. my $gettext_obj;
  1657. my $getobj;
  1658. if ((exists $ENV{LANG} && length $ENV{LANG}) ||
  1659. (exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
  1660. (exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
  1661. $getobj=sub {
  1662. $gettext_obj=eval q{
  1663. use Locale::gettext q{textdomain};
  1664. Locale::gettext->domain('ikiwiki')
  1665. };
  1666. };
  1667. }
  1668. no warnings 'redefine';
  1669. *gettext=sub {
  1670. $getobj->() if $getobj;
  1671. if ($gettext_obj) {
  1672. $gettext_obj->get(shift);
  1673. }
  1674. else {
  1675. return shift;
  1676. }
  1677. };
  1678. *ngettext=sub {
  1679. $getobj->() if $getobj;
  1680. if ($gettext_obj) {
  1681. $gettext_obj->nget(@_);
  1682. }
  1683. else {
  1684. return ($_[2] == 1 ? $_[0] : $_[1])
  1685. }
  1686. };
  1687. }
  1688. sub gettext {
  1689. define_gettext();
  1690. gettext(@_);
  1691. }
  1692. sub ngettext {
  1693. define_gettext();
  1694. ngettext(@_);
  1695. }
  1696. sub yesno ($) {
  1697. my $val=shift;
  1698. return (defined $val && (lc($val) eq gettext("yes") || lc($val) eq "yes" || $val eq "1"));
  1699. }
  1700. sub inject {
  1701. # Injects a new function into the symbol table to replace an
  1702. # exported function.
  1703. my %params=@_;
  1704. # This is deep ugly perl foo, beware.
  1705. no strict;
  1706. no warnings;
  1707. if (! defined $params{parent}) {
  1708. $params{parent}='::';
  1709. $params{old}=\&{$params{name}};
  1710. $params{name}=~s/.*:://;
  1711. }
  1712. my $parent=$params{parent};
  1713. foreach my $ns (grep /^\w+::/, keys %{$parent}) {
  1714. $ns = $params{parent} . $ns;
  1715. inject(%params, parent => $ns) unless $ns eq '::main::';
  1716. *{$ns . $params{name}} = $params{call}
  1717. if exists ${$ns}{$params{name}} &&
  1718. \&{${$ns}{$params{name}}} == $params{old};
  1719. }
  1720. use strict;
  1721. use warnings;
  1722. }
  1723. sub add_link ($$;$) {
  1724. my $page=shift;
  1725. my $link=shift;
  1726. my $type=shift;
  1727. push @{$links{$page}}, $link
  1728. unless grep { $_ eq $link } @{$links{$page}};
  1729. if (defined $type) {
  1730. $typedlinks{$page}{$type}{$link} = 1;
  1731. }
  1732. }
  1733. sub add_autofile ($$$) {
  1734. my $file=shift;
  1735. my $plugin=shift;
  1736. my $generator=shift;
  1737. $autofiles{$file}{plugin}=$plugin;
  1738. $autofiles{$file}{generator}=$generator;
  1739. }
  1740. sub sortspec_translate ($$) {
  1741. my $spec = shift;
  1742. my $reverse = shift;
  1743. my $code = "";
  1744. my @data;
  1745. while ($spec =~ m{
  1746. \s*
  1747. (-?) # group 1: perhaps negated
  1748. \s*
  1749. ( # group 2: a word
  1750. \w+\([^\)]*\) # command(params)
  1751. |
  1752. [^\s]+ # or anything else
  1753. )
  1754. \s*
  1755. }gx) {
  1756. my $negated = $1;
  1757. my $word = $2;
  1758. my $params = undef;
  1759. if ($word =~ m/^(\w+)\((.*)\)$/) {
  1760. # command with parameters
  1761. $params = $2;
  1762. $word = $1;
  1763. }
  1764. elsif ($word !~ m/^\w+$/) {
  1765. error(sprintf(gettext("invalid sort type %s"), $word));
  1766. }
  1767. if (length $code) {
  1768. $code .= " || ";
  1769. }
  1770. if ($negated) {
  1771. $code .= "-";
  1772. }
  1773. if (exists $IkiWiki::SortSpec::{"cmp_$word"}) {
  1774. if (defined $params) {
  1775. push @data, $params;
  1776. $code .= "IkiWiki::SortSpec::cmp_$word(\$data[$#data])";
  1777. }
  1778. else {
  1779. $code .= "IkiWiki::SortSpec::cmp_$word(undef)";
  1780. }
  1781. }
  1782. else {
  1783. error(sprintf(gettext("unknown sort type %s"), $word));
  1784. }
  1785. }
  1786. if (! length $code) {
  1787. # undefined sorting method... sort arbitrarily
  1788. return sub { 0 };
  1789. }
  1790. if ($reverse) {
  1791. $code="-($code)";
  1792. }
  1793. no warnings;
  1794. return eval 'sub { '.$code.' }';
  1795. }
  1796. sub pagespec_translate ($) {
  1797. my $spec=shift;
  1798. # Convert spec to perl code.
  1799. my $code="";
  1800. my @data;
  1801. while ($spec=~m{
  1802. \s* # ignore whitespace
  1803. ( # 1: match a single word
  1804. \! # !
  1805. |
  1806. \( # (
  1807. |
  1808. \) # )
  1809. |
  1810. \w+\([^\)]*\) # command(params)
  1811. |
  1812. [^\s()]+ # any other text
  1813. )
  1814. \s* # ignore whitespace
  1815. }gx) {
  1816. my $word=$1;
  1817. if (lc $word eq 'and') {
  1818. $code.=' &';
  1819. }
  1820. elsif (lc $word eq 'or') {
  1821. $code.=' |';
  1822. }
  1823. elsif ($word eq "(" || $word eq ")" || $word eq "!") {
  1824. $code.=' '.$word;
  1825. }
  1826. elsif ($word =~ /^(\w+)\((.*)\)$/) {
  1827. if (exists $IkiWiki::PageSpec::{"match_$1"}) {
  1828. push @data, $2;
  1829. $code.="IkiWiki::PageSpec::match_$1(\$page, \$data[$#data], \@_)";
  1830. }
  1831. else {
  1832. push @data, qq{unknown function in pagespec "$word"};
  1833. $code.="IkiWiki::ErrorReason->new(\$data[$#data])";
  1834. }
  1835. }
  1836. else {
  1837. push @data, $word;
  1838. $code.=" IkiWiki::PageSpec::match_glob(\$page, \$data[$#data], \@_)";
  1839. }
  1840. }
  1841. if (! length $code) {
  1842. $code="IkiWiki::FailReason->new('empty pagespec')";
  1843. }
  1844. no warnings;
  1845. return eval 'sub { my $page=shift; '.$code.' }';
  1846. }
  1847. sub pagespec_match ($$;@) {
  1848. my $page=shift;
  1849. my $spec=shift;
  1850. my @params=@_;
  1851. # Backwards compatability with old calling convention.
  1852. if (@params == 1) {
  1853. unshift @params, 'location';
  1854. }
  1855. my $sub=pagespec_translate($spec);
  1856. return IkiWiki::ErrorReason->new("syntax error in pagespec \"$spec\"")
  1857. if ! defined $sub;
  1858. return $sub->($page, @params);
  1859. }
  1860. sub pagespec_match_list ($$;@) {
  1861. my $page=shift;
  1862. my $pagespec=shift;
  1863. my %params=@_;
  1864. # Backwards compatability with old calling convention.
  1865. if (ref $page) {
  1866. print STDERR "warning: a plugin (".caller().") is using pagespec_match_list in an obsolete way, and needs to be updated\n";
  1867. $params{list}=$page;
  1868. $page=$params{location}; # ugh!
  1869. }
  1870. my $sub=pagespec_translate($pagespec);
  1871. error "syntax error in pagespec \"$pagespec\""
  1872. if ! defined $sub;
  1873. my $sort=sortspec_translate($params{sort}, $params{reverse})
  1874. if defined $params{sort};
  1875. my @candidates;
  1876. if (exists $params{list}) {
  1877. @candidates=exists $params{filter}
  1878. ? grep { ! $params{filter}->($_) } @{$params{list}}
  1879. : @{$params{list}};
  1880. }
  1881. else {
  1882. @candidates=exists $params{filter}
  1883. ? grep { ! $params{filter}->($_) } keys %pagesources
  1884. : keys %pagesources;
  1885. }
  1886. # clear params, remainder is passed to pagespec
  1887. $depends{$page}{$pagespec} |= ($params{deptype} || $DEPEND_CONTENT);
  1888. my $num=$params{num};
  1889. delete @params{qw{num deptype reverse sort filter list}};
  1890. # when only the top matches will be returned, it's efficient to
  1891. # sort before matching to pagespec,
  1892. if (defined $num && defined $sort) {
  1893. @candidates=IkiWiki::SortSpec::sort_pages(
  1894. $sort, @candidates);
  1895. }
  1896. my @matches;
  1897. my $firstfail;
  1898. my $count=0;
  1899. my $accum=IkiWiki::SuccessReason->new();
  1900. foreach my $p (@candidates) {
  1901. my $r=$sub->($p, %params, location => $page);
  1902. error(sprintf(gettext("cannot match pages: %s"), $r))
  1903. if $r->isa("IkiWiki::ErrorReason");
  1904. unless ($r || $r->influences_static) {
  1905. $r->remove_influence($p);
  1906. }
  1907. $accum |= $r;
  1908. if ($r) {
  1909. push @matches, $p;
  1910. last if defined $num && ++$count == $num;
  1911. }
  1912. }
  1913. # Add simple dependencies for accumulated influences.
  1914. my $i=$accum->influences;
  1915. foreach my $k (keys %$i) {
  1916. $depends_simple{$page}{lc $k} |= $i->{$k};
  1917. }
  1918. # when all matches will be returned, it's efficient to
  1919. # sort after matching
  1920. if (! defined $num && defined $sort) {
  1921. return IkiWiki::SortSpec::sort_pages(
  1922. $sort, @matches);
  1923. }
  1924. else {
  1925. return @matches;
  1926. }
  1927. }
  1928. sub pagespec_valid ($) {
  1929. my $spec=shift;
  1930. return defined pagespec_translate($spec);
  1931. }
  1932. sub glob2re ($) {
  1933. my $re=quotemeta(shift);
  1934. $re=~s/\\\*/.*/g;
  1935. $re=~s/\\\?/./g;
  1936. return $re;
  1937. }
  1938. package IkiWiki::FailReason;
  1939. use overload (
  1940. '""' => sub { $_[0][0] },
  1941. '0+' => sub { 0 },
  1942. '!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
  1943. '&' => sub { $_[0]->merge_influences($_[1], 1); $_[0] },
  1944. '|' => sub { $_[1]->merge_influences($_[0]); $_[1] },
  1945. fallback => 1,
  1946. );
  1947. our @ISA = 'IkiWiki::SuccessReason';
  1948. package IkiWiki::SuccessReason;
  1949. use overload (
  1950. '""' => sub { $_[0][0] },
  1951. '0+' => sub { 1 },
  1952. '!' => sub { bless $_[0], 'IkiWiki::FailReason'},
  1953. '&' => sub { $_[1]->merge_influences($_[0], 1); $_[1] },
  1954. '|' => sub { $_[0]->merge_influences($_[1]); $_[0] },
  1955. fallback => 1,
  1956. );
  1957. sub new {
  1958. my $class = shift;
  1959. my $value = shift;
  1960. return bless [$value, {@_}], $class;
  1961. }
  1962. sub influences {
  1963. my $this=shift;
  1964. $this->[1]={@_} if @_;
  1965. my %i=%{$this->[1]};
  1966. delete $i{""};
  1967. return \%i;
  1968. }
  1969. sub influences_static {
  1970. return ! $_[0][1]->{""};
  1971. }
  1972. sub merge_influences {
  1973. my $this=shift;
  1974. my $other=shift;
  1975. my $anded=shift;
  1976. if (! $anded || (($this || %{$this->[1]}) &&
  1977. ($other || %{$other->[1]}))) {
  1978. foreach my $influence (keys %{$other->[1]}) {
  1979. $this->[1]{$influence} |= $other->[1]{$influence};
  1980. }
  1981. }
  1982. else {
  1983. # influence blocker
  1984. $this->[1]={};
  1985. }
  1986. }
  1987. sub remove_influence {
  1988. my $this=shift;
  1989. my $torm=shift;
  1990. delete $this->[1]{$torm};
  1991. }
  1992. package IkiWiki::ErrorReason;
  1993. our @ISA = 'IkiWiki::FailReason';
  1994. package IkiWiki::PageSpec;
  1995. sub derel ($$) {
  1996. my $path=shift;
  1997. my $from=shift;
  1998. if ($path =~ m!^\./!) {
  1999. $from=~s#/?[^/]+$## if defined $from;
  2000. $path=~s#^\./##;
  2001. $path="$from/$path" if defined $from && length $from;
  2002. }
  2003. return $path;
  2004. }
  2005. sub match_glob ($$;@) {
  2006. my $page=shift;
  2007. my $glob=shift;
  2008. my %params=@_;
  2009. $glob=derel($glob, $params{location});
  2010. my $regexp=IkiWiki::glob2re($glob);
  2011. if ($page=~/^$regexp$/i) {
  2012. if (! IkiWiki::isinternal($page) || $params{internal}) {
  2013. return IkiWiki::SuccessReason->new("$glob matches $page");
  2014. }
  2015. else {
  2016. return IkiWiki::FailReason->new("$glob matches $page, but the page is an internal page");
  2017. }
  2018. }
  2019. else {
  2020. return IkiWiki::FailReason->new("$glob does not match $page");
  2021. }
  2022. }
  2023. sub match_internal ($$;@) {
  2024. return match_glob($_[0], $_[1], @_, internal => 1)
  2025. }
  2026. sub match_link ($$;@) {
  2027. my $page=shift;
  2028. my $link=lc(shift);
  2029. my %params=@_;
  2030. $link=derel($link, $params{location});
  2031. my $from=exists $params{location} ? $params{location} : '';
  2032. my $linktype=$params{linktype};
  2033. my $qualifier='';
  2034. if (defined $linktype) {
  2035. $qualifier=" with type $linktype";
  2036. }
  2037. my $links = $IkiWiki::links{$page};
  2038. return IkiWiki::FailReason->new("$page has no links", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
  2039. unless $links && @{$links};
  2040. my $bestlink = IkiWiki::bestlink($from, $link);
  2041. foreach my $p (@{$links}) {
  2042. if (length $bestlink) {
  2043. if ((!defined $linktype || exists $IkiWiki::typedlinks{$page}{$linktype}{$p}) && $bestlink eq IkiWiki::bestlink($page, $p)) {
  2044. return IkiWiki::SuccessReason->new("$page links to $link$qualifier", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
  2045. }
  2046. }
  2047. else {
  2048. if ((!defined $linktype || exists $IkiWiki::typedlinks{$page}{$linktype}{$p}) && match_glob($p, $link, %params)) {
  2049. return IkiWiki::SuccessReason->new("$page links to page $p$qualifier, matching $link", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
  2050. }
  2051. my ($p_rel)=$p=~/^\/?(.*)/;
  2052. $link=~s/^\///;
  2053. if ((!defined $linktype || exists $IkiWiki::typedlinks{$page}{$linktype}{$p_rel}) && match_glob($p_rel, $link, %params)) {
  2054. return IkiWiki::SuccessReason->new("$page links to page $p_rel$qualifier, matching $link", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
  2055. }
  2056. }
  2057. }
  2058. return IkiWiki::FailReason->new("$page does not link to $link$qualifier", $page => $IkiWiki::DEPEND_LINKS, "" => 1);
  2059. }
  2060. sub match_backlink ($$;@) {
  2061. my $ret=match_link($_[1], $_[0], @_);
  2062. $ret->influences($_[1] => $IkiWiki::DEPEND_LINKS);
  2063. return $ret;
  2064. }
  2065. sub match_created_before ($$;@) {
  2066. my $page=shift;
  2067. my $testpage=shift;
  2068. my %params=@_;
  2069. $testpage=derel($testpage, $params{location});
  2070. if (exists $IkiWiki::pagectime{$testpage}) {
  2071. if ($IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage}) {
  2072. return IkiWiki::SuccessReason->new("$page created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
  2073. }
  2074. else {
  2075. return IkiWiki::FailReason->new("$page not created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
  2076. }
  2077. }
  2078. else {
  2079. return IkiWiki::ErrorReason->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE);
  2080. }
  2081. }
  2082. sub match_created_after ($$;@) {
  2083. my $page=shift;
  2084. my $testpage=shift;
  2085. my %params=@_;
  2086. $testpage=derel($testpage, $params{location});
  2087. if (exists $IkiWiki::pagectime{$testpage}) {
  2088. if ($IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage}) {
  2089. return IkiWiki::SuccessReason->new("$page created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
  2090. }
  2091. else {
  2092. return IkiWiki::FailReason->new("$page not created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
  2093. }
  2094. }
  2095. else {
  2096. return IkiWiki::ErrorReason->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE);
  2097. }
  2098. }
  2099. sub match_creation_day ($$;@) {
  2100. if ((gmtime($IkiWiki::pagectime{shift()}))[3] == shift) {
  2101. return IkiWiki::SuccessReason->new('creation_day matched');
  2102. }
  2103. else {
  2104. return IkiWiki::FailReason->new('creation_day did not match');
  2105. }
  2106. }
  2107. sub match_creation_month ($$;@) {
  2108. if ((gmtime($IkiWiki::pagectime{shift()}))[4] + 1 == shift) {
  2109. return IkiWiki::SuccessReason->new('creation_month matched');
  2110. }
  2111. else {
  2112. return IkiWiki::FailReason->new('creation_month did not match');
  2113. }
  2114. }
  2115. sub match_creation_year ($$;@) {
  2116. if ((gmtime($IkiWiki::pagectime{shift()}))[5] + 1900 == shift) {
  2117. return IkiWiki::SuccessReason->new('creation_year matched');
  2118. }
  2119. else {
  2120. return IkiWiki::FailReason->new('creation_year did not match');
  2121. }
  2122. }
  2123. sub match_user ($$;@) {
  2124. shift;
  2125. my $user=shift;
  2126. my %params=@_;
  2127. my $regexp=IkiWiki::glob2re($user);
  2128. if (! exists $params{user}) {
  2129. return IkiWiki::ErrorReason->new("no user specified");
  2130. }
  2131. if (defined $params{user} && $params{user}=~/^$regexp$/i) {
  2132. return IkiWiki::SuccessReason->new("user is $user");
  2133. }
  2134. elsif (! defined $params{user}) {
  2135. return IkiWiki::FailReason->new("not logged in");
  2136. }
  2137. else {
  2138. return IkiWiki::FailReason->new("user is $params{user}, not $user");
  2139. }
  2140. }
  2141. sub match_admin ($$;@) {
  2142. shift;
  2143. shift;
  2144. my %params=@_;
  2145. if (! exists $params{user}) {
  2146. return IkiWiki::ErrorReason->new("no user specified");
  2147. }
  2148. if (defined $params{user} && IkiWiki::is_admin($params{user})) {
  2149. return IkiWiki::SuccessReason->new("user is an admin");
  2150. }
  2151. elsif (! defined $params{user}) {
  2152. return IkiWiki::FailReason->new("not logged in");
  2153. }
  2154. else {
  2155. return IkiWiki::FailReason->new("user is not an admin");
  2156. }
  2157. }
  2158. sub match_ip ($$;@) {
  2159. shift;
  2160. my $ip=shift;
  2161. my %params=@_;
  2162. if (! exists $params{ip}) {
  2163. return IkiWiki::ErrorReason->new("no IP specified");
  2164. }
  2165. if (defined $params{ip} && lc $params{ip} eq lc $ip) {
  2166. return IkiWiki::SuccessReason->new("IP is $ip");
  2167. }
  2168. else {
  2169. return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");
  2170. }
  2171. }
  2172. package IkiWiki::SortSpec;
  2173. # This is in the SortSpec namespace so that the $a and $b that sort() uses
  2174. # are easily available in this namespace, for cmp functions to use them.
  2175. sub sort_pages {
  2176. my $f=shift;
  2177. sort $f @_
  2178. }
  2179. sub cmp_title {
  2180. IkiWiki::pagetitle(IkiWiki::basename($a))
  2181. cmp
  2182. IkiWiki::pagetitle(IkiWiki::basename($b))
  2183. }
  2184. sub cmp_mtime { $IkiWiki::pagemtime{$b} <=> $IkiWiki::pagemtime{$a} }
  2185. sub cmp_age { $IkiWiki::pagectime{$b} <=> $IkiWiki::pagectime{$a} }
  2186. 1