2 # xapian-omega search engine plugin
3 package IkiWiki::Plugin::search;
10 hook(type => "checkconfig", id => "search", call => \&checkconfig);
11 hook(type => "pagetemplate", id => "search", call => \&pagetemplate);
12 hook(type => "sanitize", id => "search", call => \&index);
13 hook(type => "delete", id => "search", call => \&delete);
14 hook(type => "cgi", id => "search", call => \&cgi);
17 sub checkconfig () { #{{{
18 foreach my $required (qw(url cgiurl)) {
19 if (! length $config{$required}) {
20 error(sprintf(gettext("Must specify %s when using the search plugin"), $required));
24 if (! exists $config{omega_cgi}) {
25 $config{omega_cgi}="/usr/lib/cgi-bin/omega/omega";
28 if (! -e $config{wikistatedir}."/xapian" || $config{rebuild}) {
29 writefile("omega.conf", $config{wikistatedir}."/xapian",
31 "template_dir ./templates\n");
32 writefile("query", $config{wikistatedir}."/xapian/templates",
33 IkiWiki::misctemplate(gettext("search"),
34 readfile(IkiWiki::template_file("searchquery.tmpl"))));
39 sub pagetemplate (@) { #{{{
41 my $page=$params{page};
42 my $template=$params{template};
44 # Add search box to page header.
45 if ($template->query(name => "searchform")) {
46 if (! defined $form) {
47 my $searchform = template("searchform.tmpl", blind_cache => 1);
48 $searchform->param(searchaction => $config{cgiurl});
49 $form=$searchform->output;
52 $template->param(searchform => $form);
60 return $params{content} if $IkiWiki::preprocessing{$params{destpage}};
63 my $doc=Search::Xapian::Document->new();
65 if (exists $pagestate{$params{page}}{meta} &&
66 exists $pagestate{$params{page}}{meta}{title}) {
67 $title=$pagestate{$params{page}}{meta}{title};
70 $title=IkiWiki::pagetitle($params{page});
73 # Remove html from text to be indexed.
74 if (! defined $scrubber) {
75 eval q{use HTML::Scrubber};
77 $scrubber=HTML::Scrubber->new(allow => []);
80 my $toindex = defined $scrubber ? $scrubber->scrub($params{content}) : $params{content};
82 # Take 512 characters for a sample, then extend it out
83 # if it stopped in the middle of a word.
85 my ($sample)=substr($toindex, 0, $size);
86 if (length($sample) == $size) {
87 my $max=length($toindex);
89 while ($size < $max &&
90 ($next=substr($toindex, $size++, 1)) !~ /\s/) {
98 "url=".urlto($params{page}, "")."\n".
101 "modtime=$IkiWiki::pagemtime{$params{page}}\n".
102 "size=".length($params{content})."\n"
105 my $tg = Search::Xapian::TermGenerator->new();
106 $tg->set_stemmer(new Search::Xapian::Stem("english"));
107 $tg->set_document($doc);
108 $tg->index_text($params{page}, 2);
109 $tg->index_text($title, 2);
110 $tg->index_text($toindex);
112 my $pageterm=pageterm($params{page});
113 $doc->add_term($pageterm);
114 $db->replace_document_by_term($pageterm, $doc);
116 return $params{content};
119 sub delete (@) { #{{{
121 foreach my $page (@_) {
122 $db->delete_document_by_term(pageterm($page));
129 if (defined $cgi->param('P')) {
130 # only works for GET requests
131 chdir("$config{wikistatedir}/xapian") || error("chdir: $!");
132 $ENV{OMEGA_CONFIG_FILE}="./omega.conf";
133 $ENV{CGIURL}=$config{cgiurl},
134 exec($config{omega_cgi}) || error("$config{omega_cgi} failed: $!");
138 sub pageterm ($) { #{{{
141 # TODO: check if > 255 char page names overflow term
142 # length; use sha1 if so?
147 sub xapiandb () { #{{{
151 use Search::Xapian::WritableDatabase;
154 $db=Search::Xapian::WritableDatabase->new($config{wikistatedir}."/xapian/default",
155 Search::Xapian::DB_CREATE_OR_OPEN());