]> sipb.mit.edu Git - ikiwiki.git/blob - IkiWiki/Plugin/search.pm
prettify page names, and drop the redunadant url display
[ikiwiki.git] / IkiWiki / Plugin / search.pm
1 #!/usr/bin/perl
2 # xapian-omega search engine plugin
3 package IkiWiki::Plugin::search;
4
5 use warnings;
6 use strict;
7 use IkiWiki 2.00;
8
9 sub import { #{{{
10         hook(type => "checkconfig", id => "search", call => \&checkconfig);
11         hook(type => "pagetemplate", id => "search", call => \&pagetemplate);
12         # run last so other needsbuild hooks can modify the list
13         hook(type => "needsbuild", id => "search", call => \&needsbuild,
14                 last => 1);
15         hook(type => "filter", id => "search", call => \&filter);
16         hook(type => "delete", id => "search", call => \&delete);
17         hook(type => "cgi", id => "search", call => \&cgi);
18 } # }}}
19
20 sub checkconfig () { #{{{
21         foreach my $required (qw(url cgiurl)) {
22                 if (! length $config{$required}) {
23                         error(sprintf(gettext("Must specify %s when using the search plugin"), $required));
24                 }
25         }
26
27         if (! exists $config{omega_cgi}) {
28                 $config{omega_cgi}="/usr/lib/cgi-bin/omega/omega";
29         }
30         
31         if (! -e $config{wikistatedir}."/xapian" || $config{rebuild}) {
32                 writefile("omega.conf", $config{wikistatedir}."/xapian",
33                         "database_dir .\n".
34                         "template_dir ./templates\n");
35                 writefile("query", $config{wikistatedir}."/xapian/templates",
36                         IkiWiki::misctemplate(gettext("search"),
37                                 readfile(IkiWiki::template_file("searchquery.tmpl"))));
38         }
39 } #}}}
40
41 my $form;
42 sub pagetemplate (@) { #{{{
43         my %params=@_;
44         my $page=$params{page};
45         my $template=$params{template};
46
47         # Add search box to page header.
48         if ($template->query(name => "searchform")) {
49                 if (! defined $form) {
50                         my $searchform = template("searchform.tmpl", blind_cache => 1);
51                         $searchform->param(searchaction => $config{cgiurl});
52                         $form=$searchform->output;
53                 }
54
55                 $template->param(searchform => $form);
56         }
57 } #}}}
58
59 my %toindex;
60 sub needsbuild ($) { #{{{
61         %toindex = map { pagename($_) => 1 } @{shift()};
62 } #}}}
63
64 sub filter (@) { #{{{
65         my %params=@_;
66         
67         if ($params{page} eq $params{destpage} && $toindex{$params{page}}) {
68                 # index page
69                 my $db=xapiandb();
70                 my $doc=Search::Xapian::Document->new();
71                 my $title;
72                 if (exists $pagestate{$params{page}}{meta} &&
73                     exists $pagestate{$params{page}}{meta}{title}) {
74                         $title=$pagestate{$params{page}}{meta}{title};
75                 }
76                 else {
77                         $title=IkiWiki::pagetitle($params{page});
78                 }
79
80                 # data used by omega
81                 $doc->set_data(
82                         "url=".urlto($params{page}, "")."\n".
83                         "sample=\n". # TODO
84                         "caption=$title\n".
85                         "modtime=$IkiWiki::pagemtime{$params{page}}\n".
86                         "size=".length($params{content})."\n"
87                 );
88
89                 my $tg = Search::Xapian::TermGenerator->new();
90                 $tg->set_stemmer(new Search::Xapian::Stem("english"));
91                 $tg->set_document($doc);
92                 $tg->index_text($params{page}, 2);
93                 $tg->index_text($title, 2);
94                 $tg->index_text($params{content}); # TODO html strip; preprocessor too
95
96                 my $pageterm=pageterm($params{page});
97                 $doc->add_term($pageterm);
98                 $db->replace_document_by_term($pageterm, $doc);
99         }
100
101         return $params{content};
102 } #}}}
103
104 sub delete (@) { #{{{
105         my $db=xapiandb();
106         foreach my $page (@_) {
107                 $db->delete_document_by_term(pageterm($page));
108         }
109 } #}}}
110
111 sub cgi ($) { #{{{
112         my $cgi=shift;
113
114         if (defined $cgi->param('P')) {
115                 # only works for GET requests
116                 chdir("$config{wikistatedir}/xapian") || error("chdir: $!");
117                 $ENV{OMEGA_CONFIG_FILE}="./omega.conf";
118                 $ENV{CGIURL}=$config{cgiurl},
119                 exec($config{omega_cgi}) || error("$config{omega_cgi} failed: $!");
120         }
121 } #}}}
122
123 sub pageterm ($) { #{{{
124         my $page=shift;
125
126         # TODO: check if > 255 char page names overflow term
127         # length; use sha1 if so?
128         return "P".$page;
129 } #}}}
130
131 my $db;
132 sub xapiandb () { #{{{
133         if (! defined $db) {
134                 eval q{
135                         use Search::Xapian;
136                         use Search::Xapian::WritableDatabase;
137                 };
138                 error($@) if $@;
139                 $db=Search::Xapian::WritableDatabase->new($config{wikistatedir}."/xapian/default",
140                         Search::Xapian::DB_CREATE_OR_OPEN());
141         }
142         return $db;
143 } #}}}
144
145 1