Annotation of loncom/interface/lonsearchcat.pm, revision 1.239

1.98      harris41    1: # The LearningOnline Network with CAPA
1.108     harris41    2: # Search Catalog
                      3: #
1.239   ! matthew     4: # $Id: lonsearchcat.pm,v 1.238 2005/02/17 08:29:43 albertel Exp $
1.108     harris41    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
1.98      harris41   14: #
1.108     harris41   15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
1.1       www        27: #
1.121     matthew    28: ###############################################################################
                     29: ###############################################################################
                     30: 
                     31: =pod 
                     32: 
                     33: =head1 NAME
                     34: 
1.140     matthew    35: lonsearchcat - LONCAPA Search Interface
1.121     matthew    36: 
                     37: =head1 SYNOPSIS
                     38: 
                     39: Search interface to LON-CAPAs digital library
                     40: 
                     41: =head1 DESCRIPTION
                     42: 
                     43: This module enables searching for a distributed browseable catalog.
1.104     harris41   44: 
1.121     matthew    45: This is part of the LearningOnline Network with CAPA project
                     46: described at http://www.lon-capa.org.
                     47: 
                     48: lonsearchcat presents the user with an interface to search the LON-CAPA
                     49: digital library.  lonsearchcat also initiates the execution of a search
                     50: by sending the search parameters to LON-CAPA servers.  The progress of 
1.205     www        51: search (on a server basis) is displayed to the user in a separate window.
1.121     matthew    52: 
                     53: =head1 Internals
                     54: 
                     55: =over 4
                     56: 
                     57: =cut
                     58: 
                     59: ###############################################################################
1.98      harris41   60: ###############################################################################
1.121     matthew    61: 
1.1       www        62: package Apache::lonsearchcat;
                     63: 
                     64: use strict;
1.167     www        65: use Apache::Constants qw(:common :http);
1.6       harris41   66: use Apache::lonnet();
                     67: use Apache::File();
1.7       harris41   68: use CGI qw(:standard);
1.41      harris41   69: use Text::Query;
1.101     harris41   70: use GDBM_File;
1.112     harris41   71: use Apache::loncommon();
1.144     matthew    72: use Apache::lonmysql();
1.200     www        73: use Apache::lonmeta;
                     74: use Apache::lonhtmlcommon;
1.186     www        75: use Apache::lonlocal;
1.204     matthew    76: use LONCAPA::lonmetadata();
1.212     matthew    77: use HTML::Entities();
1.228     matthew    78: use Parse::RecDescent;
1.231     raeburn    79: use Apache::lonnavmaps;
1.1       www        80: 
1.121     matthew    81: ######################################################################
                     82: ######################################################################
1.196     matthew    83: ##
                     84: ## Global variables
                     85: ##
1.121     matthew    86: ######################################################################
                     87: ######################################################################
1.196     matthew    88: my %groupsearch_db;  # Database hash used to save values for the 
                     89:                      # groupsearch RAT interface.
                     90: my %persistent_db;   # gdbm hash which holds data which is supposed to
                     91:                      # persist across calls to lonsearchcat.pm
1.121     matthew    92: 
1.200     www        93: # The different view modes and associated functions
                     94: 
                     95: my %Views = ("detailed" => \&detailed_citation_view,
                     96: 	     "summary"  => \&summary_view,
                     97: 	     "fielded"  => \&fielded_format_view,
                     98: 	     "xml"      => \&xml_sgml_view,
                     99: 	     "compact"  => \&compact_view);
1.101     harris41  100: 
1.121     matthew   101: ######################################################################
                    102: ######################################################################
1.98      harris41  103: sub handler {
                    104:     my $r = shift;
1.197     www       105: #    &set_defaults();
1.196     matthew   106:     #
                    107:     # set form defaults
1.145     matthew   108:     #
1.196     matthew   109:     my $hidden_fields;# Hold all the hidden fields used to keep track
                    110:                       # of the search system state
                    111:     my $importbutton; # button to take the selected results and go to group 
                    112:                       # sorting
                    113:     my $diropendb;    # The full path to the (temporary) search database file.
                    114:                       # This is set and used in &handler() and is also used in 
                    115:                       # &output_results().
                    116:     my $bodytag;  # LON-CAPA standard body tag, gotten from 
                    117:                   # &Apache::lonnet::bodytag. 
                    118:                   # No title, no table, just a <body> tag.
1.157     www       119: 
                    120:     my $loaderror=&Apache::lonnet::overloaderror($r);
                    121:     if ($loaderror) { return $loaderror; }
1.221     matthew   122:     #
1.145     matthew   123:     my $closebutton;  # button that closes the search window 
                    124:                       # This button is different for the RAT compared to
                    125:                       # normal invocation.
                    126:     #
1.186     www       127:     &Apache::loncommon::content_type($r,'text/html');
1.98      harris41  128:     $r->send_http_header;
                    129:     return OK if $r->header_only;
1.156     matthew   130:     ##
                    131:     ## Prevent caching of the search interface window.  Hopefully this means
                    132:     ## we will get the launch=1 passed in a little more.
                    133:     &Apache::loncommon::no_cache($r);
1.145     matthew   134:     ## 
                    135:     ## Pick up form fields passed in the links.
                    136:     ##
                    137:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.146     matthew   138:              ['catalogmode','launch','acts','mode','form','element','pause',
1.158     matthew   139:               'phase','persistent_db_id','table','start','show',
1.191     albertel  140:               'cleargroupsort','titleelement']);
1.146     matthew   141:     ##
                    142:     ## The following is a trick - we wait a few seconds if asked to so
                    143:     ##     the daemon running the search can get ahead of the daemon
                    144:     ##     printing the results.  We only need (theoretically) to do
                    145:     ##     this once, so the pause indicator is deleted
                    146:     ##
                    147:     if (exists($ENV{'form.pause'})) {
1.181     matthew   148:         sleep(1);
1.146     matthew   149:         delete($ENV{'form.pause'});
                    150:     }
1.143     matthew   151:     ##
                    152:     ## Initialize global variables
                    153:     ##
1.121     matthew   154:     my $domain  = $r->dir_config('lonDefDomain');
1.213     matthew   155:     $diropendb= "/home/httpd/perl/tmp/".
                    156:         "$ENV{'user.domain'}_$ENV{'user.name'}_searchcat.db";
1.145     matthew   157:     #
                    158:     # set the name of the persistent database
1.146     matthew   159:     #          $ENV{'form.persistent_db_id'} can only have digits in it.
1.145     matthew   160:     if (! exists($ENV{'form.persistent_db_id'}) ||
1.147     matthew   161:         ($ENV{'form.persistent_db_id'} =~ /\D/) ||
                    162:         ($ENV{'form.launch'} eq '1')) {
1.145     matthew   163:         $ENV{'form.persistent_db_id'} = time;
                    164:     }
1.155     matthew   165:     $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.146     matthew   166:     my $persistent_db_file = "/home/httpd/perl/tmp/".
1.145     matthew   167:         &Apache::lonnet::escape($domain).
                    168:             '_'.&Apache::lonnet::escape($ENV{'user.name'}).
                    169:                 '_'.$ENV{'form.persistent_db_id'}.'_persistent_search.db';
1.146     matthew   170:     ##
1.209     matthew   171:     &Apache::lonhtmlcommon::clear_breadcrumbs();
                    172:     if (exists($ENV{'request.course.id'}) && $ENV{'request.course.id'} ne '') {
                    173:         &Apache::lonhtmlcommon::add_breadcrumb
                    174:              ({href=>'/adm/searchcat?'.
                    175:                    'catalogmode='.$ENV{'form.catalogmode'}.
                    176:                    '&launch='.$ENV{'form.launch'}.
                    177:                    '&mode='.$ENV{'form.mode'},
                    178:               text=>"Course and Catalog Search",
1.227     matthew   179:               target=>'_top',
1.209     matthew   180:               bug=>'Searching',});
                    181:     } else {
                    182:         &Apache::lonhtmlcommon::add_breadcrumb
                    183:              ({href=>'/adm/searchcat?'.
                    184:                    'catalogmode='.$ENV{'form.catalogmode'}.
                    185:                    '&launch='.$ENV{'form.launch'}.
                    186:                    '&mode='.$ENV{'form.mode'},
                    187:               text=>"Catalog Search",
1.227     matthew   188:               target=>'_top',
1.209     matthew   189:               bug=>'Searching',});
                    190:     }
                    191:     #
1.221     matthew   192:     if ($ENV{'form.phase'} !~ m/(basic|adv|course)_search/) {
                    193:         if (! &get_persistent_form_data($persistent_db_file)) {
                    194:             if ($ENV{'form.phase'} =~ /(run_search|results)/) {
                    195:                 &Apache::lonnet::logthis('lonsearchcat:'.
                    196:                                          'Unable to recover data from '.
                    197:                                          $persistent_db_file);
1.238     albertel  198: 		my $html=&Apache::lonxml::xmlbegin();
                    199: 		$r->print(<<END);
                    200: $html
                    201: <head>
                    202: <title>LON-CAPA Search Error</title></head>
1.155     matthew   203: $bodytag
1.150     matthew   204: We were unable to retrieve data describing your search.  This is a serious
                    205: error and has been logged.  Please alert your LON-CAPA administrator.
                    206: </body>
                    207: </html>
                    208: END
1.221     matthew   209:                 return OK;
                    210:             }
1.150     matthew   211:         }
1.221     matthew   212:     } else {
                    213:         &clean_up_environment();
1.147     matthew   214:     }
1.124     matthew   215:     ##
1.143     matthew   216:     ## Clear out old values from groupsearch database
1.124     matthew   217:     ##
1.146     matthew   218:     untie %groupsearch_db if (tied(%groupsearch_db));
1.158     matthew   219:     if (($ENV{'form.cleargroupsort'} eq '1') || 
                    220:         (($ENV{'form.launch'} eq '1') && 
                    221:          ($ENV{'form.catalogmode'} eq 'groupsearch'))) {
1.148     matthew   222: 	if (tie(%groupsearch_db,'GDBM_File',$diropendb,&GDBM_WRCREAT(),0640)) {
1.101     harris41  223: 	    &start_fresh_session();
1.142     matthew   224: 	    untie %groupsearch_db;
1.158     matthew   225:             delete($ENV{'form.cleargroupsort'});
1.122     matthew   226: 	} else {
1.155     matthew   227:             # This is a stupid error to give to the user.  
                    228:             # It really tells them nothing.
1.238     albertel  229: 	    my $html=&Apache::lonxml::xmlbegin();
                    230: 	    $r->print($html.'<head></head>'.$bodytag.
1.155     matthew   231:                       'Unable to tie hash to db file</body></html>');
1.101     harris41  232: 	    return OK;
                    233: 	}
                    234:     }
1.124     matthew   235:     ##
1.150     matthew   236:     ## Configure hidden fields
1.124     matthew   237:     ##
1.145     matthew   238:     $hidden_fields = '<input type="hidden" name="persistent_db_id" value="'.
1.150     matthew   239:         $ENV{'form.persistent_db_id'}.'" />'."\n";
                    240:     if (exists($ENV{'form.catalogmode'})) {
1.223     matthew   241:         $hidden_fields .= &hidden_field('catalogmode');
1.150     matthew   242:     }
                    243:     if (exists($ENV{'form.form'})) {
1.223     matthew   244:         $hidden_fields .= &hidden_field('form');
1.150     matthew   245:     }
                    246:     if (exists($ENV{'form.element'})) {
1.223     matthew   247:         $hidden_fields .= &hidden_field('element');
1.150     matthew   248:     }
1.191     albertel  249:     if (exists($ENV{'form.titleelement'})) {
1.223     matthew   250:         $hidden_fields .= &hidden_field('titleelement');
1.191     albertel  251:     }
1.150     matthew   252:     if (exists($ENV{'form.mode'})) {
1.223     matthew   253:         $hidden_fields .= &hidden_field('mode');
1.150     matthew   254:     }
                    255:     ##
                    256:     ## Configure dynamic components of interface
1.146     matthew   257:     ##
1.98      harris41  258:     if ($ENV{'form.catalogmode'} eq 'interactive') {
1.150     matthew   259:         $closebutton="<input type='button' name='close' value='CLOSE' ";
                    260:         if ($ENV{'form.phase'} =~ /(results|run_search)/) {
                    261: 	    $closebutton .="onClick='parent.close()'";
                    262:         } else {
                    263:             $closebutton .="onClick='self.close()'";
                    264:         }
                    265:         $closebutton .=">\n";
1.124     matthew   266:     } elsif ($ENV{'form.catalogmode'} eq 'groupsearch') {
1.150     matthew   267:         $closebutton="<input type='button' name='close' value='CLOSE' ";
                    268:         if ($ENV{'form.phase'} =~ /(results|run_search)/) {
                    269: 	    $closebutton .="onClick='parent.close()'";
                    270:         } else {
                    271:             $closebutton .="onClick='self.close()'";
                    272:         }
                    273:         $closebutton .= ">";
1.98      harris41  274:         $importbutton=<<END;
                    275: <input type='button' name='import' value='IMPORT'
                    276: onClick='javascript:select_group()'>
                    277: END
1.146     matthew   278:     } else {
                    279:         $closebutton = '';
                    280:         $importbutton = '';
1.98      harris41  281:     }
1.124     matthew   282:     ##
1.146     matthew   283:     ## Sanity checks on form elements
1.124     matthew   284:     ##
1.146     matthew   285:     if (!defined($ENV{'form.viewselect'})) {
1.150     matthew   286:         if (($ENV{'form.catalogmode'} eq 'groupsearch') ||
                    287:             ($ENV{'form.catalogmode'} eq 'interactive')) {
                    288:             $ENV{'form.viewselect'} ="Compact View";
                    289:         } else {
                    290:             $ENV{'form.viewselect'} ="Detailed Citation View";
                    291:         }
1.146     matthew   292:     }
1.149     matthew   293:     $ENV{'form.phase'} = 'disp_basic' if (! exists($ENV{'form.phase'}));
1.151     matthew   294:     $ENV{'form.show'} = 20 if (! exists($ENV{'form.show'}));
1.209     matthew   295:     #
1.219     matthew   296:     $ENV{'form.searchmode'} = 'basic' if (! exists($ENV{'form.searchmode'}));
1.209     matthew   297:     if ($ENV{'form.phase'} eq 'adv_search' ||
                    298:         $ENV{'form.phase'} eq 'disp_adv') {
                    299:         $ENV{'form.searchmode'} = 'advanced';
                    300:     } elsif ($ENV{'form.phase'} eq 'course_search') {
                    301:         $ENV{'form.searchmode'} = 'course_search';
                    302:     }
                    303:     #
                    304:     if ($ENV{'form.searchmode'} eq 'advanced') {
                    305:         &Apache::lonhtmlcommon::add_breadcrumb
                    306:             ({href=>'/adm/searchcat?phase=disp_adv&'.
                    307:                   'catalogmode='.$ENV{'form.catalogmode'}.
                    308:                   '&launch='.$ENV{'form.launch'}.
                    309:                   '&mode='.$ENV{'form.mode'},
                    310:                   text=>"Advanced Search",
                    311:                   bug=>'Searching',});
                    312:     } elsif ($ENV{'form.searchmode'} eq 'course search') {
                    313:         &Apache::lonhtmlcommon::add_breadcrumb
                    314:             ({href=>'/adm/searchcat?phase=disp_adv&'.
                    315:                   'catalogmode='.$ENV{'form.catalogmode'}.
                    316:                   '&launch='.$ENV{'form.launch'}.
                    317:                   '&mode='.$ENV{'form.mode'},
                    318:                   text=>"Course Search",
                    319:                   bug=>'Searching',});
                    320:     }
1.146     matthew   321:     ##
                    322:     ## Switch on the phase
                    323:     ##
                    324:     if ($ENV{'form.phase'} eq 'disp_basic') {
1.196     matthew   325:         &print_basic_search_form($r,$closebutton,$hidden_fields);
1.146     matthew   326:     } elsif ($ENV{'form.phase'} eq 'disp_adv') {
1.196     matthew   327:         &print_advanced_search_form($r,$closebutton,$hidden_fields);
1.146     matthew   328:     } elsif ($ENV{'form.phase'} eq 'results') {
1.196     matthew   329:         &display_results($r,$importbutton,$closebutton,$diropendb);
1.151     matthew   330:     } elsif ($ENV{'form.phase'} =~ /^(sort|run_search)$/) {
1.146     matthew   331:         my ($query,$customquery,$customshow,$libraries,$pretty_string) =
                    332:             &get_persistent_data($persistent_db_file,
                    333:                  ['query','customquery','customshow',
                    334:                   'libraries','pretty_string']);
1.151     matthew   335:         if ($ENV{'form.phase'} eq 'sort') {
                    336:             &print_sort_form($r,$pretty_string);
                    337:         } elsif ($ENV{'form.phase'} eq 'run_search') {
                    338:             &run_search($r,$query,$customquery,$customshow,
                    339:                         $libraries,$pretty_string);
                    340:         }
1.167     www       341:     } elsif ($ENV{'form.phase'} eq 'course_search') {
                    342:         &course_search($r);
1.146     matthew   343:     } elsif(($ENV{'form.phase'} eq 'basic_search') ||
                    344:             ($ENV{'form.phase'} eq 'adv_search')) {
1.228     matthew   345:         #
                    346:         # We are running a search, try to parse it
                    347:         my ($query,$customquery,$customshow,$libraries) = 
                    348:             (undef,undef,undef,undef);
                    349:         my $pretty_string;
                    350:         if ($ENV{'form.phase'} eq 'basic_search') {
                    351:             ($query,$pretty_string,$libraries) = 
                    352:                 &parse_basic_search($r,$closebutton,$hidden_fields);
                    353:             return OK if (! defined($query));
                    354:             &make_persistent({ basicexp => $ENV{'form.basicexp'}},
                    355:                              $persistent_db_file);
                    356:         } else {                      # Advanced search
                    357:             ($query,$customquery,$customshow,$libraries,$pretty_string) 
                    358:                 = &parse_advanced_search($r,$closebutton,$hidden_fields);
                    359:             return OK if (! defined($query));
                    360:         }
                    361:         &make_persistent({ query => $query,
                    362:                            customquery => $customquery,
                    363:                            customshow => $customshow,
                    364:                            libraries => $libraries,
                    365:                            pretty_string => $pretty_string },
                    366:                          $persistent_db_file);
                    367:         #
1.146     matthew   368:         # Set up table
                    369:         if (! defined(&create_results_table())) {
1.198     www       370: 	    my $errorstring=&Apache::lonmysql::get_error();
1.211     matthew   371:             &Apache::lonnet::logthis('lonsearchcat.pm: Unable to create '.
                    372:                                      'needed table.  lonmysql error:'.
                    373:                                      $errorstring);
1.238     albertel  374: 	    my $html=&Apache::lonxml::xmlbegin();
1.147     matthew   375:             $r->print(<<END);
1.238     albertel  376: $html
                    377: <head>
                    378: <title>Search Error</title></head>
1.155     matthew   379: $bodytag
1.147     matthew   380: Unable to create table in which to store search results.  
                    381: The search has been aborted.
                    382: </body>
                    383: </html>
                    384: END
                    385:             return OK;
1.146     matthew   386:         }
1.147     matthew   387:         delete($ENV{'form.launch'});
1.146     matthew   388:         if (! &make_form_data_persistent($r,$persistent_db_file)) {
1.238     albertel  389: 	    my $html=&Apache::lonxml::xmlbegin();
                    390: 	    $r->print(<<END);
                    391: $html
                    392: <head>
                    393: <title>Search Error</title></head>
1.155     matthew   394: $bodytag
1.147     matthew   395: Unable to properly store search information.  The search has been aborted.
                    396: </body>
                    397: </html>
                    398: END
                    399:             return OK;
1.146     matthew   400:         }
1.145     matthew   401:         ##
1.146     matthew   402:         ## Print out the frames interface
1.145     matthew   403:         ##
1.228     matthew   404:         if (defined($query)) {
                    405:             &print_frames_interface($r);
                    406:         }
1.124     matthew   407:     }
                    408:     return OK;
                    409: } 
1.98      harris41  410: 
1.221     matthew   411: #
                    412: # The mechanism used to store values away and retrieve them does not
                    413: # handle the case of missing environment variables being significant.
                    414: #
                    415: # This routine sets non existant checkbox form elements to ''.
                    416: #
                    417: sub clean_up_environment {
                    418:     if ($ENV{'form.phase'} eq 'basic_search') {
                    419:         if (! exists($ENV{'form.related'})) {
                    420:             $ENV{'form.related'} = '';
                    421:         }
                    422:         if (! exists($ENV{'form.domains'})) {
                    423:             $ENV{'form.domains'} = '';
                    424:         }
                    425:     } elsif ($ENV{'form.phase'} eq 'adv_search') {
                    426:         foreach my $field ('title','keywords','notes',
                    427:                            'abstract','standards','mime') {
                    428:             if (! exists($ENV{'form.'.$field.'_related'})) {
                    429:                 $ENV{'form.'.$field.'_related'} = '';
                    430:             }
                    431:         }
                    432:     } elsif ($ENV{'form.phase'} eq 'course_search') {
                    433:         if (! exists($ENV{'form.crsrelated'})) {
                    434:             $ENV{'form.crsrelated'} = '';
                    435:         }
                    436:     }
                    437: }
                    438: 
1.223     matthew   439: sub hidden_field {
                    440:     my ($name,$value) = @_;
                    441:     if (! defined($value)) {
                    442:         $value = $ENV{'form.'.$name};
                    443:     }
                    444:     return '<input type="hidden" name="'.$name.'" value="'.$value.'" />'.$/;
                    445: }
                    446: 
1.124     matthew   447: ######################################################################
                    448: ######################################################################
