/[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 5 by dpavlin, Wed Mar 12 23:14:13 2008 UTC revision 10 by dpavlin, Thu Mar 13 14:08:41 2008 UTC
# Line 7  use lib 'lib'; Line 7  use lib 'lib';
7    
8  use Jifty;  use Jifty;
9  use Net::LDAP;  use Net::LDAP;
10    use Data::Dump qw/dump/;
11    
12  BEGIN { Jifty->new; };  BEGIN { Jifty->new; };
13    
14  my $ldap = Net::LDAP->new( 'ldap1.skole.local' ) or die "$@";  my $ldap_config = Jifty->config->app('LDAP');
15    Jifty->log->debug( "config->app(LDAP) = ",dump( $ldap_config ) );
16    
17    my $ldap = Net::LDAP->new( Jifty->config->app('LDAP')->{Server} ) or die "$@";
18    
19  # an anonymous bind  # an anonymous bind
20  my $mesg = $ldap->bind;  #my $mesg = $ldap->bind;
21    my $mesg = $ldap->bind(
22            DN       => Jifty->config->app('LDAP')->{DN},
23            password => Jifty->config->app('LDAP')->{Password},
24    );
25    
26  # perform a search  # perform a search
27  $mesg = $ldap->search(  $mesg = $ldap->search(
28          base   => "dc=skole,dc=hr",          base   => "dc=skole,dc=hr",
29  #       filter => "(&(sn=Barr) (o=Texas Instruments))",  #       filter => "(&(sn=Barr) (o=Texas Instruments))",
30          filter => "(objectClass=hrEduPerson)",          filter => "(objectClass=hrEduPerson)",
31          sizelimit => 0, # off          sizelimit => 100, # 0 = off
32  );  );
33    
34  if ( $mesg->code ) {  if ( $mesg->code ) {
35          warn $mesg->code, ": ", $mesg->error, "\n";          warn $mesg->code, ": ", $mesg->error, "\n";
36  }  }
37    
38    Jifty->log->info( "found ", $mesg->count, " entries" );
39    
40  foreach my $entry ( $mesg->entries ) {  foreach my $entry ( $mesg->entries ) {
41    
42          $entry->dump;          $entry->dump;
43    
44            my $data;
45            my $user = CAdmin::Model::User->new;
46    
47            my @columns = map { $_->name } $user->columns;
48            #warn "# columns = ",dump( @columns );
49    
50            foreach my $attr ( $entry->attributes ) {
51                    if ( grep(/^\Q$attr\E$/, @columns ) ) {
52                            $data->{$attr} = $entry->get_value( $attr );
53                    } else {
54                            warn "model ",ref($user)," doesn't have column $attr\n";
55                    }
56            }
57    
58            Jifty->log->debug( dump( $data ) );
59    
60            $user->load_or_create( %$data );
61  }  }
62    

Legend:
Removed from v.5  
changed lines
  Added in v.10

  ViewVC Help
Powered by ViewVC 1.1.26