/[virtual-ldap]/lib/LDAP/Koha.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 /lib/LDAP/Koha.pm

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

revision 42 by dpavlin, Fri Mar 27 16:52:05 2009 UTC revision 47 by dpavlin, Fri Apr 17 21:39:45 2009 UTC
# Line 2  package LDAP::Koha; Line 2  package LDAP::Koha;
2    
3  use strict;  use strict;
4  use warnings;  use warnings;
 use Data::Dump qw/dump/;  
5    
6  use lib '../lib';  use lib '../lib';
7    
8  use Net::LDAP::Constant qw(LDAP_SUCCESS);  use Net::LDAP::Constant qw(LDAP_SUCCESS);
9  use Net::LDAP::Server;  use Net::LDAP::Server;
10  use base 'Net::LDAP::Server';  use base 'Net::LDAP::Server';
11  use fields qw();  use fields qw();
12    
13  use DBI;  use DBI;
14    use File::Slurp;
15    
16    use Data::Dump qw/dump/;
17    
18  # XXX test with:  # XXX test with:
19  #  #
# Line 22  our $database = 'koha'; Line 25  our $database = 'koha';
25  our $user     = 'unconfigured-user';  our $user     = 'unconfigured-user';
26  our $passwd   = 'unconfigured-password';  our $passwd   = 'unconfigured-password';
27    
28  our $max_results = 10; # 100; # FIXME  our $max_results = 15; # 100; # FIXME
29    
30  require 'config.pl' if -e 'config.pl';  our $objectclass = 'HrEduPerson';
   
 my $dbh = DBI->connect($dsn . $database, $user,$passwd, { RaiseError => 1, AutoCommit => 0 }) || die $DBI::errstr;  
31    
32  # Net::LDAP::Entry will lc all our attribute names anyway, so  $SIG{__DIE__} = sub {
33  # we don't really care about correctCapitalization for LDAP          warn "!!! DIE ", @_;
34  # attributes which won't pass through DBI          die @_;
 my $sql_select = q{  
         select  
                 trim(userid)                                    as uid,  
                 firstname                                       as givenName,  
                 surname                                         as sn,  
                 concat(firstname,' ',surname)                   as cn,  
   
                 -- SAFEQ specific mappings from UMgr-LDAP.conf  
                 surname                                         as displayName,  
                 rfid_sid                                        as pager,  
                 email                                           as mail,  
                 categorycode                                    as organizationalUnit,  
                 borrowernumber                                  as objectGUID,  
                 concat('/home/',borrowernumber)                 as homeDirectory  
         from borrowers  
35  };  };
36    
37    require 'config.pl' if -e 'config.pl';
38    
39    my $dbh = DBI->connect($dsn . $database, $user,$passwd, { RaiseError => 1, AutoCommit => 1 }) || die $DBI::errstr;
40    
41  # we need reverse LDAP -> SQL mapping for where clause  # we need reverse LDAP -> SQL mapping for where clause
42    
43  my $ldap_sql_mapping = {  my $ldap_sql_mapping = {
44          'uid'           => 'userid',          'uid'           => 'userid',
45          'objectGUID'    => 'borrowernumber',          'objectGUID'    => 'borrowernumber',
# Line 57  my $ldap_sql_mapping = { Line 48  my $ldap_sql_mapping = {
48          'pager'         => 'rfid_sid',          'pager'         => 'rfid_sid',
49  };  };
50    
 # attributes which are same for whole set, but somehow  
 # LDAP clients are sending they anyway and we don't  
 # have them in database  
 my $ldap_ignore = {  
         'objectclass' => 1,  
 };  
   
