2 # xapian-omega search engine plugin
3 package IkiWiki::Plugin::search;
10 hook(type => "getsetup", id => "search", call => \&getsetup);
11 hook(type => "checkconfig", id => "search", call => \&checkconfig);
12 hook(type => "pagetemplate", id => "search", call => \&pagetemplate);
13 hook(type => "postscan", id => "search", call => \&index);
14 hook(type => "delete", id => "search", call => \&delete);
15 hook(type => "cgi", id => "search", call => \&cgi);
27 example => "/usr/lib/cgi-bin/omega/omega",
28 description => "path to the omega cgi program",
29 safe => 0, # external program
35 foreach my $required (qw(url cgiurl)) {
36 if (! length $config{$required}) {
37 error(sprintf(gettext("Must specify %s when using the %s plugin"), $required, 'search'));
41 if (! defined $config{omega_cgi}) {
42 $config{omega_cgi}="/usr/lib/cgi-bin/omega/omega";
47 sub pagetemplate (@) {
49 my $page=$params{page};
50 my $template=$params{template};
52 # Add search box to page header.
53 if ($template->query(name => "searchform")) {
54 if (! defined $form) {
55 my $searchform = template("searchform.tmpl", blind_cache => 1);
56 $searchform->param(searchaction => $config{cgiurl});
57 $form=$searchform->output;
60 $template->param(searchform => $form);
71 # A unique pageterm is used to identify the document for a page.
72 my $pageterm=pageterm($params{page});
73 return $params{content} unless defined $pageterm;
76 my $doc=Search::Xapian::Document->new();
77 my $caption=pagetitle($params{page});
79 if (exists $pagestate{$params{page}}{meta} &&
80 exists $pagestate{$params{page}}{meta}{title}) {
81 $title=$pagestate{$params{page}}{meta}{title};
87 # Remove html from text to be indexed.
88 if (! defined $scrubber) {
89 eval q{use HTML::Scrubber};
91 $scrubber=HTML::Scrubber->new(allow => []);
94 my $toindex = defined $scrubber ? $scrubber->scrub($params{content}) : $params{content};
96 # Take 512 characters for a sample, then extend it out
97 # if it stopped in the middle of a word.
99 my ($sample)=substr($toindex, 0, $size);
100 if (length($sample) == $size) {
101 my $max=length($toindex);
103 while ($size < $max &&
104 ($next=substr($toindex, $size++, 1)) !~ /\s/) {
111 # Decode html entities in it, since omega re-encodes them.
112 eval q{use HTML::Entities};
114 "url=".urlto($params{page}, "")."\n".
115 "sample=".decode_entities($sample)."\n".
116 "caption=".decode_entities($caption)."\n".
117 "modtime=$IkiWiki::pagemtime{$params{page}}\n".
118 "size=".length($params{content})."\n"
121 # Index document and add terms for other metadata.
122 my $tg = Search::Xapian::TermGenerator->new();
124 my $langcode=$ENV{LANG} || "en";
127 # This whitelist is here to work around a xapian bug (#486138)
128 my @whitelist=qw{da de en es fi fr hu it no pt ru ro sv tr};
130 if (grep { $_ eq $langcode } @whitelist) {
131 $stemmer=Search::Xapian::Stem->new($langcode);
134 $stemmer=Search::Xapian::Stem->new("english");
137 $tg->set_stemmer($stemmer);
138 $tg->set_document($doc);
139 $tg->index_text($params{page}, 2);
140 $tg->index_text($caption, 2);
141 $tg->index_text($title, 2) if $title ne $caption;
142 $tg->index_text($toindex);
143 $tg->index_text(lc($title), 1, "S"); # for title:foo
144 foreach my $link (@{$links{$params{page}}}) {
145 $tg->index_text(lc($link), 1, "XLINK"); # for link:bar
148 $doc->add_term($pageterm);
149 $db->replace_document_by_term($pageterm, $doc);
154 foreach my $page (@_) {
155 my $pageterm=pageterm(pagename($page));
156 $db->delete_document_by_term($pageterm) if defined $pageterm;
163 if (defined $cgi->param('P')) {
164 # only works for GET requests
165 chdir("$config{wikistatedir}/xapian") || error("chdir: $!");
166 $ENV{OMEGA_CONFIG_FILE}="./omega.conf";
167 $ENV{CGIURL}=$config{cgiurl},
168 IkiWiki::loadindex();
169 $ENV{HELPLINK}=htmllink("", "", "ikiwiki/searching",
170 noimageinline => 1, linktext => "Help");
171 exec($config{omega_cgi}) || error("$config{omega_cgi} failed: $!");
178 # 240 is the number used by omindex to decide when to hash an
179 # overlong term. This does not use a compatible hash method though.
180 if (length $page > 240) {
181 eval q{use Digest::SHA1};
183 debug("search: ".sprintf(gettext("need Digest::SHA1 to index %s"), $page)) if $@;
187 # Note no colon, therefore it's guaranteed to not overlap
188 # with a page with the same name as the hash..
189 return "U".lc(Digest::SHA1::sha1_hex($page));
201 use Search::Xapian::WritableDatabase;
204 $db=Search::Xapian::WritableDatabase->new($config{wikistatedir}."/xapian/default",
205 Search::Xapian::DB_CREATE_OR_OPEN());
213 if (! $setup and (! -e $config{wikistatedir}."/xapian" || $config{rebuild})) {
214 writefile("omega.conf", $config{wikistatedir}."/xapian",
216 "template_dir ./templates\n");
217 writefile("query", $config{wikistatedir}."/xapian/templates",
218 IkiWiki::misctemplate(gettext("search"),
219 readfile(IkiWiki::template_file("searchquery.tmpl"))));