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

revision 48 by dpavlin, Mon Mar 31 21:50:52 2008 UTC revision 111 by dpavlin, Wed May 14 16:50:02 2008 UTC
# Line 11  use Data::Dump qw/dump/; Line 11  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;  my $limit = 0;
18  my @models;  my @models;
# Line 19  GetOptions( Line 21  GetOptions(
21          'model=s', => \@models,          'model=s', => \@models,
22  );  );
23    
 @models = ( 'Organization' ) unless @models;  
   
24  my $ldap = A3C::LDAP->new;  my $ldap = A3C::LDAP->new;
25    
26  Jifty->log->info( 'syncing: ', join(',', @models) );  if ( @models ) {
27    
28  foreach my $model ( @models ) {          Jifty->log->info( 'syncing: ', join(',', @models) );
         my $collection = $ldap->collection( $model, limit => $limit );  
         Jifty->log->info( "found ", $collection->count, " entries for $model" );  
 }  
29    
30            foreach my $model ( @models ) {
31                    my $collection = $ldap->collection( $model, limit => $limit );
32                    Jifty->log->info( 'found ', $collection->count, ' entries for ', $model );
33            }
34    } else {
35    
36            my $person_oc = $ldap->objectClass->{person};
37            my $org_oc = $ldap->objectClass->{organization};
38    
39            Jifty->log->info( "syncing all $org_oc organizations and $person_oc persons" );
40    
41            my $orgs = $ldap->collection( $org_oc , limit => $limit );
42    
43            my $o_nr = 1;
44    
45            my $value_from = $ldap->link->{value_from};
46    
47            while ( my $o = $orgs->next ) {
48                    Jifty->log->info( 'sync organization ', $o_nr++, '/', $orgs->count, ' ', $o->name );
49                    my $org_uid = $o->$value_from || die "can't find org_uid in $value_from in ",dump( $o->as_hash );
50                    my $action = Jifty->web->new_action(
51                            class => 'SyncOrganization',
52                            moniker => 'sync',
53                            arguments => {
54                                    org_uid => $org_uid,
55                            }
56                    );
57                    $action->run;
58                    if ( $action->result->success ) {
59                            Jifty->log->info( $action->result->message );
60                    } else {
61                            Jifty->log->error( "Can't sync ", $o->name );
62                    }
63            }
64    }

Legend:
Removed from v.48  
changed lines
  Added in v.111

  ViewVC Help
Powered by ViewVC 1.1.26