1.196     matthew   449: ##
                    450: ##   Course Search
                    451: ##
                    452: ######################################################################
                    453: ######################################################################
                    454: {   # Scope the course search to avoid global variables
                    455: #
                    456: # Variables For course search
1.236     albertel  457: my %alreadyseen;
1.196     matthew   458: my %hash;
                    459: my $totalfound;
1.124     matthew   460: 
1.235     albertel  461: sub make_symb {
                    462:     my ($id)=@_;
                    463:     my ($mapid,$resid)=split(/\./,$id);
                    464:     my $map=$hash{'map_id_'.$mapid};
                    465:     my $res=$hash{'src_'.$id};
                    466:     my $symb=&Apache::lonnet::encode_symb($map,$resid,$res);
                    467:     return $symb;
                    468: }
                    469: 
1.167     www       470: sub course_search {
                    471:     my $r=shift;
1.217     matthew   472:     my $bodytag=&Apache::loncommon::bodytag('Course Search');
1.167     www       473:     my $pretty_search_string = '<b>'.$ENV{'form.courseexp'}.'</b>';
                    474:     my $search_string = $ENV{'form.courseexp'};
                    475:     my @New_Words;
1.236     albertel  476:     undef(%alreadyseen);
1.167     www       477:     if ($ENV{'form.crsrelated'}) {
                    478:         ($search_string,@New_Words) = &related_version($ENV{'form.courseexp'});
                    479:         if (@New_Words) {
1.200     www       480:             $pretty_search_string .= ' '.&mt("with related words").": <b>@New_Words</b>.";
1.167     www       481:         } else {
1.200     www       482:             $pretty_search_string .= ' '.&mt('with no related words').".";
1.167     www       483:         }
                    484:     }
                    485:     my $fulltext=$ENV{'form.crsfulltext'};
1.231     raeburn   486:     my $discuss=$ENV{'form.crsdiscuss'};
1.167     www       487:     my @allwords=($search_string,@New_Words);
1.169     www       488:     $totalfound=0;
1.238     albertel  489:     my $html=&Apache::lonxml::xmlbegin();
                    490:     $r->print($html.'<head><title>LON-CAPA Course Search</title></head>'.
1.231     raeburn   491: 	      $bodytag.'<hr /><center><font size="+2" face="arial">'.$pretty_search_string.'</font></center><hr /><b>'.&mt('Course content').':</b><br />');
1.167     www       492:     $r->rflush();
                    493: # ======================================================= Go through the course
1.169     www       494:     my $c=$r->connection;
1.196     matthew   495:     if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.".db",
                    496:             &GDBM_READER(),0640)) {
1.235     albertel  497:         foreach (sort(keys(%hash))) {
1.196     matthew   498:             if ($c->aborted()) { last; }
1.235     albertel  499:             if (($_=~/^src\_(.+)$/)) {
                    500: 		if ($hash{'randomout_'.$1} & !$ENV{'request.role.adv'}) {
                    501: 		    next; 
                    502: 		}
                    503: 		my $symb=&make_symb($1);
                    504:                 &checkonthis($r,$1,$hash{$_},0,&Apache::lonnet::gettitle($symb),
                    505: 			     $fulltext,$symb,@allwords);
1.196     matthew   506:             }
                    507:         }
                    508:         untie(%hash);
                    509:     }
