I have the following code (a helper sub for Net::LDAP):
# Perform an LDAP query, returning results in a hash.
sub fetch {
my $self = shift;
%{$self->{'ARG'}} = @_;
my ($r);
my $result = $self->{'LDAP'}->search(
base => $self->{'ARG'}->{'source'},
filter => $self->{'ARG'}->{'filter'}
);
foreach my $entry ($result->all_entries()) {
map {
push my @a, $entry->get_value($_);
if ($a[1]) {
$r->{$entry->dn()}->{$_} = [ $entry->get_value($_) ];
} else {
$r->{$entry->dn()}->{$_} = $entry->get_value($_);
}
} $entry->attributes();
}
return $r;
}
...which works perfectly, and does exactly what I want. My only problem is that the assignment of values to a temporary array (
@a) and then testing whether
$a[1] exists as a way to tell whether
$entry->get_value is returning multiple values or not seems... well, clumsy.
Is there a better way?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.