/[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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 161 by dpavlin, Sat Nov 26 16:37:04 2005 UTC revision 275 by dpavlin, Sat Dec 17 03:20:19 2005 UTC
# Line 32  Catalyst Controller for search fields Hy Line 32  Catalyst Controller for search fields Hy
32    
33  sub default : Private {  sub default : Private {
34      my ( $self, $c ) = @_;      my ( $self, $c ) = @_;
35    
36        $c->log->debug("default search got param: ".Dumper($c->req->params));
37    
38      $c->stash->{template} = 'search.tt';      $c->stash->{template} = 'search.tt';
39  }  }
40    
# Line 55  sub suggest : Regex('^search/suggest/*([ Line 58  sub suggest : Regex('^search/suggest/*([
58          my $webpac = $c->comp('Model::WebPAC');          my $webpac = $c->comp('Model::WebPAC');
59    
60          my $q = $c->req->params->{$what} ||          my $q = $c->req->params->{$what} ||
61                  $c->req->params->{all} || $c->res->output("no results");                  $c->req->params->{all} || $c->response->body("no results");
62    
63    
64          $log->info("search for '$q' in $what\n");          $log->info("search for '$q' in $what\n");
# Line 84  sub suggest : Regex('^search/suggest/*([ Line 87  sub suggest : Regex('^search/suggest/*([
87    
88          $log->debug( ($#suggestions + 1) . " unique hits returned");          $log->debug( ($#suggestions + 1) . " unique hits returned");
89    
90          $c->res->body( $c->prototype->auto_complete_result( \@suggestions ) );          $c->response->body( $c->prototype->auto_complete_result( \@suggestions ) );
91  }  }
92    
93    
 # specify all Hyper Estraier operators which should stop this module  
 # from splitting search query and joining it with default operator  
 my $hest_op_regex = qr/(:?\[(:?BW|EW|RX)\]|AND|OR|ANDNOT)/;  
   
94  =item results  =item results
95    
96  Method which uses C<Model::WebPAC> and returns results for search query  Returns results for search query
97    
98  =cut  =cut
99    
100  sub results : Local {  sub results : Local {
101          my ( $self, $c ) = @_;          my ( $self, $c ) = @_;
102    
         my $webpac = $c->comp('Model::WebPAC');  
103          my $params = $c->req->params;          my $params = $c->req->params;
104    
105            # oh, client didn't have ability to setup AJAX, fallback to
106            # page refresh
107            if (! $params->{'_ajax'}) {
108                    $params->{_ajax} = 1;
109                    $c->stash->{results} = $c->subreq('/search/results/ajax', {}, $params);
110            $c->stash->{template} = 'search.tt';
111            } else {
112                    $c->forward('/search/results/ajax');
113            $c->stash->{template} = 'results.tt';
114            }
115    }
116    
117    
118    =item results_ajax
119    
120    Private method which uses C<Model::WebPAC> and returns results for search
121    query It generatets just I<inner> HTML for results div, so it has C<_ajax>
122    in name.
123    
124    =cut
125    
126    # specify all Hyper Estraier operators which should stop this module
127    # from splitting search query and joining it with default operator
128    my $hest_op_regex = qr/(:?\[(:?BW|EW|RX)\]|AND|OR|ANDNOT)/o;
129    
130    sub results_ajax : Path( 'results/ajax' ) {
131            my ( $self, $c ) = @_;
132    
133            my $params = $c->req->params;
134            my $webpac = $c->comp('Model::WebPAC');
135          my $log = $c->log;          my $log = $c->log;
136    
137          $log->debug("results got params: " . Dumper( $params ) );          $log->debug("results got params: " . Dumper( $params ) );
138    
139          if ($params->{_page} < 1) {          if (! $params->{_page} || $params->{_page} < 1) {
140                  $params->{_page} = 1;                  $params->{_page} = 1;
141                  $log->warn("fixed _page parametar to 1");                  $log->warn("fixed _page parametar to 1");
142          }          }
# Line 146  sub results : Local { Line 175  sub results : Local {
175                  }                  }
176          }          }
177    
178            if ($params->{_database}) {
179                    my $type = $c->config->{hyperstraier}->{type} || 'search';
180                    my $attr;
181                    if (ref($params->{_database}) eq 'ARRAY') {
182                            # FIXME do we need to add $ at end?
183                            $attr .= '(' . join("|",@{$params->{_database}}) . ')';
184                    } else {
185                            $attr .= $params->{_database};
186                    }
187                    push @attr, '@uri STRRX /' . $type . '/' . $attr . '/';
188            }
189    
190          my $q = join(" $operator ", @words);          my $q = join(" $operator ", @words);
191    
192          my $template = $params->{'_template'} || $c->config->{webpac}->{template};          my $template = $params->{'_template'} || $c->config->{webpac}->{template};
# Line 175  sub results : Local { Line 216  sub results : Local {
216          $c->stash->{hits_on_page} = $hits_on_page;          $c->stash->{hits_on_page} = $hits_on_page;
217    
218          $c->stash->{template} = 'results.tt';          $c->stash->{template} = 'results.tt';
219    
220  }  }
221    
222  =back  =item record
223    
224    forwarded to C</editor/record>
225    
226    =cut
227    
228    sub record : Local {
229            my ( $self, $c ) = @_;
230    
231            $c->forward( '/editor/record' );
232    }
233    
234    =back
235    
236  =head1 AUTHOR  =head1 AUTHOR
237    

Legend:
Removed from v.161  
changed lines
  Added in v.275

  ViewVC Help
Powered by ViewVC 1.1.26