/[A3C]/bin/import-ldap.pl
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 /bin/import-ldap.pl

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

bin/ldap.pl revision 30 by dpavlin, Tue Mar 18 16:43:14 2008 UTC bin/import-ldap.pl revision 141 by dpavlin, Fri May 30 22:46:53 2008 UTC
# Line 6  use strict; Line 6  use strict;
6  use lib 'lib';  use lib 'lib';
7    
8  use Jifty;  use Jifty;
9  use Net::LDAP;  use A3C::LDAP;
10  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
11  use Getopt::Long;  use Getopt::Long;
12    
13  BEGIN { Jifty->new; };  BEGIN { Jifty->new; };
14    Jifty->web->request(Jifty::Request->new);
15    Jifty->web->response(Jifty::Response->new);
16    
17    my $limit = 0;
18    my @models;
19    my $strix;
20    
 my $limit = 100;  
21  GetOptions(  GetOptions(
22          'limit=i', => \$limit,          'limit=i', => \$limit,
23  );          'model=s', => \@models,
24            'strix+', => \$strix,
25  my $ldap_config = Jifty->config->app('LDAP');  ) or die "$0: $!";
26  Jifty->log->debug( "config->app(LDAP) = ",dump( $ldap_config ) );  
27    my $ldap = A3C::LDAP->new;
28  my $ldap = Net::LDAP->new( $ldap_config->{Server} ) or die "$@";  
29    sub sync_org {
30  # an anonymous bind          my $org_uid = shift;
31  #my $mesg = $ldap->bind;          my $action = Jifty->web->new_action(
32  my $mesg = $ldap->bind( $ldap_config->{DN}, password => $ldap_config->{Password} );                  class => 'SyncOrganization',
33                    moniker => 'sync',
34  Jifty->log->info("Connected to ", $ldap_config->{Server}, " with DN ", $ldap_config->{DN});                  arguments => {
35                            org_uid => $org_uid,
36  # perform a search                  }
37  $mesg = $ldap->search(          );
38          base   => "dc=skole,dc=hr",          $action->run;
39  #       filter => "(&(sn=Barr) (o=Texas Instruments))",          if ( $action->result->success ) {
40          filter => "(objectClass=hrEduPerson)",                  Jifty->log->info( $action->result->message );
41          sizelimit => $limit, # 0 = off          } else {
42  );                  Jifty->log->error( "Can't sync $org_uid" );
43            }
44    }
45    
46  if ( $mesg->code ) {  if ( $strix ) {
47          Jifty->log->error( $mesg->code, ": ", $mesg->error );          my $strix_sites = A3C::Model::StrixSiteCollection->new;
48            $strix_sites->unlimit;
49            my $o_nr = 1;
50            while ( my $site = $strix_sites->next ) {
51                    Jifty->log->info( 'sync organization ', $o_nr++, '/', $strix_sites->count, ' ', $site->site );
52                    sync_org( $site->site );
53            }
54            exit;
55  }  }
56    
57  Jifty->log->info( "found ", $mesg->count, " entries" );  if ( @models ) {
58    
59  #foreach my $entry ( $mesg->entries ) {          Jifty->log->info( 'syncing: ', join(',', @models) );
 while ( my $entry = $mesg->shift_entry ) {  
60    
61  #       $entry->dump;          foreach my $model ( @models ) {
62                    my $collection = $ldap->collection( $model, limit => $limit );
63                    Jifty->log->info( 'found ', $collection->count, ' entries for ', $model );
64            }
65    } else {
66    
67          my $data;          my $person_oc = $ldap->objectClass->{person};
68          my $user = A3C::Model::User->new;          my $org_oc = $ldap->objectClass->{organization};
69    
70          my @columns = map { $_->name } $user->columns;          Jifty->log->info( "syncing all $org_oc organizations and $person_oc persons" );
         #warn "# columns = ",dump( @columns );  
71    
72          foreach my $attr ( $entry->attributes ) {          my $orgs = $ldap->collection( $org_oc , limit => $limit );
                 if ( grep(/^\Q$attr\E$/, @columns ) ) {  
                         $data->{$attr} = $entry->get_value( $attr );  
                 } elsif ( $attr !~ m/^(objectClass)$/i ) {  
                         Jifty->log->error(ref($user)," doesn't have $attr");  
                 }  
         }  
73    
74          Jifty->log->debug( dump( $data ) );          my $o_nr = 1;
75    
76  #       my ( $id, $message ) = $user->load_or_create( %$data );          my $value_from = $ldap->link->{value_from};
         my ( $id, $message ) = $user->create( %$data );  
77    
78          if ( $id ) {          while ( my $o = $orgs->next ) {
79                  Jifty->log->info("added $id ", $data->{uid});                  Jifty->log->info( 'sync organization ', $o_nr++, '/', $orgs->count, ' ', $o->name );
80          } else {                  if ( ! $o->can( $value_from ) ) {
81                  Jifty->log->error( $message );                          warn "can't find $value_from in ",dump( $o->as_hash );
82                            next;
83                    }
84                    my $org_uid = $o->$value_from || warn "can't find org_uid in $value_from in ",dump( $o->as_hash );
85                    sync_org( $org_uid );
86          }          }
87  }  }
   

Legend:
Removed from v.30  
changed lines
  Added in v.141

  ViewVC Help
Powered by ViewVC 1.1.26