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

Legend:
Removed from v.246  
changed lines
  Added in v.284

  ViewVC Help
Powered by ViewVC 1.1.26