1.169     www       510:     unless ($totalfound) {
1.231     raeburn   511: 	$r->print('<p>'.&mt('No matches found in resources').'.</p>');
1.169     www       512:     }
1.231     raeburn   513: 
                    514: # Check discussions if requested
                    515:     if ($discuss) {
                    516:         my $totaldiscussions = 0;
                    517:         $r->print('<br /><br /><b>'.&mt('Discussion postings').':</b><br />'); 
                    518:         my $navmap = Apache::lonnavmaps::navmap->new();
                    519:         my @allres=$navmap->retrieveResources();
                    520:         my %discussiontime = &Apache::lonnet::dump('discussiontimes',
                    521:                                $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                    522:                                $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
                    523:         foreach my $resource (@allres) {
                    524:             my $result = '';
                    525:             my $applies = 0;
                    526:             my $symb = $resource->symb();
                    527:             my $ressymb = $symb;
                    528:             if ($symb =~ m#(___adm/\w+/\w+)/(\d+)/bulletinboard$#) {
                    529:                 $ressymb = 'bulletin___'.$2.$1.'/'.$2.'/bulletinboard';
                    530:                 unless ($ressymb =~ m#bulletin___\d+___adm/wrapper#) {
                    531:                     $ressymb=~s#(bulletin___\d+___)#$1adm/wrapper/#;
                    532:                 }
                    533:             }
                    534:             if (defined($discussiontime{$ressymb})) { 
                    535:                 my %contrib = &Apache::lonnet::restore($ressymb,$ENV{'request.course.id'},
                    536:                      $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                    537:                      $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
                    538:                 if ($contrib{'version'}) {
                    539:                     for (my $id=1;$id<=$contrib{'version'};$id++) {
                    540:                         unless (($contrib{'hidden'}=~/\.$id\./) || ($contrib{'deleted'}=~/\.$id\./)) { 
                    541:                             if ($contrib{$id.':subject'}) {
                    542:                                 $result .= $contrib{$id.':subject'};
                    543:                             }
                    544:                             if ($contrib{$id.':message'}) {
                    545:                                 $result .= $contrib{$id.':message'};
                    546:                             }
                    547:                             if ($contrib{$id,':attachmenturl'}) {
                    548:                                 if ($contrib{$id,':attachmenturl'} =~ m-/([^/]+)$-) {
                    549:                                     $result .= $1;
                    550:                                 }
                    551:                             }
                    552:                             $applies = &checkwords($result,$applies,@allwords);
                    553:                         }
                    554:                     }
                    555:                 }
                    556:             }
                    557: # Does this discussion apply?
                    558:             if ($applies) {
                    559:                 my ($map,$ind,$url)=&Apache::lonnet::decode_symb($ressymb);
                    560:                 my $disctype = &mt('resource');
                    561:                 if ($url =~ m#/bulletinboard$#) {
                    562:                     if ($url =~m#^adm/wrapper/adm/.*/bulletinboard$#) {
                    563:                         $url =~s#^adm/wrapper##;
                    564:                     }
                    565:                     $disctype = &mt('bulletin board');
                    566:                 } else {
                    567:                     $url = '/res/'.$url;
                    568:                 }
                    569:                 if ($url =~ /\?/) {
                    570:                     $url .= '&symb=';
                    571:                 } else {
                    572:                     $url .= '?symb=';
                    573:                 }
                    574:                 $url .= &Apache::lonnet::escape($resource->symb());
                    575:                 my $title = $resource->compTitle();
                    576:                 $r->print('<br /><a href="'.$url.'" target="cat">'.
                    577:                      ($title?$title:$url).'</a>&nbsp;&nbsp;-&nbsp;'.$disctype.'<br />');
                    578:                 $totaldiscussions++;
                    579:             } else {
                    580:                 $r->print(' .');
                    581:             }
                    582:         }
                    583:         unless ($totaldiscussions) {
                    584:             $r->print('<p>'.&mt('No matches found in postings').'.</p>');
                    585:         }
                    586:     }
                    587:  
1.167     www       588: # =================================================== Done going through course
                    589:     $r->print('</body></html>');
                    590: }
                    591: 
                    592: # =============================== This pulls up a resource and its dependencies
                    593: 
                    594: sub checkonthis {
1.235     albertel  595:     my ($r,$id,$url,$level,$title,$fulltext,$symb,@allwords)=@_;
1.236     albertel  596:     $alreadyseen{$id}=1;
                    597:     if (&Apache::loncommon::connection_aborted($r)) { return; }
1.167     www       598:     $r->rflush();
1.235     albertel  599:     
                    600:     my $result=$title.' ';
                    601:     if ($ENV{'request.role.adv'} || !$hash{'encrypted_'.$id}) {
                    602: 	$result.=&Apache::lonnet::metadata($url,'title').' '.
                    603: 	    &Apache::lonnet::metadata($url,'subject').' '.
                    604: 	    &Apache::lonnet::metadata($url,'abstract').' '.
                    605: 	    &Apache::lonnet::metadata($url,'keywords');
                    606:     }
                    607:     my ($extension)=($url=~/\.(\w+)$/);
                    608:     if (&Apache::loncommon::fileembstyle($extension) eq 'ssi' &&
                    609: 	($url) && ($fulltext)) {
                    610: 	$result.=&Apache::lonnet::ssi_body($url.'?symb='.&Apache::lonnet::escape($symb));
1.167     www       611:     }
                    612:     $result=~s/\s+/ /gs;
1.231     raeburn   613:     my $applies = 0;
                    614:     $applies = &checkwords($result,$applies,@allwords);
1.167     www       615: # Does this resource apply?
                    616:     if ($applies) {
                    617:        $r->print('<br />');
                    618:        for (my $i=0;$i<=$level*5;$i++) {
                    619:            $r->print('&nbsp;');
                    620:        }
1.235     albertel  621:        my $href=$url;
                    622:        if ($hash{'encrypted_'.$id} && !$ENV{'request.role.adv'}) {
                    623: 	   $href=&Apache::lonenc::encrypted($href)
                    624: 	       .'?symb='.&Apache::lonenc::encrypted($symb);
                    625:        } else {
                    626: 	   $href.='?symb='.&Apache::lonnet::escape($symb);
                    627:        }
                    628:        $r->print('<a href="'.$href.'" target="cat">'.($title?$title:$url).
                    629: 		 '</a><br />');
1.169     www       630:        $totalfound++;
                    631:     } elsif ($fulltext) {
                    632:        $r->print(' .');
1.167     www       633:     }
1.169     www       634:     $r->rflush();
1.167     www       635: # Check also the dependencies of this one
                    636:     my $dependencies=
                    637:                 &Apache::lonnet::metadata($url,'dependencies');
1.237     albertel  638:     foreach (split(/\,/,$dependencies)) {
                    639:        if (($_=~/^\/res\//) && (!$alreadyseen{$id})) { 
1.235     albertel  640:           &checkonthis($r,$id,$_,$level+1,'',$fulltext,undef,@allwords);
1.167     www       641:        }
                    642:     }
                    643: }
                    644: 
1.231     raeburn   645: sub checkwords {
                    646:     my ($result,$applies,@allwords) = @_;
                    647:     foreach (@allwords) {
                    648:         if ($_=~/\w/) {
                    649:             if ($result=~/$_/si) {
                    650:                 $applies++;
                    651:             }
                    652:         }
                    653:     }
                    654:     return $applies;
                    655: }
                    656: 
1.196     matthew   657: sub untiehash {
                    658:     if (tied(%hash)) {
                    659:         untie(%hash);
                    660:     }
                    661: }
                    662: 
                    663: } # End of course search scoping
                    664: 
1.207     matthew   665: sub search_html_header {
1.238     albertel  666:     my $html=&Apache::lonxml::xmlbegin();
1.207     matthew   667:     my $Str = <<ENDHEADER;
1.238     albertel  668: $html
1.207     matthew   669: <head>
                    670: <title>The LearningOnline Network with CAPA</title>
                    671: </head>
                    672: ENDHEADER
                    673:     return $Str;
                    674: }
                    675: 
1.167     www       676: ######################################################################
                    677: ######################################################################
                    678: 
1.124     matthew   679: =pod 
                    680: 
1.146     matthew   681: =item &print_basic_search_form() 
1.124     matthew   682: 
1.204     matthew   683: Prints the form for the basic search.  Sorry the name is so cryptic.
1.124     matthew   684: 
                    685: =cut
                    686: 
                    687: ######################################################################
                    688: ######################################################################
1.204     matthew   689: sub print_basic_search_form {
1.196     matthew   690:     my ($r,$closebutton,$hidden_fields) = @_;
1.227     matthew   691:     my $result = ($ENV{'form.catalogmode'} ne 'groupsearch');
1.203     www       692:     my $bodytag=&Apache::loncommon::bodytag('Search').
1.229     matthew   693:         &Apache::lonhtmlcommon::breadcrumbs(undef,'Searching','Search_Basic',
1.227     matthew   694:                                    undef,undef,
                    695:                                    $ENV{'form.catalogmode'} ne 'groupsearch');
1.207     matthew   696:     my $scrout = &search_html_header().$bodytag;
                    697:     if (&Apache::lonnet::allowed('bre',$ENV{'request.role.domain'})) {
1.213     matthew   698:         # Define interface components
1.233     matthew   699:         my $userelatedwords= '<label>'.
1.213     matthew   700:             &mt('[_1] use related words',
                    701:                 &Apache::lonhtmlcommon::checkbox
1.233     matthew   702:                 ('related',$ENV{'form.related'},'related')).'</label>';
                    703:         my $onlysearchdomain='<label>'.
1.213     matthew   704:             &mt('[_1] only search domain [_2]',
1.221     matthew   705:                 &Apache::lonhtmlcommon::checkbox('domains',
                    706:                                                  $ENV{'form.domains'},
                    707:                                                  $r->dir_config('lonDefDomain')
                    708:                                                  ),
                    709:                 $r->dir_config('lonDefDomain')
1.233     matthew   710:                 ).'</label>';
1.213     matthew   711:         my $adv_search_link = 
                    712:             '<a href="/adm/searchcat?'.
                    713:             'phase=disp_adv&'.
                    714:             'catalogmode='.$ENV{'form.catalogmode'}.
                    715:             '&launch='.$ENV{'form.launch'}.
                    716:             '&mode='.$ENV{'form.mode'}.
                    717:             '">'.&mt('Advanced Search').'</a>';
                    718:         #
                    719:         $scrout.='<form name="loncapa_search" method="post" '.
                    720:             'action="/adm/searchcat">'.
                    721:             '<input type="hidden" name="phase" value="basic_search" />'.
                    722:             $hidden_fields;
                    723:         #
                    724:         $scrout .= '<center>'.$/;
                    725:         if ($ENV{'request.course.id'}) {
                    726:             $scrout .= '<h1>'.&mt('LON-CAPA Catalog Search').'</h1>';
                    727:         } else {
                    728:             # No need to tell them they are searching
                    729:             $scrout.= ('<br />'x2);
                    730:         }
                    731:         $scrout.='<table>'.
                    732:             '<tr><td align="center" valign="top">'.
1.228     matthew   733:             &Apache::lonhtmlcommon::textbox
                    734:             ('basicexp',
                    735:              &HTML::Entities::encode($ENV{'form.basicexp'},'<>&"'),50
                    736:              ).
                    737:              '<br />'.
1.213     matthew   738:             '<font size="-1">'.&searchhelp().'</font>'.'</td>'.
                    739:             '<td><font size="-1">'.
                    740:             '<nobr>'.('&nbsp;'x3).$adv_search_link.'</nobr>'.'<br />'.
                    741:             '<nobr>'.('&nbsp;'x1).$userelatedwords.'</nobr>'.'<br />'.
                    742:             '<nobr>'.('&nbsp;'x1).$onlysearchdomain.'</nobr>'.'<br />'.
                    743:             '</font></td>'.
                    744:             '</tr>'.$/;
                    745:         #
                    746:         $scrout .= '<tr><td align="center" colspan="2">'.
                    747:             '<font size="-1">'.
                    748:             '<input type="submit" name="basicsubmit" '.
                    749:             'value="'.&mt('Search').'" />'.
1.223     matthew   750:             ('&nbsp;'x2).$closebutton.('&nbsp;'x2).
                    751:             &viewoptions().
1.213     matthew   752:             '</font>'.
                    753:             '</td></tr>'.$/;
                    754:         $scrout .= '</table>'.$/.'</center>'.'</form>';
1.180     matthew   755:     }
                    756:     if ($ENV{'request.course.id'}) {
1.213     matthew   757: 	my %lt=&Apache::lonlocal::texthash('srch' => 'Search',
1.187     www       758:                                            'header' => 'Course Search',
                    759: 	 'note' => 'Enter terms or phrases, then press "Search" below',
1.200     www       760: 	 'use' => 'use related words',
1.231     raeburn   761: 	 'full' =>'fulltext search (time consuming)',
                    762:          'disc' => 'search discussion postings (resources and bulletin boards)',
1.187     www       763: 					   );
1.180     matthew   764:         $scrout.=(<<ENDCOURSESEARCH);
1.213     matthew   765: <form name="loncapa_search" method="post" action="/adm/searchcat">
                    766: <center>
1.180     matthew   767: <hr />
1.187     www       768: <h1>$lt{'header'}</h1>    
1.167     www       769: <input type="hidden" name="phase" value="course_search" />
                    770: $hidden_fields
                    771: <p>
1.187     www       772: $lt{'note'}.
1.167     www       773: </p>
                    774: <p>
                    775: <table>
                    776: <tr><td>
                    777: ENDCOURSESEARCH
1.180     matthew   778:         $scrout.='&nbsp;'.
1.200     www       779:             &Apache::lonhtmlcommon::textbox('courseexp',
                    780:                                   $ENV{'form.courseexp'},40);
1.180     matthew   781:         my $crscheckbox = 
1.200     www       782:             &Apache::lonhtmlcommon::checkbox('crsfulltext',
                    783:                                    $ENV{'form.crsfulltext'});
1.180     matthew   784:         my $relcheckbox = 
1.200     www       785:             &Apache::lonhtmlcommon::checkbox('crsrelated',
                    786: 				   $ENV{'form.crsrelated'});
1.231     raeburn   787:         my $discheckbox = 
                    788:             &Apache::lonhtmlcommon::checkbox('crsdiscuss',
                    789:                                    $ENV{'form.crsrelated'});
1.180     matthew   790:         $scrout.=(<<ENDENDCOURSE);
1.167     www       791: </td></tr>
1.234     matthew   792: <tr><td><label>$relcheckbox $lt{'use'}</label></td><td></td></tr>
                    793: <tr><td><label>$crscheckbox $lt{'full'}</label></td><td></td></tr>
                    794: <tr><td><label>$discheckbox $lt{'disc'}</label></td><td></td></tr>
1.167     www       795: </table><p>
1.187     www       796: &nbsp;<input type="submit" name="coursesubmit" value='$lt{'srch'}' />
1.167     www       797: </p>
1.213     matthew   798: </center>
                    799: </form>
1.167     www       800: ENDENDCOURSE
1.180     matthew   801:     }
1.167     www       802:     $scrout.=(<<ENDDOCUMENT);
1.124     matthew   803: </body>
                    804: </html>
                    805: ENDDOCUMENT
1.146     matthew   806:     $r->print($scrout);
                    807:     return;
1.124     matthew   808: }
                    809: ######################################################################
                    810: ######################################################################
                    811: 
                    812: =pod 
                    813: 
                    814: =item &advanced_search_form() 
                    815: 
1.204     matthew   816: Prints the advanced search form.
1.124     matthew   817: 
                    818: =cut
                    819: 
                    820: ######################################################################
                    821: ######################################################################
1.146     matthew   822: sub print_advanced_search_form{
1.196     matthew   823:     my ($r,$closebutton,$hidden_fields) = @_;
1.217     matthew   824:     my $bodytag=&Apache::loncommon::bodytag('Advanced Catalog Search').
1.229     matthew   825:         &Apache::lonhtmlcommon::breadcrumbs(undef,'Searching',
                    826:                                             'Search_Advanced',
                    827:                                             undef,undef,
1.227     matthew   828:                                   $ENV{'form.catalogmode'} ne 'groupsearch');
1.200     www       829:     my %lt=&Apache::lonlocal::texthash('srch' => 'Search',
                    830: 				       'reset' => 'Reset',
                    831: 				       'help' => 'Help');
1.217     matthew   832:     my $advanced_buttons=<<"END";
1.200     www       833: <input type="submit" name="advancedsubmit" value='$lt{"srch"}' />
                    834: <input type="reset" name="reset" value='$lt{"reset"}' />
1.129     matthew   835: $closebutton
                    836: END
1.207     matthew   837:     my $scrout=&search_html_header();
                    838:     $scrout .= <<"ENDHEADER";
1.154     www       839: $bodytag
1.200     www       840: <form method="post" action="/adm/searchcat" name="advsearch">
1.217     matthew   841: <p>
1.129     matthew   842: $advanced_buttons
1.124     matthew   843: ENDHEADER
1.208     matthew   844:     $scrout.=('&nbsp;'x2).&viewoptions().'</p>'.$hidden_fields. 
                    845:         '<input type="hidden" name="phase" value="adv_search" />';
1.200     www       846:     my %fields=&Apache::lonmeta::fieldnames();
1.208     matthew   847:     #
1.217     matthew   848:     $scrout .= '<h3>'.&mt('Standard Metadata').'</h3>';
                    849:     $scrout .= "<table>\n";
                    850:     $scrout .= '<tr><td>&nbsp;</td><td colspan="2"><font size="-1">'.
                    851:         ('&nbsp;'x2).&searchhelp()."</font></td></tr>\n";
1.208     matthew   852:     my %related_word_search = 
1.217     matthew   853:         ('title'    => 1,
                    854:          'author'   => 0,
                    855:          'owner'    => 0,
                    856:          'authorspace'  => 0,
                    857:          'modifyinguser'=> 0,
                    858:          'keywords' => 1,
                    859:          'notes'    => 1,
                    860:          'abstract' => 1,
                    861:          'standards'=> 1,
                    862:          'mime'     => 1,
1.208     matthew   863:          );
1.209     matthew   864:     #
1.208     matthew   865:     foreach my $field ('title','author','owner','authorspace','modifyinguser',
                    866: 	     'keywords','notes','abstract','standards','mime') {
                    867: 	$scrout.='<tr><td align="right">'.&titlefield($fields{$field}).'</td><td>'.
                    868: 	    &Apache::lonmeta::prettyinput($field,
                    869:                                           $ENV{'form.'.$field},
                    870:                                           $field,
                    871:                                           'advsearch',
                    872: 					  $related_word_search{$field},
                    873:                                           '</td><td align="left">',
                    874:                                           $ENV{'form.'.$field.'_related'},
                    875:                                           50);
                    876:         if ($related_word_search{$field}) {
                    877:             $scrout .= 'related words';
                    878:         } else {
                    879:             $scrout .= '</td><td>&nbsp;';
                    880:         }
                    881:         $scrout .= '</td></tr>'.$/;
                    882:     }
                    883:     foreach my $field ('lowestgradelevel','highestgradelevel') {
                    884: 	$scrout.='<tr>'.
                    885:             '<td align="right">'.&titlefield($fields{$field}).'</td>'.
                    886:             '<td colspan="2">'.
                    887: 	    &Apache::lonmeta::prettyinput($field,
                    888:                                           $ENV{'form.'.$field},
                    889:                                           $field,
                    890:                                           'advsearch',
                    891: 					  0).
                    892:                                           '</td></tr>'.$/;
1.200     www       893:     }
1.208     matthew   894:     $scrout.='<tr><td align="right">'.
                    895: 	&titlefield(&mt('MIME Type Category')).'</td><td colspan="2">'. 
1.202     www       896: 	    &Apache::loncommon::filecategoryselect('category',
                    897: 						   $ENV{'form.category'}).
1.208     matthew   898: 	    '</td></tr>'.$/;
                    899:     $scrout.='<tr><td align="right" valign="top">'.
                    900: 	&titlefield(&mt('Domains')).'</td><td colspan="2">'. 
1.202     www       901: 	    &Apache::loncommon::domain_select('domains',
                    902: 						   $ENV{'form.domains'},1).
1.208     matthew   903: 	    '</td></tr>'.$/;
1.217     matthew   904:     #
                    905:     # Misc metadata
                    906:     $scrout.='<tr><td align="right" valign="top">'.
                    907: 	&titlefield(&mt('Copyright/Distribution')).'</td><td colspan="2">'.
                    908:         &Apache::lonmeta::selectbox('copyright',
1.230     matthew   909:                                     $ENV{'form.copyright'},
1.217     matthew   910:                                     \&Apache::loncommon::copyrightdescription,
                    911:                                     ( undef,
                    912:                                       &Apache::loncommon::copyrightids)
                    913:                                     ).'</td></tr>'.$/;
                    914:     $scrout.='<tr><td align="right" valign="top">'.
                    915: 	&titlefield(&mt('Language')).'</td><td colspan="2">'.
                    916:         &Apache::lonmeta::selectbox('language',
1.230     matthew   917:                                     $ENV{'form.language'},
1.217     matthew   918:                                     \&Apache::loncommon::languagedescription,
                    919:                                     ('any',&Apache::loncommon::languageids)
                    920:                                     ).'</td></tr>';
                    921:     $scrout .= "</table>\n";    
                    922:     #
                    923:     # Dynamic metadata
                    924:     $scrout .= '<h3>'.&mt('Problem Statistics').'</h3>';
                    925:     $scrout .= "<table>\n";
                    926:     $scrout .= '<tr><td>&nbsp;</td><td align="center">'.&mt('Minimum').'</td>'.
                    927:         '<td align="center">'.&mt('Maximum').'</td></tr>'."\n";
                    928:     foreach my $statistic 
1.222     matthew   929:         ({ name=>'count',
                    930:            description=>'Network-wide number of accesses (hits)',},
                    931:          { name=>'stdno',
                    932:            description=>
                    933:                'Total number of students who have worked on this problem',},
1.217     matthew   934:          { name => 'avetries',
1.222     matthew   935:            description=>'Average number of tries till solved',},
1.217     matthew   936:          { name => 'difficulty',
                    937:            description=>'Degree of difficulty',},
                    938:          { name => 'disc',
                    939:            description=>'Degree of discrimination'}) {
                    940:         $scrout .= '<tr><td align="right">'.
                    941:             &titlefield(&mt($statistic->{'description'})).
                    942:             '</td><td align="center">'.
                    943:             '<input type="text" name="'.$statistic->{'name'}.'_min" '.
                    944:             'value="" size="6" />'.
                    945:             '</td><td align="center">'.
                    946:             '<input type="text" name="'.$statistic->{'name'}.'_max" '.
                    947:             'value="" size="6" />'.
                    948:             '</td></tr>'.$/;
                    949:     }
                    950:     $scrout .= "</table>\n";
                    951:     $scrout .= '<h3>'.&mt('Evaluation Data').'</h3>';
                    952:     $scrout .= "<table>\n";
                    953:     $scrout .= '<tr><td>&nbsp;</td><td align="center">'.&mt('Minimum').'</td>'.
                    954:         '<td align="center">'.&mt('Maximum').'</td></tr>'."\n";
                    955:     foreach my $evaluation
                    956:         ( { name => 'clear',
                    957:             description => 'Material presented in clear way'},
                    958:           { name =>'depth',
                    959:             description => 'Material covered with sufficient depth'},
                    960:           { name => 'helpful',
                    961:             description => 'Material is helpful'},
                    962:           { name => 'correct',
                    963:             description => 'Material appears to be correct'},
                    964:           { name => 'technical',
                    965:             description => 'Resource is technically correct'}){
                    966:         $scrout .= '<tr><td align="right">'.
                    967:             &titlefield(&mt($evaluation->{'description'})).
                    968:             '</td><td align="center">'.
                    969:             '<input type="text" name="'.$evaluation->{'name'}.'_min" '.
                    970:             'value="" size="6" />'.
                    971:             '</td><td align="center">'.
                    972:             '<input type="text" name="'.$evaluation->{'name'}.'_max" '.
                    973:             'value="" size="6" />'.
                    974:             '</td></tr>'.$/;
                    975:     }
                    976:     $scrout .= "</table>\n";
1.216     matthew   977:     #
                    978:     # Creation/Modification date limits
1.217     matthew   979:     $scrout .= '<h3>'.&mt('Creation and Modification dates').'</h3>';
1.216     matthew   980:     $scrout .= "\n<table>\n";
                    981:     my $cafter = 
                    982:         &Apache::lonhtmlcommon::date_setter('advsearch',         # formname
                    983:                                             'creationdate1', # fieldname
                    984:                                             0,           # current value
                    985:                                             '',          # special 
                    986:                                             1,           # includeempty
                    987:                                             '',          # state
                    988:                                             1,           # no_hh_mm_ss
                    989:                                             );
                    990:     my $cbefore = 
                    991:         &Apache::lonhtmlcommon::date_setter('advsearch',         # formname
                    992:                                             'creationdate2', # fieldname
                    993:                                             0,           # current value
                    994:                                             '',          # special 
                    995:                                             1,           # includeempty
                    996:                                             '',          # state
                    997:                                             1,           # no_hh_mm_ss
                    998:                                             );
                    999:     $scrout .= &mt('<tr><td align="right">Created between</td>'.
                   1000:                    '<td>[_1]</td></tr>'.
                   1001:                    '<tr><td align="right">and </td>'.
                   1002:                    '<td>[_2]</td></tr>',$cafter,$cbefore);
                   1003:     my $lafter = 
                   1004:         &Apache::lonhtmlcommon::date_setter('advsearch',
                   1005:                                             'revisiondate1', 
                   1006:                                             0,           # current value
                   1007:                                             '',          # special 
                   1008:                                             1,           # includeempty
                   1009:                                             '',          # state
                   1010:                                             1,           # no_hh_mm_ss
                   1011:                                             );
                   1012:     my $lbefore = 
                   1013:         &Apache::lonhtmlcommon::date_setter('advsearch',
                   1014:                                             'revisiondate2',
                   1015:                                             0,           # current value
                   1016:                                             '',          # special 
                   1017:                                             1,           # includeempty
                   1018:                                             '',          # state
                   1019:                                             1,           # no_hh_mm_ss
                   1020:                                             );
                   1021:     $scrout .= &mt('<tr><td align="right">Last modified between </td>'.
                   1022:                    '<td>[_1]</td></tr>'.
                   1023:                    '<tr><td align="right">and</td>'.
                   1024:                    '<td>[_2]</td></tr>',$lafter,$lbefore);
1.202     www      1025:     $scrout.="</table>\n";
1.124     matthew  1026:     $scrout.=<<ENDDOCUMENT;
1.129     matthew  1027: $advanced_buttons
1.8       harris41 1028: </form>
                   1029: </body>
                   1030: </html>
                   1031: ENDDOCUMENT
1.146     matthew  1032:     $r->print($scrout);
                   1033:     return;
1.124     matthew  1034: }
1.204     matthew  1035: 
1.200     www      1036: ######################################################################
                   1037: ######################################################################
                   1038: 
                   1039: =pod 
                   1040: 
1.204     matthew  1041: =item &titlefield()
1.200     www      1042: 
                   1043: Inputs: title text
                   1044: 
                   1045: Outputs: titletext with font wrapper
                   1046: 
                   1047: =cut
                   1048: 
                   1049: ######################################################################
                   1050: ######################################################################
                   1051: sub titlefield {
                   1052:     my $title=shift;
1.208     matthew  1053:     return $title;
1.200     www      1054: }
1.204     matthew  1055: 
1.200     www      1056: ######################################################################
                   1057: ######################################################################
                   1058: 
                   1059: =pod 
                   1060: 
1.204     matthew  1061: =item viewoptiontext()
1.200     www      1062: 
                   1063: Inputs: codename for view option
                   1064: 
                   1065: Outputs: displayed text
                   1066: 
                   1067: =cut
                   1068: 
                   1069: ######################################################################
                   1070: ######################################################################
                   1071: sub viewoptiontext {
                   1072:     my $code=shift;
1.204     matthew  1073:     my %desc=&Apache::lonlocal::texthash
                   1074:         ('detailed' => "Detailed Citation View",
                   1075:          'xml' => 'XML/SGML',
                   1076:          'compact' => 'Compact View',
                   1077:          'fielded' => 'Fielded Format',
                   1078:          'summary' => 'Summary View');
1.200     www      1079:     return $desc{$code};
                   1080: }
1.204     matthew  1081: 
                   1082: ######################################################################
1.200     www      1083: ######################################################################
                   1084: 
                   1085: =pod 
                   1086: 
1.204     matthew  1087: =item viewoptions()
1.200     www      1088: 
                   1089: Inputs: none
                   1090: 
                   1091: Outputs: text for box with view options
                   1092: 
                   1093: =cut
                   1094: 
                   1095: ######################################################################
                   1096: ######################################################################
                   1097: sub viewoptions {
1.223     matthew  1098:     my $scrout;
1.208     matthew  1099:     if (! defined($ENV{'form.viewselect'})) { 
                   1100:         $ENV{'form.viewselect'}='detailed'; 
                   1101:     }
1.200     www      1102:     $scrout.=&Apache::lonmeta::selectbox('viewselect',
                   1103: 			$ENV{'form.viewselect'},
                   1104: 			\&viewoptiontext,
                   1105: 			sort(keys(%Views)));
1.208     matthew  1106:     $scrout.= '&nbsp;&nbsp;';
1.214     matthew  1107:     my $countselect = &Apache::lonmeta::selectbox('show',
                   1108:                                                   $ENV{'form.show'},
                   1109:                                                   undef,
                   1110:                                                   (10,20,50,100,1000,10000));
                   1111:     $scrout .= ('&nbsp;'x2).&mt('[_1] Records per Page',$countselect).
                   1112:         '</nobr>'.$/;
1.200     www      1113:     return $scrout;
1.201     www      1114: }
                   1115: 
                   1116: ######################################################################
1.204     matthew  1117: ######################################################################
1.201     www      1118: 
                   1119: =pod 
                   1120: 
1.204     matthew  1121: =item searchhelp()
1.201     www      1122: 
                   1123: Inputs: none
                   1124: 
                   1125: Outputs: return little blurb on how to enter searches
                   1126: 
                   1127: =cut
                   1128: 
                   1129: ######################################################################
                   1130: ######################################################################
                   1131: sub searchhelp {
1.228     matthew  1132:     return &mt('Enter words and quoted phrases');
1.200     www      1133: }
1.8       harris41 1134: 
1.121     matthew  1135: ######################################################################
                   1136: ######################################################################
                   1137: 
                   1138: =pod 
                   1139: 
1.204     matthew  1140: =item &get_persistent_form_data()
1.145     matthew  1141: 
1.146     matthew  1142: Inputs: filename of database
                   1143: 
                   1144: Outputs: returns undef on database errors.
                   1145: 
                   1146: This function is the reverse of &make_persistent() for form data.
1.145     matthew  1147: Retrieve persistent data from %persistent_db.  Retrieved items will have their
1.146     matthew  1148: values unescaped.  If a form value already exists in $ENV, it will not be
                   1149: overwritten.  Form values that are array references may have values appended
                   1150: to them.
1.145     matthew  1151: 
                   1152: =cut
                   1153: 
                   1154: ######################################################################
                   1155: ######################################################################
1.146     matthew  1156: sub get_persistent_form_data {
                   1157:     my $filename = shift;
1.147     matthew  1158:     return 0 if (! -e $filename);
1.146     matthew  1159:     return undef if (! tie(%persistent_db,'GDBM_File',$filename,
1.148     matthew  1160:                            &GDBM_READER(),0640));
1.146     matthew  1161:     #
                   1162:     # These make sure we do not get array references printed out as 'values'.
1.161     matthew  1163:     my %arrays_allowed = ('form.domains'=>1);
1.146     matthew  1164:     #
                   1165:     # Loop through the keys, looking for 'form.'
                   1166:     foreach my $name (keys(%persistent_db)) {
                   1167:         next if ($name !~ /^form./);
1.182     matthew  1168:         # Kludgification begins!
                   1169:         if ($name eq 'form.domains' && 
                   1170:             $ENV{'form.searchmode'} eq 'basic' &&
                   1171:             $ENV{'form.phase'} ne 'disp_basic') {
                   1172:             next;
                   1173:         }
                   1174:         # End kludge (hopefully)
1.152     matthew  1175:         next if (exists($ENV{$name}));
1.146     matthew  1176:         my @values = map { 
                   1177:             &Apache::lonnet::unescape($_);
                   1178:         } split(',',$persistent_db{$name});
                   1179:         next if (@values <1);
1.152     matthew  1180:         if ($arrays_allowed{$name}) {
                   1181:             $ENV{$name} = [@values];
1.146     matthew  1182:         } else {
1.152     matthew  1183:             $ENV{$name} = $values[0] if ($values[0]);
1.146     matthew  1184:         }
                   1185:     }
                   1186:     untie (%persistent_db);
                   1187:     return 1;
                   1188: }
1.181     matthew  1189: 
1.146     matthew  1190: ######################################################################
                   1191: ######################################################################
                   1192: 
                   1193: =pod 
                   1194: 
1.204     matthew  1195: =item &get_persistent_data()
1.146     matthew  1196: 
                   1197: Inputs: filename of database, ref to array of values to recover.
                   1198: 
                   1199: Outputs: array of values.  Returns undef on error.
                   1200: 
                   1201: This function is the reverse of &make_persistent();
                   1202: Retrieve persistent data from %persistent_db.  Retrieved items will have their
                   1203: values unescaped.  If the item contains commas (before unescaping), the
                   1204: returned value will be an array pointer. 
                   1205: 
                   1206: =cut
                   1207: 
                   1208: ######################################################################
                   1209: ######################################################################
                   1210: sub get_persistent_data {
                   1211:     my $filename = shift;
                   1212:     my @Vars = @{shift()};
                   1213:     my @Values;   # Return array
                   1214:     return undef if (! -e $filename);
                   1215:     return undef if (! tie(%persistent_db,'GDBM_File',$filename,
1.148     matthew  1216:                            &GDBM_READER(),0640));
1.146     matthew  1217:     foreach my $name (@Vars) {
                   1218:         if (! exists($persistent_db{$name})) {
                   1219:             push @Values, undef;
                   1220:             next;
                   1221:         }
                   1222:         my @values = map { 
                   1223:             &Apache::lonnet::unescape($_);
                   1224:         } split(',',$persistent_db{$name});
1.152     matthew  1225:         if (@values <= 1) {
1.146     matthew  1226:             push @Values,$values[0];
1.145     matthew  1227:         } else {
1.146     matthew  1228:             push @Values,\@values;
1.145     matthew  1229:         }
                   1230:     }
1.146     matthew  1231:     untie (%persistent_db);
                   1232:     return @Values;
1.145     matthew  1233: }
                   1234: 
                   1235: ######################################################################
                   1236: ######################################################################
                   1237: 
                   1238: =pod 
                   1239: 
1.121     matthew  1240: =item &make_persistent() 
                   1241: 
1.146     matthew  1242: Inputs: Hash of values to save, filename of persistent database.
                   1243: 
                   1244: Store variables away to the %persistent_db.
1.145     matthew  1245: Values will be escaped.  Values that are array pointers will have their
1.205     www      1246: elements escaped and concatenated in a comma separated string.  
1.122     matthew  1247: 
1.121     matthew  1248: =cut
                   1249: 
                   1250: ######################################################################
                   1251: ######################################################################
1.98      harris41 1252: sub make_persistent {
1.133     matthew  1253:     my %save = %{shift()};
1.146     matthew  1254:     my $filename = shift;
                   1255:     return undef if (! tie(%persistent_db,'GDBM_File',
1.148     matthew  1256:                            $filename,&GDBM_WRCREAT(),0640));
1.146     matthew  1257:     foreach my $name (keys(%save)) {
1.145     matthew  1258:         my @values = (ref($save{$name}) ? @{$save{$name}} : ($save{$name}));
                   1259:         # We handle array references, but not recursively.
                   1260:         my $store = join(',', map { &Apache::lonnet::escape($_); } @values );
                   1261:         $persistent_db{$name} = $store;
1.109     harris41 1262:     }
1.146     matthew  1263:     untie(%persistent_db);
                   1264:     return 1;
                   1265: }
                   1266: 
                   1267: ######################################################################
                   1268: ######################################################################
                   1269: 
                   1270: =pod 
                   1271: 
                   1272: =item &make_form_data_persistent() 
                   1273: 
                   1274: Inputs: filename of persistent database.
                   1275: 
                   1276: Store most form variables away to the %persistent_db.
                   1277: Values will be escaped.  Values that are array pointers will have their
1.205     www      1278: elements escaped and concatenated in a comma separated string.  
1.146     matthew  1279: 
                   1280: =cut
                   1281: 
                   1282: ######################################################################
                   1283: ######################################################################
                   1284: sub make_form_data_persistent {
                   1285:     my $r = shift;
                   1286:     my $filename = shift;
                   1287:     my %save;
                   1288:     foreach (keys(%ENV)) {
1.150     matthew  1289:         next if (!/^form/ || /submit/);
1.146     matthew  1290:         $save{$_} = $ENV{$_};
                   1291:     }
1.152     matthew  1292:     return &make_persistent(\%save,$filename);
1.98      harris41 1293: }
                   1294: 
1.122     matthew  1295: ######################################################################
                   1296: ######################################################################
                   1297: 
                   1298: =pod 
                   1299: 
1.134     matthew  1300: =item &parse_advanced_search()
                   1301: 
                   1302: Parse advanced search form and return the following:
                   1303: 
                   1304: =over 4
                   1305: 
                   1306: =item $query Scalar containing an SQL query.
1.126     matthew  1307: 
1.134     matthew  1308: =item $customquery Scalar containing a custom query.
                   1309: 
                   1310: =item $customshow Scalar containing commands to show custom metadata.
                   1311: 
                   1312: =item $libraries_to_query Reference to array of domains to search.
                   1313: 
                   1314: =back
1.122     matthew  1315: 
                   1316: =cut
                   1317: 
                   1318: ######################################################################
                   1319: ######################################################################
1.134     matthew  1320: sub parse_advanced_search {
1.196     matthew  1321:     my ($r,$closebutton,$hidden_fields)=@_;
1.216     matthew  1322:     my @BasicFields = ('title','author','subject','keywords','url','version',
1.227     matthew  1323:                        'notes','abstract','extension','owner','authorspace',
1.216     matthew  1324: #                       'custommetadata','customshow',
                   1325:                        'modifyinguser','standards','mime');
1.222     matthew  1326:     my @StatsFields = &statfields();
                   1327:     my @EvalFields = &evalfields();
1.32      harris41 1328:     my $fillflag=0;
1.230     matthew  1329:     my $pretty_search_string = "";
1.64      harris41 1330:     # Clean up fields for safety
1.216     matthew  1331:     for my $field (@BasicFields,
                   1332:                    'creationdatestart_month','creationdatestart_day',
1.64      harris41 1333: 		   'creationdatestart_year','creationdateend_month',
                   1334: 		   'creationdateend_day','creationdateend_year',
                   1335: 		   'lastrevisiondatestart_month','lastrevisiondatestart_day',
                   1336: 		   'lastrevisiondatestart_year','lastrevisiondateend_month',
1.216     matthew  1337: 		   'lastrevisiondateend_day','lastrevisiondateend_year') {
                   1338: 	$ENV{'form.'.$field}=~s/[^\w\/\s\(\)\=\-\"\']//g;
1.64      harris41 1339:     }
1.117     matthew  1340:     foreach ('mode','form','element') {
                   1341: 	# is this required?  Hmmm.
1.216     matthew  1342: 	next if (! exists($ENV{'form.'.$_}));
                   1343: 	$ENV{'form.'.$_}=&Apache::lonnet::unescape($ENV{'form.'.$_});
                   1344: 	$ENV{'form.'.$_}=~s/[^\w\/\s\(\)\=\-\"\']//g;
1.117     matthew  1345:     }
1.131     matthew  1346:     # Preprocess the category form element.
1.161     matthew  1347:     $ENV{'form.category'} = 'any' if (! defined($ENV{'form.category'}) ||
                   1348:                                       ref($ENV{'form.category'}));
                   1349:     #
1.90      harris41 1350:     # Check to see if enough information was filled in
1.222     matthew  1351:     foreach my $field (@BasicFields) {
1.216     matthew  1352: 	if (&filled($ENV{'form.'.$field})) {
1.32      harris41 1353: 	    $fillflag++;
                   1354: 	}
                   1355:     }
1.222     matthew  1356:     foreach my $field (@StatsFields,@EvalFields) {
                   1357:         if (&filled($ENV{'form.'.$field.'_max'})) {
                   1358:             $fillflag++;
                   1359:         }
                   1360:         if (&filled($ENV{'form.'.$field.'_min'})) {
                   1361:             $fillflag++;
                   1362:         }
                   1363:     }
                   1364: 
1.216     matthew  1365:     for my $field ('lowestgradelevel','highestgradelevel') {
                   1366:         if ( $ENV{'form.'.$field} =~ /^\d+$/ &&
                   1367:              $ENV{'form.'.$field} > 0) {
                   1368:             $fillflag++;
                   1369:         }
                   1370:     }
1.212     matthew  1371:     if (! $fillflag) {
1.204     matthew  1372: 	&output_blank_field_error($r,$closebutton,
                   1373:                                   'phase=disp_adv',$hidden_fields);
1.134     matthew  1374: 	return ;
1.32      harris41 1375:     }
1.90      harris41 1376:     # Turn the form input into a SQL-based query
1.39      harris41 1377:     my $query='';
1.45      harris41 1378:     my @queries;
1.143     matthew  1379:     my $font = '<font color="#800000" face="helvetica">';
1.90      harris41 1380:     # Evaluate logical expression AND/OR/NOT phrase fields.
1.216     matthew  1381:     foreach my $field (@BasicFields) {
1.224     matthew  1382: 	next if (!defined($ENV{'form.'.$field}) || $ENV{'form.'.$field} eq '');
1.228     matthew  1383:         my ($error,$SQLQuery) = 
                   1384:             &process_phrase_input($ENV{'form.'.$field},
                   1385:                                   $ENV{'form.'.$field.'_related'},$field);
                   1386:         if (defined($error)) {
                   1387:             &output_unparsed_phrase_error($r,$closebutton,'phase=disp_adv',
                   1388:                                          $hidden_fields,$field);
                   1389:             return;
                   1390:         } else {
                   1391:             $pretty_search_string .= 
                   1392:                 $font.$field.'</font>: '.$ENV{'form.'.$field};
1.142     matthew  1393:             if ($ENV{'form.'.$field.'_related'}) {
1.228     matthew  1394:                 my @Words = 
                   1395:                     &Apache::loncommon::get_related_words
                   1396:                     ($ENV{'form.'.$field});
                   1397:                 if (@Words) {
                   1398:                     $pretty_search_string.= ' with related words: '.
                   1399:                         join(', ',@Words[0..4]);
1.143     matthew  1400:                 } else {
1.228     matthew  1401:                     $pretty_search_string.= ' with related words.';
1.143     matthew  1402:                 }
1.142     matthew  1403:             }
1.228     matthew  1404:             $pretty_search_string .= '<br />';
                   1405:             push (@queries,$SQLQuery);
1.131     matthew  1406:         }
1.44      harris41 1407:     }
1.161     matthew  1408:     #
                   1409:     # Make the 'mime' from 'form.category' and 'form.extension'
                   1410:     #
                   1411:     my $searchphrase;
                   1412:     if (exists($ENV{'form.category'})    && 
                   1413:         $ENV{'form.category'} !~ /^\s*$/ &&
                   1414:         $ENV{'form.category'} ne 'any')     {
                   1415:         my @extensions = &Apache::loncommon::filecategorytypes
                   1416:                                                    ($ENV{'form.category'});
                   1417:         if (scalar(@extensions) > 0) {
                   1418:             $searchphrase = join(' OR ',@extensions);
                   1419:         }
                   1420:     }
                   1421:     if (defined($searchphrase)) {
1.228     matthew  1422:         my ($error,$SQLsearch) = &process_phrase_input($searchphrase,0,'mime');
                   1423:         push @queries,$SQLsearch;
1.161     matthew  1424:         $pretty_search_string .=$font.'mime</font> contains <b>'.
                   1425:             $searchphrase.'</b><br />';
1.135     matthew  1426:     }
1.204     matthew  1427:     #
1.90      harris41 1428:     # Evaluate option lists
1.216     matthew  1429:     if ($ENV{'form.lowestgradelevel'}        &&
                   1430:         $ENV{'form.lowestgradelevel'} ne '0' &&
                   1431:         $ENV{'form.lowestgradelevel'} =~ /^\d+$/) {
                   1432: 	push(@queries,
                   1433:              '(lowestgradelevel>='.$ENV{'form.lowestgradelevel'}.')');
                   1434:         $pretty_search_string.="lowestgradelevel>=".
                   1435:             $ENV{'form.lowestgradelevel'}."<br />\n";
                   1436:     }
                   1437:     if ($ENV{'form.highestgradelevel'}        &&
                   1438:         $ENV{'form.highestgradelevel'} ne '0' &&
                   1439:         $ENV{'form.highestgradelevel'} =~ /^\d+$/) {
                   1440: 	push(@queries,
                   1441:              '(highestgradelevel<='.$ENV{'form.highestgradelevel'}.')');
                   1442:         $pretty_search_string.="highestgradelevel<=".
                   1443:             $ENV{'form.highestgradelevel'}."<br />\n";
                   1444:     }
1.58      harris41 1445:     if ($ENV{'form.language'} and $ENV{'form.language'} ne 'any') {
1.90      harris41 1446: 	push @queries,"(language like \"$ENV{'form.language'}\")";
1.143     matthew  1447:         $pretty_search_string.=$font."language</font>= ".
                   1448:             &Apache::loncommon::languagedescription($ENV{'form.language'}).
                   1449:                 "<br />\n";
1.58      harris41 1450:     }
                   1451:     if ($ENV{'form.copyright'} and $ENV{'form.copyright'} ne 'any') {
1.90      harris41 1452: 	push @queries,"(copyright like \"$ENV{'form.copyright'}\")";
1.143     matthew  1453:         $pretty_search_string.=$font."copyright</font> = ".
                   1454:             &Apache::loncommon::copyrightdescription($ENV{'form.copyright'}).
1.230     matthew  1455:                 "<br />\n";
1.58      harris41 1456:     }
1.143     matthew  1457:     #
1.217     matthew  1458:     # Statistics
                   1459:     foreach my $field (@StatsFields,@EvalFields) {
                   1460:         my ($min,$max);
                   1461:         if (exists($ENV{'form.'.$field.'_min'}) && 
                   1462:             $ENV{'form.'.$field.'_min'} ne '') {
                   1463:             $min = $ENV{'form.'.$field.'_min'};
                   1464:         }
                   1465:         if (exists($ENV{'form.'.$field.'_max'}) &&
                   1466:             $ENV{'form.'.$field.'_max'} ne '') {
                   1467:             $max = $ENV{'form.'.$field.'_max'};
                   1468:         }
                   1469:         next if (! defined($max) && ! defined($min));
                   1470:         if (defined($min) && defined($max)) {
                   1471:             ($min,$max) = sort {$a <=>$b} ($min,$max);
                   1472:         }
                   1473:         if (defined($min) && $min =~ /^(\d+\.\d+|\d+|\.\d+)$/) {
                   1474:             push(@queries,'('.$field.'>'.$min.')');
                   1475:             $pretty_search_string.=$font.$field.'</font>&gt;'.$min.'<br />';
                   1476:         }
                   1477:         if (defined($max) && $max =~ /^(\d+\.\d+|\d+|\.\d+)$/) {
                   1478:             push(@queries,'('.$field.'<'.$max.')');
                   1479:             $pretty_search_string.=$font.$field.'</font>&lt;'.$max.'<br />';
                   1480:         }
                   1481:     }
                   1482:     #
1.90      harris41 1483:     # Evaluate date windows
1.216     matthew  1484:     my $cafter =
                   1485:         &Apache::lonhtmlcommon::get_date_from_form('creationdate1');
                   1486:     my $cbefore = 
                   1487:         &Apache::lonhtmlcommon::get_date_from_form('creationdate2');
                   1488:     if ($cafter > $cbefore) {
                   1489:         my $tmp = $cafter;
                   1490:         $cafter = $cbefore;
                   1491:         $cbefore = $tmp;
                   1492:     }
                   1493:     my $mafter = 
                   1494:         &Apache::lonhtmlcommon::get_date_from_form('revisiondate1');
                   1495:     my $mbefore =
                   1496:         &Apache::lonhtmlcommon::get_date_from_form('revisiondate2');
                   1497:     if ($mafter > $mbefore) {
                   1498:         my $tmp = $mafter;
                   1499:         $mafter = $mbefore;
                   1500:         $mbefore = $tmp;
                   1501:     }
                   1502:     my ($datequery,$error,$prettydate)=&build_date_queries($cafter,$cbefore,
                   1503:                                                            $mafter,$mbefore);
                   1504:     if (defined($error)) {
                   1505:         &output_date_error($r,$error,$closebutton,$hidden_fields);
                   1506:     } elsif (defined($datequery)) {
1.143     matthew  1507:         # Here is where you would set up pretty_search_string to output
                   1508:         # date query information.
1.216     matthew  1509:         $pretty_search_string .= '<br />'.$prettydate.'<br />';
1.60      harris41 1510: 	push @queries,$datequery;
                   1511:     }
1.204     matthew  1512:     #
1.90      harris41 1513:     # Process form information for custom metadata querying
1.134     matthew  1514:     my $customquery=undef;
1.204     matthew  1515:     ##
                   1516:     ## The custom metadata search was removed q long time ago mostly 
                   1517:     ## because I was unable to figureout exactly how it worked and could
                   1518:     ## not imagine people actually using it.  MH
                   1519:     ##
                   1520:     # if ($ENV{'form.custommetadata'}) {
                   1521:     #    $pretty_search_string .=$font."Custom Metadata Search</font>: <b>".
                   1522:     #    $ENV{'form.custommetadata'}."</b><br />\n";
                   1523:     #    $customquery=&build_custommetadata_query('custommetadata',
                   1524:     #                                             $ENV{'form.custommetadata'});
                   1525:     # }
1.134     matthew  1526:     my $customshow=undef;
1.204     matthew  1527:     # if ($ENV{'form.customshow'}) {
                   1528:     # $pretty_search_string .=$font."Custom Metadata Display</font>: <b>".
                   1529:     #                         $ENV{'form.customshow'}."</b><br />\n";
                   1530:     #    $customshow=$ENV{'form.customshow'};
                   1531:     #    $customshow=~s/[^\w\s]//g;
                   1532:     #    my @fields=split(/\s+/,$customshow);
                   1533:     #    $customshow=join(" ",@fields);
                   1534:     # }
                   1535:     ##
1.132     matthew  1536:     ## Deal with restrictions to given domains
                   1537:     ## 
1.239   ! matthew  1538:     my ($libraries_to_query,$pretty_domains_string,$domain_sql_restriction) = 
1.180     matthew  1539:         &parse_domain_restrictions();
1.239   ! matthew  1540:     push(@queries,$domain_sql_restriction);
1.180     matthew  1541:     $pretty_search_string .= $pretty_domains_string."<br />\n";
                   1542:     #
                   1543:     if (@queries) {
1.228     matthew  1544: 	$query="SELECT * FROM metadata WHERE (".join(") AND (",@queries).')';
1.180     matthew  1545:     } elsif ($customquery) {
                   1546:         $query = '';
                   1547:     }
1.239   ! matthew  1548:     &Apache::lonnet::logthis('advanced query = '.$/.$query);
1.180     matthew  1549:     return ($query,$customquery,$customshow,$libraries_to_query,
                   1550:             $pretty_search_string);
                   1551: }
                   1552: 
                   1553: sub parse_domain_restrictions {
1.132     matthew  1554:     my $libraries_to_query = undef;
                   1555:     # $ENV{'form.domains'} can be either a scalar or an array reference.
                   1556:     # We need an array.
1.221     matthew  1557:     if (! exists($ENV{'form.domains'}) || $ENV{'form.domains'} eq '') {
1.180     matthew  1558:         return (undef,'');
                   1559:     }
                   1560:     my @allowed_domains;
                   1561:     if (ref($ENV{'form.domains'})) {
                   1562:         @allowed_domains =  @{$ENV{'form.domains'}};
                   1563:     } else {
                   1564:         @allowed_domains = ($ENV{'form.domains'});
                   1565:     }
1.204     matthew  1566:     #
1.132     matthew  1567:     my %domain_hash = ();
1.143     matthew  1568:     my $pretty_domains_string;
1.239   ! matthew  1569:     my $domain_sql_restriction;
1.132     matthew  1570:     foreach (@allowed_domains) {
                   1571:         $domain_hash{$_}++;
                   1572:     }
1.143     matthew  1573:     if ($domain_hash{'any'}) {
1.152     matthew  1574:         $pretty_domains_string = "In all LON-CAPA domains.";
1.239   ! matthew  1575:         $domain_sql_restriction = undef;
1.143     matthew  1576:     } else {
                   1577:         if (@allowed_domains > 1) {
1.152     matthew  1578:             $pretty_domains_string = "In LON-CAPA domains:";
1.143     matthew  1579:         } else {
1.152     matthew  1580:             $pretty_domains_string = "In LON-CAPA domain ";
1.143     matthew  1581:         }
1.239   ! matthew  1582:         $domain_sql_restriction = 
        !          1583:             '(domain="'.join('" OR domain="',@allowed_domains).'")';
1.143     matthew  1584:         foreach (sort @allowed_domains) {
1.152     matthew  1585:             $pretty_domains_string .= "<b>".$_."</b> ";
1.132     matthew  1586:         }
1.143     matthew  1587:         foreach (keys(%Apache::lonnet::libserv)) {
                   1588:             if (exists($domain_hash{$Apache::lonnet::hostdom{$_}})) {
                   1589:                 push @$libraries_to_query,$_;
                   1590:             }
1.132     matthew  1591:         }
                   1592:     }
1.239   ! matthew  1593:     return ($libraries_to_query,
        !          1594:             $pretty_domains_string,
        !          1595:             $domain_sql_restriction);
1.18      harris41 1596: }
                   1597: 
1.122     matthew  1598: ######################################################################
                   1599: ######################################################################
                   1600: 
                   1601: =pod 
                   1602: 
1.134     matthew  1603: =item &parse_basic_search() 
1.122     matthew  1604: 
1.134     matthew  1605: Parse the basic search form and return a scalar containing an sql query.
1.126     matthew  1606: 
1.122     matthew  1607: =cut
                   1608: 
                   1609: ######################################################################
                   1610: ######################################################################
1.134     matthew  1611: sub parse_basic_search {
1.145     matthew  1612:     my ($r,$closebutton)=@_;
1.204     matthew  1613:     #
1.64      harris41 1614:     # Clean up fields for safety
                   1615:     for my $field ('basicexp') {
1.228     matthew  1616: 	$ENV{"form.$field"}=~s/[^\w\s\'\"\!\(\)\-]//g;
1.64      harris41 1617:     }
1.117     matthew  1618:     foreach ('mode','form','element') {
                   1619: 	# is this required?  Hmmm.
                   1620: 	next unless (exists($ENV{"form.$_"}));
                   1621: 	$ENV{"form.$_"}=&Apache::lonnet::unescape($ENV{"form.$_"});
                   1622: 	$ENV{"form.$_"}=~s/[^\w\/\s\(\)\=\-\"\']//g;
                   1623:     }
1.239   ! matthew  1624:     my ($libraries_to_query,$pretty_domains_string,$domain_sql_restriction) = 
1.180     matthew  1625:         &parse_domain_restrictions();
1.204     matthew  1626:     #
                   1627:     # Check to see if enough of a query is filled in
1.220     matthew  1628:     my $search_string = $ENV{'form.basicexp'};
                   1629:     if (! &filled($search_string)) {
1.151     matthew  1630: 	&output_blank_field_error($r,$closebutton,'phase=disp_basic');
1.24      harris41 1631: 	return OK;
                   1632:     }
1.228     matthew  1633:     my $pretty_search_string=$search_string;
1.224     matthew  1634:     my @Queries;
1.228     matthew  1635:     my $searchfield = 'concat_ws(" ",'.join(',',
                   1636:                                             ('title','author','subject',
                   1637:                                              'notes','abstract','keywords')
                   1638:                                             ).')';
                   1639:     my ($error,$SQLQuery) = &process_phrase_input($search_string,
                   1640:                                                     $ENV{'form.related'},
                   1641:                                                     $searchfield);
                   1642:     if ($error) {
                   1643:         &output_unparsed_phrase_error($r,$closebutton,'phase=disp_basic',
                   1644:                                       '','basicexp');
                   1645:         return;
1.141     matthew  1646:     }
1.228     matthew  1647:     push(@Queries,$SQLQuery);
1.239   ! matthew  1648:     push(@Queries,$domain_sql_restriction);
1.228     matthew  1649:     #foreach my $q (@Queries) {
                   1650:     #    &Apache::lonnet::logthis('    '.$q);
                   1651:     #}
1.224     matthew  1652:     my $final_query = 'SELECT * FROM metadata WHERE '.join(" AND ",@Queries);
1.204     matthew  1653:     #
1.180     matthew  1654:     if (defined($pretty_domains_string) && $pretty_domains_string ne '') {
                   1655:         $pretty_search_string .= ' '.$pretty_domains_string;
                   1656:     }
1.143     matthew  1657:     $pretty_search_string .= "<br />\n";
1.225     matthew  1658:     $pretty_search_string =~ s:^<br /> and ::;
1.239   ! matthew  1659:     &Apache::lonnet::logthis('simple search final query = '.$/.$final_query);
1.183     matthew  1660:     return ($final_query,$pretty_search_string,
1.180     matthew  1661:             $libraries_to_query);
1.22      harris41 1662: }
                   1663: 
1.228     matthew  1664: 
                   1665: ###############################################################
                   1666: ###############################################################
                   1667: 
                   1668: my @Phrases;
                   1669: 
                   1670: sub concat {
                   1671:     my ($item) = @_;
                   1672:     my $results = '';
                   1673:     foreach (@$item) {
                   1674:         if (ref($_) eq 'ARRAY') {
                   1675:             $results .= join(' ',@$_);
                   1676:         }
                   1677:     }
                   1678:     return $results;
                   1679: }
                   1680: 
1.224     matthew  1681: sub process_phrase_input {
1.228     matthew  1682:     my ($phrase,$related,$field)=@_;
                   1683:     #&Apache::lonnet::logthis('phrase = :'.$phrase.':');
                   1684:     my $grammar = <<'ENDGRAMMAR';
                   1685:     searchphrase:
                   1686:         expression /^\Z/ {
                   1687:             # &Apache::lonsearchcat::print_item(\@item,0);
                   1688:             [@item];
                   1689:         }
                   1690:     expression:
                   1691:         phrase(s)   {
                   1692:             [@item];
                   1693:         }
                   1694:     phrase:
                   1695:         orword {
                   1696:             [@item];
                   1697:         }
                   1698:       | andword {
                   1699:             [@item];
                   1700:         }
                   1701:       | minusword {
                   1702:             unshift(@::Phrases,$item[1]->[0]);
                   1703:             unshift(@::Phrases,$item[1]->[1]);
                   1704:             [@item];
                   1705:         }
                   1706:       | word {
                   1707:             unshift(@::Phrases,$item[1]);
                   1708:             [@item];
                   1709:         } 
                   1710:     #
                   1711:     orword:
                   1712:         word 'OR' phrase {
                   1713:             unshift(@::Phrases,'OR');
                   1714:             unshift(@::Phrases,$item[1]);
                   1715:             [@item];
                   1716:         }
                   1717:         | word 'or' phrase {
                   1718:             unshift(@::Phrases,'OR');
                   1719:             unshift(@::Phrases,$item[1]);
                   1720:             [@item];
                   1721:         }    
                   1722:         | minusword 'OR' phrase {
                   1723:             unshift(@::Phrases,'OR');
                   1724:             unshift(@::Phrases,$item[1]->[0]);
                   1725:             unshift(@::Phrases,$item[1]->[1]);
                   1726:             [@item];
                   1727:         }
                   1728:         | minusword 'or' phrase {
                   1729:             unshift(@::Phrases,'OR');
                   1730:             unshift(@::Phrases,$item[1]->[0]);
                   1731:             unshift(@::Phrases,$item[1]->[1]);
                   1732:             [@item];
                   1733:         }    
                   1734:     andword:
                   1735:         word phrase {
                   1736:             unshift(@::Phrases,'AND');
                   1737:             unshift(@::Phrases,$item[1]);
                   1738:             [@item];
                   1739:         }
                   1740:         | minusword phrase {
                   1741:             unshift(@::Phrases,'AND');
                   1742:             unshift(@::Phrases,$item[1]->[0]);
                   1743:             unshift(@::Phrases,$item[1]->[1]);
                   1744:             [@item];
                   1745:         }
                   1746:     #
                   1747:     minusword:
                   1748:         '-' word {
                   1749:             [$item[2],'NOT'];
                   1750:         }
                   1751:     word:
                   1752:         "'" term(s) "'" {
                   1753:           &Apache::lonsearchcat::concat(\@item);
                   1754:         }
                   1755:       | '"' term(s) '"' {
                   1756:           &Apache::lonsearchcat::concat(\@item);
                   1757:         }
                   1758:       | term {
                   1759:             $item[1];
                   1760:         }
                   1761:     term:
                   1762:         /[\w\Q:!@#$%^&*()+_=|{}<>,.;\\\/?\E]+/ {
                   1763:             $item[1];
                   1764:         }
                   1765: ENDGRAMMAR
                   1766:     #
                   1767:     # The end result of parsing the phrase with the grammar is an array
                   1768:     # @::Phrases.
                   1769:     # $phrase = "gene splicing" or cat -> "gene splicing","OR","cat"
                   1770:     # $phrase = "genetic engineering" -dna ->
                   1771:     #                      "genetic engineering","AND","NOT","dna"
                   1772:     # $phrase = cat or dog -poodle -> "cat","OR","dog","AND","NOT","poodle"
                   1773:     undef(@::Phrases);
                   1774:     my $p = new Parse::RecDescent($grammar);
                   1775:     if (! defined($p->searchphrase($phrase))) {
                   1776:         &Apache::lonnet::logthis('lonsearchcat:unable to process:'.$phrase);
                   1777:         return 'Unable to process phrase '.$phrase;
                   1778:     }
                   1779:     #
                   1780:     # Go through the phrases and make sense of them.  
                   1781:     # Apply modifiers NOT OR and AND to the phrases.
                   1782:     my @NewPhrases;
                   1783:     while(@::Phrases) {
                   1784:         my $phrase = shift(@::Phrases);
                   1785:         # &Apache::lonnet::logthis('phrase = '.$phrase);
                   1786:         my $phrasedata;
                   1787:         if ($phrase =~ /^(NOT|OR|AND)$/) {
                   1788:             if ($phrase eq 'OR') {
                   1789:                 $phrasedata->{'or'}++;
                   1790:                 if (! @::Phrases) { $phrasedata = undef; last; }
                   1791:                 $phrase = shift(@::Phrases);
                   1792:             } elsif ($phrase eq 'AND') {
                   1793:                 $phrasedata->{'and'}++;
                   1794:                 if (! @::Phrases) { $phrasedata = undef; last; }
                   1795:                 $phrase = shift(@::Phrases);
1.224     matthew  1796:             }
1.228     matthew  1797:             if ($phrase eq 'NOT') {
                   1798:                 $phrasedata->{'negate'}++;
                   1799:                 if (! @::Phrases) { $phrasedata = undef; last; }
                   1800:                 $phrase = shift(@::Phrases);
1.224     matthew  1801:             }
1.228     matthew  1802:         }
                   1803:         $phrasedata->{'phrase'} = $phrase;
                   1804:         if ($related) {
                   1805:             my @NewWords;
                   1806:             (undef,@NewWords) = &related_version($phrasedata->{'phrase'});
                   1807:             $phrasedata->{'related_words'} = \@NewWords;
                   1808:         }
                   1809:         push(@NewPhrases,$phrasedata);
                   1810:     }
                   1811:     #
                   1812:     # Actually build the sql query from the phrases
                   1813:     my $SQLQuery;
                   1814:     foreach my $phrase (@NewPhrases) {
                   1815:         my $query;
                   1816:         if ($phrase->{'negate'}) {
                   1817:             $query .= $field.' NOT LIKE "%'.$phrase->{'phrase'}.'%"';
1.224     matthew  1818:         } else {
1.228     matthew  1819:             $query .= $field.' LIKE "%'.$phrase->{'phrase'}.'%"';
                   1820:         }
                   1821:         foreach my $related (@{$phrase->{'related_words'}}) {
                   1822:             if ($phrase->{'negate'}) {
                   1823:                 $query .= ' AND '.$field.' NOT LIKE "%'.$related.'%"';
                   1824:             } else {
                   1825:                 $query .= ' OR '.$field.' LIKE "%'.$related.'%"';
                   1826:             }
                   1827:         }
                   1828:         if ($SQLQuery) {
                   1829:             if ($phrase->{'or'}) {
                   1830:                 $SQLQuery .= ' OR ('.$query.')';
                   1831:             } else {
                   1832:                 $SQLQuery .= ' AND ('.$query.')';
1.224     matthew  1833:             }
1.228     matthew  1834:         } else {
                   1835:             $SQLQuery = '('.$query.')';
1.224     matthew  1836:         }
                   1837:     }
                   1838:     #
1.228     matthew  1839:     # &Apache::lonnet::logthis("SQLQuery = $SQLQuery");
1.224     matthew  1840:     #
1.228     matthew  1841:     return undef,$SQLQuery;
1.224     matthew  1842: }
                   1843: 
1.122     matthew  1844: ######################################################################
                   1845: ######################################################################
                   1846: 
                   1847: =pod 
                   1848: 
1.204     matthew  1849: =item &related_version()
1.142     matthew  1850: 
                   1851: Modifies an input string to include related words.  Words in the string
                   1852: are replaced with parenthesized lists of 'OR'd words.  For example
                   1853: "torque" is replaced with "(torque OR word1 OR word2 OR ...)".  
                   1854: 
                   1855: Note: Using this twice on a string is probably silly.
                   1856: 
                   1857: =cut
                   1858: 
                   1859: ######################################################################
                   1860: ######################################################################
                   1861: sub related_version {
1.224     matthew  1862:     my ($word) = @_;
                   1863:     return (undef) if (lc($word) =~ /\b(or|and|not)\b/);
                   1864:     my @Words = &Apache::loncommon::get_related_words($word);
                   1865:     # Only use 4 related words
                   1866:     @Words = ($#Words>4? @Words[0..4] : @Words);
                   1867:     my $result = join " OR ", ($word,@Words);
                   1868:     return $result,sort(@Words);
1.142     matthew  1869: }
                   1870: 
1.98      harris41 1871: 
1.122     matthew  1872: ######################################################################
                   1873: ######################################################################
                   1874: 
                   1875: =pod 
                   1876: 
                   1877: =item &build_custommetadata_query() 
                   1878: 
1.126     matthew  1879: Constructs a custom metadata query using a rather heinous regular
                   1880: expression.
                   1881: 
1.122     matthew  1882: =cut
                   1883: 
                   1884: ######################################################################
                   1885: ######################################################################
1.98      harris41 1886: sub build_custommetadata_query {
                   1887:     my ($field_name,$logic_statement)=@_;
                   1888:     my $q=new Text::Query('abc',
                   1889: 			  -parse => 'Text::Query::ParseAdvanced',
                   1890: 			  -build => 'Text::Query::BuildAdvancedString');
                   1891:     $q->prepare($logic_statement);
                   1892:     my $matchexp=${$q}{'-parse'}{'-build'}{'matchstring'};
                   1893:     # quick fix to change literal into xml tag-matching
                   1894:     # will eventually have to write a separate builder module
1.122     matthew  1895:     # wordone=wordtwo becomes\<wordone\>[^\<] *wordtwo[^\<]*\<\/wordone\>
                   1896:     $matchexp =~ s/(\w+)\\=([\w\\\+]+)?# wordone=wordtwo is changed to 
                   1897:                  /\\<$1\\>?#           \<wordone\>
                   1898:                    \[\^\\<\]?#        [^\<]         
                   1899:                    \*$2\[\^\\<\]?#           *wordtwo[^\<]
                   1900:                    \*\\<\\\/$1\\>?#                        *\<\/wordone\>
                   1901:                    /g;
1.98      harris41 1902:     return $matchexp;
                   1903: }
                   1904: 
1.22      harris41 1905: 
1.122     matthew  1906: ######################################################################
                   1907: ######################################################################
                   1908: 
                   1909: =pod 
                   1910: 
                   1911: =item &build_date_queries() 
                   1912: 
1.126     matthew  1913: Builds a SQL logic query to check time/date entries.
                   1914: Also reports errors (check for /^Incorrect/).
                   1915: 
1.122     matthew  1916: =cut
                   1917: 
                   1918: ######################################################################
                   1919: ######################################################################
1.98      harris41 1920: sub build_date_queries {
1.216     matthew  1921:     my ($cafter,$cbefore,$mafter,$mbefore) = @_;
                   1922:     my ($result,$error,$pretty_string);
                   1923:     #
                   1924:     # Verify the input
                   1925:     if (! defined($cafter) && ! defined($cbefore) &&
                   1926:         ! defined($mafter) && ! defined($mbefore)) {
                   1927:         # This is an okay situation, so return undef for the error
                   1928:         return (undef,undef,undef);
                   1929:     }
                   1930:     if ((defined($cafter)  && ! defined($cbefore)) ||
                   1931:         (defined($cbefore) && ! defined($cafter))) {
                   1932:         # This is bad, so let them know
                   1933:         $error = &mt('Incorrect entry for the creation date.  '.
                   1934:                     'You must specify both the beginning and ending dates.');
                   1935:     }
                   1936:     if (! defined($error) && 
                   1937:         ((defined($mafter)  && ! defined($mbefore)) ||
                   1938:         (defined($mbefore) && ! defined($mafter)))) {
                   1939:         # This is also bad, so let them know
                   1940:         $error = &mt('Incorrect entry for the last revision date.  '.
                   1941:                      'You must specify both the beginning and ending dates.');
1.98      harris41 1942:     }
1.216     matthew  1943:     if (! defined($error)) {
                   1944:         #
                   1945:         # Build the queries
                   1946:         my @queries;
                   1947:         if (defined($cbefore) && defined($cafter)) {
                   1948:             my (undef,undef,undef,$caday,$camon,$cayear) = localtime($cafter);
                   1949:             my (undef,undef,undef,$cbday,$cbmon,$cbyear) = localtime($cbefore);
                   1950:             # Correct for year being relative to 1900
                   1951:             $cayear+=1900; $cbyear+=1900;
                   1952:             my $cquery=
                   1953:                 '(creationdate BETWEEN '.
                   1954:                 "'".$cayear.'-'.$camon.'-'.$caday."'".
                   1955:                 ' AND '.
                   1956:                 "'".$cbyear.'-'.$cbmon.'-'.$cbday." 23:59:59')";
                   1957:             $pretty_string .= '<br />' if (defined($pretty_string));
                   1958:             $pretty_string .= 
                   1959:                 &mt('created between [_1] and [_2]',
                   1960:                     &Apache::lonlocal::locallocaltime($cafter),
                   1961:                     &Apache::lonlocal::locallocaltime($cbefore+24*60*60-1));
                   1962:             push(@queries,$cquery);
                   1963:             $pretty_string =~ s/ 00:00:00//g;
                   1964:         }
                   1965:         if (defined($mbefore) && defined($mafter)) {
                   1966:             my (undef,undef,undef,$maday,$mamon,$mayear) = localtime($mafter);
                   1967:             my (undef,undef,undef,$mbday,$mbmon,$mbyear) = localtime($mbefore);
                   1968:             # Correct for year being relative to 1900
                   1969:             $mayear+=1900; $mbyear+=1900;
                   1970:             my $mquery=
                   1971:                 '(lastrevisiondate BETWEEN '.
                   1972:                 "'".$mayear.'-'.$mamon.'-'.$maday."'".
                   1973:                 ' AND '.
                   1974:                 "'".$mbyear.'-'.$mbmon.'-'.$mbday." 23:59:59')";
                   1975:             push(@queries,$mquery);
                   1976:             $pretty_string .= '<br />' if (defined($pretty_string));
                   1977:             $pretty_string .= 
                   1978:                 &mt('last revised between [_1] and [_2]',
                   1979:                     &Apache::lonlocal::locallocaltime($mafter),
                   1980:                     &Apache::lonlocal::locallocaltime($mbefore+24*60*60-1));
                   1981:             $pretty_string =~ s/ 00:00:00//g;
                   1982:         }
                   1983:         if (@queries) {
                   1984:             $result .= join(" AND ",@queries);
                   1985:         }
1.98      harris41 1986:     }
1.216     matthew  1987:     return ($result,$error,$pretty_string);
1.18      harris41 1988: }
1.6       harris41 1989: 
1.122     matthew  1990: ######################################################################
                   1991: ######################################################################
                   1992: 
1.144     matthew  1993: =pod
                   1994: 
                   1995: =item &copyright_check()
                   1996: 
1.204     matthew  1997: Inputs: $Metadata, a hash pointer of metadata for a resource.
                   1998: 
                   1999: Returns: 1 if the resource is available to the user making the query, 
                   2000:          0 otherwise.
                   2001: 
1.144     matthew  2002: =cut
                   2003: 
                   2004: ######################################################################
                   2005: ######################################################################
                   2006: sub copyright_check {
                   2007:     my $Metadata = shift;
                   2008:     # Check copyright tags and skip results the user cannot use
                   2009:     my (undef,undef,$resdom,$resname) = split('/',
                   2010:                                               $Metadata->{'url'});
                   2011:     # Check for priv
                   2012:     if (($Metadata->{'copyright'} eq 'priv') && 
                   2013:         (($ENV{'user.name'} ne $resname) &&
                   2014:          ($ENV{'user.domain'} ne $resdom))) {
                   2015:         return 0;
                   2016:     }
                   2017:     # Check for domain
                   2018:     if (($Metadata->{'copyright'} eq 'domain') &&
                   2019:         ($ENV{'user.domain'} ne $resdom)) {
                   2020:         return 0;
                   2021:     }
                   2022:     return 1;
                   2023: }
                   2024: 
1.151     matthew  2025: ######################################################################
                   2026: ######################################################################
                   2027: 
                   2028: =pod
                   2029: 
1.204     matthew  2030: =item &ensure_db_and_table()
1.151     matthew  2031: 
                   2032: Ensure we can get lonmysql to connect to the database and the table we
                   2033: need exists.
                   2034: 
                   2035: Inputs: $r, table id
                   2036: 
                   2037: Returns: undef on error, 1 if the table exists.
                   2038: 
                   2039: =cut
                   2040: 
                   2041: ######################################################################
                   2042: ######################################################################
                   2043: sub ensure_db_and_table {
                   2044:     my ($r,$table) = @_;
                   2045:     ##
                   2046:     ## Sanity check the table id.
                   2047:     ##
                   2048:     if (! defined($table) || $table eq '' || $table =~ /\D/ ) {
                   2049:         $r->print("Unable to retrieve search results.  ".
                   2050:                   "Unable to determine the table results were stored in.  ".
                   2051:                   "</body></html>");
                   2052:         return undef;
                   2053:     }
                   2054:     ##
                   2055:     ## Make sure we can connect and the table exists.
                   2056:     ##
                   2057:     my $connection_result = &Apache::lonmysql::connect_to_db();
                   2058:     if (!defined($connection_result)) {
                   2059:         $r->print("Unable to connect to the MySQL database where your results".
                   2060:                   " are stored. </body></html>");
                   2061:         &Apache::lonnet::logthis("lonsearchcat: unable to get lonmysql to".
                   2062:                                  " connect to database.");
                   2063:         &Apache::lonnet::logthis(&Apache::lonmysql::get_error());
                   2064:         return undef;
                   2065:     }
                   2066:     my $table_check = &Apache::lonmysql::check_table($table);
                   2067:     if (! defined($table_check)) {
                   2068:         $r->print("A MySQL error has occurred.</form></body></html>");
                   2069:         &Apache::lonnet::logthis("lonmysql was unable to determine the status".
                   2070:                                  " of table ".$table);
                   2071:         return undef;
                   2072:     } elsif (! $table_check) {
                   2073:         $r->print("The table of results could not be found.");
                   2074:         &Apache::lonnet::logthis("The user requested a table, ".$table.
                   2075:                                  ", that could not be found.");
                   2076:         return undef;
                   2077:     }
                   2078:     return 1;
                   2079: }
                   2080: 
                   2081: ######################################################################
                   2082: ######################################################################
                   2083: 
                   2084: =pod
                   2085: 
1.204     matthew  2086: =item &print_sort_form()
                   2087: 
                   2088: The sort feature is not implemented at this time.  This form just prints 
                   2089: a link to change the search query.
1.151     matthew  2090: 
                   2091: =cut
                   2092: 
                   2093: ######################################################################
                   2094: ######################################################################
                   2095: sub print_sort_form {
                   2096:     my ($r,$pretty_query_string) = @_;
1.224     matthew  2097:     my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1).
                   2098:         &Apache::lonhtmlcommon::breadcrumbs
                   2099:         (undef,'Searching','Searching',undef,undef,
1.227     matthew  2100:          $ENV{'form.catalogmode'} ne 'groupsearch');
1.224     matthew  2101: 
1.151     matthew  2102:     ##
1.187     www      2103:     my %SortableFields=&Apache::lonlocal::texthash( 
                   2104:          id        => 'Default',
1.151     matthew  2105:          title     => 'Title',
                   2106:          author    => 'Author',
                   2107:          subject   => 'Subject',
                   2108:          url       => 'URL',
                   2109:          version   => 'Version Number',
                   2110:          mime      => 'Mime type',
                   2111:          lang      => 'Language',
                   2112:          owner     => 'Owner/Publisher',
                   2113:          copyright => 'Copyright',
                   2114:          hostname  => 'Host',
                   2115:          creationdate     => 'Creation Date',
1.187     www      2116:          lastrevisiondate => 'Revision Date'
1.151     matthew  2117:      );
                   2118:     ##
                   2119:     my $table = $ENV{'form.table'};
                   2120:     return if (! &ensure_db_and_table($r,$table));
                   2121:     ##
                   2122:     ## Get the number of results 
                   2123:     ##
                   2124:     my $total_results = &Apache::lonmysql::number_of_rows($table);
                   2125:     if (! defined($total_results)) {
                   2126:         $r->print("A MySQL error has occurred.</form></body></html>");
                   2127:         &Apache::lonnet::logthis("lonmysql was unable to determine the number".
                   2128:                                  " of rows in table ".$table);
                   2129:         &Apache::lonnet::logthis(&Apache::lonmysql::get_error());
                   2130:         return;
                   2131:     }
                   2132:     my $result;
1.238     albertel 2133:     my $html=&Apache::lonxml::xmlbegin();
1.151     matthew  2134:     $result.=<<END;
1.238     albertel 2135: $html
1.151     matthew  2136: <head>
                   2137: <script>
                   2138:     function change_sort() {
                   2139:         var newloc = "/adm/searchcat?phase=results";
                   2140:         newloc += "&persistent_db_id=$ENV{'form.persistent_db_id'}";
                   2141:         newloc += "&sortby=";
                   2142:         newloc += document.forms.statusform.elements.sortby.value;
                   2143:         parent.resultsframe.location= newloc;
                   2144:     }
                   2145: </script>
                   2146: <title>Results</title>
                   2147: </head>
1.155     matthew  2148: $bodytag
1.151     matthew  2149: <form name="statusform" action="" method="post">
1.153     matthew  2150: <input type="hidden" name="Queue" value="" />
1.151     matthew  2151: END
                   2152: 
                   2153: #<h2>Sort Results</h2>
                   2154: #Sort by: <select size="1" name="sortby" onchange="javascript:change_sort();">
                   2155: #    $ENV{'form.sortby'} = 'id' if (! defined($ENV{'form.sortby'}));
                   2156: #    foreach (keys(%SortableFields)) {
                   2157: #        $result.="<option name=\"$_\"";
                   2158: #        if ($_ eq $ENV{'form.sortby'}) {
                   2159: #            $result.=" selected ";
                   2160: #        }
                   2161: #        $result.=" >$SortableFields{$_}</option>\n";
                   2162: #    }
                   2163: #    $result.="</select>\n";
                   2164:     my $revise = &revise_button();
                   2165:     $result.=<<END;
                   2166: <p>
                   2167: There are $total_results matches to your query. $revise
                   2168: </p><p>
                   2169: Search:$pretty_query_string
                   2170: </p>
                   2171: </form>
                   2172: </body>
                   2173: </html>
                   2174: END
                   2175:     $r->print($result);
                   2176:     return;
                   2177: }
                   2178: 
1.144     matthew  2179: #####################################################################
                   2180: #####################################################################
                   2181: 
                   2182: =pod
                   2183: 
                   2184: =item MySQL Table Description
                   2185: 
                   2186: MySQL table creation requires a precise description of the data to be
                   2187: stored.  The use of the correct types to hold data is vital to efficient
                   2188: storage and quick retrieval of records.  The columns must be described in
                   2189: the following format:
                   2190: 
                   2191: =cut
                   2192: 
1.170     matthew  2193: #####################################################################
                   2194: #####################################################################
1.204     matthew  2195: #
                   2196: # These should probably be scoped but I don't have time right now...
                   2197: #
                   2198: my @Datatypes;
                   2199: my @Fullindicies;
1.147     matthew  2200:     
1.144     matthew  2201: ######################################################################
                   2202: ######################################################################
                   2203: 
                   2204: =pod
                   2205: 
1.146     matthew  2206: =item &create_results_table()
                   2207: 
                   2208: Creates the table of search results by calling lonmysql.  Stores the
                   2209: table id in $ENV{'form.table'}
                   2210: 
                   2211: Inputs: none.
                   2212: 
                   2213: Returns: the identifier of the table on success, undef on error.
                   2214: 
                   2215: =cut
                   2216: 
                   2217: ######################################################################
                   2218: ######################################################################
1.204     matthew  2219: sub set_up_table_structure {
                   2220:     my ($datatypes,$fullindicies) = 
                   2221:         &LONCAPA::lonmetadata::describe_metadata_storage();
1.212     matthew  2222:     # Copy the table description before modifying it...
                   2223:     @Datatypes = @{$datatypes};
                   2224:     unshift(@Datatypes,{name => 'id',  
1.204     matthew  2225:         type => 'MEDIUMINT',
                   2226:         restrictions => 'UNSIGNED NOT NULL',
                   2227:         primary_key  => 'yes',
                   2228:         auto_inc     => 'yes' });
                   2229:     @Fullindicies = @{$fullindicies};
                   2230:     return;
                   2231: }
                   2232: 
1.146     matthew  2233: sub create_results_table {
1.204     matthew  2234:     &set_up_table_structure();
1.146     matthew  2235:     my $table = &Apache::lonmysql::create_table
1.170     matthew  2236:         ( { columns => \@Datatypes,
1.172     matthew  2237:             FULLTEXT => [{'columns' => \@Fullindicies},],
1.146     matthew  2238:         } );
                   2239:     if (defined($table)) {
                   2240:         $ENV{'form.table'} = $table;
                   2241:         return $table;
                   2242:     } 
                   2243:     return undef; # Error...
                   2244: }
1.148     matthew  2245: 
1.146     matthew  2246: ######################################################################
                   2247: ######################################################################
                   2248: 
                   2249: =pod
                   2250: 
1.150     matthew  2251: =item Search Status update functions
1.144     matthew  2252: 
1.150     matthew  2253: Each of the following functions changes the values of one of the
                   2254: input fields used to display the search status to the user.  The names
                   2255: should be explanatory.
1.144     matthew  2256: 
1.150     matthew  2257: Inputs: Apache request handler ($r), text to display.
1.148     matthew  2258: 
1.150     matthew  2259: Returns: Nothing.
1.148     matthew  2260: 
                   2261: =over 4
                   2262: 
                   2263: =item &update_count_status()
                   2264: 
1.150     matthew  2265: =item &update_status()
1.148     matthew  2266: 
1.150     matthew  2267: =item &update_seconds()
1.148     matthew  2268: 
                   2269: =back
                   2270: 
                   2271: =cut
                   2272: 
                   2273: ######################################################################
                   2274: ######################################################################
                   2275: sub update_count_status {
                   2276:     my ($r,$text) = @_;
                   2277:     $text =~ s/\'/\\\'/g;
                   2278:     $r->print
                   2279:         ("<script>document.statusform.count.value = ' $text'</script>\n");
                   2280:     $r->rflush();
                   2281: }
                   2282: 
1.150     matthew  2283: sub update_status {
1.148     matthew  2284:     my ($r,$text) = @_;
                   2285:     $text =~ s/\'/\\\'/g;
                   2286:     $r->print
1.150     matthew  2287:         ("<script>document.statusform.status.value = ' $text'</script>\n");
1.148     matthew  2288:     $r->rflush();
                   2289: }
                   2290: 
1.214     matthew  2291: {
                   2292:     my $max_time  = 40;  # seconds for the search to complete
                   2293:     my $start_time = 0;
                   2294:     my $last_time = 0;
                   2295: 
                   2296: sub reset_timing {
                   2297:     $start_time = 0;
                   2298:     $last_time = 0;
                   2299: }
                   2300: 
                   2301: sub time_left {
                   2302:     if ($start_time == 0) {
                   2303:         $start_time = time;
                   2304:     }
                   2305:     my $time_left = $max_time - (time - $start_time);
                   2306:     $time_left = 0 if ($time_left < 0);
                   2307:     return $time_left;
                   2308: }
                   2309: 
1.150     matthew  2310: sub update_seconds {
1.214     matthew  2311:     my ($r) = @_;
                   2312:     my $time = &time_left();
                   2313:     if (($last_time-$time) > 0) {
                   2314:         $r->print("<script>".
                   2315:                   "document.statusform.seconds.value = '$time'".
                   2316:                   "</script>\n");
                   2317:         $r->rflush();
                   2318:     }
                   2319:     $last_time = $time;
                   2320: }
                   2321: 
1.148     matthew  2322: }
                   2323: 
                   2324: ######################################################################
                   2325: ######################################################################
                   2326: 
                   2327: =pod
                   2328: 
1.204     matthew  2329: =item &revise_button()
1.151     matthew  2330: 
                   2331: Inputs: None
                   2332: 
                   2333: Returns: html string for a 'revise search' button.
                   2334: 
                   2335: =cut
                   2336: 
                   2337: ######################################################################
                   2338: ######################################################################
                   2339: sub revise_button {
                   2340:     my $revise_phase = 'disp_basic';
                   2341:     $revise_phase = 'disp_adv' if ($ENV{'form.searchmode'} eq 'advanced');
                   2342:     my $newloc = '/adm/searchcat'.
                   2343:         '?persistent_db_id='.$ENV{'form.persistent_db_id'}.
1.158     matthew  2344:             '&cleargroupsort=1'.
1.151     matthew  2345:             '&phase='.$revise_phase;
                   2346:     my $result = qq{<input type="button" value="Revise search" name="revise"} .
                   2347:         qq{ onClick="parent.location='$newloc';" /> };
                   2348:     return $result;
                   2349: }
                   2350: 
                   2351: ######################################################################
                   2352: ######################################################################
                   2353: 
                   2354: =pod
                   2355: 
1.204     matthew  2356: =item &run_search()
                   2357: 
                   2358: Executes a search query by sending it the the other servers and putting the
                   2359: results into MySQL.
1.144     matthew  2360: 
                   2361: =cut
                   2362: 
                   2363: ######################################################################
                   2364: ######################################################################
                   2365: sub run_search {
1.146     matthew  2366:     my ($r,$query,$customquery,$customshow,$serverlist,$pretty_string) = @_;
1.196     matthew  2367:     my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.227     matthew  2368:     $bodytag.=&Apache::lonhtmlcommon::breadcrumbs
                   2369:         (undef,'Searching','Searching',undef,undef,
                   2370:          $ENV{'form.catalogmode'} ne 'groupsearch');
1.150     matthew  2371:     my $connection = $r->connection;
1.144     matthew  2372:     #
1.146     matthew  2373:     # Print run_search header
                   2374:     #
1.238     albertel 2375:     my $html=&Apache::lonxml::xmlbegin();
1.151     matthew  2376:     $r->print(<<END);
1.238     albertel 2377: $html
                   2378: <head>
                   2379: <title>Search Status</title></head>
1.155     matthew  2380: $bodytag
1.151     matthew  2381: <form name="statusform" action="" method="post">
                   2382: <input type="hidden" name="Queue" value="" />
                   2383: END
1.230     matthew  2384:     # Remove leading and trailing <br />
                   2385:     $pretty_string =~ s:^\s*<br />::i;
                   2386:     $pretty_string =~ s:(<br />)*\s*$::im;
                   2387:     my @Lines = split("<br />",$pretty_string);
                   2388:     # I keep getting blank items at the end of the list, hence the following:
                   2389:     while ($Lines[-1] =~ /^\s*$/ && @Lines) {
                   2390:         pop(@Lines);
                   2391:     }
1.152     matthew  2392:     if (@Lines > 2) {
1.230     matthew  2393:         $pretty_string = join '<br />',(@Lines[0..2],'....<br />');
1.151     matthew  2394:     }
1.214     matthew  2395:     $r->print(&mt("Search: [_1]",$pretty_string));
1.146     matthew  2396:     $r->rflush();
                   2397:     #
1.145     matthew  2398:     # Determine the servers we need to contact.
1.144     matthew  2399:     my @Servers_to_contact;
                   2400:     if (defined($serverlist)) {
1.152     matthew  2401:         if (ref($serverlist) eq 'ARRAY') {
                   2402:             @Servers_to_contact = @$serverlist;
                   2403:         } else {
                   2404:             @Servers_to_contact = ($serverlist);
                   2405:         }
1.144     matthew  2406:     } else {
                   2407:         @Servers_to_contact = sort(keys(%Apache::lonnet::libserv));
                   2408:     }
                   2409:     my %Server_status;
1.214     matthew  2410:     #
                   2411:     # Check on the mysql table we will use to store results.
1.146     matthew  2412:     my $table =$ENV{'form.table'};
1.150     matthew  2413:     if (! defined($table) || $table eq '' || $table =~ /\D/ ) {
1.147     matthew  2414:         $r->print("Unable to determine table id to store search results in.".
1.148     matthew  2415:                   "The search has been aborted.</body></html>");
1.147     matthew  2416:         return;
                   2417:     }
                   2418:     my $table_status = &Apache::lonmysql::check_table($table);
                   2419:     if (! defined($table_status)) {
                   2420:         $r->print("Unable to determine status of table.</body></html>");
                   2421:         &Apache::lonnet::logthis("Bogus table id of $table for ".
                   2422:                                  "$ENV{'user.name'} @ $ENV{'user.domain'}");
                   2423:         &Apache::lonnet::logthis("lonmysql error = ".
1.144     matthew  2424:                                  &Apache::lonmysql::get_error());
1.147     matthew  2425:         return;
                   2426:     }
                   2427:     if (! $table_status) {
1.204     matthew  2428:         &Apache::lonnet::logthis("lonmysql error = ".
                   2429:                                  &Apache::lonmysql::get_error());
                   2430:         &Apache::lonnet::logthis("lonmysql debug = ".
                   2431:                                  &Apache::lonmysql::get_debug());
                   2432:         &Apache::lonnet::logthis('table status = "'.$table_status.'"');
1.147     matthew  2433:         $r->print("The table id,$table, we tried to use is invalid.".
1.148     matthew  2434:                   "The search has been aborted.</body></html>");
1.144     matthew  2435:         return;
                   2436:     }
1.145     matthew  2437:     ##
1.146     matthew  2438:     ## Prepare for the big loop.
1.144     matthew  2439:     my $hitcountsum;
                   2440:     my $server; 
                   2441:     my $status;
1.151     matthew  2442:     my $revise = &revise_button();
1.148     matthew  2443:     $r->print(<<END);
                   2444: <table>
1.151     matthew  2445: <tr><th>Status</th><th>Total Matches</th><th>Time Remaining</th><th></th></tr>
1.148     matthew  2446: <tr>
1.150     matthew  2447: <td><input type="text" name="status"  value="" size="30" /></td>
                   2448: <td><input type="text" name="count"   value="" size="10" /></td>
                   2449: <td><input type="text" name="seconds" value="" size="8" /></td>
1.151     matthew  2450: <td>$revise</td>
1.148     matthew  2451: </tr>
                   2452: </table>
                   2453: </form>
                   2454: END
                   2455:     $r->rflush();
1.214     matthew  2456:     &reset_timing();
                   2457:     &update_seconds($r);
                   2458:     &update_status($r,&mt('contacting [_1]',$Servers_to_contact[0]));
                   2459:     while (&time_left() &&
1.144     matthew  2460:            ((@Servers_to_contact) || keys(%Server_status))) {
1.214     matthew  2461:         &update_seconds($r);
                   2462:         #
                   2463:         # Send out a search request
1.144     matthew  2464:         if (@Servers_to_contact) {
                   2465:             # Contact one server
                   2466:             my $server = shift(@Servers_to_contact);
1.214     matthew  2467:             &update_status($r,&mt('contacting [_1]',$server));
1.144     matthew  2468:             my $reply=&Apache::lonnet::metadata_query($query,$customquery,
                   2469:                                                       $customshow,[$server]);
                   2470:             ($server) = keys(%$reply);
                   2471:             $Server_status{$server} = $reply->{$server};
                   2472:         } else {
1.150     matthew  2473:             # wait a sec. to give time for files to be written
                   2474:             # This sleep statement is here instead of outside the else 
                   2475:             # block because we do not want to pause if we have servers
                   2476:             # left to contact.  
1.183     matthew  2477:             if (scalar (keys(%Server_status))) {
                   2478:                 &update_status($r,
1.214     matthew  2479:                        &mt('waiting on [_1]',join(' ',keys(%Server_status))));
1.183     matthew  2480:             }
1.150     matthew  2481:             sleep(1)1.144     matthew  2482:         }
1.159     matthew  2483:         #
                   2484:         # Loop through the servers we have contacted but do not
                   2485:         # have results from yet, looking for results.
1.228     matthew  2486:         foreach my $server (keys(%Server_status)) {
1.150     matthew  2487:             last if ($connection->aborted());
1.214     matthew  2488:             &update_seconds($r);
1.228     matthew  2489:             my $status = $Server_status{$server};
1.144     matthew  2490:             if ($status eq 'con_lost') {
                   2491:                 delete ($Server_status{$server});
                   2492:                 next;
                   2493:             }
                   2494:             $status=~/^([\.\w]+)$/; 
                   2495:        	    my $datafile=$r->dir_config('lonDaemons').'/tmp/'.$1;
                   2496:             if (-e $datafile && ! -e "$datafile.end") {
1.214     matthew  2497:                 &update_status($r,&mt('Receiving results from [_1]',$server));
1.144     matthew  2498:                 next;
                   2499:             }
1.150     matthew  2500:             last if ($connection->aborted());
1.144     matthew  2501:             if (-e "$datafile.end") {
1.214     matthew  2502:                 &update_status($r,&mt('Reading results from [_1]',$server));
1.144     matthew  2503:                 if (-z "$datafile") {
                   2504:                     delete($Server_status{$server});
                   2505:                     next;
                   2506:                 }
                   2507:                 my $fh;
                   2508:                 if (!($fh=Apache::File->new($datafile))) { 
1.146     matthew  2509:                     $r->print("Unable to open search results file for ".
1.145     matthew  2510:                                   "server $server.  Omitting from search");
1.150     matthew  2511:                     delete($Server_status{$server}); 
                   2512:                    next;
1.144     matthew  2513:                 }
                   2514:                 # Read in the whole file.
                   2515:                 while (my $result = <$fh>) {
1.150     matthew  2516:                     last if ($connection->aborted());
1.214     matthew  2517:                     #
                   2518:                     # Records are stored one per line
1.144     matthew  2519:                     chomp($result);
1.214     matthew  2520:                     next if (! $result);
                   2521:                     #
1.144     matthew  2522:                     # Parse the result.
                   2523:                     my %Fields = &parse_raw_result($result,$server);
                   2524:                     $Fields{'hostname'} = $server;
1.214     matthew  2525:                     #
                   2526:                     # Skip based on copyright
1.144     matthew  2527:                     next if (! &copyright_check(\%Fields));
1.214     matthew  2528:                     #
1.144     matthew  2529:                     # Store the result in the mysql database
                   2530:                     my $result = &Apache::lonmysql::store_row($table,\%Fields);
                   2531:                     if (! defined($result)) {
1.146     matthew  2532:                         $r->print(&Apache::lonmysql::get_error());
1.144     matthew  2533:                     }
1.214     matthew  2534:                     #
1.144     matthew  2535:                     $hitcountsum ++;
1.214     matthew  2536:                     &update_seconds($r);
1.150     matthew  2537:                     if ($hitcountsum % 50 == 0) {
                   2538:                         &update_count_status($r,$hitcountsum);
                   2539:                     }
1.214     matthew  2540:                 }
1.144     matthew  2541:                 $fh->close();
                   2542:                 # $server is only deleted if the results file has been 
                   2543:                 # found and (successfully) opened.  This may be a bad idea.
                   2544:                 delete($Server_status{$server});
                   2545:             }
1.150     matthew  2546:             last if ($connection->aborted());
1.148     matthew  2547:             &update_count_status($r,$hitcountsum);
1.144     matthew  2548:         }
1.150     matthew  2549:         last if ($connection->aborted());
1.214     matthew  2550:         &update_seconds($r);
1.144     matthew  2551:     }
1.214     matthew  2552:     &update_status($r,&mt('Search Complete [_1]',$server));
                   2553:     &update_seconds($r);
1.204     matthew  2554:     #
1.214     matthew  2555:     &Apache::lonmysql::disconnect_from_db(); # This is unneccessary
1.204     matthew  2556:     #
1.144     matthew  2557:     # We have run out of time or run out of servers to talk to and
1.214     matthew  2558:     # results to get, so let the client know the top frame needs to be
                   2559:     # loaded from /adm/searchcat
1.146     matthew  2560:     $r->print("</body></html>");
1.224     matthew  2561: #    if ($ENV{'form.catalogmode'} ne 'groupsearch') {
1.153     matthew  2562:         $r->print("<script>".
                   2563:                       "window.location='/adm/searchcat?".
                   2564:                       "phase=sort&".
                   2565:                       "persistent_db_id=$ENV{'form.persistent_db_id'}';".
                   2566:                   "</script>");
1.224     matthew  2567: #    }
1.144     matthew  2568:     return;
                   2569: }
                   2570: 
                   2571: ######################################################################
                   2572: ######################################################################
1.204     matthew  2573: 
1.144     matthew  2574: =pod
                   2575: 
1.204     matthew  2576: =item &prev_next_buttons()
                   2577: 
                   2578: Returns html for the previous and next buttons on the search results page.
1.144     matthew  2579: 
                   2580: =cut
                   2581: 
                   2582: ######################################################################
                   2583: ######################################################################
1.146     matthew  2584: sub prev_next_buttons {
1.145     matthew  2585:     my ($current_min,$show,$total,$parms) = @_;
                   2586:     return '' if ($show eq 'all'); # No links if you get them all at once.
1.214     matthew  2587:     #
1.223     matthew  2588:     # Create buttons
                   2589:     my $buttons = '<input type="submit" name="prev" value="'.&mt('Prev').'" ';
                   2590:     $buttons .= '/>';
                   2591:     $buttons .= '&nbsp;'x3;
                   2592:     $buttons .= '<input type="submit" name="reload" '.
                   2593:         'value="'.&mt('Reload').'" />';
                   2594:     $buttons .= '&nbsp;'x3;
                   2595:     $buttons .= '<input type="submit" name="next" value="'.&mt('Next').'" ';
                   2596:     $buttons .= '/>';
                   2597:     return $buttons;
1.144     matthew  2598: }
1.204     matthew  2599: 
1.144     matthew  2600: ######################################################################
                   2601: ######################################################################
                   2602: 
                   2603: =pod
                   2604: 
1.204     matthew  2605: =item &display_results()
                   2606: 
                   2607: Prints the results out for selection and perusal.
1.144     matthew  2608: 
                   2609: =cut
                   2610: 
                   2611: ######################################################################
                   2612: ######################################################################
                   2613: sub display_results {
1.196     matthew  2614:     my ($r,$importbutton,$closebutton,$diropendb) = @_;
1.150     matthew  2615:     my $connection = $r->connection;
                   2616:     $r->print(&search_results_header($importbutton,$closebutton));
1.144     matthew  2617:     ##
                   2618:     ## Set viewing function
                   2619:     ##
                   2620:     my $viewfunction = $Views{$ENV{'form.viewselect'}};
                   2621:     if (!defined($viewfunction)) {
                   2622:         $r->print("Internal Error - Bad view selected.\n");
                   2623:         $r->rflush();
                   2624:         return;
                   2625:     }
                   2626:     ##
1.158     matthew  2627:     ## $checkbox_num is a count of the number of checkboxes output on the 
                   2628:     ## page this is used only during catalogmode=groupsearch.
                   2629:     my $checkbox_num = 0;
                   2630:     ##
1.144     matthew  2631:     ## Get the catalog controls setup
                   2632:     ##
1.146     matthew  2633:     my $action = "/adm/searchcat?phase=results";
                   2634:     ##
1.204     matthew  2635:     ## Deal with groupsearch by opening the groupsearch db file.
1.146     matthew  2636:     if ($ENV{'form.catalogmode'} eq 'groupsearch') {
                   2637:         if (! tie(%groupsearch_db,'GDBM_File',$diropendb,
1.148     matthew  2638:                   &GDBM_WRCREAT(),0640)) {
1.150     matthew  2639:             $r->print('Unable to store import results.</form></body></html>');
1.146     matthew  2640:             $r->rflush();
                   2641:             return;
                   2642:         } 
1.144     matthew  2643:     }
1.145     matthew  2644:     ##
                   2645:     ## Prepare the table for querying
1.144     matthew  2646:     my $table = $ENV{'form.table'};
1.151     matthew  2647:     return if (! &ensure_db_and_table($r,$table));
1.145     matthew  2648:     ##
                   2649:     ## Get the number of results 
                   2650:     my $total_results = &Apache::lonmysql::number_of_rows($table);
                   2651:     if (! defined($total_results)) {
1.150     matthew  2652:         $r->print("A MySQL error has occurred.</form></body></html>");
1.145     matthew  2653:         &Apache::lonnet::logthis("lonmysql was unable to determine the number".
                   2654:                                  " of rows in table ".$table);
                   2655:         &Apache::lonnet::logthis(&Apache::lonmysql::get_error());
                   2656:         return;
                   2657:     }
                   2658:     ##
                   2659:     ## Determine how many results we need to get
1.223     matthew  2660:     $ENV{'form.start'} = 1  if (! exists($ENV{'form.start'}));
                   2661:     $ENV{'form.show'}  = 20 if (! exists($ENV{'form.show'}));
                   2662:     if (exists($ENV{'form.prev'})) {
                   2663:         $ENV{'form.start'} -= $ENV{'form.show'};
                   2664:     } elsif (exists($ENV{'form.next'})) {
                   2665:         $ENV{'form.start'} += $ENV{'form.show'};
                   2666:     }
                   2667:     $ENV{'form.start'} = 1 if ($ENV{'form.start'}<1);
                   2668:     $ENV{'form.start'} = $total_results if ($ENV{'form.start'}>$total_results);
1.146     matthew  2669:     my $min = $ENV{'form.start'};
1.145     matthew  2670:     my $max;
                   2671:     if ($ENV{'form.show'} eq 'all') {
                   2672:         $max = $total_results ;
                   2673:     } else {
1.151     matthew  2674:         $max = $min + $ENV{'form.show'} - 1;
1.146     matthew  2675:         $max = $total_results if ($max > $total_results);
1.145     matthew  2676:     }
                   2677:     ##
1.223     matthew  2678:     ## Output form elements
                   2679:     $r->print(&hidden_field('table').
                   2680:               &hidden_field('phase').
                   2681:               &hidden_field('persistent_db_id').
                   2682:               &hidden_field('start')
                   2683:               );
1.232     matthew  2684:     #
                   2685:     # Build sorting selector
                   2686:     my @field_order =  ('default',
                   2687:                         'title',
                   2688:                         'author',
                   2689:                         'subject',
                   2690:                         'url',
                   2691:                         'keywords',
                   2692:                         'version',
                   2693:                         'language',
                   2694:                         'creationdate'=>,
                   2695:                         'lastrevisiondate',
                   2696:                         'owner',
                   2697:                         'copyright',
                   2698:                         'authorspace',
                   2699:                         'lowestgradeleve',
                   2700:                         'highestgradelevel',
                   2701:                         'standards',
                   2702:                         'count',
                   2703:                         'stdno',
                   2704:                         'avetries',
                   2705:                         'difficulty',
                   2706:                         'disc',
                   2707:                         'clear',
                   2708:                         'technical',
                   2709:                         'correct',
                   2710:                         'helpful',
                   2711:                         'depth',
                   2712:                         );                                              
                   2713:     my %sort_fields = ('default'     => 'Default',
                   2714:                        'title'       => 'Title',
                   2715:                        'author'      => 'Author',
                   2716:                        'subject'     => 'Subject',
                   2717:                        'url'         => 'URL',
                   2718:                        'keywords'    => 'Keywords',
                   2719:                        'version'     => 'Version',
                   2720:                        'language'    => 'Language',
                   2721:                        'creationdate'=> 'Creation Date',
                   2722:                        'lastrevisiondate' => 'Last Revision Date',
                   2723:                        'owner'       => 'Owner',
                   2724:                        'copyright'   => 'Copyright',
                   2725:                        'authorspace' => 'Authorspace',
                   2726:                        'lowestgradeleve' => 'Lowest Grade Level',
                   2727:                        'highestgradelevel' => 'Highest Grade Level',
                   2728:                        'standards'   => 'Standards',
                   2729:                        'count'       => 'Number of Accesses',
                   2730:                        'stdno'       => 'Students Attempting',
                   2731:                        'avetries'    => 'Average Number of Tries',
                   2732:                        'difficulty'  => 'Mean Degree of Difficulty',
                   2733:                        'disc'        => 'Mean Degree of Discrimination',
                   2734:                        'clear'       => 'Evaluation: Clear',
                   2735:                        'technical'   => 'Evaluation: Technically Correct',
                   2736:                        'correct'     => 'Evaluation: Material is Correct',
                   2737:                        'helpful'     => 'Evaluation: Material is Helpful',
                   2738:                        'depth'       => 'Evaluation: Material has Depth',
                   2739:                        'select_form_order' => \@field_order,
                   2740:                        );
                   2741: 
                   2742:     my $sortform = &mt('Sort by [_1]',
                   2743:                        &Apache::loncommon::select_form($ENV{'form.sortfield'},
                   2744:                                                       'sortfield',
                   2745:                                                       %sort_fields));
1.223     matthew  2746:     ##
1.145     matthew  2747:     ## Output links (if necessary) for 'prev' and 'next' pages.
1.146     matthew  2748:     $r->print
1.232     matthew  2749:         ('<table width="100%"><tr><td width="25%" align="right">'.
                   2750:          $sortform.
                   2751:          '</td><td width="25%" align="right">'.
1.223     matthew  2752:          &prev_next_buttons($min,$ENV{'form.show'},$total_results).
                   2753:          '</td><td align="right">'.
                   2754:          &viewoptions().'</td></tr></table>'
1.146     matthew  2755:          );
1.150     matthew  2756:     if ($total_results == 0) {
1.214     matthew  2757:         $r->print('<meta HTTP-EQUIV="Refresh" CONTENT="2">'.
1.187     www      2758:                   '<h3>'.&mt('There are currently no results').'.</h3>'.
1.150     matthew  2759:                   "</form></body></html>");
                   2760:         return;
                   2761:     } else {
1.232     matthew  2762:         $r->print('<center>'.
                   2763:                   mt('Results [_1] to [_2] out of [_3]',
                   2764:                      $min,$max,$total_results).
                   2765:                   "</center>\n");
1.150     matthew  2766:     }
1.145     matthew  2767:     ##
                   2768:     ## Get results from MySQL table
1.232     matthew  2769:     my $sort_command  = 'id>='.$min.' AND id<='.$max;
                   2770:     if ($ENV{'form.sortfield'} ne 'default' && 
                   2771:         exists($sort_fields{$ENV{'form.sortfield'}})) {
                   2772:         $sort_command = $ENV{'form.sortfield'}.' IS NOT NULL '.
                   2773:             'ORDER BY '.$ENV{'form.sortfield'}.
                   2774:             '  LIMIT '.($min-1).','.($max-$min);
                   2775:     }
                   2776:     my @Results = &Apache::lonmysql::get_rows($table,$sort_command);
1.145     matthew  2777:     ##
                   2778:     ## Loop through the results and output them.
1.144     matthew  2779:     foreach my $row (@Results) {
1.150     matthew  2780:         if ($connection->aborted()) {
1.162     www      2781:             &cleanup();
1.150     matthew  2782:             return;
                   2783:         }
1.144     matthew  2784:         my %Fields = %{&parse_row(@$row)};
1.145     matthew  2785:         my $output="<p>\n";
1.210     matthew  2786:         if (! defined($Fields{'title'}) || $Fields{'title'} eq '') {
                   2787:             $Fields{'title'} = 'Untitled';
                   2788:         }
1.158     matthew  2789:         my $prefix=&catalogmode_output($Fields{'title'},$Fields{'url'},
                   2790:                                        $Fields{'id'},$checkbox_num++);
1.144     matthew  2791:         # Render the result into html
1.150     matthew  2792:         $output.= &$viewfunction($prefix,%Fields);
1.145     matthew  2793:         # Print them out as they come in.
1.144     matthew  2794:         $r->print($output);
                   2795:         $r->rflush();
                   2796:     }
                   2797:     if (@Results < 1) {
1.187     www      2798:         $r->print(&mt("There were no results matching your query"));
1.147     matthew  2799:     } else {
                   2800:         $r->print
1.148     matthew  2801:             ('<center>'.
1.147     matthew  2802:              &prev_next_buttons($min,$ENV{'form.show'},$total_results,
                   2803:                                 "table=".$ENV{'form.table'}.
                   2804:                                 "&phase=results".
                   2805:                                 "&persistent_db_id=".
                   2806:                                 $ENV{'form.persistent_db_id'})
1.148     matthew  2807:              ."</center>\n"
1.147     matthew  2808:              );
1.144     matthew  2809:     }
1.150     matthew  2810:     $r->print("</form></body></html>");
1.144     matthew  2811:     $r->rflush();
1.150     matthew  2812:     untie %groupsearch_db if (tied(%groupsearch_db));
1.144     matthew  2813:     return;
                   2814: }
                   2815: 
                   2816: ######################################################################
                   2817: ######################################################################
                   2818: 
                   2819: =pod
                   2820: 
1.158     matthew  2821: =item &catalogmode_output($title,$url,$fnum,$checkbox_num)
1.145     matthew  2822: 
                   2823: Returns html needed for the various catalog modes.  Gets inputs from
1.158     matthew  2824: $ENV{'form.catalogmode'}.  Stores data in %groupsearch_db.
1.145     matthew  2825: 
                   2826: =cut
                   2827: 
                   2828: ######################################################################
                   2829: ######################################################################
                   2830: sub catalogmode_output {
                   2831:     my $output = '';
1.158     matthew  2832:     my ($title,$url,$fnum,$checkbox_num) = @_;
1.145     matthew  2833:     if ($ENV{'form.catalogmode'} eq 'interactive') {
1.150     matthew  2834:         $title=~ s/\'/\\\'/g;
1.145     matthew  2835:         if ($ENV{'form.catalogmode'} eq 'interactive') {
                   2836:             $output.=<<END 
                   2837: <font size='-1'><INPUT TYPE="button" NAME="returnvalues" VALUE="SELECT"
                   2838: onClick="javascript:select_data('$title','$url')">
                   2839: </font>
                   2840: END
                   2841:         }
1.150     matthew  2842:     } elsif ($ENV{'form.catalogmode'} eq 'groupsearch') {
1.145     matthew  2843:         $groupsearch_db{"pre_${fnum}_link"}=$url;
                   2844:         $groupsearch_db{"pre_${fnum}_title"}=$title;
                   2845:         $output.=<<END;
                   2846: <font size='-1'>
                   2847: <input type="checkbox" name="returnvalues" value="SELECT"
1.158     matthew  2848: onClick="javascript:queue($checkbox_num,$fnum)" />
1.145     matthew  2849: </font>
                   2850: END
                   2851:     }
                   2852:     return $output;
                   2853: }
                   2854: ######################################################################
                   2855: ######################################################################
                   2856: 
                   2857: =pod
                   2858: 
1.204     matthew  2859: =item &parse_row()
1.144     matthew  2860: 
                   2861: Parse a row returned from the database.
                   2862: 
                   2863: =cut
                   2864: 
                   2865: ######################################################################
                   2866: ######################################################################
                   2867: sub parse_row {
                   2868:     my @Row = @_;
                   2869:     my %Fields;
1.204     matthew  2870:     if (! scalar(@Datatypes)) {
                   2871:         &set_up_table_structure();
                   2872:     }
1.144     matthew  2873:     for (my $i=0;$i<=$#Row;$i++) {
1.170     matthew  2874:         $Fields{$Datatypes[$i]->{'name'}}=&Apache::lonnet::unescape($Row[$i]);
1.144     matthew  2875:     }
                   2876:     $Fields{'language'} = 
1.198     www      2877:         &Apache::loncommon::languagedescription($Fields{'language'});
1.144     matthew  2878:     $Fields{'copyrighttag'} =
                   2879:         &Apache::loncommon::copyrightdescription($Fields{'copyright'});
                   2880:     $Fields{'mimetag'} =
                   2881:         &Apache::loncommon::filedescription($Fields{'mime'});
                   2882:     return \%Fields;
                   2883: }
1.126     matthew  2884: 
                   2885: ###########################################################
                   2886: ###########################################################
                   2887: 
                   2888: =pod
                   2889: 
                   2890: =item &parse_raw_result()
                   2891: 
                   2892: Takes a line from the file of results and parse it.  Returns a hash 
1.198     www      2893: with keys according to column labels
1.126     matthew  2894: 
                   2895: In addition, the following tags are set by calling the appropriate 
1.198     www      2896: lonnet function: 'language', 'copyrighttag', 'mimetag'.
1.126     matthew  2897: 
                   2898: The 'title' field is set to "Untitled" if the title field is blank.
                   2899: 
                   2900: 'abstract' and 'keywords' are truncated to 200 characters.
                   2901: 
                   2902: =cut
                   2903: 
                   2904: ###########################################################
                   2905: ###########################################################
                   2906: sub parse_raw_result {
                   2907:     my ($result,$hostname) = @_;
1.204     matthew  2908:     # conclude from self to others regarding fields
1.206     matthew  2909:     my %Fields=&LONCAPA::lonmetadata::metadata_col_to_hash
                   2910:         (map {
                   2911:             &Apache::lonnet::unescape($_);
                   2912:         } (split(/\,/,$result)) );
1.126     matthew  2913:     return %Fields;
                   2914: }
                   2915: 
                   2916: ###########################################################
                   2917: ###########################################################
                   2918: 
                   2919: =pod
                   2920: 
                   2921: =item &handle_custom_fields()
                   2922: 
                   2923: =cut
                   2924: 
                   2925: ###########################################################
                   2926: ###########################################################
                   2927: sub handle_custom_fields {
                   2928:     my @results = @{shift()};
                   2929:     my $customshow='';
                   2930:     my $extrashow='';
                   2931:     my @customfields;
                   2932:     if ($ENV{'form.customshow'}) {
                   2933:         $customshow=$ENV{'form.customshow'};
                   2934:         $customshow=~s/[^\w\s]//g;
                   2935:         my @fields=map {
                   2936:             "<font color=\"#008000\">$_:</font><!-- $_ -->";
                   2937:         } split(/\s+/,$customshow);
                   2938:         @customfields=split(/\s+/,$customshow);
                   2939:         if ($customshow) {
                   2940:             $extrashow="<ul><li>".join("</li><li>",@fields)."</li></ul>\n";
                   2941:         }
                   2942:     }
                   2943:     my $customdata='';
                   2944:     my %customhash;
                   2945:     foreach my $result (@results) {
                   2946:         if ($result=~/^(custom\=.*)$/) { # grab all custom metadata
                   2947:             my $tmp=$result;
                   2948:             $tmp=~s/^custom\=//;
                   2949:             my ($k,$v)=map {&Apache::lonnet::unescape($_);
                   2950:                         } split(/\,/,$tmp);
                   2951:             $customhash{$k}=$v;
                   2952:         }
                   2953:     }
                   2954:     return ($extrashow,\@customfields,\%customhash);
1.41      harris41 2955: }
                   2956: 
1.122     matthew  2957: ######################################################################
                   2958: ######################################################################
                   2959: 
1.125     matthew  2960: =pod
                   2961: 
1.204     matthew  2962: =item &search_results_header()
1.125     matthew  2963: 
1.130     matthew  2964: Output the proper html headers and javascript code to deal with different 
                   2965: calling modes.
                   2966: 
                   2967: Takes most inputs directly from %ENV, except $mode.  
                   2968: 
                   2969: =over 4
                   2970: 
                   2971: =item $mode is either (at this writing) 'Basic' or 'Advanced'
                   2972: 
                   2973: =back
1.126     matthew  2974: 
1.130     matthew  2975: The following environment variables are checked:
1.126     matthew  2976: 
                   2977: =over 4
                   2978: 
                   2979: =item 'form.catalogmode' 
                   2980: 
                   2981: Checked for 'interactive' and 'groupsearch'.
                   2982: 
                   2983: =item 'form.mode'
                   2984: 
                   2985: Checked for existance & 'edit' mode.
                   2986: 
                   2987: =item 'form.form'
                   2988: 
1.191     albertel 2989: Contains the name of the form that has the input fields to set
                   2990: 
1.126     matthew  2991: =item 'form.element'
                   2992: 
1.191     albertel 2993: the name of the input field to put the URL into
                   2994: 
                   2995: =item 'form.titleelement'
                   2996: 
                   2997: the name of the input field to put the title into
                   2998: 
1.126     matthew  2999: =back
                   3000: 
1.125     matthew  3001: =cut
                   3002: 
                   3003: ######################################################################
                   3004: ######################################################################
                   3005: sub search_results_header {
1.150     matthew  3006:     my ($importbutton,$closebutton) = @_;
1.196     matthew  3007:     my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.125     matthew  3008:     my $result = '';
                   3009:     # output beginning of search page
                   3010:     # conditional output of script functions dependent on the mode in
                   3011:     # which the search was invoked
                   3012:     if ($ENV{'form.catalogmode'} eq 'interactive'){
                   3013: 	if (! exists($ENV{'form.mode'}) || $ENV{'form.mode'} ne 'edit') {
                   3014:             $result.=<<SCRIPT;
                   3015: <script type="text/javascript">
                   3016:     function select_data(title,url) {
                   3017: 	changeTitle(title);
                   3018: 	changeURL(url);
1.150     matthew  3019: 	parent.close();
1.125     matthew  3020:     }
                   3021:     function changeTitle(val) {
1.153     matthew  3022: 	if (parent.opener.inf.document.forms.resinfo.elements.t) {
                   3023: 	    parent.opener.inf.document.forms.resinfo.elements.t.value=val;
1.125     matthew  3024: 	}
                   3025:     }
                   3026:     function changeURL(val) {
1.153     matthew  3027: 	if (parent.opener.inf.document.forms.resinfo.elements.u) {
                   3028: 	    parent.opener.inf.document.forms.resinfo.elements.u.value=val;
1.125     matthew  3029: 	}
                   3030:     }
                   3031: </script>
                   3032: SCRIPT
                   3033:         } elsif ($ENV{'form.mode'} eq 'edit') {
                   3034:             my $form = $ENV{'form.form'};
                   3035:             my $element = $ENV{'form.element'};
1.191     albertel 3036:             my $titleelement = $ENV{'form.titleelement'};
                   3037: 	    my $changetitle;
                   3038: 	    if (!$titleelement) {
                   3039: 		$changetitle='function changeTitle(val) {}';
                   3040: 	    } else {
                   3041: 		    $changetitle=<<END;
                   3042: function changeTitle(val) {
                   3043:     if (parent.targetwin.document) {
                   3044:         parent.targetwin.document.forms["$form"].elements["$titleelement"].value=val;
                   3045:     } else {
                   3046: 	var url = 'forms[\"$form\"].elements[\"$titleelement\"].value';
                   3047:         alert("Unable to transfer data to "+url);
                   3048:     }
                   3049: }
                   3050: END
                   3051:             }
                   3052: 
1.125     matthew  3053:             $result.=<<SCRIPT;
                   3054: <script type="text/javascript">
                   3055: function select_data(title,url) {
                   3056:     changeURL(url);
1.191     albertel 3057:     changeTitle(title);
1.150     matthew  3058:     parent.close();
1.125     matthew  3059: }
1.191     albertel 3060: $changetitle
1.125     matthew  3061: function changeURL(val) {
1.150     matthew  3062:     if (parent.targetwin.document) {
                   3063:         parent.targetwin.document.forms["$form"].elements["$element"].value=val;
1.125     matthew  3064:     } else {
                   3065: 	var url = 'forms[\"$form\"].elements[\"$element\"].value';
                   3066:         alert("Unable to transfer data to "+url);
                   3067:     }
                   3068: }
                   3069: </script>
                   3070: SCRIPT
                   3071:         }
                   3072:     }
                   3073:     $result.=<<SCRIPT if $ENV{'form.catalogmode'} eq 'groupsearch';
                   3074: <script type="text/javascript">
1.158     matthew  3075:     function queue(checkbox_num,val) {
1.185     matthew  3076:         if (document.forms.results.returnvalues.length != "undefined" &&
                   3077:             typeof(document.forms.results.returnvalues.length) == "number") {
                   3078:             if (document.forms.results.returnvalues[checkbox_num].checked) {
                   3079:                 parent.statusframe.document.forms.statusform.elements.Queue.value +='1a'+val+'b';
                   3080:             } else {
                   3081:                 parent.statusframe.document.forms.statusform.elements.Queue.value +='0a'+val+'b';
                   3082:             }
1.150     matthew  3083:         } else {
1.185     matthew  3084:             if (document.forms.results.returnvalues.checked) {
                   3085:                 parent.statusframe.document.forms.statusform.elements.Queue.value +='1a'+val+'b';
                   3086:             } else {
                   3087:                 parent.statusframe.document.forms.statusform.elements.Queue.value +='0a'+val+'b';
                   3088:             }
1.150     matthew  3089:         }
1.125     matthew  3090:     }
                   3091:     function select_group() {
1.150     matthew  3092: 	parent.window.location=
1.125     matthew  3093:     "/adm/groupsort?mode=$ENV{'form.mode'}&catalogmode=groupsearch&acts="+
1.150     matthew  3094: 	    parent.statusframe.document.forms.statusform.elements.Queue.value;
1.125     matthew  3095:     }
                   3096: </script>
                   3097: SCRIPT
1.130     matthew  3098:     $result.=<<END;
                   3099: </head>
1.155     matthew  3100: $bodytag
1.223     matthew  3101: <form name="results" method="post" action="/adm/searchcat" >
1.150     matthew  3102: <input type="hidden" name="Queue" value="" />
                   3103: $importbutton
1.130     matthew  3104: END
1.125     matthew  3105:     return $result;
                   3106: }
                   3107: 
                   3108: ######################################################################
                   3109: ######################################################################
1.146     matthew  3110: sub search_status_header {
1.196     matthew  3111:     my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.238     albertel 3112:     my $html=&Apache::lonxml::xmlbegin();
1.146     matthew  3113:     return <<ENDSTATUS;
1.238     albertel 3114: $html
                   3115: <head>
                   3116: <title>Search Status</title></head>
1.155     matthew  3117: $bodytag
1.146     matthew  3118: <h3>Search Status</h3>
                   3119: Sending search request to LON-CAPA servers.<br />
                   3120: ENDSTATUS
                   3121: }
                   3122: 
1.150     matthew  3123: sub results_link {
                   3124:     my $basic_link   = "/adm/searchcat?"."&table=".$ENV{'form.table'}.
                   3125:         "&persistent_db_id=".$ENV{'form.persistent_db_id'};
                   3126:     my $results_link = $basic_link."&phase=results".
1.151     matthew  3127:         "&pause=1"."&start=1";
1.150     matthew  3128:     return $results_link;
                   3129: }
                   3130: 
1.146     matthew  3131: ######################################################################
                   3132: ######################################################################
                   3133: sub print_frames_interface {
                   3134:     my $r = shift;
                   3135:     my $basic_link = "/adm/searchcat?"."&table=".$ENV{'form.table'}.
                   3136:         "&persistent_db_id=".$ENV{'form.persistent_db_id'};
                   3137:     my $run_search_link = $basic_link."&phase=run_search";
1.150     matthew  3138:     my $results_link = &results_link();
1.238     albertel 3139:     my $html=&Apache::lonxml::xmlbegin();
1.146     matthew  3140:     my $result = <<"ENDFRAMES";
1.238     albertel 3141: $html
1.146     matthew  3142: <head>
1.150     matthew  3143: <script>
                   3144: var targetwin = opener;
1.158     matthew  3145: var queue = '';
1.150     matthew  3146: </script>
1.146     matthew  3147: <title>LON-CAPA Digital Library Search Results</title>
                   3148: </head>
1.176     www      3149: <frameset rows="150,*">
1.146     matthew  3150:     <frame name="statusframe"  src="$run_search_link">
                   3151:     <frame name="resultsframe" src="$results_link">
                   3152: </frameset>
                   3153: </html>
                   3154: ENDFRAMES
                   3155: 
                   3156:     $r->print($result);
                   3157:     return;
                   3158: }
                   3159: 
                   3160: ######################################################################
                   3161: ######################################################################
1.125     matthew  3162: 
1.224     matthew  3163: sub has_stat_data {
                   3164:     my ($values) = @_;
                   3165:     if ( (defined($values->{'count'})      && $values->{'count'}      ne '') ||
                   3166:          (defined($values->{'stdno'})      && $values->{'stdno'}      ne '') ||
                   3167:          (defined($values->{'disc'})       && $values->{'disc'}       ne '') ||
                   3168:          (defined($values->{'avetries'})   && $values->{'avetries'}   ne '') ||
                   3169:          (defined($values->{'difficulty'}) && $values->{'difficulty'} ne '')) {
                   3170:         return 1;
                   3171:     }
                   3172:     return 0;
                   3173: }
                   3174: 
                   3175: sub statfields {
                   3176:     return ('count','stdno','disc','avetries','difficulty');
                   3177: }
                   3178: 
                   3179: sub has_eval_data {
                   3180:     my ($values) = @_;
                   3181:     if ( (defined($values->{'clear'})     && $values->{'clear'}     ne '') ||
                   3182:          (defined($values->{'technical'}) && $values->{'technical'} ne '') ||
                   3183:          (defined($values->{'correct'})   && $values->{'correct'}   ne '') ||
                   3184:          (defined($values->{'helpful'})   && $values->{'helpful'}   ne '') ||
                   3185:          (defined($values->{'depth'})     && $values->{'depth'}     ne '')) {
                   3186:         return 1;
                   3187:     }
                   3188:     return 0;
                   3189: }
                   3190: 
                   3191: sub evalfields { 
                   3192:     return ('clear','technical','correct','helpful','depth');
                   3193: }
                   3194: 
                   3195: ######################################################################
                   3196: ######################################################################
                   3197: 
1.122     matthew  3198: =pod 
                   3199: 
                   3200: =item Metadata Viewing Functions
                   3201: 
                   3202: Output is a HTML-ified string.
1.204     matthew  3203: 
1.122     matthew  3204: Input arguments are title, author, subject, url, keywords, version,
                   3205: notes, short abstract, mime, language, creation date,
1.126     matthew  3206: last revision date, owner, copyright, hostname, and
1.122     matthew  3207: extra custom metadata to show.
                   3208: 
                   3209: =over 4
                   3210: 
                   3211: =item &detailed_citation_view() 
                   3212: 
                   3213: =cut
                   3214: 
                   3215: ######################################################################
                   3216: ######################################################################
1.50      harris41 3217: sub detailed_citation_view {
1.150     matthew  3218:     my ($prefix,%values) = @_;
1.218     matthew  3219:     my $result;
                   3220:     $result .= '<b>'.$prefix.
1.223     matthew  3221:         '<img src="'.&Apache::loncommon::icon($values{'url'}).' " />'.'&nbsp;'.
1.218     matthew  3222:         '<a href="http://'.$ENV{'HTTP_HOST'}.$values{'url'}.'" '.
                   3223:         'target="search_preview">'.$values{'title'}."</a></b>\n";
                   3224:     $result .= "<p>\n";
                   3225:     $result .= '<b>'.$values{'author'}.'</b>,'.
                   3226:         ' <i>'.$values{'owner'}.'</i><br />';
                   3227:     foreach my $field 
                   3228:         (
1.223     matthew  3229:          { name=>'url',
                   3230:            translate => '<b>URL:</b>&nbsp;[_1]',
                   3231:            special => 'url link',},
1.218     matthew  3232:          { name=>'subject',
                   3233:            translate => '<b>Subject:</b>&nbsp;[_1]',},
                   3234:          { name=>'keywords',
                   3235:            translate => '<b>Keywords:</b>&nbsp;[_1]',},
                   3236:          { name=>'notes',
                   3237:            translate => '<b>Notes:</b>&nbsp;[_1]',},
                   3238:          { name=>'mimetag',
                   3239:            translate => '<b>MIME Type:</b>&nbsp;[_1]',},
                   3240:          { name=>'standards',
                   3241:            translate => '<b>Standards:</b>[_1]',},
                   3242:          { name=>'copyrighttag',
                   3243:            translate => '<b>Copyright/Distribution:</b>&nbsp;[_1]',},
1.223     matthew  3244:          { name=>'count',
1.225     matthew  3245:            format => "%d",
1.223     matthew  3246:            translate => '<b>Access Count:</b>&nbsp;[_1]',},
1.218     matthew  3247:          { name=>'stdno',
1.225     matthew  3248:            format => "%d",
1.218     matthew  3249:            translate => '<b>Number of Students:</b>&nbsp;[_1]',},
                   3250:          { name=>'avetries',
1.225     matthew  3251:            format => "%.2f",
1.218     matthew  3252:            translate => '<b>Average Tries:</b>&nbsp;[_1]',},
                   3253:          { name=>'disc',
1.225     matthew  3254:            format => "%.2f",
1.218     matthew  3255:            translate => '<b>Degree of Discrimination:</b>&nbsp;[_1]',},
                   3256:          { name=>'difficulty',
1.225     matthew  3257:            format => "%.2f",
1.218     matthew  3258:            translate => '<b>Degree of Difficulty:</b>&nbsp;[_1]',},
                   3259:          { name=>'clear',
1.225     matthew  3260:            format => "%.2f",
1.218     matthew  3261:            translate => '<b>Clear:</b>&nbsp;[_1]',},
                   3262:          { name=>'depth',
1.225     matthew  3263:            format => "%.2f",
1.218     matthew  3264:            translate => '<b>Depth:</b>&nbsp;[_1]',},
                   3265:          { name=>'helpful',
1.225     matthew  3266:            format => "%.2f",
1.218     matthew  3267:            translate => '<b>Helpful:</b>&nbsp;[_1]',},
                   3268:          { name=>'correct',
1.225     matthew  3269:            format => "%.2f",
1.224     matthew  3270:            translate => '<b>Correct:</b>&nbsp;[_1]',},
1.218     matthew  3271:          { name=>'technical',
1.225     matthew  3272:            format => "%.2f",
1.218     matthew  3273:            translate => '<b>Technical:</b>&nbsp;[_1]',},
1.225     matthew  3274:          { name=>'comefrom_list',
                   3275:            type => 'list',
                   3276:            translate => 'Resources that lead up to this resource in maps',},
                   3277:          { name=>'goto_list',
                   3278:            type => 'list',
                   3279:            translate => 'Resources that follow this resource in maps',},
1.226     matthew  3280:          { name=>'sequsage_list',
1.225     matthew  3281:            type => 'list',
                   3282:            translate => 'Resources using or importing resource',},
1.218     matthew  3283:          ) {
1.225     matthew  3284:         next if (! exists($values{$field->{'name'}}) ||
                   3285:                  $values{$field->{'name'}} eq '');
                   3286:         if (exists($field->{'type'}) && $field->{'type'} eq 'list') {
                   3287:             $result .= '<b>'.&mt($field->{'translate'}).'</b><ul>';
                   3288:             foreach my $item (split(',',$values{$field->{'name'}})){
                   3289:                 $result .= '<li>'.
                   3290:                     '<a target="search_preview" '.
                   3291:                     'href="/res/'.$item.'">'.$item.'</a></li>';
                   3292:             }
                   3293:             $result .= '</ul>';
                   3294:         } elsif (exists($field->{'format'}) && $field->{'format'} ne ''){
                   3295:             $result.= &mt($field->{'translate'},
                   3296:                           sprintf($field->{'format'},
1.230     matthew  3297:                                   $values{$field->{'name'}}))."<br />\n";
1.225     matthew  3298:         } else {
1.223     matthew  3299:             if ($field->{'special'} eq 'url link') {
                   3300:                 $result.= 
1.225     matthew  3301:                      &mt($field->{'translate'},
                   3302:                          '<a href="'.$values{'url'}.'" '.
                   3303:                          'target="search_preview">'.
                   3304:                          $values{$field->{'name'}}.
                   3305:                          '</a>');
1.223     matthew  3306:             } else {
                   3307:                 $result.= &mt($field->{'translate'},
                   3308:                               $values{$field->{'name'}});
                   3309:             }
                   3310:             $result .= "<br />\n";
1.225     matthew  3311:         }
1.223     matthew  3312:     }
                   3313:     $result .= "</p>";
                   3314:     if (exists($values{'extrashow'}) && $values{'extrashow'} ne '') {
                   3315:         $result .= '<p>'.$values{'extrashow'}.'</p>';
                   3316:     }
                   3317:     if (exists($values{'shortabstract'}) && $values{'shortabstract'} ne '') {
                   3318:         $result .= '<p>'.$values{'shortabstract'}.'</p>';
1.218     matthew  3319:     }
                   3320:     $result .= '<hr align="left" width="200" noshade />'."\n";
1.50      harris41 3321:     return $result;
1.222     matthew  3322: }
                   3323: 
                   3324: ######################################################################
                   3325: ######################################################################
                   3326: 
1.122     matthew  3327: =pod 
                   3328: 
                   3329: =item &summary_view() 
                   3330: 
                   3331: =cut
                   3332: ######################################################################
                   3333: ######################################################################
1.50      harris41 3334: sub summary_view {
1.150     matthew  3335:     my ($prefix,%values) = @_;
1.192     albertel 3336:     my $icon=&Apache::loncommon::icon($values{'url'});
1.50      harris41 3337:     my $result=<<END;
1.223     matthew  3338: $prefix<img src="$icon" />&nbsp;
                   3339: <a href="http://$ENV{'HTTP_HOST'}$values{'url'}" 
1.126     matthew  3340:    target='search_preview'>$values{'author'}</a><br />
                   3341: $values{'title'}<br />
                   3342: $values{'owner'} -- $values{'lastrevisiondate'}<br />
                   3343: $values{'copyrighttag'}<br />
                   3344: $values{'extrashow'}
1.50      harris41 3345: </p>
1.150     matthew  3346: <hr align='left' width='200' noshade />
1.50      harris41 3347: END
                   3348:     return $result;
                   3349: }
                   3350: 
1.122     matthew  3351: ######################################################################
                   3352: ######################################################################
                   3353: 
                   3354: =pod 
                   3355: 
1.150     matthew  3356: =item &compact_view() 
                   3357: 
                   3358: =cut
                   3359: 
                   3360: ######################################################################
                   3361: ######################################################################
                   3362: sub compact_view {
                   3363:     my ($prefix,%values) = @_;
1.223     matthew  3364:     my $result = 
                   3365:         $prefix.'<img src="'.&Apache::loncommon::icon($values{'url'}).
                   3366:         '">&nbsp;<a href="'.$values{'url'}.'" target="search_preview">'.
                   3367:         $values{'title'}.'</a>'.('&nbsp;'x2).
                   3368:         '<b>'.$values{'author'}.'</b><br />';
1.150     matthew  3369:     return $result;
                   3370: }
                   3371: 
                   3372: 
                   3373: ######################################################################
                   3374: ######################################################################
                   3375: 
                   3376: =pod 
                   3377: 
1.122     matthew  3378: =item &fielded_format_view() 
                   3379: 
                   3380: =cut
                   3381: 
                   3382: ######################################################################
                   3383: ######################################################################
1.50      harris41 3384: sub fielded_format_view {
1.150     matthew  3385:     my ($prefix,%values) = @_;
1.192     albertel 3386:     my $icon=&Apache::loncommon::icon($values{'url'});
1.222     matthew  3387:     my %Translated = &Apache::lonmeta::fieldnames();
1.50      harris41 3388:     my $result=<<END;
1.192     albertel 3389: $prefix <img src="$icon" />
1.222     matthew  3390: <dl>
                   3391: <dt>URL:</dt>
                   3392:     <dd><a href="http://$ENV{'HTTP_HOST'}$values{'url'}" 
                   3393:          target='search_preview'>$values{'url'}</a></dd>
1.50      harris41 3394: END
1.239   ! matthew  3395:     foreach my $field ('title','author','domain','subject','keywords','notes',
1.222     matthew  3396:                        'mimetag','language','creationdate','lastrevisiondate',
                   3397:                        'owner','copyrighttag','hostname','abstract') {
                   3398:         $result .= (' 'x4).'<dt>'.$Translated{$field}.'</dt>'."\n".
                   3399:             (' 'x8).'<dd>'.$values{$field}.'</dd>'."\n";
                   3400:     }
                   3401:     if (&has_stat_data(\%values)) {
                   3402:         foreach my $field (&statfields()) {
                   3403:             $result .= (' 'x4).'<dt>'.$Translated{$field}.'</dt>'."\n".
                   3404:                 (' 'x8).'<dd>'.$values{$field}.'</dd>'."\n";
                   3405:         }
                   3406:     }
                   3407:     if (&has_eval_data(\%values)) {
                   3408:         foreach my $field (&evalfields()) {
                   3409:             $result .= (' 'x4).'<dt>'.$Translated{$field}.'</dt>'."\n".
                   3410:                 (' 'x8).'<dd>'.$values{$field}.'</dd>'."\n";
                   3411:         }
                   3412:     }
                   3413:     $result .= "</dl>\n";
                   3414:     $result .= $values{'extrashow'};
                   3415:     $result .= '<hr align="left" width="200" noshade />'."\n";
1.50      harris41 3416:     return $result;
                   3417: }
                   3418: 
1.122     matthew  3419: ######################################################################
                   3420: ######################################################################
                   3421: 
                   3422: =pod 
                   3423: 
                   3424: =item &xml_sgml_view() 
                   3425: 
                   3426: =back 
                   3427: 
                   3428: =cut
                   3429: 
                   3430: ######################################################################
                   3431: ######################################################################
1.50      harris41 3432: sub xml_sgml_view {
1.150     matthew  3433:     my ($prefix,%values) = @_;
1.222     matthew  3434:     my $xml = '<LonCapaResource>'."\n";
                   3435:     # The usual suspects
1.239   ! matthew  3436:     foreach my $field ('url','title','author','subject','keywords','notes','domain') {
1.222     matthew  3437:         $xml .= qq{<$field>$values{$field}</$field>}."\n";
                   3438:     }
                   3439:     #
                   3440:     $xml .= "<mimeInfo>\n";
                   3441:     foreach my $field ('mime','mimetag') {
                   3442:         $xml .= qq{<$field>$values{$field}</$field>}."\n";
                   3443:     }
                   3444:     $xml .= "</mimeInfo>\n";
                   3445:     #
                   3446:     $xml .= "<languageInfo>\n";
                   3447:     foreach my $field ('language','languagetag') {
                   3448:         $xml .= qq{<$field>$values{$field}</$field>}."\n";
                   3449:     }
                   3450:     $xml .= "</languageInfo>\n";
                   3451:     #
                   3452:     foreach my $field ('creationdate','lastrevisiondate','owner') {
                   3453:         $xml .= qq{<$field>$values{$field}</$field>}."\n";
                   3454:     }
                   3455:     #
                   3456:     $xml .= "<copyrightInfo>\n";
                   3457:     foreach my $field ('copyright','copyrighttag') {
                   3458:         $xml .= qq{<$field>$values{$field}</$field>}."\n";
                   3459:     }
                   3460:     $xml .= "</copyrightInfo>\n";
                   3461:     $xml .= qq{<repositoryLocation>$values{'hostname'}</repositoryLocation>}.
                   3462:         "\n";
                   3463:     $xml .= qq{<shortabstract>$values{'shortabstract'}</shortabstract>}."\n";
                   3464:     #
                   3465:     if (&has_stat_data(\%values)){
                   3466:         $xml .= "<problemstatistics>\n";
                   3467:         foreach my $field (&statfields()) {
                   3468:             $xml .= qq{<$field>$values{$field}</$field>}."\n";            
                   3469:         }
                   3470:         $xml .= "</problemstatistics>\n";
                   3471:     }
                   3472:     #
                   3473:     if (&has_eval_data(\%values)) {
                   3474:         $xml .= "<evaluation>\n";
                   3475:         foreach my $field (&evalfields) {
                   3476:             $xml .= qq{<$field>$values{$field}</$field>}."\n";            
                   3477:         }
                   3478:         $xml .= "</evaluation>\n";
                   3479:     }    
                   3480:     #
                   3481:     $xml .= "</LonCapaResource>\n";
1.212     matthew  3482:     $xml = &HTML::Entities::encode($xml,'<>&');
1.50      harris41 3483:     my $result=<<END;
1.150     matthew  3484: $prefix
1.56      harris41 3485: <pre>
1.212     matthew  3486: $xml
1.56      harris41 3487: </pre>
1.126     matthew  3488: $values{'extrashow'}
1.150     matthew  3489: <hr align='left' width='200' noshade />
1.50      harris41 3490: END
                   3491:     return $result;
1.60      harris41 3492: }
                   3493: 
1.122     matthew  3494: ######################################################################
                   3495: ######################################################################
                   3496: 
                   3497: =pod 
                   3498: 
                   3499: =item &filled() see if field is filled.
                   3500: 
                   3501: =cut
                   3502: 
                   3503: ######################################################################
                   3504: ######################################################################
1.98      harris41 3505: sub filled {
                   3506:     my ($field)=@_;
                   3507:     if ($field=~/\S/ && $field ne 'any') {
1.204     matthew  3508:         return 1;
                   3509:     } else {
                   3510:         return 0;
1.61      harris41 3511:     }
1.60      harris41 3512: }
                   3513: 
1.122     matthew  3514: ######################################################################
                   3515: ######################################################################
                   3516: 
                   3517: =pod 
                   3518: 
1.228     matthew  3519: =item &output_unparsed_phrase_error()
                   3520: 
                   3521: =cut
                   3522: 
                   3523: ######################################################################
                   3524: ######################################################################
                   3525: sub output_unparsed_phrase_error {
                   3526:     my ($r,$closebutton,$parms,$hidden_fields,$field)=@_;
                   3527:     my $errorstring;
                   3528:     if ($field eq 'basicexp') {
                   3529:         $errorstring = &mt('Unable to understand the search phrase <i>[_1]</i>.  Please modify your search.',$ENV{'form.basicexp'});
                   3530:     } else {
                   3531:         $errorstring = &mt('Unable to understand the search phrase <b>[_1]</b>:<i>[_2]</i>.',$field,$ENV{'form.'.$field});
                   3532:     }
                   3533:     my $bodytag = &Apache::loncommon::bodytag('Search');
                   3534:     my $heading = &mt('Unparsed Field');
                   3535:     my $revise  = &mt('Revise search request');
                   3536:     # make query information persistent to allow for subsequent revision
1.238     albertel 3537:     my $html=&Apache::lonxml::xmlbegin();
1.228     matthew  3538:     $r->print(<<ENDPAGE);
1.238     albertel 3539: $html
1.228     matthew  3540: <head>
                   3541: <title>The LearningOnline Network with CAPA</title>
                   3542: </head>
                   3543: $bodytag
                   3544: <form method="post" action="/adm/searchcat">
                   3545: $hidden_fields
                   3546: $closebutton
                   3547: <hr />
                   3548: <h2>$heading</h2>
                   3549: <p>
                   3550: $errorstring
                   3551: </p>
                   3552: <p>
                   3553: <a href="/adm/searchcat?$parms&persistent_db_id=$ENV{'form.persistent_db_id'}">$revise</a>
                   3554: </p>
                   3555: </body>
                   3556: </html>
                   3557: ENDPAGE
                   3558: }
                   3559: 
                   3560: ######################################################################
                   3561: ######################################################################
                   3562: 
                   3563: =pod 
                   3564: 
1.122     matthew  3565: =item &output_blank_field_error()
                   3566: 
1.151     matthew  3567: Output a complete page that indicates the user has not filled in enough
                   3568: information to do a search.
                   3569: 
                   3570: Inputs: $r (Apache request handle), $closebutton, $parms.
                   3571: 
                   3572: Returns: nothing
                   3573: 
                   3574: $parms is extra information to include in the 'Revise search request' link.
                   3575: 
1.122     matthew  3576: =cut
                   3577: 
                   3578: ######################################################################
                   3579: ######################################################################
1.98      harris41 3580: sub output_blank_field_error {
1.196     matthew  3581:     my ($r,$closebutton,$parms,$hidden_fields)=@_;
1.228     matthew  3582:     my $bodytag=&Apache::loncommon::bodytag('Search');
                   3583:     my $errormsg = &mt('You did not fill in enough information for the search to be started.  You need to fill in relevant fields on the search page in order for a query to be processed.');
                   3584:     my $revise = &mt('Revise Search Request');
                   3585:     my $heading = &mt('Unactionable Search Queary');
1.238     albertel 3586:     my $html=&Apache::lonxml::xmlbegin();
1.228     matthew  3587:     $r->print(<<ENDPAGE);
1.238     albertel 3588: $html
1.98      harris41 3589: <head>
                   3590: <title>The LearningOnline Network with CAPA</title>
                   3591: </head>
1.155     matthew  3592: $bodytag
1.98      harris41 3593: <form method="post" action="/adm/searchcat">
1.145     matthew  3594: $hidden_fields
1.98      harris41 3595: $closebutton
                   3596: <hr />
1.228     matthew  3597: <h2>$heading</h2>
1.98      harris41 3598: <p>
1.228     matthew  3599: $errormsg
                   3600: </p>
                   3601: <p>
                   3602: <a href="/adm/searchcat?$parms&persistent_db_id=$ENV{'form.persistent_db_id'}">$revise</a>&nbsp;
1.98      harris41 3603: </p>
                   3604: </body>
                   3605: </html>
1.228     matthew  3606: ENDPAGE
                   3607:     return;
1.98      harris41 3608: }
                   3609: 
1.122     matthew  3610: ######################################################################
                   3611: ######################################################################
                   3612: 
                   3613: =pod 
                   3614: 
                   3615: =item &output_date_error()
                   3616: 
                   3617: Output a full html page with an error message.
                   3618: 
1.145     matthew  3619: Inputs: 
                   3620: 
                   3621:     $r, the request pointer.
                   3622:     $message, the error message for the user.
                   3623:     $closebutton, the specialized close button needed for groupsearch.
                   3624: 
1.122     matthew  3625: =cut
                   3626: 
                   3627: ######################################################################
                   3628: ######################################################################
1.60      harris41 3629: sub output_date_error {
1.196     matthew  3630:     my ($r,$message,$closebutton,$hidden_fields)=@_;
1.60      harris41 3631:     # make query information persistent to allow for subsequent revision
1.196     matthew  3632:     my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.238     albertel 3633:     my $html=&Apache::lonxml::xmlbegin();
1.122     matthew  3634:     $r->print(<<RESULTS);
1.238     albertel 3635: $html
1.60      harris41 3636: <head>
                   3637: <title>The LearningOnline Network with CAPA</title>
                   3638: </head>
1.155     matthew  3639: $bodytag
1.98      harris41 3640: <img align='right' src='/adm/lonIcons/lonlogos.gif' />
1.60      harris41 3641: <h1>Search Catalog</h1>
                   3642: <form method="post" action="/adm/searchcat">
1.145     matthew  3643: $hidden_fields
1.60      harris41 3644: <input type='button' value='Revise search request'
1.98      harris41 3645: onClick='this.form.submit();' />
1.60      harris41 3646: $closebutton
1.98      harris41 3647: <hr />
1.151     matthew  3648: <h3>Error</h3>
1.60      harris41 3649: <p>
                   3650: $message
                   3651: </p>
                   3652: </body>
                   3653: </html>
                   3654: RESULTS
1.101     harris41 3655: }
                   3656: 
1.122     matthew  3657: ######################################################################
                   3658: ######################################################################
                   3659: 
                   3660: =pod 
                   3661: 
                   3662: =item &start_fresh_session()
                   3663: 
1.142     matthew  3664: Cleans the global %groupsearch_db by removing all fields which begin with
1.122     matthew  3665: 'pre_' or 'store'.
                   3666: 
                   3667: =cut
                   3668: 
                   3669: ######################################################################
                   3670: ######################################################################
1.101     harris41 3671: sub start_fresh_session {
1.142     matthew  3672:     delete $groupsearch_db{'mode_catalog'};
                   3673:     foreach (keys %groupsearch_db) {
1.101     harris41 3674:         if ($_ =~ /^pre_/) {
1.142     matthew  3675:             delete $groupsearch_db{$_};
1.101     harris41 3676:         }
                   3677:         if ($_ =~ /^store/) {
1.142     matthew  3678: 	    delete $groupsearch_db{$_};
1.101     harris41 3679: 	}
1.109     harris41 3680:     }
1.3       harris41 3681: }
1.1       www      3682: 
                   3683: 1;
1.162     www      3684: 
                   3685: sub cleanup {
1.163     www      3686:     if (tied(%groupsearch_db)) {
                   3687:         unless (untie(%groupsearch_db)) {
                   3688: 	  &Apache::lonnet::logthis('Failed cleanup searchcat: groupsearch_db');
                   3689:         }
                   3690:     }
1.167     www      3691:     &untiehash();
1.162     www      3692:     &Apache::lonmysql::disconnect_from_db();
                   3693: }
1.98      harris41 3694: 
1.1       www      3695: __END__
1.105     harris41 3696: 
1.121     matthew  3697: =pod
1.105     harris41 3698: 
1.121     matthew  3699: =back 
1.105     harris41 3700: 
                   3701: =cut

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>