/[webpac2]/trunk/lib/WebPAC/Output/Estraier.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 /trunk/lib/WebPAC/Output/Estraier.pm

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

revision 245 by dpavlin, Wed Dec 14 23:04:59 2005 UTC revision 319 by dpavlin, Sat Dec 24 11:23:17 2005 UTC
# Line 17  WebPAC::Output::Estraier - Create Hyper Line 17  WebPAC::Output::Estraier - Create Hyper
17    
18  =head1 VERSION  =head1 VERSION
19    
20  Version 0.04  Version 0.08
21    
22  =cut  =cut
23    
24  our $VERSION = '0.04';  our $VERSION = '0.08';
25    
26  =head1 SYNOPSIS  =head1 SYNOPSIS
27    
# Line 40  Connect to Hyper Estraier index using HT Line 40  Connect to Hyper Estraier index using HT
40          passwd => 'admin',          passwd => 'admin',
41          database => 'demo',          database => 'demo',
42          encoding => 'iso-8859-2',          encoding => 'iso-8859-2',
43            clean => 1,
44   );   );
45    
46  Options are:  Options are:
# Line 90  sub new { Line 91  sub new {
91          my $url = $self->{masterurl} . '/node/' . $self->{database};          my $url = $self->{masterurl} . '/node/' . $self->{database};
92          $self->{url} = $url;          $self->{url} = $url;
93    
94          $log->info("opening Hyper Estraier index $self->{url}");          if ($self->{clean}) {
95                    $log->debug("nodedel $self->{database}");
96                    $self->master( action => 'nodedel', name => $self->{database} );
97            } else {
98                    $log->debug("opening index $self->{url}");
99            }
100    
101          my $nodes = $self->est_master( action => 'nodelist' );          my $nodes = $self->master( action => 'nodelist' );
102    
103          $log->debug("nodes found: $nodes");          $log->debug("nodes found: $nodes");
104    
105          if ($nodes !~ m/^$self->{database}\t/sm) {          if ($nodes !~ m/^$self->{database}\t/sm) {
106                  $log->info("creating index $url");                  $log->warn("creating index $url");
107                  $self->est_master(                  $self->master(
108                          action => 'nodeadd',                          action => 'nodeadd',
109                          name => $self->{database},                          name => $self->{database},
110                          label => "WebPAC $self->{database}",                          label => "WebPAC $self->{database}",
# Line 109  sub new { Line 115  sub new {
115          $self->{'db'}->set_auth($self->{'user'}, $self->{passwd});          $self->{'db'}->set_auth($self->{'user'}, $self->{passwd});
116    
117          my $encoding = $self->{'encoding'} || 'ISO-8859-2';          my $encoding = $self->{'encoding'} || 'ISO-8859-2';
118          $log->info("using encoding $encoding");          $log->info("using index $self->{url} with encoding $encoding");
119    
120          $self->{'iconv'} = new Text::Iconv($encoding, 'UTF-8') or          $self->{'iconv'} = new Text::Iconv($encoding, 'UTF-8') or
121                  $log->logdie("can't create conversion from $encoding to UTF-8");                  $log->logdie("can't create conversion from $encoding to UTF-8");
# Line 193  sub add { Line 199  sub add {
199          }          }
200    
201          $log->debug("adding ", sub { $doc->dump_draft } );          $log->debug("adding ", sub { $doc->dump_draft } );
202          $self->{'db'}->put_doc($doc) || $log->logdie("can't add document $uri to node " . $self->{url} . " status: " . $self->{db}->status());          $self->{'db'}->put_doc($doc) || $log->warn("can't add document $uri with draft " . $doc->dump_draft . " to node " . $self->{url} . " status: " . $self->{db}->status());
203    
204          return 1;          return 1;
205  }  }
206    
207  =head2 est_master  #
208    # REST parametars validation data
209    #
210    
211    my $estraier_rest = {
212            master => {
213                    userdel => [ qw/name/ ],
214                    nodelist => [],
215                    nodeadd => [ qw/name label/ ],
216                    nodedel => [ qw/name/ ],
217            },
218            node => {
219                    _set_link => [ qw/url label credit/ ],
220            },
221    };
222    
223    =head2 master
224    
225  Issue administrative commands to C<estmaster> process and receive response  Issue administrative commands to C<estmaster> process and receive response
226  as array of lines  as array of lines
227    
228    my $nodelist = $self->est_master( action => nodelist );    my $nodelist = $est->master( action => 'nodelist' );
229    
230  =cut  =cut
231    
232  my $estmaster_actions = {  sub master {
         userdel => [ qw/name/ ],  
         nodelist => [],  
         nodeadd => [ qw/name label/ ],  
         nodedel => [ qw/name/ ],  
 };  
   
 sub est_ua {  
233          my $self = shift;          my $self = shift;
234    
235          return $self->{_master_ua} if ($self->{_master_ua});          my $args = {@_};
236            my $log = $self->_get_logger;
237    
238          $self->{_master_ua} = LWP::UserAgent->new( ) || sub {          my $action = $args->{action} || $log->logconfess("no action specified");
                 my $log = $self->_get_logger;  
                 $log->logdie("can't create LWP::UserAgent: $!");  
         };  
239    
240          $self->{_master_ua}->credentials('localhost:1978','Super User', $self->{user} => $self->{passwd});          $log->logdie("action '$action' isn't supported") unless ($estraier_rest->{master}->{$action});
241    
242          return $self->{_master_ua};          $log->debug("master action: $action");
243    
244            return $self->estcall(
245                    validate => 'master',
246                    rest_url => $self->{masterurl} . '/master?action=' . $action ,
247                    action => $action,
248                    %{ $args },
249            );
250  }  }
251    
252  sub est_master {  =head2 add_link
253    
254      $est->add_link(
255            from => 'ps',
256            to => 'webpac2',
257            credit => 10000,
258      );
259    
260    =cut
261    
262    sub add_link {
263          my $self = shift;          my $self = shift;
264    
265          my $args = {@_};          my $args = {@_};
266          my $log = $self->_get_logger;          my $log = $self->_get_logger;
267    
268          $log->debug(Dumper($args));          my @labels = $self->master( action => 'nodelist' );
269    
270          my $action = $args->{action} || $log->logconfess("no action specified");          $log->debug("got labels: ", join("|", @labels));
271    
272            @labels = grep(/^$args->{to}\t/, @labels);
273            my $label = shift @labels;
274            (undef,$label) = split(/\t/, $label) if ($label);
275    
276            if (! $label) {
277                    $log->warn("can't find label for $args->{to}, skipping link creaton");
278                    return;
279            }
280    
281            $log->debug("using label $label for $args->{to}");
282    
283            return $self->estcall(
284                    validate => 'node',
285                    action => '_set_link',
286                    rest_url => $self->{masterurl} . '/node/' . $args->{from} . '/_set_link' ,
287                    url => $self->{masterurl} . '/node/' . $args->{to},
288                    label => $label,
289                    credit => $args->{credit},
290            );
291    }
292    
293    =head2 estcall
294    
295    Workhourse which does actual calls to Hyper Estraier
296    
297          $log->logdie("action '$action' isn't supported") unless ($estmaster_actions->{$action});    $self->estcall(
298            rest_url => '/master?action=' . $action,
299            validate => 'master',
300            # ...
301      );
302    
303    C<rest_url> is relative URL to C<estmaster> and C<validate> is entry into
304    internal hash which will check if all parametars are available before
305    calling function.
306    
307    =cut
308    
309    sub estcall {
310            my $self = shift;
311            my $args = {@_};
312            my $log = $self->_get_logger;
313    
314          my $url = $self->{masterurl} . '/master?action=' . $action;          $log->debug("estcall: ",Dumper($args));
315    
316          foreach my $arg (@{ $estmaster_actions->{$action} }) {          foreach my $p (qw/rest_url validate action/) {
317                  $log->logdie("missing parametar $arg for action $action") unless ($args->{$arg});                  $log->die("ectcall needs $p parametar") unless ($args->{$p});
                 $url .= '&' . $arg . '=' . uri_escape( $args->{$arg} );  
318          }          }
319    
320            my $url = $args->{rest_url};
321            my $del = '?';
322            $del = '&' if ($url =~ m#\?#);
323    
324            my $url_args;
325    
326            foreach my $arg (@{ $estraier_rest->{ $args->{validate} }->{ $args->{action} } }) {
327                    $log->logdie("missing parametar $arg for action $args->{action}") unless ($args->{$arg});
328                    $url_args .= $del . $arg . '=' . uri_escape( $args->{$arg} );
329                    $del = '&';
330            }
331    
332            $url .= $url_args if ($url_args);
333    
334          $log->debug("calling $url");          $log->debug("calling $url");
335    
336          my $res = $self->est_ua()->get($url);          my $res = $self->est_ua()->get($url);
# Line 254  sub est_master { Line 338  sub est_master {
338          if ($res->is_success) {          if ($res->is_success) {
339                  #$log->debug( $res->content );                  #$log->debug( $res->content );
340                  return split(/\n/, $res->content) if wantarray;                  return split(/\n/, $res->content) if wantarray;
341                  return $res->content;                  return $res->content || 0E0;
342          } else {          } else {
343                  $log->warn("unable to call $url: " . $res->status_line);                  $log->warn("unable to call $url: " . $res->status_line);
344                  return;                  return;
# Line 262  sub est_master { Line 346  sub est_master {
346    
347  }  }
348    
349    =head2 est_ua
350    
351    This is helper function to create C<LWP::UserAgent> object with Super User
352    priviledges
353    
354      my $ua = $self->est_ua( user => 'admin', passwd => 'admin' );
355    
356    =cut
357    
358                                                
359    
360    sub est_ua {
361            my $self = shift;
362    
363            return $self->{_master_ua} if ($self->{_master_ua});
364    
365            {
366                    package AdminUserAgent;
367                    use base qw/LWP::UserAgent/;
368                    sub new {
369                            my $self = LWP::UserAgent::new(@_);
370                            $self->agent("webpac/$VERSION");
371                            $self;
372                    }
373                    sub get_basic_credentials {
374                            my($self, $realm, $uri) = @_;
375                            return ($self->{user}, $self->{passwd});
376                    }
377                    sub set_basic_credentials {
378                            my ($self, $user, $passwd) = @_;
379                            $self->{user} = $user;
380                            $self->{passwd} = $passwd;
381                    }
382            };
383    
384            $self->{_master_ua} = AdminUserAgent->new( ) || sub {
385                    my $log = $self->_get_logger;
386                    $log->logdie("can't create LWP::UserAgent: $!");
387            };
388    
389            $self->{_master_ua}->set_basic_credentials($self->{user}, $self->{passwd});
390    
391            return $self->{_master_ua};
392    }
393    
394  =head1 AUTHOR  =head1 AUTHOR
395    
396  Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>  Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>

Legend:
Removed from v.245  
changed lines
  Added in v.319

  ViewVC Help
Powered by ViewVC 1.1.26