--- loncom/lonsql 2007/07/30 23:52:06 1.83 +++ loncom/lonsql 2007/09/12 03:40:29 1.88 @@ -3,7 +3,7 @@ # The LearningOnline Network # lonsql - LON TCP-MySQL-Server Daemon for handling database requests. # -# $Id: lonsql,v 1.83 2007/07/30 23:52:06 albertel Exp $ +# $Id: lonsql,v 1.88 2007/09/12 03:40:29 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -387,7 +387,7 @@ sub make_new_child { print $client "$queryid\n"; # # &logthis("QUERY: $query - $arg1 - $arg2 - $arg3 - $queryid"); - sleep 1; + # sleep 1; # my $result=''; # @@ -442,56 +442,20 @@ sub make_new_child { $result .= &escape(join(':',map{$_.'='.$replies{$_}} keys %replies)); } } elsif ($query eq 'usersearch') { - my $srchdomain = &unescape($arg1); - my @items = split(/%%/,$arg2); - my ($srchby,$srchtype) = map {&unescape($_)} @items; - my $srchterm = &unescape($arg3); - my $quoted_dom = $dbh->quote( $srchdomain ); - my ($query,$quoted_srchterm,@fields); - my ($table_columns,$table_indices) = - &LONCAPA::lonmetadata::describe_metadata_storage('allusers'); - foreach my $coldata (@{$table_columns}) { - push(@fields,$coldata->{'name'}); - } - my $fieldlist = join(',',@fields); - $query = "SELECT $fieldlist FROM allusers WHERE (domain = $quoted_dom AND "; - if ($srchby eq 'lastfirst') { - my ($fraglast,$fragfirst) = split(/,/,$srchterm); - if ($srchtype eq 'exact') { - $query .= 'lastname = '.$dbh->quote($fraglast). - ' AND firstname = '.$dbh->quote($fragfirst); - } else { - $query .= 'lastname LIKE '.$dbh->quote('%'.$fraglast.'%').' AND firstname LIKE '.$dbh->quote('%'.$fragfirst.'%'); - } + my ($srchby,$srchtype,$srchterm); + if ((&unescape($arg1) eq $searchdomain) && + ($arg2 =~ /\%\%/)) { + ($srchby,$srchtype) = + map {&unescape($_);} (split(/\%\%/,$arg2)); + my $srchterm = &unescape($arg3); } else { - my %srchfield = ( - uname => 'username', - lastname => 'lastname', - ); - if ($srchtype eq 'exact') { - $query .= $srchfield{$srchby}.' = '.$dbh->quote($srchterm); - } else { - $query .= $srchfield{$srchby}.' LIKE '.$dbh->quote('%'.$srchterm.'%'); - } + ($srchby,$srchtype,$srchterm) = + map {&unescape($_);} ($arg1,$arg2,$arg3); } - $query .= ") ORDER BY username "; - my $sth = $dbh->prepare($query); - if ($sth->execute()) { - my @results; - while (my @row = $sth->fetchrow_array) { - my @items; - for (my $i=0; $i<@row; $i++) { - push(@items,&escape($fields[$i]).'='.&escape($row[$i])); - } - push(@results,join(":", @items)); - } - $sth->finish; - $result = &escape(join("&",@results)); - } else { - &logthis(''. - 'WARNING: Could not retrieve from database:'. - $sth->errstr().''); - } + $result = &do_user_search($searchdomain,$srchby, + $srchtype,$srchterm); + } elsif ($query eq 'instdirsearch') { + $result = &do_inst_dir_search($searchdomain,$arg1,$arg2,$arg3); } elsif ($query eq 'prepare activity log') { my ($cid,$domain) = map {&unescape($_);} ($arg1,$arg2); &logthis('preparing activity log tables for '.$cid); @@ -543,6 +507,93 @@ sub make_new_child { } } +sub do_user_search { + my ($domain,$srchby,$srchtype,$srchterm) = @_; + my $result; + my $quoted_dom = $dbh->quote( $domain ); + my ($query,$quoted_srchterm,@fields); + my ($table_columns,$table_indices) = + &LONCAPA::lonmetadata::describe_metadata_storage('allusers'); + foreach my $coldata (@{$table_columns}) { + push(@fields,$coldata->{'name'}); + } + my $fieldlist = join(',',@fields); + $query = "SELECT $fieldlist FROM allusers WHERE (domain = $quoted_dom AND "; + if ($srchby eq 'lastfirst') { + my ($fraglast,$fragfirst) = split(/,/,$srchterm); + $fragfirst =~ s/^\s+//; + $fraglast =~ s/\s+$//; + if ($srchtype eq 'exact') { + $query .= 'lastname = '.$dbh->quote($fraglast). + ' AND firstname = '.$dbh->quote($fragfirst); + } elsif ($srchtype eq 'begins') { + $query .= 'lastname LIKE '.$dbh->quote($fraglast.'%'). + ' AND firstname LIKE '.$dbh->quote($fragfirst.'%'); + } else { + $query .= 'lastname LIKE '.$dbh->quote('%'.$fraglast.'%'). + ' AND firstname LIKE '.$dbh->quote('%'.$fragfirst.'%'); + } + } else { + my %srchfield = ( + uname => 'username', + lastname => 'lastname', + ); + if ($srchtype eq 'exact') { + $query .= $srchfield{$srchby}.' = '.$dbh->quote($srchterm); + } elsif ($srchtype eq 'begins') { + $query .= $srchfield{$srchby}.' LIKE '.$dbh->quote($srchterm.'%'); + } else { + $query .= $srchfield{$srchby}.' LIKE '.$dbh->quote('%'.$srchterm.'%'); + } + } + $query .= ") ORDER BY username "; + my $sth = $dbh->prepare($query); + if ($sth->execute()) { + my @results; + while (my @row = $sth->fetchrow_array) { + my @items; + for (my $i=0; $i<@row; $i++) { + push(@items,&escape($fields[$i]).'='.&escape($row[$i])); + } + my $userstr = join(':', @items); + push(@results,&escape($userstr)); + } + $sth->finish; + $result = join('&',@results); + } else { + &logthis(''. + 'WARNING: Could not retrieve from database:'. + $sth->errstr().''); + } + return $result; +} + +sub do_inst_dir_search { + my ($domain,$srchby,$srchterm,$srchtype) = @_; + $srchby = &unescape($srchby); + $srchterm = &unescape($srchterm); + $srchtype = &unescape($srchtype); + my (%instusers,%instids,$result,$response); + eval { + local($SIG{__DIE__})='DEFAULT'; + $result=&localenroll::get_userinfo($domain,undef,undef,\%instusers, + \%instids,undef,$srchby,$srchterm, + $srchtype); + }; + if ($result eq 'ok') { + if (%instusers) { + foreach my $key (keys(%instusers)) { + my $usrstr = &Apache::lonnet::freeze_escape($instusers{$key}); + $response .=&escape(&escape($key).'='.$usrstr).'&'; + } + } + $response=~s/\&$//; + } else { + $response = 'unavailable'; + } + return $response; +} + ######################################################## ######################################################## 500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.