X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap-cgi.git;a=blobdiff_plain;f=search.cgi;h=bbdec50e7596264448b26b1dc13218316ee0a3e4;hp=dc9f948a97e07e81bc654316406ea3c2c7adc75f;hb=HEAD;hpb=ecbd088ad0cff8af77e5d7abcea1c7b8af796c20 diff --git a/search.cgi b/search.cgi index dc9f948..bbdec50 100755 --- a/search.cgi +++ b/search.cgi @@ -4,6 +4,7 @@ # (c) 1999 Randolph Chung. Licensed under the GPL. # (c) 2004 Martin Schulze. Licensed under the GPL. # (c) 2006 Ryan Murray. Licensed under the GPL. +# Copyright (c) 2008, 2011, 2013, 2015 Peter Palfrader use lib '.'; use strict vars; @@ -17,12 +18,21 @@ use Net::LDAP qw(LDAP_SUCCESS LDAP_PROTOCOL_ERROR); my %config = &Util::ReadConfigFile; my $query = new CGI; -my $id = uri_escape($query->param('id')); -my $authtoken = uri_escape($query->param('authtoken')); -my $password = &Util::CheckAuthToken($authtoken); +my $id = $query->param('id'); +my $authtoken = $query->param('authtoken'); my $dosearch = uri_escape($query->param('dosearch')); my $searchdn = uri_escape($query->param('searchdn')); + my $ldap = undef; +my $password = undef; + +if ($authtoken || $id) { + $password = Util::TouchAuthToken($authtoken, $id); +} else { + $password = ''; + $id = ''; + $authtoken = ''; +} my $proto = ($ENV{HTTPS} ? "https" : "http"); @@ -61,7 +71,7 @@ if (!$dosearch) { # go through %searchdata and pull out all the search criteria the user # specified... - my $filter = "(objectclass=inetOrgPerson)"; + my $filter = "(objectclass=inetOrgPerson)(!(accountStatus=*))"; foreach (keys(%searchdata)) { if ($query->param($searchdata{$_}{formname})) { if ($query->param($searchdata{$_}{fuzzy})) { @@ -119,7 +129,7 @@ if (!$dosearch) { my $ok = 0; # These are local variables.. i have enough global vars as it is... my ($ufdn, $login, $name, $icquin, $jabberjid, $email, $fingerprint, - $address, $latlong, $vacation, $created, $modified, $lastseen, $gender) = undef; + $address, $latlong, $vacation, $created, $modified, $lastseen) = undef; # Last seen information (Echelon) $lastseen = &Util::FormatLastSeen($entries->{$dn}->{"activity-pgp"}->[0], @@ -166,19 +176,6 @@ if (!$dosearch) { $latlong .= " / "; $latlong .= $data->{longitude}->[0] || "none"; - # Gender - if ($data->{gender}->[0]) { - if ($data->{gender}->[0] == 1) { - $gender = $dataspecref->{male}; - } elsif ($data->{gender}->[0] == 2) { - $gender = $dataspecref->{female}; - } else { - $gender = $dataspecref->{unspecified}; - } - } else { - $gender = $dataspecref->{unspecified}; - } - # Modified/created time. TODO: maybe add is the name of the creator/modifier $modified = &Util::FormatTimestamp($data->{modifytimestamp}->[0]); $created = &Util::FormatTimestamp($data->{createtimestamp}->[0]); @@ -200,7 +197,6 @@ if (!$dosearch) { } $outsub{searchresults} .= FormatEntry($dataspecref->{uid}, $login); - $outsub{searchresults} .= FormatEntry($dataspecref->{gender}, $gender); if ($data->{ircnick}->[0]) { $outsub{searchresults} .= FormatEntry($dataspecref->{ircnick}, $data->{ircnick}->[0]); } @@ -236,7 +232,7 @@ if (!$dosearch) { # If this is ourselves, present a link to do mods if ($auth && ($id eq $data->{uid}->[0])) { #TODO: extract this string into a url for translation... - $outsub{searchresults} .= "Edit my settings\n"; + $outsub{searchresults} .= "Edit my settings\n"; } $outsub{searchresults} .= "


\n";