X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=bin%2Fldap-rewrite.pl;h=741a0a6a709436c3ab12f9de5643f507135be392;hb=de4af466676c72f0c57d1c3dab83a8ef07c92cda;hp=f7be5e34b88412498d721f90ebccab180cd32e9f;hpb=48aedc539d134c25f356305bca51696de826dd76;p=virtual-ldap diff --git a/bin/ldap-rewrite.pl b/bin/ldap-rewrite.pl index f7be5e3..741a0a6 100755 --- a/bin/ldap-rewrite.pl +++ b/bin/ldap-rewrite.pl @@ -147,6 +147,10 @@ sub log_response { my ( $n, $v ) = split(/\s*:\s*/, $val ); push @attrs, { type => $attr->{type} . '_' . $n, vals => [ $v ] }; } + } elsif ( $attr->{type} eq 'hrEduPersonGroupMember' ) { + foreach my $i ( 0 .. $#{ $attr->{vals} } ) { + $attr->{vals}->[$i] =~ s/^u2010/p2010/gs && warn "FIXME group"; + } } } @@ -154,10 +158,21 @@ sub log_response { push @{ $response->{protocolOp}->{searchResEntry}->{attributes} }, $_ foreach @attrs; - my $path = $config->{yaml_dir} . "$uid.yaml"; - if ( -e $path ) { - my $data = LoadFile($path); - warn "# yaml = ",dump($data); + my @additional_yamls = ( $uid ); + foreach my $attr ( @{ $response->{protocolOp}->{searchResEntry}->{attributes} } ) { + foreach my $v ( @{ $attr->{vals} } ) { + push @additional_yamls, $attr->{type} . '/' . $v; + } + } + + #warn "# additional_yamls ",dump( @additional_yamls ); + + foreach my $path ( @additional_yamls ) { + my $full_path = $config->{yaml_dir} . '/' . $path . '.yaml'; + next unless -e $full_path; + + my $data = LoadFile( $full_path ); + warn "# $full_path yaml = ",dump($data); foreach my $type ( keys %$data ) {