]> sipb.mit.edu Git - ikiwiki.git/blob - IkiWiki/Plugin/goto.pm
Knock off a to-do item: "If the argument to cvs add smells like a
[ikiwiki.git] / IkiWiki / Plugin / goto.pm
1 #!/usr/bin/perl
2 package IkiWiki::Plugin::goto;
3
4 use warnings;
5 use strict;
6 use IkiWiki 3.00;
7
8 sub import {
9         hook(type => "cgi", id => 'goto',  call => \&cgi);
10 }
11
12 sub getsetup () {
13         return
14                 plugin => {
15                         safe => 1,
16                         rebuild => 0,
17                 }
18 }
19
20 # cgi_goto(CGI, [page])
21 # Redirect to a specified page, or display "not found". If not specified,
22 # the page param from the CGI object is used.
23 sub cgi_goto ($;$) {
24         my $q = shift;
25         my $page = shift;
26
27         if (!defined $page) {
28                 $page = IkiWiki::decode_utf8($q->param("page"));
29
30                 if (!defined $page) {
31                         error("missing page parameter");
32                 }
33         }
34
35         # It's possible that $page is not a valid page name;
36         # if so attempt to turn it into one.
37         if ($page !~ /$config{wiki_file_regexp}/) {
38                 $page=titlepage($page);
39         }
40
41         IkiWiki::loadindex();
42
43         # If the page is internal (like a comment), see if it has a
44         # permalink. Comments do.
45         if (IkiWiki::isinternal($page) &&
46             defined $pagestate{$page}{meta}{permalink}) {
47                 IkiWiki::redirect($q, $pagestate{$page}{meta}{permalink});
48         }
49
50         my $link = bestlink("", $page);
51
52         if (! length $link) {
53                 IkiWiki::cgi_custom_failure(
54                         $q->header(-status => "404 Not Found"),
55                         IkiWiki::misctemplate(gettext("missing page"),
56                                 "<p>".
57                                 sprintf(gettext("The page %s does not exist."),
58                                         htmllink("", "", $page)).
59                                 "</p>")
60                 )
61         }
62         else {
63                 IkiWiki::redirect($q, urlto($link, undef, 1));
64         }
65
66         exit;
67 }
68
69 sub cgi ($) {
70         my $cgi=shift;
71         my $do = $cgi->param('do');
72
73         if (defined $do && ($do eq 'goto' || $do eq 'commenter' ||
74                                $do eq 'recentchanges_link')) {
75                 # goto is the preferred name for this; recentchanges_link and
76                 # commenter are for compatibility with any saved URLs
77                 cgi_goto($cgi);
78         }
79 }
80
81 1;