51  sub __sql_column {  sub __sql_column {
52          my $name = shift;          my $name = shift;
53          $ldap_sql_mapping->{$name} || $name;          $ldap_sql_mapping->{$name} || $name;
# Line 96  our @limits; Line 80  our @limits;
80    
81  sub __ldap_search_to_sql {  sub __ldap_search_to_sql {
82          my ( $how, $what ) = @_;          my ( $how, $what ) = @_;
83          warn "### how $how\n";          warn "### __ldap_search_to_sql $how ",dump( $what ),"\n";
84          if ( $how eq 'equalityMatch' && defined $what ) {          if ( $how eq 'equalityMatch' && defined $what ) {
85                  my $name = $what->{attributeDesc} || warn "ERROR: no attributeDesc?";                  my $name = $what->{attributeDesc} || warn "ERROR: no attributeDesc?";
86                  my $value = $what->{assertionValue} || warn "ERROR: no assertionValue?";                  my $value = $what->{assertionValue} || warn "ERROR: no assertionValue?";
87                  if ( ! $ldap_ignore->{ $name } ) {  
88                    if ( lc $name eq 'objectclass' ) {
89                            $objectclass = $value;
90                    } else {
91                          push @limits, __sql_column($name) . ' = ?';                          push @limits, __sql_column($name) . ' = ?';
92                          push @values, $value;                          push @values, $value;
93                  }                  }
# Line 122  sub __ldap_search_to_sql { Line 109  sub __ldap_search_to_sql {
109                  push @limits, "$name IS NOT NULL and length($name) > 1";                  push @limits, "$name IS NOT NULL and length($name) > 1";
110                  ## XXX length(foo) > 1 to avoid empty " " strings                  ## XXX length(foo) > 1 to avoid empty " " strings
111          } else {          } else {
112                  warn "UNSUPPORTED: how $how what ",dump( $what );                  warn "UNSUPPORTED: $how ",dump( $what );
113          }          }
114  }  }
115    
116    
117    # my ( $dn,$attributes ) = _dn_attributes( $row, $base );
118    
119    sub _dn_attributes {
120            my ($row,$base) = @_;
121    
122            warn "## row = ",dump( $row );
123    
124            die "no objectClass column in ",dump( $row ) unless defined $row->{objectClass};
125    
126            $row->{objectClass} = [ split(/\s+/, $row->{objectClass}) ] if $row->{objectClass} =~ m{\n};
127    
128            warn "## row = ",dump( $row );
129    
130            my $dn = delete( $row->{dn} ) || die "no dn in ",dump( $row );
131    
132            # this does some sanity cleanup for our data
133            my $base_as_domain = $base;
134            $base_as_domain =~ s{dn=}{.};
135            $base_as_domain =~ s{^\.}{@};
136            $dn =~ s{$base_as_domain$}{};
137    
138            $dn .= ',' . $base unless $dn =~ m{,}; # add base if none present
139    
140            return ($dn, $row);
141    }
142    
143    
144  # the search operation  # the search operation
145  sub search {  sub search {
146          my $self = shift;          my $self = shift;
# Line 142  sub search { Line 157  sub search {
157                  my $sql_where = '';                  my $sql_where = '';
158                  @values = ();                  @values = ();
159    
160                  foreach my $join_with ( keys %{ $reqData->{'filter'} } ) {                  foreach my $filter ( keys %{ $reqData->{'filter'} } ) {
161    
162                          warn "## join_with $join_with\n";                          warn "## filter $filter ", dump( $reqData->{'filter'}->{ $filter } ), "\n";
163    
164                          @limits = ();                          @limits = ();
165    
166                          if ( ref $reqData->{'filter'}->{ $join_with } ) {                          if ( ref $reqData->{'filter'}->{ $filter } eq 'ARRAY' ) {
167    
168                                  foreach my $filter ( @{ $reqData->{'filter'}->{ $join_with } } ) {                                  foreach my $filter ( @{ $reqData->{'filter'}->{ $filter } } ) {
169                                          warn "### filter ",dump($filter),$/;                                          warn "### filter ",dump($filter),$/;
170                                          foreach my $how ( keys %$filter ) {                                          foreach my $how ( keys %$filter ) {
171                                                  if ( $how eq 'or' ) {                                                  if ( $how eq 'or' ) {
# Line 162  sub search { Line 177  sub search {
177                                          }                                          }
178                                  }                                  }
179    
180                                  $sql_where .= ' ' . join( " $join_with ", @limits );                                  $sql_where .= ' ' . join( " $filter ", @limits );
181    
182                          } else {                          } else {
183                                  __ldap_search_to_sql( $join_with, $reqData->{'filter'}->{$join_with} );                                  __ldap_search_to_sql( $filter, $reqData->{'filter'}->{$filter} );
184                          }                          }
185    
186                  }                  }
# Line 174  sub search { Line 189  sub search {
189                          $sql_where = " where $sql_where";                          $sql_where = " where $sql_where";
190                  }                  }
191    
192                  warn "# SQL:\n$sql_select $sql_where\n# DATA: ",dump( @values );                  my $sql_select = read_file( lc "sql/$objectclass.sql" );
193    
194                    warn "# SQL:\n$sql_select\n", $sql_where ? $sql_where : '-- no where', "\n# DATA: ",dump( @values );
195                  my $sth = $dbh->prepare( $sql_select . $sql_where . " LIMIT $max_results" ); # XXX remove limit?                  my $sth = $dbh->prepare( $sql_select . $sql_where . " LIMIT $max_results" ); # XXX remove limit?
196                  $sth->execute( @values );                  $sth->execute( @values );
197    
# Line 182  sub search { Line 199  sub search {
199    
200                  while (my $row = $sth->fetchrow_hashref) {                  while (my $row = $sth->fetchrow_hashref) {
201    
202                          warn "## row = ",dump( $row );                          my ( $dn, $attributes ) = _dn_attributes( $row, $base );
   
                         my $dn = 'uid=' . $row->{uid} || die "no uid";  
                         $dn =~ s{[@\.]}{,dc=}g;  
                         $dn .= ',' . $base unless $dn =~ m{dc}i;  
203    
204                          my $entry = Net::LDAP::Entry->new;                          my $entry = Net::LDAP::Entry->new;
205                          $entry->dn( $dn );                          $entry->dn( $dn );
206                          $entry->add( objectClass => [                          $entry->add( %$attributes );
                                 "person",  
                                 "organizationalPerson",  
                                 "inetOrgPerson",  
                                 "hrEduPerson",  
                         ] );  
                         $entry->add( %$row );  
207    
208                          #$entry->changetype( 'modify' );                          #$entry->changetype( 'modify' );
209    

Legend:
Removed from v.42  
changed lines
  Added in v.47

  ViewVC Help
Powered by ViewVC 1.1.26