/[webpac2]/Webpacus/lib/Webpacus/Controller/Search.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /Webpacus/lib/Webpacus/Controller/Search.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 160 - (hide annotations)
Sat Nov 26 16:22:08 2005 UTC (18 years, 5 months ago) by dpavlin
File size: 3882 byte(s)
 r11153@llin:  dpavlin | 2005-11-26 17:24:13 +0100
 0.04: pager is working, some clenup in javascript

1 dpavlin 109 package Webpacus::Controller::Search;
2    
3     use strict;
4     use warnings;
5     use base 'Catalyst::Controller';
6    
7 dpavlin 153 use Data::Dumper;
8    
9 dpavlin 109 use lib '/data/webpac2/lib';
10 dpavlin 159 use WebPAC::Search::Estraier 0.03;
11 dpavlin 109
12 dpavlin 153
13 dpavlin 109 =head1 NAME
14    
15 dpavlin 155 Webpacus::Controller::Search - Search WebPAC data
16 dpavlin 109
17     =head1 SYNOPSIS
18    
19 dpavlin 155 See L<WebPAC>, L<Webpacus>
20 dpavlin 109
21     =head1 DESCRIPTION
22    
23 dpavlin 155 Catalyst Controller for search fields Hyper Estraier
24 dpavlin 109
25     =head1 METHODS
26    
27     =over 4
28    
29     =item default
30    
31     =cut
32    
33     sub default : Private {
34     my ( $self, $c ) = @_;
35     $c->stash->{template} = 'search.tt';
36     }
37    
38     =item suggest
39    
40     Returns results for URLs like C<search/suggest/FieldName>
41    
42 dpavlin 155 It will return field from URL (C<FieldName> in example>) and use
43     same filed in paramerers (comming from form or URL) or if it doesn't
44     exist field named C<all>.
45    
46 dpavlin 109 =cut
47    
48     sub suggest : Regex('^search/suggest/*([^/]*)') {
49 dpavlin 143 my ( $self, $c ) = @_;
50 dpavlin 109
51 dpavlin 143 my $what = $c->request->snippets->[0];
52 dpavlin 109
53 dpavlin 143 my $log = $c->log;
54 dpavlin 109
55 dpavlin 155 my $webpac = $c->comp('Model::WebPAC');
56 dpavlin 109
57 dpavlin 143 my $q = $c->req->params->{$what} ||
58     $c->req->params->{all} || $c->res->output("no results");
59 dpavlin 109
60 dpavlin 143
61 dpavlin 109 $log->info("search for '$q' in $what\n");
62    
63 dpavlin 155 my $max = $c->config->{'hits_for_suggest'};
64 dpavlin 143 if (! $max) {
65     $log->info("hits_for_suggest isn't defined, defaulting to 10");
66     $c->config->{'hits_for_suggest'} = 10;
67     $max = 10;
68     }
69 dpavlin 109
70 dpavlin 155 my @hits = $webpac->search(
71     phrase => $q,
72     max => $max,
73     get_attr => [ $what ],
74     );
75 dpavlin 109
76 dpavlin 143 my $used;
77     my @suggestions;
78    
79     foreach my $res (@hits) {
80     my $v = $res->{ $what } || next;
81     next if ($used->{ $v }++);
82     push @suggestions, $v;
83     }
84    
85     $log->debug( ($#suggestions + 1) . " unique hits returned");
86    
87     $c->res->body( $c->prototype->auto_complete_result( \@suggestions ) );
88 dpavlin 109 }
89    
90 dpavlin 153
91     # specify all Hyper Estraier operators which should stop this module
92     # from splitting search query and joining it with default operator
93     my $hest_op_regex = qr/(:?\[(:?BW|EW|RX)\]|AND|OR|ANDNOT)/;
94    
95     =item results
96    
97 dpavlin 159 Method which uses C<Model::WebPAC> and returns results for search query
98 dpavlin 153
99     =cut
100    
101     sub results : Local {
102     my ( $self, $c ) = @_;
103    
104     my $webpac = $c->comp('Model::WebPAC');
105     my $params = $c->req->params;
106     my $log = $c->log;
107    
108     $log->debug("results got params: " . Dumper( $params ) );
109    
110     my @attr;
111     my @words;
112     # default operator to join fields/words
113     my $operator = 'AND';
114    
115     foreach my $f (keys %{ $params }) {
116    
117     next if ($f =~ m/^_/o);
118    
119     my $v = $params->{$f} || next;
120    
121     if (my $op = $params->{ '_' . $f}) {
122     if ($v =~ $hest_op_regex) {
123     # don't split words if there is Hyper Estraier
124     # operator in them
125     push @words, $v;
126     } else {
127     push @words, join(" $op ", split(/\s+/, $v) );
128     }
129     } else {
130     push @words, $v;
131     }
132    
133     next if ($f eq 'all'); # don't add_attr for magic field all
134    
135     if ($v !~ /\s/) {
136     push @attr, "$f ISTRINC $v";
137     } else {
138     map {
139     push @attr, "$f ISTRINC $_";
140     } grep { ! $hest_op_regex } split(/\s+/, $v);
141     }
142     }
143    
144     my $q = join(" $operator ", @words);
145    
146 dpavlin 155 my $template = $params->{'_template'} || $c->config->{webpac}->{template};
147    
148     $log->die("can't find _template or default from configuration!") unless ($template);
149    
150 dpavlin 160 my $hits_on_page = $c->config->{'hyperestraier'}->{'hits_on_page'} || 10;
151 dpavlin 153
152 dpavlin 160 $log->debug("using template $template to produce $hits_on_page results");
153    
154 dpavlin 153 $c->stash->{html_results} = sub {
155     my $res = $webpac->search(
156     phrase => $q,
157     template => $template,
158 dpavlin 155 add_attr => \@attr,
159     get_attr => [ '@uri' ],
160 dpavlin 160 max => $hits_on_page,
161 dpavlin 159 page => $params->{'_page'},
162 dpavlin 153 );
163 dpavlin 160 # $log->debug("controller got " . ( $#{$res} + 1 ) . " results for '$q' " . Dumper( $res ));
164 dpavlin 153 return $res;
165     };
166    
167     $c->stash->{phrase} = $q;
168     $c->stash->{attr} = \@attr;
169 dpavlin 160 $c->stash->{page} = $params->{'_page'};
170     $c->stash->{hits_on_page} = $hits_on_page;
171 dpavlin 153
172     $c->stash->{template} = 'results.tt';
173     }
174    
175 dpavlin 109 =back
176    
177    
178     =head1 AUTHOR
179    
180 dpavlin 153 Dobrica Pavlinusic C<< <dpavlin@rot13.org> >>
181 dpavlin 109
182     =head1 LICENSE
183    
184     This library is free software, you can redistribute it and/or modify
185     it under the same terms as Perl itself.
186    
187     =cut
188    
189     1;

  ViewVC Help
Powered by ViewVC 1.1.26