Annotation of loncom/interface/lonsearchcat.pm, revision 1.203
1.98 harris41 1: # The LearningOnline Network with CAPA
1.108 harris41 2: # Search Catalog
3: #
1.203 ! www 4: # $Id: lonsearchcat.pm,v 1.202 2004/01/02 19:23:47 www 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
51: search (on a server basis) is displayed to the user in a seperate window.
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.1 www 76:
1.121 matthew 77: ######################################################################
78: ######################################################################
1.196 matthew 79: ##
80: ## Global variables
81: ##
1.121 matthew 82: ######################################################################
83: ######################################################################
1.196 matthew 84: my %groupsearch_db; # Database hash used to save values for the
85: # groupsearch RAT interface.
86: my %persistent_db; # gdbm hash which holds data which is supposed to
87: # persist across calls to lonsearchcat.pm
1.121 matthew 88:
1.200 www 89: # The different view modes and associated functions
90:
91: my %Views = ("detailed" => \&detailed_citation_view,
92: "summary" => \&summary_view,
93: "fielded" => \&fielded_format_view,
94: "xml" => \&xml_sgml_view,
95: "compact" => \&compact_view);
1.101 harris41 96:
1.121 matthew 97: ######################################################################
98: ######################################################################
1.98 harris41 99: sub handler {
100: my $r = shift;
1.197 www 101: # &set_defaults();
1.196 matthew 102: #
103: # set form defaults
1.145 matthew 104: #
1.196 matthew 105: my $hidden_fields;# Hold all the hidden fields used to keep track
106: # of the search system state
107: my $importbutton; # button to take the selected results and go to group
108: # sorting
109: my $diropendb; # The full path to the (temporary) search database file.
110: # This is set and used in &handler() and is also used in
111: # &output_results().
112: my $bodytag; # LON-CAPA standard body tag, gotten from
113: # &Apache::lonnet::bodytag.
114: # No title, no table, just a <body> tag.
1.157 www 115:
116: my $loaderror=&Apache::lonnet::overloaderror($r);
117: if ($loaderror) { return $loaderror; }
118:
1.145 matthew 119: my $closebutton; # button that closes the search window
120: # This button is different for the RAT compared to
121: # normal invocation.
122: #
1.186 www 123: &Apache::loncommon::content_type($r,'text/html');
1.98 harris41 124: $r->send_http_header;
125: return OK if $r->header_only;
1.156 matthew 126: ##
127: ## Prevent caching of the search interface window. Hopefully this means
128: ## we will get the launch=1 passed in a little more.
129: &Apache::loncommon::no_cache($r);
1.145 matthew 130: ##
131: ## Pick up form fields passed in the links.
132: ##
133: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.146 matthew 134: ['catalogmode','launch','acts','mode','form','element','pause',
1.158 matthew 135: 'phase','persistent_db_id','table','start','show',
1.191 albertel 136: 'cleargroupsort','titleelement']);
1.146 matthew 137: ##
138: ## The following is a trick - we wait a few seconds if asked to so
139: ## the daemon running the search can get ahead of the daemon
140: ## printing the results. We only need (theoretically) to do
141: ## this once, so the pause indicator is deleted
142: ##
143: if (exists($ENV{'form.pause'})) {
1.181 matthew 144: sleep(1);
1.146 matthew 145: delete($ENV{'form.pause'});
146: }
1.143 matthew 147: ##
148: ## Initialize global variables
149: ##
1.121 matthew 150: my $domain = $r->dir_config('lonDefDomain');
1.177 albertel 151: $diropendb= "/home/httpd/perl/tmp/$ENV{'user.domain'}_$ENV{'user.name'}_searchcat.db";
1.145 matthew 152: #
153: # set the name of the persistent database
1.146 matthew 154: # $ENV{'form.persistent_db_id'} can only have digits in it.
1.145 matthew 155: if (! exists($ENV{'form.persistent_db_id'}) ||
1.147 matthew 156: ($ENV{'form.persistent_db_id'} =~ /\D/) ||
157: ($ENV{'form.launch'} eq '1')) {
1.145 matthew 158: $ENV{'form.persistent_db_id'} = time;
159: }
1.155 matthew 160: $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.146 matthew 161: my $persistent_db_file = "/home/httpd/perl/tmp/".
1.145 matthew 162: &Apache::lonnet::escape($domain).
163: '_'.&Apache::lonnet::escape($ENV{'user.name'}).
164: '_'.$ENV{'form.persistent_db_id'}.'_persistent_search.db';
1.146 matthew 165: ##
1.152 matthew 166: if (! &get_persistent_form_data($persistent_db_file)) {
1.150 matthew 167: if ($ENV{'form.phase'} =~ /(run_search|results)/) {
168: &Apache::lonnet::logthis("lonsearchcat:Unable to recover data ".
169: "from $persistent_db_file");
170: $r->print(<<END);
171: <html>
172: <head><title>LON-CAPA Search Error</title></head>
1.155 matthew 173: $bodytag
1.150 matthew 174: We were unable to retrieve data describing your search. This is a serious
175: error and has been logged. Please alert your LON-CAPA administrator.
176: </body>
177: </html>
178: END
179: return OK;
180: }
1.147 matthew 181: }
1.124 matthew 182: ##
1.143 matthew 183: ## Clear out old values from groupsearch database
1.124 matthew 184: ##
1.146 matthew 185: untie %groupsearch_db if (tied(%groupsearch_db));
1.158 matthew 186: if (($ENV{'form.cleargroupsort'} eq '1') ||
187: (($ENV{'form.launch'} eq '1') &&
188: ($ENV{'form.catalogmode'} eq 'groupsearch'))) {
1.148 matthew 189: if (tie(%groupsearch_db,'GDBM_File',$diropendb,&GDBM_WRCREAT(),0640)) {
1.101 harris41 190: &start_fresh_session();
1.142 matthew 191: untie %groupsearch_db;
1.158 matthew 192: delete($ENV{'form.cleargroupsort'});
1.122 matthew 193: } else {
1.155 matthew 194: # This is a stupid error to give to the user.
195: # It really tells them nothing.
196: $r->print('<html><head></head>'.$bodytag.
197: 'Unable to tie hash to db file</body></html>');
1.101 harris41 198: return OK;
199: }
200: }
1.124 matthew 201: ##
1.150 matthew 202: ## Configure hidden fields
1.124 matthew 203: ##
1.145 matthew 204: $hidden_fields = '<input type="hidden" name="persistent_db_id" value="'.
1.150 matthew 205: $ENV{'form.persistent_db_id'}.'" />'."\n";
206: if (exists($ENV{'form.catalogmode'})) {
207: $hidden_fields .= '<input type="hidden" name="catalogmode" value="'.
208: $ENV{'form.catalogmode'}.'" />'."\n";
209: }
210: if (exists($ENV{'form.form'})) {
211: $hidden_fields .= '<input type="hidden" name="form" value="'.
212: $ENV{'form.form'}.'" />'."\n";
213: }
214: if (exists($ENV{'form.element'})) {
215: $hidden_fields .= '<input type="hidden" name="element" value="'.
216: $ENV{'form.element'}.'" />'."\n";
217: }
1.191 albertel 218: if (exists($ENV{'form.titleelement'})) {
219: $hidden_fields .= '<input type="hidden" name="titleelement" value="'.
220: $ENV{'form.titleelement'}.'" />'."\n";
221: }
1.150 matthew 222: if (exists($ENV{'form.mode'})) {
223: $hidden_fields .= '<input type="hidden" name="mode" value="'.
224: $ENV{'form.mode'}.'" />'."\n";
225: }
226: ##
227: ## Configure dynamic components of interface
1.146 matthew 228: ##
1.98 harris41 229: if ($ENV{'form.catalogmode'} eq 'interactive') {
1.150 matthew 230: $closebutton="<input type='button' name='close' value='CLOSE' ";
231: if ($ENV{'form.phase'} =~ /(results|run_search)/) {
232: $closebutton .="onClick='parent.close()'";
233: } else {
234: $closebutton .="onClick='self.close()'";
235: }
236: $closebutton .=">\n";
1.124 matthew 237: } elsif ($ENV{'form.catalogmode'} eq 'groupsearch') {
1.150 matthew 238: $closebutton="<input type='button' name='close' value='CLOSE' ";
239: if ($ENV{'form.phase'} =~ /(results|run_search)/) {
240: $closebutton .="onClick='parent.close()'";
241: } else {
242: $closebutton .="onClick='self.close()'";
243: }
244: $closebutton .= ">";
1.98 harris41 245: $importbutton=<<END;
246: <input type='button' name='import' value='IMPORT'
247: onClick='javascript:select_group()'>
248: END
1.146 matthew 249: } else {
250: $closebutton = '';
251: $importbutton = '';
1.98 harris41 252: }
1.124 matthew 253: ##
1.146 matthew 254: ## Sanity checks on form elements
1.124 matthew 255: ##
1.146 matthew 256: if (!defined($ENV{'form.viewselect'})) {
1.150 matthew 257: if (($ENV{'form.catalogmode'} eq 'groupsearch') ||
258: ($ENV{'form.catalogmode'} eq 'interactive')) {
259: $ENV{'form.viewselect'} ="Compact View";
260: } else {
261: $ENV{'form.viewselect'} ="Detailed Citation View";
262: }
1.146 matthew 263: }
1.149 matthew 264: $ENV{'form.phase'} = 'disp_basic' if (! exists($ENV{'form.phase'}));
1.151 matthew 265: $ENV{'form.show'} = 20 if (! exists($ENV{'form.show'}));
1.146 matthew 266: ##
267: ## Switch on the phase
268: ##
269: if ($ENV{'form.phase'} eq 'disp_basic') {
1.196 matthew 270: &print_basic_search_form($r,$closebutton,$hidden_fields);
1.146 matthew 271: } elsif ($ENV{'form.phase'} eq 'disp_adv') {
1.196 matthew 272: &print_advanced_search_form($r,$closebutton,$hidden_fields);
1.146 matthew 273: } elsif ($ENV{'form.phase'} eq 'results') {
1.196 matthew 274: &display_results($r,$importbutton,$closebutton,$diropendb);
1.151 matthew 275: } elsif ($ENV{'form.phase'} =~ /^(sort|run_search)$/) {
1.146 matthew 276: my ($query,$customquery,$customshow,$libraries,$pretty_string) =
277: &get_persistent_data($persistent_db_file,
278: ['query','customquery','customshow',
279: 'libraries','pretty_string']);
1.151 matthew 280: if ($ENV{'form.phase'} eq 'sort') {
281: &print_sort_form($r,$pretty_string);
282: } elsif ($ENV{'form.phase'} eq 'run_search') {
283: &run_search($r,$query,$customquery,$customshow,
284: $libraries,$pretty_string);
285: }
1.167 www 286: } elsif ($ENV{'form.phase'} eq 'course_search') {
287: &course_search($r);
1.146 matthew 288: } elsif(($ENV{'form.phase'} eq 'basic_search') ||
289: ($ENV{'form.phase'} eq 'adv_search')) {
1.151 matthew 290: $ENV{'form.searchmode'} = 'basic';
291: if ($ENV{'form.phase'} eq 'adv_search') {
292: $ENV{'form.searchmode'} = 'advanced';
293: }
1.146 matthew 294: # Set up table
295: if (! defined(&create_results_table())) {
1.198 www 296: my $errorstring=&Apache::lonmysql::get_error();
1.147 matthew 297: $r->print(<<END);
298: <html><head><title>Search Error</title></head>
1.155 matthew 299: $bodytag
1.147 matthew 300: Unable to create table in which to store search results.
301: The search has been aborted.
1.198 www 302: <br />$errorstring
1.147 matthew 303: </body>
304: </html>
305: END
306: return OK;
1.146 matthew 307: }
1.147 matthew 308: delete($ENV{'form.launch'});
1.146 matthew 309: if (! &make_form_data_persistent($r,$persistent_db_file)) {
1.147 matthew 310: $r->print(<<END);
311: <html><head><title>Search Error</title></head>
1.155 matthew 312: $bodytag
1.147 matthew 313: Unable to properly store search information. The search has been aborted.
314: </body>
315: </html>
316: END
317: return OK;
1.146 matthew 318: }
1.145 matthew 319: #
1.139 matthew 320: # We are running a search
1.134 matthew 321: my ($query,$customquery,$customshow,$libraries) =
322: (undef,undef,undef,undef);
1.143 matthew 323: my $pretty_string;
1.146 matthew 324: if ($ENV{'form.phase'} eq 'basic_search') {
1.180 matthew 325: ($query,$pretty_string,$libraries) =
1.196 matthew 326: &parse_basic_search($r,$closebutton,$hidden_fields);
1.146 matthew 327: } else { # Advanced search
1.143 matthew 328: ($query,$customquery,$customshow,$libraries,$pretty_string)
1.196 matthew 329: = &parse_advanced_search($r,$closebutton,$hidden_fields);
1.134 matthew 330: return OK if (! defined($query));
331: }
1.152 matthew 332: &make_persistent({ query => $query,
1.146 matthew 333: customquery => $customquery,
334: customshow => $customshow,
335: libraries => $libraries,
336: pretty_string => $pretty_string },
337: $persistent_db_file);
1.145 matthew 338: ##
1.146 matthew 339: ## Print out the frames interface
1.145 matthew 340: ##
1.146 matthew 341: &print_frames_interface($r);
1.124 matthew 342: }
343: return OK;
344: }
1.98 harris41 345:
1.124 matthew 346: ######################################################################
347: ######################################################################
1.196 matthew 348: ##
349: ## Course Search
350: ##
351: ######################################################################
352: ######################################################################
353: { # Scope the course search to avoid global variables
354: #
355: # Variables For course search
356: my %alreadyseen;
357: my %hash;
358: my $totalfound;
1.124 matthew 359:
1.167 www 360: sub course_search {
361: my $r=shift;
1.203 ! www 362: my $bodytag=&Apache::loncommon::bodytag('Course Search').
! 363: &Apache::loncommon::help_open_bug('Searching');
1.167 www 364: my $pretty_search_string = '<b>'.$ENV{'form.courseexp'}.'</b>';
365: my $search_string = $ENV{'form.courseexp'};
366: my @New_Words;
367: if ($ENV{'form.crsrelated'}) {
368: ($search_string,@New_Words) = &related_version($ENV{'form.courseexp'});
369: if (@New_Words) {
1.200 www 370: $pretty_search_string .= ' '.&mt("with related words").": <b>@New_Words</b>.";
1.167 www 371: } else {
1.200 www 372: $pretty_search_string .= ' '.&mt('with no related words').".";
1.167 www 373: }
374: }
375: my $fulltext=$ENV{'form.crsfulltext'};
376: my @allwords=($search_string,@New_Words);
1.169 www 377: $totalfound=0;
1.167 www 378: $r->print('<html><head><title>LON-CAPA Course Search</title></head>'.
1.203 ! www 379: $bodytag.'<hr /><center><font size="+2" face="arial">'.$pretty_search_string.'</font></center><hr />');
1.167 www 380: $r->rflush();
381: # ======================================================= Go through the course
1.196 matthew 382: undef %alreadyseen;
383: %alreadyseen=();
1.169 www 384: my $c=$r->connection;
1.196 matthew 385: if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.".db",
386: &GDBM_READER(),0640)) {
387: foreach (keys %hash) {
388: if ($c->aborted()) { last; }
389: if (($_=~/^src\_(.+)$/) && (!$alreadyseen{$hash{$_}})) {
390: &checkonthis($r,$hash{$_},0,$hash{'title_'.$1},$fulltext,
391: @allwords);
392: }
393: }
394: untie(%hash);
395: }
1.169 www 396: unless ($totalfound) {
1.187 www 397: $r->print('<p>'.&mt('No resources found').'.</p>');
1.169 www 398: }
1.167 www 399: # =================================================== Done going through course
400: $r->print('</body></html>');
401: }
402:
403: # =============================== This pulls up a resource and its dependencies
404:
405: sub checkonthis {
1.168 www 406: my ($r,$url,$level,$title,$fulltext,@allwords)=@_;
1.167 www 407: $alreadyseen{$url}=1;
408: $r->rflush();
409: my $result=&Apache::lonnet::metadata($url,'title').' '.
410: &Apache::lonnet::metadata($url,'subject').' '.
411: &Apache::lonnet::metadata($url,'abstract').' '.
412: &Apache::lonnet::metadata($url,'keywords');
413: if (($url) && ($fulltext)) {
1.168 www 414: $result.=&Apache::lonnet::ssi_body($url);
1.167 www 415: }
416: $result=~s/\s+/ /gs;
417: my $applies=0;
418: foreach (@allwords) {
419: if ($_=~/\w/) {
420: if ($result=~/$_/si) {
421: $applies++;
422: }
423: }
424: }
425: # Does this resource apply?
426: if ($applies) {
427: $r->print('<br />');
428: for (my $i=0;$i<=$level*5;$i++) {
429: $r->print(' ');
430: }
431: $r->print('<a href="'.$url.'" target="cat">'.
1.169 www 432: ($title?$title:$url).'</a><br />');
433: $totalfound++;
434: } elsif ($fulltext) {
435: $r->print(' .');
1.167 www 436: }
1.169 www 437: $r->rflush();
1.167 www 438: # Check also the dependencies of this one
439: my $dependencies=
440: &Apache::lonnet::metadata($url,'dependencies');
441: foreach (split(/\,/,$dependencies)) {
442: if (($_=~/^\/res\//) && (!$alreadyseen{$_})) {
1.168 www 443: &checkonthis($r,$_,$level+1,'',$fulltext,@allwords);
1.167 www 444: }
445: }
446: }
447:
1.196 matthew 448: sub untiehash {
449: if (tied(%hash)) {
450: untie(%hash);
451: }
452: }
453:
454: } # End of course search scoping
455:
1.167 www 456: ######################################################################
457: ######################################################################
458:
1.124 matthew 459: =pod
460:
1.146 matthew 461: =item &print_basic_search_form()
1.124 matthew 462:
463: Returns a scalar which holds html for the basic search form.
464:
465: =cut
466:
467: ######################################################################
468: ######################################################################
1.3 harris41 469:
1.146 matthew 470: sub print_basic_search_form{
1.196 matthew 471: my ($r,$closebutton,$hidden_fields) = @_;
1.203 ! www 472: my $bodytag=&Apache::loncommon::bodytag('Search').
! 473: &Apache::loncommon::help_open_topic('Finding_Resources').
! 474: &Apache::loncommon::help_open_bug('Searching');
1.124 matthew 475: my $scrout=<<"ENDDOCUMENT";
476: <html>
477: <head>
478: <title>The LearningOnline Network with CAPA</title>
479: <script type="text/javascript">
480: function openhelp(val) {
481: openhelpwin=open('/adm/help/searchcat.html','helpscreen',
482: 'scrollbars=1,width=600,height=300');
483: openhelpwin.focus();
1.6 harris41 484: }
1.124 matthew 485: </script>
486: </head>
1.154 www 487: $bodytag
1.167 www 488: ENDDOCUMENT
489: if (&Apache::lonnet::allowed('bre',$ENV{'request.role.domain'})) {
1.193 sakharuk 490: my $CatalogSearch=&mt('Catalog Search');
1.201 www 491: my $Statement=&searchhelp();
1.167 www 492: $scrout.=(<<ENDDOCUMENT);
1.193 sakharuk 493: <h1>$CatalogSearch</h1>
1.195 matthew 494: <form name="loncapa_search" method="post" action="/adm/searchcat">
1.146 matthew 495: <input type="hidden" name="phase" value="basic_search" />
1.145 matthew 496: $hidden_fields
1.124 matthew 497: <p>
1.193 sakharuk 498: $Statement.
1.124 matthew 499: </p>
500: <p>
501: <table>
502: <tr><td>
503: ENDDOCUMENT
1.200 www 504: $scrout.=' '.&Apache::lonhtmlcommon::textbox('basicexp',
505: $ENV{'form.basicexp'},40).
1.124 matthew 506: ' ';
1.200 www 507: my $relatedcheckbox = &Apache::lonhtmlcommon::checkbox('related',
508: $ENV{'form.related'});
1.180 matthew 509: my $domain = $r->dir_config('lonDefDomain');
1.200 www 510: my $domaincheckbox = &Apache::lonhtmlcommon::checkbox('domains',
511: $ENV{'form.domains'});
1.187 www 512: my $srch=&mt('Search');
513: my $header=&mt('Advanced Search');
1.193 sakharuk 514: my $userelatedwords=&mt('use related words');
515: my $onlysearchdomain=&mt('only search domain');
1.200 www 516: my $view=&viewoptions();
1.139 matthew 517: $scrout.=<<END;
1.160 www 518: </td><td><a
1.190 matthew 519: href="/adm/searchcat?phase=disp_adv&catalogmode=$ENV{'form.catalogmode'}&launch=$ENV{'form.launch'}&mode=$ENV{'form.mode'}"
1.187 www 520: >$header</a></td></tr>
1.193 sakharuk 521: <tr><td>$relatedcheckbox $userelatedwords</td>
522: <td>$domaincheckbox $onlysearchdomain <b>$domain</b></td></tr>
1.141 matthew 523: </table>
1.124 matthew 524: </p>
1.200 www 525: $view
1.124 matthew 526: <p>
1.187 www 527: <input type="submit" name="basicsubmit" value='$srch' />
1.124 matthew 528: $closebutton
1.139 matthew 529: END
530: $scrout.=<<ENDDOCUMENT;
1.124 matthew 531: </p>
532: </form>
1.167 www 533: ENDDOCUMENT
1.180 matthew 534: }
535: if ($ENV{'request.course.id'}) {
1.187 www 536: my %lt=&Apache::lonlocal::texthash(
537: 'srch' => 'Search',
538: 'header' => 'Course Search',
539: 'note' => 'Enter terms or phrases, then press "Search" below',
1.200 www 540: 'use' => 'use related words',
541: 'full' =>'fulltext search (time consuming)'
1.187 www 542: );
1.180 matthew 543: $scrout.=(<<ENDCOURSESEARCH);
544: <hr />
1.187 www 545: <h1>$lt{'header'}</h1>
1.195 matthew 546: <form name="course_search" method="post" action="/adm/searchcat">
1.167 www 547: <input type="hidden" name="phase" value="course_search" />
548: $hidden_fields
549: <p>
1.187 www 550: $lt{'note'}.
1.167 www 551: </p>
552: <p>
553: <table>
554: <tr><td>
555: ENDCOURSESEARCH
1.180 matthew 556: $scrout.=' '.
1.200 www 557: &Apache::lonhtmlcommon::textbox('courseexp',
558: $ENV{'form.courseexp'},40);
1.180 matthew 559: my $crscheckbox =
1.200 www 560: &Apache::lonhtmlcommon::checkbox('crsfulltext',
561: $ENV{'form.crsfulltext'});
1.180 matthew 562: my $relcheckbox =
1.200 www 563: &Apache::lonhtmlcommon::checkbox('crsrelated',
564: $ENV{'form.crsrelated'});
1.180 matthew 565: $scrout.=(<<ENDENDCOURSE);
1.167 www 566: </td></tr>
1.200 www 567: <tr><td>$relcheckbox $lt{'use'}</td><td></td></tr>
568: <tr><td>$crscheckbox $lt{'full'}</td><td></td></tr>
1.167 www 569: </table><p>
1.187 www 570: <input type="submit" name="coursesubmit" value='$lt{'srch'}' />
1.167 www 571: </p>
572: ENDENDCOURSE
1.180 matthew 573: }
1.167 www 574: $scrout.=(<<ENDDOCUMENT);
1.124 matthew 575: </body>
576: </html>
577: ENDDOCUMENT
1.146 matthew 578: $r->print($scrout);
579: return;
1.124 matthew 580: }
581: ######################################################################
582: ######################################################################
583:
584: =pod
585:
586: =item &advanced_search_form()
587:
588: Returns a scalar which holds html for the advanced search form.
589:
590: =cut
591:
592: ######################################################################
593: ######################################################################
594:
1.146 matthew 595: sub print_advanced_search_form{
1.196 matthew 596: my ($r,$closebutton,$hidden_fields) = @_;
1.200 www 597: my %lt=&Apache::lonlocal::texthash('srch' => 'Search',
598: 'reset' => 'Reset',
599: 'help' => 'Help');
1.129 matthew 600: my $advanced_buttons = <<"END";
601: <p>
1.200 www 602: <input type="submit" name="advancedsubmit" value='$lt{"srch"}' />
603: <input type="reset" name="reset" value='$lt{"reset"}' />
1.129 matthew 604: $closebutton
1.200 www 605: <input type="button" value="$lt{'help'}" onClick="openhelp()" />
1.129 matthew 606: </p>
607: END
1.154 www 608: my $bodytag=&Apache::loncommon::bodytag('Advanced Catalog Search');
1.201 www 609: my $searchhelp=&searchhelp();
1.124 matthew 610: my $scrout=<<"ENDHEADER";
611: <html>
612: <head>
613: <title>The LearningOnline Network with CAPA</title>
614: <script type="text/javascript">
615: function openhelp(val) {
616: openhelpwin=open('/adm/help/searchcat.html','helpscreen',
617: 'scrollbars=1,width=600,height=300');
618: openhelpwin.focus();
1.18 harris41 619: }
1.124 matthew 620: </script>
621: </head>
1.154 www 622: $bodytag
1.201 www 623: $searchhelp
1.200 www 624: <form method="post" action="/adm/searchcat" name="advsearch">
1.129 matthew 625: $advanced_buttons
1.145 matthew 626: $hidden_fields
1.146 matthew 627: <input type="hidden" name="phase" value="adv_search" />
1.124 matthew 628: ENDHEADER
1.200 www 629: $scrout.=&viewoptions();
630: my %fields=&Apache::lonmeta::fieldnames();
631:
632: $scrout.='<table>';
633: $scrout.="<tr><th>".&mt('Field').'</th><th>'.&mt('Value').'</th><th>'
634: .&mt('Related').'<br />'.&mt('Words')."</td></tr>\n";
1.202 www 635: foreach ('title','author','owner','authorspace','modifyinguser',
636: 'keywords','notes','abstract','standards',
1.200 www 637: 'lowestgradelevel','highestgradelevel','mime') {
1.201 www 638: $scrout.='<tr bgcolor="#FFFFBB"><td>'.&titlefield($fields{$_}).'</td><td>'.
1.200 www 639: &Apache::lonmeta::prettyinput($_,$ENV{'form.'.$_},$_,'advsearch',
640: 1,'</td><td>',$ENV{'form.'.$_.'_related'}).
641: '</td></tr>';
642: }
1.202 www 643: $scrout.='<tr bgcolor="#FFFFBB"><td>'.
644: &titlefield(&mt('MIME Type Category')).'</td><td>'.
645: &Apache::loncommon::filecategoryselect('category',
646: $ENV{'form.category'}).
647: '</td><td> </td></td></tr>';
648: $scrout.='<tr bgcolor="#FFFFBB"><td>'.
649: &titlefield(&mt('Limit Search to Domains')).'</td><td>'.
650: &Apache::loncommon::domain_select('domains',
651: $ENV{'form.domains'},1).
652: '</td><td> </td></td></tr>';
1.201 www 653: my %dates=&Apache::lonlocal::texthash('creationdatestart' => 'Creation Date After',
654: 'creationdateend' => 'Creation Date Before',
655: 'lastrevisiondatestart' => 'Last Revision Date After',
656: 'lastrevisiondateend' => 'Last Revision Date Before');
657: foreach (sort keys %dates) {
1.202 www 658: $scrout.='<tr bgcolor="#FFFFBB"><td>'.&titlefield($dates{$_}).'</td><td>'.
1.201 www 659: &Apache::lonhtmlcommon::date_setter('advsearch',$_,0,'',1).
660: '</td><td> </td></td></tr>';
661: }
662:
1.202 www 663: $scrout.="</table>\n";
1.201 www 664:
1.124 matthew 665: $scrout.=<<ENDDOCUMENT;
1.129 matthew 666: $advanced_buttons
1.8 harris41 667: </form>
668: </body>
669: </html>
670: ENDDOCUMENT
1.146 matthew 671: $r->print($scrout);
672: return;
1.124 matthew 673: }
1.200 www 674: ######################################################################
675: ######################################################################
676:
677: =pod
678:
679: =item &titlefield
680:
681: Inputs: title text
682:
683: Outputs: titletext with font wrapper
684:
685: =cut
686:
687: ######################################################################
688: ######################################################################
689:
690: sub titlefield {
691: my $title=shift;
692: return '<font face="arial" color="#800000">'.$title.'</font>';
693: }
694: ######################################################################
695: ######################################################################
696:
697: =pod
698:
699: =item viewoptiontext
700:
701: Inputs: codename for view option
702:
703: Outputs: displayed text
704:
705: =cut
706:
707: ######################################################################
708: ######################################################################
709:
710: sub viewoptiontext {
711: my $code=shift;
712: my %desc=&Apache::lonlocal::texthash('detailed' => "Detailed Citation View",
713: 'xml' => 'XML/SGML',
714: 'compact' => 'Compact View',
715: 'fielded' => 'Fielded Format',
716: 'summary' => 'Summary View');
717: return $desc{$code};
718: }
719: ######################################################################
720:
721: =pod
722:
723: =item viewoptions
724:
725: Inputs: none
726:
727: Outputs: text for box with view options
728:
729: =cut
730:
731: ######################################################################
732: ######################################################################
733:
734: sub viewoptions {
735: my $scrout="\n\n".'<table bgcolor="#FFFFBB"><tr><th>'.&mt('View Options').'</th><th>'.
736: &mt('Records per Page').'</th></tr><tr><td>';
737: unless ($ENV{'form.viewselect'}) { $ENV{'form.viewselect'}='detailed'; }
738: $scrout.=&Apache::lonmeta::selectbox('viewselect',
739: $ENV{'form.viewselect'},
740: \&viewoptiontext,
741: sort(keys(%Views)));
742: $scrout.='</td><td>';
743: $scrout.=&Apache::lonmeta::selectbox('show',
744: $ENV{'form.show'},
745: undef,
746: (10,20,50,100,1000,10000));
747: $scrout.="</td></tr></table>\n\n";
748: return $scrout;
1.201 www 749: }
750:
751: ######################################################################
752:
753: =pod
754:
755: =item searchhelp
756:
757: Inputs: none
758:
759: Outputs: return little blurb on how to enter searches
760:
761: =cut
762:
763: ######################################################################
764: ######################################################################
765:
766: sub searchhelp {
767: return &mt('Enter terms or phrases separated by AND, OR, or NOT');
1.200 www 768: }
1.8 harris41 769:
1.121 matthew 770: ######################################################################
771: ######################################################################
772:
773: =pod
774:
1.146 matthew 775: =item &get_persistent_form_data
1.145 matthew 776:
1.146 matthew 777: Inputs: filename of database
778:
779: Outputs: returns undef on database errors.
780:
781: This function is the reverse of &make_persistent() for form data.
1.145 matthew 782: Retrieve persistent data from %persistent_db. Retrieved items will have their
1.146 matthew 783: values unescaped. If a form value already exists in $ENV, it will not be
784: overwritten. Form values that are array references may have values appended
785: to them.
1.145 matthew 786:
787: =cut
788:
789: ######################################################################
790: ######################################################################
1.146 matthew 791: sub get_persistent_form_data {
792: my $filename = shift;
1.147 matthew 793: return 0 if (! -e $filename);
1.146 matthew 794: return undef if (! tie(%persistent_db,'GDBM_File',$filename,
1.148 matthew 795: &GDBM_READER(),0640));
1.146 matthew 796: #
797: # These make sure we do not get array references printed out as 'values'.
1.161 matthew 798: my %arrays_allowed = ('form.domains'=>1);
1.146 matthew 799: #
800: # Loop through the keys, looking for 'form.'
801: foreach my $name (keys(%persistent_db)) {
802: next if ($name !~ /^form./);
1.182 matthew 803: # Kludgification begins!
804: if ($name eq 'form.domains' &&
805: $ENV{'form.searchmode'} eq 'basic' &&
806: $ENV{'form.phase'} ne 'disp_basic') {
807: next;
808: }
809: # End kludge (hopefully)
1.152 matthew 810: next if (exists($ENV{$name}));
1.146 matthew 811: my @values = map {
812: &Apache::lonnet::unescape($_);
813: } split(',',$persistent_db{$name});
814: next if (@values <1);
1.152 matthew 815: if ($arrays_allowed{$name}) {
816: $ENV{$name} = [@values];
1.146 matthew 817: } else {
1.152 matthew 818: $ENV{$name} = $values[0] if ($values[0]);
1.146 matthew 819: }
820: }
821: untie (%persistent_db);
822: return 1;
823: }
1.181 matthew 824:
1.146 matthew 825: ######################################################################
826: ######################################################################
827:
828: =pod
829:
830: =item &get_persistent_data
831:
832: Inputs: filename of database, ref to array of values to recover.
833:
834: Outputs: array of values. Returns undef on error.
835:
836: This function is the reverse of &make_persistent();
837: Retrieve persistent data from %persistent_db. Retrieved items will have their
838: values unescaped. If the item contains commas (before unescaping), the
839: returned value will be an array pointer.
840:
841: =cut
842:
843: ######################################################################
844: ######################################################################
845: sub get_persistent_data {
846: my $filename = shift;
847: my @Vars = @{shift()};
848: my @Values; # Return array
849: return undef if (! -e $filename);
850: return undef if (! tie(%persistent_db,'GDBM_File',$filename,
1.148 matthew 851: &GDBM_READER(),0640));
1.146 matthew 852: foreach my $name (@Vars) {
853: if (! exists($persistent_db{$name})) {
854: push @Values, undef;
855: next;
856: }
857: my @values = map {
858: &Apache::lonnet::unescape($_);
859: } split(',',$persistent_db{$name});
1.152 matthew 860: if (@values <= 1) {
1.146 matthew 861: push @Values,$values[0];
1.145 matthew 862: } else {
1.146 matthew 863: push @Values,\@values;
1.145 matthew 864: }
865: }
1.146 matthew 866: untie (%persistent_db);
867: return @Values;
1.145 matthew 868: }
869:
870: ######################################################################
871: ######################################################################
872:
873: =pod
874:
1.121 matthew 875: =item &make_persistent()
876:
1.146 matthew 877: Inputs: Hash of values to save, filename of persistent database.
878:
879: Store variables away to the %persistent_db.
1.145 matthew 880: Values will be escaped. Values that are array pointers will have their
881: elements escaped and concatenated in a comma seperated string.
1.122 matthew 882:
1.121 matthew 883: =cut
884:
885: ######################################################################
886: ######################################################################
1.98 harris41 887: sub make_persistent {
1.133 matthew 888: my %save = %{shift()};
1.146 matthew 889: my $filename = shift;
890: return undef if (! tie(%persistent_db,'GDBM_File',
1.148 matthew 891: $filename,&GDBM_WRCREAT(),0640));
1.146 matthew 892: foreach my $name (keys(%save)) {
1.145 matthew 893: my @values = (ref($save{$name}) ? @{$save{$name}} : ($save{$name}));
894: # We handle array references, but not recursively.
895: my $store = join(',', map { &Apache::lonnet::escape($_); } @values );
896: $persistent_db{$name} = $store;
1.109 harris41 897: }
1.146 matthew 898: untie(%persistent_db);
899: return 1;
900: }
901:
902: ######################################################################
903: ######################################################################
904:
905: =pod
906:
907: =item &make_form_data_persistent()
908:
909: Inputs: filename of persistent database.
910:
911: Store most form variables away to the %persistent_db.
912: Values will be escaped. Values that are array pointers will have their
913: elements escaped and concatenated in a comma seperated string.
914:
915: =cut
916:
917: ######################################################################
918: ######################################################################
919: sub make_form_data_persistent {
920: my $r = shift;
921: my $filename = shift;
922: my %save;
923: foreach (keys(%ENV)) {
1.150 matthew 924: next if (!/^form/ || /submit/);
1.146 matthew 925: $save{$_} = $ENV{$_};
926: }
1.152 matthew 927: return &make_persistent(\%save,$filename);
1.98 harris41 928: }
929:
1.122 matthew 930: ######################################################################
931: ######################################################################
932:
933: =pod
934:
1.134 matthew 935: =item &parse_advanced_search()
936:
937: Parse advanced search form and return the following:
938:
939: =over 4
940:
941: =item $query Scalar containing an SQL query.
1.126 matthew 942:
1.134 matthew 943: =item $customquery Scalar containing a custom query.
944:
945: =item $customshow Scalar containing commands to show custom metadata.
946:
947: =item $libraries_to_query Reference to array of domains to search.
948:
949: =back
1.122 matthew 950:
951: =cut
952:
953: ######################################################################
954: ######################################################################
1.134 matthew 955: sub parse_advanced_search {
1.196 matthew 956: my ($r,$closebutton,$hidden_fields)=@_;
1.32 harris41 957: my $fillflag=0;
1.143 matthew 958: my $pretty_search_string = "<br />\n";
1.64 harris41 959: # Clean up fields for safety
960: for my $field ('title','author','subject','keywords','url','version',
961: 'creationdatestart_month','creationdatestart_day',
962: 'creationdatestart_year','creationdateend_month',
963: 'creationdateend_day','creationdateend_year',
964: 'lastrevisiondatestart_month','lastrevisiondatestart_day',
965: 'lastrevisiondatestart_year','lastrevisiondateend_month',
966: 'lastrevisiondateend_day','lastrevisiondateend_year',
1.161 matthew 967: 'notes','abstract','extension','language','owner',
1.131 matthew 968: 'custommetadata','customshow','category') {
1.101 harris41 969: $ENV{"form.$field"}=~s/[^\w\/\s\(\)\=\-\"\']//g;
1.64 harris41 970: }
1.117 matthew 971: foreach ('mode','form','element') {
972: # is this required? Hmmm.
973: next unless (exists($ENV{"form.$_"}));
974: $ENV{"form.$_"}=&Apache::lonnet::unescape($ENV{"form.$_"});
975: $ENV{"form.$_"}=~s/[^\w\/\s\(\)\=\-\"\']//g;
976: }
1.131 matthew 977: # Preprocess the category form element.
1.161 matthew 978: $ENV{'form.category'} = 'any' if (! defined($ENV{'form.category'}) ||
979: ref($ENV{'form.category'}));
980: #
1.90 harris41 981: # Check to see if enough information was filled in
1.32 harris41 982: for my $field ('title','author','subject','keywords','url','version',
1.161 matthew 983: 'notes','abstract','category','extension','language',
984: 'owner','custommetadata') {
1.40 harris41 985: if (&filled($ENV{"form.$field"})) {
1.32 harris41 986: $fillflag++;
987: }
988: }
989: unless ($fillflag) {
1.196 matthew 990: &output_blank_field_error($r,$closebutton,'phase=disp_adv',$hidden_fields);
1.134 matthew 991: return ;
1.32 harris41 992: }
1.90 harris41 993: # Turn the form input into a SQL-based query
1.39 harris41 994: my $query='';
1.45 harris41 995: my @queries;
1.143 matthew 996: my $font = '<font color="#800000" face="helvetica">';
1.90 harris41 997: # Evaluate logical expression AND/OR/NOT phrase fields.
1.58 harris41 998: foreach my $field ('title','author','subject','notes','abstract','url',
1.200 www 999: 'keywords','version','owner','standards') {
1.44 harris41 1000: if ($ENV{'form.'.$field}) {
1.142 matthew 1001: my $searchphrase = $ENV{'form.'.$field};
1.143 matthew 1002: $pretty_search_string .= $font."$field</font> contains <b>".
1003: $searchphrase."</b>";
1.142 matthew 1004: if ($ENV{'form.'.$field.'_related'}) {
1.143 matthew 1005: my @New_Words;
1006: ($searchphrase,@New_Words) = &related_version($searchphrase);
1007: if (@New_Words) {
1008: $pretty_search_string .= " with related words: ".
1009: "<b>@New_Words</b>.";
1010: } else {
1011: $pretty_search_string .= " with no related words.";
1012: }
1.142 matthew 1013: }
1.143 matthew 1014: $pretty_search_string .= "<br />\n";
1.142 matthew 1015: push @queries,&build_SQL_query($field,$searchphrase);
1.131 matthew 1016: }
1.44 harris41 1017: }
1.161 matthew 1018: #
1019: # Make the 'mime' from 'form.category' and 'form.extension'
1020: #
1021: my $searchphrase;
1022: if (exists($ENV{'form.category'}) &&
1023: $ENV{'form.category'} !~ /^\s*$/ &&
1024: $ENV{'form.category'} ne 'any') {
1025: my @extensions = &Apache::loncommon::filecategorytypes
1026: ($ENV{'form.category'});
1027: if (scalar(@extensions) > 0) {
1028: $searchphrase = join(' OR ',@extensions);
1029: }
1030: }
1031: if (exists($ENV{'form.extension'}) && $ENV{'form.extension'} !~ /^\s*$/) {
1032: $searchphrase .= ' OR ' if (defined($searchphrase));
1033: my @extensions = split(/,/,$ENV{'form.extension'});
1034: $searchphrase .= join(' OR ',@extensions);
1035: }
1036: if (defined($searchphrase)) {
1037: push @queries,&build_SQL_query('mime',$searchphrase);
1038: $pretty_search_string .=$font.'mime</font> contains <b>'.
1039: $searchphrase.'</b><br />';
1.135 matthew 1040: }
1.161 matthew 1041: #####
1.90 harris41 1042: # Evaluate option lists
1.58 harris41 1043: if ($ENV{'form.language'} and $ENV{'form.language'} ne 'any') {
1.90 harris41 1044: push @queries,"(language like \"$ENV{'form.language'}\")";
1.143 matthew 1045: $pretty_search_string.=$font."language</font>= ".
1046: &Apache::loncommon::languagedescription($ENV{'form.language'}).
1047: "<br />\n";
1.58 harris41 1048: }
1049: if ($ENV{'form.copyright'} and $ENV{'form.copyright'} ne 'any') {
1.90 harris41 1050: push @queries,"(copyright like \"$ENV{'form.copyright'}\")";
1.143 matthew 1051: $pretty_search_string.=$font."copyright</font> = ".
1052: &Apache::loncommon::copyrightdescription($ENV{'form.copyright'}).
1053: "<br \>\n";
1.58 harris41 1054: }
1.143 matthew 1055: #
1.90 harris41 1056: # Evaluate date windows
1.60 harris41 1057: my $datequery=&build_date_queries(
1058: $ENV{'form.creationdatestart_month'},
1059: $ENV{'form.creationdatestart_day'},
1060: $ENV{'form.creationdatestart_year'},
1061: $ENV{'form.creationdateend_month'},
1062: $ENV{'form.creationdateend_day'},
1063: $ENV{'form.creationdateend_year'},
1064: $ENV{'form.lastrevisiondatestart_month'},
1065: $ENV{'form.lastrevisiondatestart_day'},
1066: $ENV{'form.lastrevisiondatestart_year'},
1067: $ENV{'form.lastrevisiondateend_month'},
1068: $ENV{'form.lastrevisiondateend_day'},
1069: $ENV{'form.lastrevisiondateend_year'},
1070: );
1.90 harris41 1071: # Test to see if date windows are legitimate
1.61 harris41 1072: if ($datequery=~/^Incorrect/) {
1.196 matthew 1073: &output_date_error($r,$datequery,$closebutton,$hidden_fields);
1.134 matthew 1074: return ;
1.143 matthew 1075: } elsif ($datequery) {
1076: # Here is where you would set up pretty_search_string to output
1077: # date query information.
1.60 harris41 1078: push @queries,$datequery;
1079: }
1.90 harris41 1080: # Process form information for custom metadata querying
1.134 matthew 1081: my $customquery=undef;
1.152 matthew 1082: # if ($ENV{'form.custommetadata'}) {
1083: # $pretty_search_string .=$font."Custom Metadata Search</font>: <b>".
1084: # $ENV{'form.custommetadata'}."</b><br />\n";
1085: # $customquery=&build_custommetadata_query('custommetadata',
1086: # $ENV{'form.custommetadata'});
1087: # }
1.134 matthew 1088: my $customshow=undef;
1.152 matthew 1089: # if ($ENV{'form.customshow'}) {
1090: # $pretty_search_string .=$font."Custom Metadata Display</font>: <b>".
1091: # $ENV{'form.customshow'}."</b><br />\n";
1092: # $customshow=$ENV{'form.customshow'};
1093: # $customshow=~s/[^\w\s]//g;
1094: # my @fields=split(/\s+/,$customshow);
1095: # $customshow=join(" ",@fields);
1096: # }
1.133 matthew 1097: ## ---------------------------------------------------------------
1.132 matthew 1098: ## Deal with restrictions to given domains
1099: ##
1.180 matthew 1100: my ($libraries_to_query,$pretty_domains_string) =
1101: &parse_domain_restrictions();
1102: $pretty_search_string .= $pretty_domains_string."<br />\n";
1103: #
1104: if (@queries) {
1105: $query=join(" AND ",@queries);
1106: $query="select * from metadata where $query";
1107: } elsif ($customquery) {
1108: $query = '';
1109: }
1110: return ($query,$customquery,$customshow,$libraries_to_query,
1111: $pretty_search_string);
1112: }
1113:
1114: sub parse_domain_restrictions {
1.132 matthew 1115: my $libraries_to_query = undef;
1116: # $ENV{'form.domains'} can be either a scalar or an array reference.
1117: # We need an array.
1.180 matthew 1118: if (! exists($ENV{'form.domains'})) {
1119: return (undef,'');
1120: }
1121: my @allowed_domains;
1122: if (ref($ENV{'form.domains'})) {
1123: @allowed_domains = @{$ENV{'form.domains'}};
1124: } else {
1125: @allowed_domains = ($ENV{'form.domains'});
1126: }
1.132 matthew 1127: my %domain_hash = ();
1.143 matthew 1128: my $pretty_domains_string;
1.132 matthew 1129: foreach (@allowed_domains) {
1130: $domain_hash{$_}++;
1131: }
1.143 matthew 1132: if ($domain_hash{'any'}) {
1.152 matthew 1133: $pretty_domains_string = "In all LON-CAPA domains.";
1.143 matthew 1134: } else {
1135: if (@allowed_domains > 1) {
1.152 matthew 1136: $pretty_domains_string = "In LON-CAPA domains:";
1.143 matthew 1137: } else {
1.152 matthew 1138: $pretty_domains_string = "In LON-CAPA domain ";
1.143 matthew 1139: }
1140: foreach (sort @allowed_domains) {
1.152 matthew 1141: $pretty_domains_string .= "<b>".$_."</b> ";
1.132 matthew 1142: }
1.143 matthew 1143: foreach (keys(%Apache::lonnet::libserv)) {
1144: if (exists($domain_hash{$Apache::lonnet::hostdom{$_}})) {
1145: push @$libraries_to_query,$_;
1146: }
1.132 matthew 1147: }
1148: }
1.180 matthew 1149: return ($libraries_to_query,$pretty_domains_string);
1.18 harris41 1150: }
1151:
1.122 matthew 1152: ######################################################################
1153: ######################################################################
1154:
1155: =pod
1156:
1.134 matthew 1157: =item &parse_basic_search()
1.122 matthew 1158:
1.134 matthew 1159: Parse the basic search form and return a scalar containing an sql query.
1.126 matthew 1160:
1.122 matthew 1161: =cut
1162:
1163: ######################################################################
1164: ######################################################################
1.134 matthew 1165: sub parse_basic_search {
1.145 matthew 1166: my ($r,$closebutton)=@_;
1.64 harris41 1167: # Clean up fields for safety
1168: for my $field ('basicexp') {
1169: $ENV{"form.$field"}=~s/[^\w\s\(\)\-]//g;
1170: }
1.117 matthew 1171: foreach ('mode','form','element') {
1172: # is this required? Hmmm.
1173: next unless (exists($ENV{"form.$_"}));
1174: $ENV{"form.$_"}=&Apache::lonnet::unescape($ENV{"form.$_"});
1175: $ENV{"form.$_"}=~s/[^\w\/\s\(\)\=\-\"\']//g;
1176: }
1.180 matthew 1177: my ($libraries_to_query,$pretty_domains_string) =
1178: &parse_domain_restrictions();
1.90 harris41 1179: # Check to see if enough is filled in
1.26 harris41 1180: unless (&filled($ENV{'form.basicexp'})) {
1.151 matthew 1181: &output_blank_field_error($r,$closebutton,'phase=disp_basic');
1.24 harris41 1182: return OK;
1183: }
1.143 matthew 1184: my $pretty_search_string = '<b>'.$ENV{'form.basicexp'}.'</b>';
1.142 matthew 1185: my $search_string = $ENV{'form.basicexp'};
1.141 matthew 1186: if ($ENV{'form.related'}) {
1.143 matthew 1187: my @New_Words;
1188: ($search_string,@New_Words) = &related_version($ENV{'form.basicexp'});
1189: if (@New_Words) {
1190: $pretty_search_string .= " with related words: <b>@New_Words</b>.";
1191: } else {
1192: $pretty_search_string .= " with no related words.";
1193: }
1.141 matthew 1194: }
1.90 harris41 1195: # Build SQL query string based on form page
1.39 harris41 1196: my $query='';
1.178 matthew 1197: my $concatarg=join(',',
1.124 matthew 1198: ('title', 'author', 'subject', 'notes', 'abstract',
1199: 'keywords'));
1.95 harris41 1200: $concatarg='title' if $ENV{'form.titleonly'};
1.178 matthew 1201: $query=&build_SQL_query('concat_ws(" ",'.$concatarg.')',$search_string);
1.180 matthew 1202: if (defined($pretty_domains_string) && $pretty_domains_string ne '') {
1203: $pretty_search_string .= ' '.$pretty_domains_string;
1204: }
1.143 matthew 1205: $pretty_search_string .= "<br />\n";
1.183 matthew 1206: my $final_query = 'SELECT * FROM metadata WHERE '.$query;
1207: # &Apache::lonnet::logthis($final_query);
1208: return ($final_query,$pretty_search_string,
1.180 matthew 1209: $libraries_to_query);
1.22 harris41 1210: }
1211:
1.122 matthew 1212:
1213: ######################################################################
1214: ######################################################################
1215:
1216: =pod
1217:
1.142 matthew 1218: =item &related_version
1219:
1220: Modifies an input string to include related words. Words in the string
1221: are replaced with parenthesized lists of 'OR'd words. For example
1222: "torque" is replaced with "(torque OR word1 OR word2 OR ...)".
1223:
1224: Note: Using this twice on a string is probably silly.
1225:
1226: =cut
1227:
1228: ######################################################################
1229: ######################################################################
1230: sub related_version {
1231: my $search_string = shift;
1232: my $result = $search_string;
1.143 matthew 1233: my %New_Words = ();
1.142 matthew 1234: while ($search_string =~ /(\w+)/cg) {
1235: my $word = $1;
1236: next if (lc($word) =~ /\b(or|and|not)\b/);
1237: my @Words = &Apache::loncommon::get_related_words($word);
1.143 matthew 1238: @Words = ($#Words>4? @Words[0..4] : @Words);
1239: foreach (@Words) { $New_Words{$_}++;}
1240: my $replacement = join " OR ", ($word,@Words);
1.142 matthew 1241: $result =~ s/(\b)$word(\b)/$1($replacement)$2/g;
1242: }
1.143 matthew 1243: return $result,sort(keys(%New_Words));
1.142 matthew 1244: }
1245:
1246: ######################################################################
1247: ######################################################################
1248:
1249: =pod
1250:
1.122 matthew 1251: =item &build_SQL_query()
1252:
1.126 matthew 1253: Builds a SQL query string from a logical expression with AND/OR keywords
1254: using Text::Query and &recursive_SQL_query_builder()
1255:
1.122 matthew 1256: =cut
1257:
1258: ######################################################################
1259: ######################################################################
1.98 harris41 1260: sub build_SQL_query {
1261: my ($field_name,$logic_statement)=@_;
1262: my $q=new Text::Query('abc',
1263: -parse => 'Text::Query::ParseAdvanced',
1264: -build => 'Text::Query::Build');
1265: $q->prepare($logic_statement);
1266: my $matchexp=${$q}{'matchexp'}; chomp $matchexp;
1267: my $sql_query=&recursive_SQL_query_build($field_name,$matchexp);
1268: return $sql_query;
1269: }
1270:
1.122 matthew 1271: ######################################################################
1272: ######################################################################
1273:
1274: =pod
1275:
1276: =item &build_custommetadata_query()
1277:
1.126 matthew 1278: Constructs a custom metadata query using a rather heinous regular
1279: expression.
1280:
1.122 matthew 1281: =cut
1282:
1283: ######################################################################
1284: ######################################################################
1.98 harris41 1285: sub build_custommetadata_query {
1286: my ($field_name,$logic_statement)=@_;
1287: my $q=new Text::Query('abc',
1288: -parse => 'Text::Query::ParseAdvanced',
1289: -build => 'Text::Query::BuildAdvancedString');
1290: $q->prepare($logic_statement);
1291: my $matchexp=${$q}{'-parse'}{'-build'}{'matchstring'};
1292: # quick fix to change literal into xml tag-matching
1293: # will eventually have to write a separate builder module
1.122 matthew 1294: # wordone=wordtwo becomes\<wordone\>[^\<] *wordtwo[^\<]*\<\/wordone\>
1295: $matchexp =~ s/(\w+)\\=([\w\\\+]+)?# wordone=wordtwo is changed to
1296: /\\<$1\\>?# \<wordone\>
1297: \[\^\\<\]?# [^\<]
1298: \*$2\[\^\\<\]?# *wordtwo[^\<]
1299: \*\\<\\\/$1\\>?# *\<\/wordone\>
1300: /g;
1.98 harris41 1301: return $matchexp;
1302: }
1303:
1.122 matthew 1304: ######################################################################
1305: ######################################################################
1306:
1307: =pod
1308:
1309: =item &recursive_SQL_query_build()
1310:
1.126 matthew 1311: Recursively constructs an SQL query. Takes as input $dkey and $pattern.
1312:
1.122 matthew 1313: =cut
1314:
1315: ######################################################################
1316: ######################################################################
1.98 harris41 1317: sub recursive_SQL_query_build {
1318: my ($dkey,$pattern)=@_;
1319: my @matches=($pattern=~/(\[[^\]|\[]*\])/g);
1320: return $pattern unless @matches;
1321: foreach my $match (@matches) {
1.173 matthew 1322: $match=~/\[ (\w+)\s(.*) \]/;
1323: my ($key,$value)=($1,$2);
1324: my $replacement='';
1325: if ($key eq 'literal') {
1.178 matthew 1326: $replacement="($dkey LIKE \"\%$value\%\")";
1327: } elsif (lc($key) eq 'not') {
1328: $value=~s/LIKE/NOT LIKE/;
1.173 matthew 1329: # $replacement="($dkey not like $value)";
1330: $replacement="$value";
1331: } elsif ($key eq 'and') {
1332: $value=~/(.*[\"|\)]) ([|\(|\^].*)/;
1333: $replacement="($1 AND $2)";
1334: } elsif ($key eq 'or') {
1335: $value=~/(.*[\"|\)]) ([|\(|\^].*)/;
1336: $replacement="($1 OR $2)";
1.98 harris41 1337: }
1338: substr($pattern,
1.173 matthew 1339: index($pattern,$match),
1340: length($match),
1341: $replacement);
1.98 harris41 1342: }
1343: &recursive_SQL_query_build($dkey,$pattern);
1344: }
1.22 harris41 1345:
1.122 matthew 1346: ######################################################################
1347: ######################################################################
1348:
1349: =pod
1350:
1351: =item &build_date_queries()
1352:
1.126 matthew 1353: Builds a SQL logic query to check time/date entries.
1354: Also reports errors (check for /^Incorrect/).
1355:
1.122 matthew 1356: =cut
1357:
1358: ######################################################################
1359: ######################################################################
1.98 harris41 1360: sub build_date_queries {
1361: my ($cmonth1,$cday1,$cyear1,$cmonth2,$cday2,$cyear2,
1362: $lmonth1,$lday1,$lyear1,$lmonth2,$lday2,$lyear2)=@_;
1363: my @queries;
1364: if ($cmonth1 or $cday1 or $cyear1 or $cmonth2 or $cday2 or $cyear2) {
1365: unless ($cmonth1 and $cday1 and $cyear1 and
1366: $cmonth2 and $cday2 and $cyear2) {
1367: return "Incorrect entry for the creation date. You must specify ".
1368: "a starting month, day, and year and an ending month, ".
1369: "day, and year.";
1370: }
1371: my $cnumeric1=sprintf("%d%2d%2d",$cyear1,$cmonth1,$cday1);
1372: $cnumeric1+=0;
1373: my $cnumeric2=sprintf("%d%2d%2d",$cyear2,$cmonth2,$cday2);
1374: $cnumeric2+=0;
1375: if ($cnumeric1>$cnumeric2) {
1376: return "Incorrect entry for the creation date. The starting ".
1377: "date must occur before the ending date.";
1378: }
1379: my $cquery="(creationdate BETWEEN '$cyear1-$cmonth1-$cday1' AND '".
1380: "$cyear2-$cmonth2-$cday2 23:59:59')";
1381: push @queries,$cquery;
1382: }
1383: if ($lmonth1 or $lday1 or $lyear1 or $lmonth2 or $lday2 or $lyear2) {
1384: unless ($lmonth1 and $lday1 and $lyear1 and
1385: $lmonth2 and $lday2 and $lyear2) {
1386: return "Incorrect entry for the last revision date. You must ".
1387: "specify a starting month, day, and year and an ending ".
1388: "month, day, and year.";
1389: }
1390: my $lnumeric1=sprintf("%d%2d%2d",$lyear1,$lmonth1,$lday1);
1391: $lnumeric1+=0;
1392: my $lnumeric2=sprintf("%d%2d%2d",$lyear2,$lmonth2,$lday2);
1393: $lnumeric2+=0;
1394: if ($lnumeric1>$lnumeric2) {
1395: return "Incorrect entry for the last revision date. The ".
1396: "starting date must occur before the ending date.";
1397: }
1398: my $lquery="(lastrevisiondate BETWEEN '$lyear1-$lmonth1-$lday1' AND '".
1399: "$lyear2-$lmonth2-$lday2 23:59:59')";
1400: push @queries,$lquery;
1401: }
1402: if (@queries) {
1403: return join(" AND ",@queries);
1404: }
1405: return '';
1.18 harris41 1406: }
1.6 harris41 1407:
1.122 matthew 1408: ######################################################################
1409: ######################################################################
1410:
1.144 matthew 1411: =pod
1412:
1413: =item ©right_check()
1414:
1415: =cut
1416:
1417: ######################################################################
1418: ######################################################################
1419: sub copyright_check {
1420: my $Metadata = shift;
1421: # Check copyright tags and skip results the user cannot use
1422: my (undef,undef,$resdom,$resname) = split('/',
1423: $Metadata->{'url'});
1424: # Check for priv
1425: if (($Metadata->{'copyright'} eq 'priv') &&
1426: (($ENV{'user.name'} ne $resname) &&
1427: ($ENV{'user.domain'} ne $resdom))) {
1428: return 0;
1429: }
1430: # Check for domain
1431: if (($Metadata->{'copyright'} eq 'domain') &&
1432: ($ENV{'user.domain'} ne $resdom)) {
1433: return 0;
1434: }
1435: return 1;
1436: }
1437:
1.151 matthew 1438:
1439: ######################################################################
1440: ######################################################################
1441:
1442: =pod
1443:
1444: =item &ensure_db_and_table
1445:
1446: Ensure we can get lonmysql to connect to the database and the table we
1447: need exists.
1448:
1449: Inputs: $r, table id
1450:
1451: Returns: undef on error, 1 if the table exists.
1452:
1453: =cut
1454:
1455: ######################################################################
1456: ######################################################################
1457: sub ensure_db_and_table {
1458: my ($r,$table) = @_;
1459: ##
1460: ## Sanity check the table id.
1461: ##
1462: if (! defined($table) || $table eq '' || $table =~ /\D/ ) {
1463: $r->print("Unable to retrieve search results. ".
1464: "Unable to determine the table results were stored in. ".
1465: "</body></html>");
1466: return undef;
1467: }
1468: ##
1469: ## Make sure we can connect and the table exists.
1470: ##
1471: my $connection_result = &Apache::lonmysql::connect_to_db();
1472: if (!defined($connection_result)) {
1473: $r->print("Unable to connect to the MySQL database where your results".
1474: " are stored. </body></html>");
1475: &Apache::lonnet::logthis("lonsearchcat: unable to get lonmysql to".
1476: " connect to database.");
1477: &Apache::lonnet::logthis(&Apache::lonmysql::get_error());
1478: return undef;
1479: }
1480: my $table_check = &Apache::lonmysql::check_table($table);
1481: if (! defined($table_check)) {
1482: $r->print("A MySQL error has occurred.</form></body></html>");
1483: &Apache::lonnet::logthis("lonmysql was unable to determine the status".
1484: " of table ".$table);
1485: return undef;
1486: } elsif (! $table_check) {
1487: $r->print("The table of results could not be found.");
1488: &Apache::lonnet::logthis("The user requested a table, ".$table.
1489: ", that could not be found.");
1490: return undef;
1491: }
1492: return 1;
1493: }
1494:
1495: ######################################################################
1496: ######################################################################
1497:
1498: =pod
1499:
1500: =item &print_sort_form
1501:
1502: =cut
1503:
1504: ######################################################################
1505: ######################################################################
1506: sub print_sort_form {
1507: my ($r,$pretty_query_string) = @_;
1.196 matthew 1508: my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.151 matthew 1509: ##
1.187 www 1510: my %SortableFields=&Apache::lonlocal::texthash(
1511: id => 'Default',
1.151 matthew 1512: title => 'Title',
1513: author => 'Author',
1514: subject => 'Subject',
1515: url => 'URL',
1516: version => 'Version Number',
1517: mime => 'Mime type',
1518: lang => 'Language',
1519: owner => 'Owner/Publisher',
1520: copyright => 'Copyright',
1521: hostname => 'Host',
1522: creationdate => 'Creation Date',
1.187 www 1523: lastrevisiondate => 'Revision Date'
1.151 matthew 1524: );
1525: ##
1526: my $table = $ENV{'form.table'};
1527: return if (! &ensure_db_and_table($r,$table));
1528: ##
1529: ## Get the number of results
1530: ##
1531: my $total_results = &Apache::lonmysql::number_of_rows($table);
1532: if (! defined($total_results)) {
1533: $r->print("A MySQL error has occurred.</form></body></html>");
1534: &Apache::lonnet::logthis("lonmysql was unable to determine the number".
1535: " of rows in table ".$table);
1536: &Apache::lonnet::logthis(&Apache::lonmysql::get_error());
1537: return;
1538: }
1539: my $result;
1540: $result.=<<END;
1541: <html>
1542: <head>
1543: <script>
1544: function change_sort() {
1545: var newloc = "/adm/searchcat?phase=results";
1546: newloc += "&persistent_db_id=$ENV{'form.persistent_db_id'}";
1547: newloc += "&sortby=";
1548: newloc += document.forms.statusform.elements.sortby.value;
1549: parent.resultsframe.location= newloc;
1550: }
1551: </script>
1552: <title>Results</title>
1553: </head>
1.155 matthew 1554: $bodytag
1.151 matthew 1555: <form name="statusform" action="" method="post">
1.153 matthew 1556: <input type="hidden" name="Queue" value="" />
1.151 matthew 1557: END
1558:
1559: #<h2>Sort Results</h2>
1560: #Sort by: <select size="1" name="sortby" onchange="javascript:change_sort();">
1561: # $ENV{'form.sortby'} = 'id' if (! defined($ENV{'form.sortby'}));
1562: # foreach (keys(%SortableFields)) {
1563: # $result.="<option name=\"$_\"";
1564: # if ($_ eq $ENV{'form.sortby'}) {
1565: # $result.=" selected ";
1566: # }
1567: # $result.=" >$SortableFields{$_}</option>\n";
1568: # }
1569: # $result.="</select>\n";
1570: my $revise = &revise_button();
1571: $result.=<<END;
1572: <p>
1573: There are $total_results matches to your query. $revise
1574: </p><p>
1575: Search:$pretty_query_string
1576: </p>
1577: </form>
1578: </body>
1579: </html>
1580: END
1581: $r->print($result);
1582: return;
1583: }
1584:
1.144 matthew 1585: #####################################################################
1586: #####################################################################
1587:
1588: =pod
1589:
1590: =item MySQL Table Description
1591:
1592: MySQL table creation requires a precise description of the data to be
1593: stored. The use of the correct types to hold data is vital to efficient
1594: storage and quick retrieval of records. The columns must be described in
1595: the following format:
1596:
1597: =cut
1598:
1.170 matthew 1599: #####################################################################
1600: #####################################################################
1601:
1602: my @Datatypes =
1603: ( { name => 'id',
1604: type => 'MEDIUMINT',
1605: restrictions => 'UNSIGNED NOT NULL',
1606: primary_key => 'yes',
1607: auto_inc => 'yes' },
1608: { name => 'title', type=>'TEXT'},
1609: { name => 'author', type=>'TEXT'},
1610: { name => 'subject', type=>'TEXT'},
1611: { name => 'url', type=>'TEXT', restrictions => 'NOT NULL' },
1612: { name => 'keywords', type=>'TEXT'},
1613: { name => 'version', type=>'TEXT'},
1614: { name => 'notes', type=>'TEXT'},
1615: { name => 'abstract', type=>'TEXT'},
1616: { name => 'mime', type=>'TEXT'},
1.198 www 1617: { name => 'language', type=>'TEXT'},
1.170 matthew 1618: { name => 'owner', type=>'TEXT'},
1619: { name => 'copyright', type=>'TEXT'},
1.198 www 1620: { name => 'dependencies', type=>'TEXT'},
1621: { name => 'modifyinguser', type=>'TEXT'},
1622: { name => 'authorspace', type=>'TEXT'},
1623: { name => 'lowestgradelevel', type=>'INT'},
1624: { name => 'highestgradelevel', type=>'INT'},
1625: { name => 'standards', type=>'TEXT'},
1626: { name => 'count', type=>'INT'},
1627: { name => 'course', type=>'INT'},
1628: { name => 'course_list', type=>'TEXT'},
1629: { name => 'goto', type=>'INT'},
1630: { name => 'goto_list', type=>'TEXT'},
1631: { name => 'comefrom', type=>'INT'},
1632: { name => 'comefrom_list', type=>'TEXT'},
1633: { name => 'sequsage', type=>'INT'},
1634: { name => 'sequsage_list', type=>'TEXT'},
1635: { name => 'stdno', type=>'INT'},
1636: { name => 'stdno_list', type=>'TEXT'},
1637: { name => 'avetries', type=>'FLOAT'},
1638: { name => 'avetries_list', type=>'TEXT'},
1639: { name => 'difficulty', type=>'FLOAT'},
1640: { name => 'difficulty_list', type=>'TEXT'},
1641: { name => 'clear', type=>'FLOAT'},
1642: { name => 'technical', type=>'FLOAT'},
1643: { name => 'correct', type=>'FLOAT'},
1644: { name => 'helpful', type=>'FLOAT'},
1645: { name => 'depth', type=>'FLOAT'},
1646: { name => 'hostname', type=> 'TEXT'},
1.144 matthew 1647: #--------------------------------------------------
1.170 matthew 1648: { name => 'creationdate', type=>'DATETIME'},
1649: { name => 'lastrevisiondate', type=>'DATETIME'},
1.144 matthew 1650: #--------------------------------------------------
1651: );
1652:
1.147 matthew 1653: my @Fullindicies =
1.151 matthew 1654: qw/title/;
1655: # qw/title author subject abstract mime language owner copyright/;
1.147 matthew 1656:
1.144 matthew 1657: ######################################################################
1658: ######################################################################
1659:
1660: =pod
1661:
1.146 matthew 1662: =item &create_results_table()
1663:
1664: Creates the table of search results by calling lonmysql. Stores the
1665: table id in $ENV{'form.table'}
1666:
1667: Inputs: none.
1668:
1669: Returns: the identifier of the table on success, undef on error.
1670:
1671: =cut
1672:
1673: ######################################################################
1674: ######################################################################
1675: sub create_results_table {
1676: my $table = &Apache::lonmysql::create_table
1.170 matthew 1677: ( { columns => \@Datatypes,
1.172 matthew 1678: FULLTEXT => [{'columns' => \@Fullindicies},],
1.146 matthew 1679: } );
1680: if (defined($table)) {
1681: $ENV{'form.table'} = $table;
1682: return $table;
1683: }
1684: return undef; # Error...
1685: }
1.148 matthew 1686:
1.146 matthew 1687: ######################################################################
1688: ######################################################################
1689:
1690: =pod
1691:
1.150 matthew 1692: =item Search Status update functions
1.144 matthew 1693:
1.150 matthew 1694: Each of the following functions changes the values of one of the
1695: input fields used to display the search status to the user. The names
1696: should be explanatory.
1.144 matthew 1697:
1.150 matthew 1698: Inputs: Apache request handler ($r), text to display.
1.148 matthew 1699:
1.150 matthew 1700: Returns: Nothing.
1.148 matthew 1701:
1702: =over 4
1703:
1704: =item &update_count_status()
1705:
1.150 matthew 1706: =item &update_status()
1.148 matthew 1707:
1.150 matthew 1708: =item &update_seconds()
1.148 matthew 1709:
1710: =back
1711:
1712: =cut
1713:
1714: ######################################################################
1715: ######################################################################
1716: sub update_count_status {
1717: my ($r,$text) = @_;
1718: $text =~ s/\'/\\\'/g;
1719: $r->print
1720: ("<script>document.statusform.count.value = ' $text'</script>\n");
1721: $r->rflush();
1722: }
1723:
1.150 matthew 1724: sub update_status {
1.148 matthew 1725: my ($r,$text) = @_;
1726: $text =~ s/\'/\\\'/g;
1727: $r->print
1.150 matthew 1728: ("<script>document.statusform.status.value = ' $text'</script>\n");
1.148 matthew 1729: $r->rflush();
1730: }
1731:
1.150 matthew 1732: sub update_seconds {
1.148 matthew 1733: my ($r,$text) = @_;
1734: $text =~ s/\'/\\\'/g;
1735: $r->print
1.150 matthew 1736: ("<script>document.statusform.seconds.value = ' $text'</script>\n");
1.148 matthew 1737: $r->rflush();
1738: }
1739:
1740: ######################################################################
1741: ######################################################################
1742:
1743: =pod
1744:
1.151 matthew 1745: =item &revise_button
1746:
1747: Inputs: None
1748:
1749: Returns: html string for a 'revise search' button.
1750:
1751: =cut
1752:
1753: ######################################################################
1754: ######################################################################
1755: sub revise_button {
1756: my $revise_phase = 'disp_basic';
1757: $revise_phase = 'disp_adv' if ($ENV{'form.searchmode'} eq 'advanced');
1758: my $newloc = '/adm/searchcat'.
1759: '?persistent_db_id='.$ENV{'form.persistent_db_id'}.
1.158 matthew 1760: '&cleargroupsort=1'.
1.151 matthew 1761: '&phase='.$revise_phase;
1762: my $result = qq{<input type="button" value="Revise search" name="revise"} .
1763: qq{ onClick="parent.location='$newloc';" /> };
1764: return $result;
1765: }
1766:
1767: ######################################################################
1768: ######################################################################
1769:
1770: =pod
1771:
1.144 matthew 1772: =item &run_search
1773:
1774: =cut
1775:
1776: ######################################################################
1777: ######################################################################
1778: sub run_search {
1.146 matthew 1779: my ($r,$query,$customquery,$customshow,$serverlist,$pretty_string) = @_;
1.196 matthew 1780: my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.150 matthew 1781: my $connection = $r->connection;
1.144 matthew 1782: #
1.145 matthew 1783: # Timing variables
1784: #
1785: my $starttime = time;
1.151 matthew 1786: my $max_time = 30; # seconds for the search to complete
1.145 matthew 1787: #
1.146 matthew 1788: # Print run_search header
1789: #
1.151 matthew 1790: $r->print(<<END);
1791: <html>
1792: <head><title>Search Status</title></head>
1.155 matthew 1793: $bodytag
1.151 matthew 1794: <form name="statusform" action="" method="post">
1795: <input type="hidden" name="Queue" value="" />
1796: END
1797: # Check to see if $pretty_string has more than one carriage return.
1798: # Assume \n s are following <br /> s and truncate the value.
1799: # (there is probably a better way)...
1.152 matthew 1800: my @Lines = split /<br \/>/,$pretty_string;
1801: if (@Lines > 2) {
1802: $pretty_string = join '<br \>',(@Lines[0..2],'....<br />');
1.151 matthew 1803: }
1.187 www 1804: $r->print(&mt("Search").": ".$pretty_string);
1.146 matthew 1805: $r->rflush();
1806: #
1.145 matthew 1807: # Determine the servers we need to contact.
1808: #
1.144 matthew 1809: my @Servers_to_contact;
1810: if (defined($serverlist)) {
1.152 matthew 1811: if (ref($serverlist) eq 'ARRAY') {
1812: @Servers_to_contact = @$serverlist;
1813: } else {
1814: @Servers_to_contact = ($serverlist);
1815: }
1.144 matthew 1816: } else {
1817: @Servers_to_contact = sort(keys(%Apache::lonnet::libserv));
1818: }
1819: my %Server_status;
1.146 matthew 1820: my $table =$ENV{'form.table'};
1.150 matthew 1821: if (! defined($table) || $table eq '' || $table =~ /\D/ ) {
1.147 matthew 1822: $r->print("Unable to determine table id to store search results in.".
1.148 matthew 1823: "The search has been aborted.</body></html>");
1.147 matthew 1824: return;
1825: }
1826: my $table_status = &Apache::lonmysql::check_table($table);
1827: if (! defined($table_status)) {
1828: $r->print("Unable to determine status of table.</body></html>");
1829: &Apache::lonnet::logthis("Bogus table id of $table for ".
1830: "$ENV{'user.name'} @ $ENV{'user.domain'}");
1831: &Apache::lonnet::logthis("lonmysql error = ".
1.144 matthew 1832: &Apache::lonmysql::get_error());
1.147 matthew 1833: return;
1834: }
1835: if (! $table_status) {
1836: $r->print("The table id,$table, we tried to use is invalid.".
1.148 matthew 1837: "The search has been aborted.</body></html>");
1.144 matthew 1838: return;
1839: }
1.145 matthew 1840: ##
1.146 matthew 1841: ## Prepare for the big loop.
1842: ##
1.144 matthew 1843: my $hitcountsum;
1844: my $server;
1845: my $status;
1.151 matthew 1846: my $revise = &revise_button();
1.148 matthew 1847: $r->print(<<END);
1848: <table>
1.151 matthew 1849: <tr><th>Status</th><th>Total Matches</th><th>Time Remaining</th><th></th></tr>
1.148 matthew 1850: <tr>
1.150 matthew 1851: <td><input type="text" name="status" value="" size="30" /></td>
1852: <td><input type="text" name="count" value="" size="10" /></td>
1853: <td><input type="text" name="seconds" value="" size="8" /></td>
1.151 matthew 1854: <td>$revise</td>
1.148 matthew 1855: </tr>
1856: </table>
1857: </form>
1858: END
1859: $r->rflush();
1.150 matthew 1860: my $time_remaining = $max_time - (time - $starttime) ;
1861: my $last_time = $time_remaining;
1862: &update_seconds($r,$time_remaining);
1.178 matthew 1863: &update_status($r,'contacting '.$Servers_to_contact[0]);
1.159 matthew 1864: while (($time_remaining > 0) &&
1.144 matthew 1865: ((@Servers_to_contact) || keys(%Server_status))) {
1866: # Send out a search request if it needs to be done.
1867: if (@Servers_to_contact) {
1868: # Contact one server
1869: my $server = shift(@Servers_to_contact);
1.189 www 1870: &update_status($r,&mt('contacting').' '.$server);
1.144 matthew 1871: my $reply=&Apache::lonnet::metadata_query($query,$customquery,
1872: $customshow,[$server]);
1873: ($server) = keys(%$reply);
1874: $Server_status{$server} = $reply->{$server};
1875: } else {
1.150 matthew 1876: # wait a sec. to give time for files to be written
1877: # This sleep statement is here instead of outside the else
1878: # block because we do not want to pause if we have servers
1879: # left to contact.
1.183 matthew 1880: if (scalar (keys(%Server_status))) {
1881: &update_status($r,
1.189 www 1882: &mt('waiting on').' '.(join(' ',keys(%Server_status))));
1.183 matthew 1883: }
1.150 matthew 1884: sleep(1);
1.144 matthew 1885: }
1.159 matthew 1886: #
1887: #
1888: # Loop through the servers we have contacted but do not
1889: # have results from yet, looking for results.
1.144 matthew 1890: while (my ($server,$status) = each(%Server_status)) {
1.150 matthew 1891: last if ($connection->aborted());
1.144 matthew 1892: if ($status eq 'con_lost') {
1893: delete ($Server_status{$server});
1894: next;
1895: }
1896: $status=~/^([\.\w]+)$/;
1897: my $datafile=$r->dir_config('lonDaemons').'/tmp/'.$1;
1898: if (-e $datafile && ! -e "$datafile.end") {
1.189 www 1899: &update_status($r,&mt('Receiving results from').' '.$server);
1.144 matthew 1900: next;
1901: }
1.150 matthew 1902: last if ($connection->aborted());
1.144 matthew 1903: if (-e "$datafile.end") {
1.189 www 1904: &update_status($r,&mt('Reading results from').' '.$server);
1.144 matthew 1905: if (-z "$datafile") {
1906: delete($Server_status{$server});
1907: next;
1908: }
1909: my $fh;
1910: if (!($fh=Apache::File->new($datafile))) {
1.146 matthew 1911: $r->print("Unable to open search results file for ".
1.145 matthew 1912: "server $server. Omitting from search");
1.150 matthew 1913: delete($Server_status{$server});
1914: next;
1.144 matthew 1915: }
1916: # Read in the whole file.
1917: while (my $result = <$fh>) {
1.150 matthew 1918: last if ($connection->aborted());
1.144 matthew 1919: # handle custom fields? Someday we will!
1920: chomp($result);
1921: next unless $result;
1922: # Parse the result.
1923: my %Fields = &parse_raw_result($result,$server);
1924: $Fields{'hostname'} = $server;
1925: next if (! ©right_check(\%Fields));
1926: # Store the result in the mysql database
1927: my $result = &Apache::lonmysql::store_row($table,\%Fields);
1928: if (! defined($result)) {
1.146 matthew 1929: $r->print(&Apache::lonmysql::get_error());
1.144 matthew 1930: }
1.146 matthew 1931: # $r->print(&Apache::lonmysql::get_debug());
1.144 matthew 1932: $hitcountsum ++;
1.150 matthew 1933: $time_remaining = $max_time - (time - $starttime) ;
1934: if ($last_time - $time_remaining > 0) {
1935: &update_seconds($r,$time_remaining);
1936: $last_time = $time_remaining;
1937: }
1938: if ($hitcountsum % 50 == 0) {
1939: &update_count_status($r,$hitcountsum);
1940: }
1.144 matthew 1941: } # End of foreach (@results)
1942: $fh->close();
1943: # $server is only deleted if the results file has been
1944: # found and (successfully) opened. This may be a bad idea.
1945: delete($Server_status{$server});
1946: }
1.150 matthew 1947: last if ($connection->aborted());
1.148 matthew 1948: &update_count_status($r,$hitcountsum);
1.144 matthew 1949: }
1.150 matthew 1950: last if ($connection->aborted());
1.144 matthew 1951: # Finished looping through the servers
1.159 matthew 1952: $starttime = time if (@Servers_to_contact);
1.150 matthew 1953: $time_remaining = $max_time - (time - $starttime) ;
1954: if ($last_time - $time_remaining > 0) {
1955: $last_time = $time_remaining;
1956: &update_seconds($r,$time_remaining);
1957: }
1.144 matthew 1958: }
1.189 www 1959: &update_status($r,&mt('Search Complete').$server);
1.151 matthew 1960: &update_seconds($r,0);
1.144 matthew 1961: &Apache::lonmysql::disconnect_from_db();
1962: # We have run out of time or run out of servers to talk to and
1963: # results to get.
1.146 matthew 1964: $r->print("</body></html>");
1.153 matthew 1965: if ($ENV{'form.catalogmode'} ne 'groupsearch') {
1966: $r->print("<script>".
1967: "window.location='/adm/searchcat?".
1968: "phase=sort&".
1969: "persistent_db_id=$ENV{'form.persistent_db_id'}';".
1970: "</script>");
1971: }
1.144 matthew 1972: return;
1973: }
1974:
1975: ######################################################################
1976: ######################################################################
1977: =pod
1978:
1.146 matthew 1979: =item &prev_next_buttons
1.144 matthew 1980:
1981: =cut
1982:
1983: ######################################################################
1984: ######################################################################
1.146 matthew 1985: sub prev_next_buttons {
1.145 matthew 1986: my ($current_min,$show,$total,$parms) = @_;
1987: return '' if ($show eq 'all'); # No links if you get them all at once.
1988: my $links;
1989: ##
1990: ## Prev
1991: my $prev_min = $current_min - $show;
1.151 matthew 1992: $prev_min = 1 if $prev_min < 1;
1.145 matthew 1993: if ($prev_min < $current_min) {
1994: $links .= qq{
1.146 matthew 1995: <a href="/adm/searchcat?$parms&start=$prev_min&show=$show">prev</a>
1.145 matthew 1996: };
1.146 matthew 1997: } else {
1998: $links .= 'prev';
1.145 matthew 1999: }
2000: ##
2001: ## Pages.... Someday.
2002: ##
1.146 matthew 2003: $links .= qq{
2004: <a href="/adm/searchcat?$parms&start=$current_min&$show=$show">reload</a>
2005: };
1.145 matthew 2006: ##
2007: ## Next
2008: my $next_min = $current_min + $show;
1.146 matthew 2009: $next_min = $current_min if ($next_min > $total);
1.145 matthew 2010: if ($next_min != $current_min) {
1.146 matthew 2011: $links .= qq{
2012: <a href="/adm/searchcat?$parms&start=$next_min&show=$show">next</a>
1.145 matthew 2013: };
1.146 matthew 2014: } else {
2015: $links .= ' next';
1.144 matthew 2016: }
1.145 matthew 2017: return $links;
1.144 matthew 2018: }
2019: ######################################################################
2020: ######################################################################
2021:
2022: =pod
2023:
2024: =item &display_results
2025:
2026: =cut
2027:
2028: ######################################################################
2029: ######################################################################
2030: sub display_results {
1.196 matthew 2031: my ($r,$importbutton,$closebutton,$diropendb) = @_;
1.150 matthew 2032: my $connection = $r->connection;
2033: $r->print(&search_results_header($importbutton,$closebutton));
1.144 matthew 2034: ##
2035: ## Set viewing function
2036: ##
2037: my $viewfunction = $Views{$ENV{'form.viewselect'}};
2038: if (!defined($viewfunction)) {
2039: $r->print("Internal Error - Bad view selected.\n");
2040: $r->rflush();
2041: return;
2042: }
2043: ##
1.158 matthew 2044: ## $checkbox_num is a count of the number of checkboxes output on the
2045: ## page this is used only during catalogmode=groupsearch.
2046: my $checkbox_num = 0;
2047: ##
1.144 matthew 2048: ## Get the catalog controls setup
2049: ##
1.146 matthew 2050: my $action = "/adm/searchcat?phase=results";
2051: ##
1.147 matthew 2052: ## Deal with groupsearch
1.146 matthew 2053: ##
2054: if ($ENV{'form.catalogmode'} eq 'groupsearch') {
2055: if (! tie(%groupsearch_db,'GDBM_File',$diropendb,
1.148 matthew 2056: &GDBM_WRCREAT(),0640)) {
1.150 matthew 2057: $r->print('Unable to store import results.</form></body></html>');
1.146 matthew 2058: $r->rflush();
2059: return;
2060: }
1.144 matthew 2061: }
1.145 matthew 2062: ##
2063: ## Prepare the table for querying
2064: ##
1.144 matthew 2065: my $table = $ENV{'form.table'};
1.151 matthew 2066: return if (! &ensure_db_and_table($r,$table));
1.145 matthew 2067: ##
2068: ## Get the number of results
2069: ##
2070: my $total_results = &Apache::lonmysql::number_of_rows($table);
2071: if (! defined($total_results)) {
1.150 matthew 2072: $r->print("A MySQL error has occurred.</form></body></html>");
1.145 matthew 2073: &Apache::lonnet::logthis("lonmysql was unable to determine the number".
2074: " of rows in table ".$table);
2075: &Apache::lonnet::logthis(&Apache::lonmysql::get_error());
2076: return;
2077: }
2078: ##
2079: ## Determine how many results we need to get
2080: ##
1.151 matthew 2081: $ENV{'form.start'} = 1 if (! exists($ENV{'form.start'}));
2082: $ENV{'form.show'} = 'all' if (! exists($ENV{'form.show'}));
1.146 matthew 2083: my $min = $ENV{'form.start'};
1.145 matthew 2084: my $max;
2085: if ($ENV{'form.show'} eq 'all') {
2086: $max = $total_results ;
2087: } else {
1.151 matthew 2088: $max = $min + $ENV{'form.show'} - 1;
1.146 matthew 2089: $max = $total_results if ($max > $total_results);
1.145 matthew 2090: }
2091: ##
2092: ## Output links (if necessary) for 'prev' and 'next' pages.
2093: ##
1.146 matthew 2094: $r->print
1.148 matthew 2095: ('<center>'.
1.146 matthew 2096: &prev_next_buttons($min,$ENV{'form.show'},$total_results,
2097: "table=".$ENV{'form.table'}.
2098: "&phase=results".
2099: "&persistent_db_id=".$ENV{'form.persistent_db_id'})
1.148 matthew 2100: ."</center>\n"
1.146 matthew 2101: );
1.150 matthew 2102: if ($total_results == 0) {
1.181 matthew 2103: $r->print('<meta HTTP-EQUIV="Refresh" CONTENT="1">'.
1.187 www 2104: '<h3>'.&mt('There are currently no results').'.</h3>'.
1.150 matthew 2105: "</form></body></html>");
2106: return;
2107: } else {
2108: $r->print
2109: ("<center>Results $min to $max out of $total_results</center>\n");
2110: }
1.145 matthew 2111: ##
2112: ## Get results from MySQL table
2113: ##
2114: my @Results = &Apache::lonmysql::get_rows($table,
1.151 matthew 2115: 'id>='.$min.' AND id<='.$max);
1.145 matthew 2116: ##
2117: ## Loop through the results and output them.
2118: ##
1.144 matthew 2119: foreach my $row (@Results) {
1.150 matthew 2120: if ($connection->aborted()) {
1.162 www 2121: &cleanup();
1.150 matthew 2122: return;
2123: }
1.144 matthew 2124: my %Fields = %{&parse_row(@$row)};
1.145 matthew 2125: my $output="<p>\n";
1.158 matthew 2126: my $prefix=&catalogmode_output($Fields{'title'},$Fields{'url'},
2127: $Fields{'id'},$checkbox_num++);
1.144 matthew 2128: # Render the result into html
1.150 matthew 2129: $output.= &$viewfunction($prefix,%Fields);
1.145 matthew 2130: # Print them out as they come in.
1.144 matthew 2131: $r->print($output);
2132: $r->rflush();
2133: }
2134: if (@Results < 1) {
1.187 www 2135: $r->print(&mt("There were no results matching your query"));
1.147 matthew 2136: } else {
2137: $r->print
1.148 matthew 2138: ('<center>'.
1.147 matthew 2139: &prev_next_buttons($min,$ENV{'form.show'},$total_results,
2140: "table=".$ENV{'form.table'}.
2141: "&phase=results".
2142: "&persistent_db_id=".
2143: $ENV{'form.persistent_db_id'})
1.148 matthew 2144: ."</center>\n"
1.147 matthew 2145: );
1.144 matthew 2146: }
1.150 matthew 2147: $r->print("</form></body></html>");
1.144 matthew 2148: $r->rflush();
1.150 matthew 2149: untie %groupsearch_db if (tied(%groupsearch_db));
1.144 matthew 2150: return;
2151: }
2152:
2153: ######################################################################
2154: ######################################################################
2155:
2156: =pod
2157:
1.158 matthew 2158: =item &catalogmode_output($title,$url,$fnum,$checkbox_num)
1.145 matthew 2159:
2160: Returns html needed for the various catalog modes. Gets inputs from
1.158 matthew 2161: $ENV{'form.catalogmode'}. Stores data in %groupsearch_db.
1.145 matthew 2162:
2163: =cut
2164:
2165: ######################################################################
2166: ######################################################################
2167: sub catalogmode_output {
2168: my $output = '';
1.158 matthew 2169: my ($title,$url,$fnum,$checkbox_num) = @_;
1.145 matthew 2170: if ($ENV{'form.catalogmode'} eq 'interactive') {
1.150 matthew 2171: $title=~ s/\'/\\\'/g;
1.145 matthew 2172: if ($ENV{'form.catalogmode'} eq 'interactive') {
2173: $output.=<<END
2174: <font size='-1'><INPUT TYPE="button" NAME="returnvalues" VALUE="SELECT"
2175: onClick="javascript:select_data('$title','$url')">
2176: </font>
2177: END
2178: }
1.150 matthew 2179: } elsif ($ENV{'form.catalogmode'} eq 'groupsearch') {
1.145 matthew 2180: $groupsearch_db{"pre_${fnum}_link"}=$url;
2181: $groupsearch_db{"pre_${fnum}_title"}=$title;
2182: $output.=<<END;
2183: <font size='-1'>
2184: <input type="checkbox" name="returnvalues" value="SELECT"
1.158 matthew 2185: onClick="javascript:queue($checkbox_num,$fnum)" />
1.145 matthew 2186: </font>
2187: END
2188: }
2189: return $output;
2190: }
2191: ######################################################################
2192: ######################################################################
2193:
2194: =pod
2195:
1.144 matthew 2196: =item &parse_row
2197:
2198: Parse a row returned from the database.
2199:
2200: =cut
2201:
2202: ######################################################################
2203: ######################################################################
2204: sub parse_row {
2205: my @Row = @_;
2206: my %Fields;
2207: for (my $i=0;$i<=$#Row;$i++) {
1.170 matthew 2208: $Fields{$Datatypes[$i]->{'name'}}=&Apache::lonnet::unescape($Row[$i]);
1.144 matthew 2209: }
2210: $Fields{'language'} =
1.198 www 2211: &Apache::loncommon::languagedescription($Fields{'language'});
1.144 matthew 2212: $Fields{'copyrighttag'} =
2213: &Apache::loncommon::copyrightdescription($Fields{'copyright'});
2214: $Fields{'mimetag'} =
2215: &Apache::loncommon::filedescription($Fields{'mime'});
2216: return \%Fields;
2217: }
1.126 matthew 2218:
2219: ###########################################################
2220: ###########################################################
2221:
2222: =pod
2223:
2224: =item &parse_raw_result()
2225:
2226: Takes a line from the file of results and parse it. Returns a hash
1.198 www 2227: with keys according to column labels
1.126 matthew 2228:
2229: In addition, the following tags are set by calling the appropriate
1.198 www 2230: lonnet function: 'language', 'copyrighttag', 'mimetag'.
1.126 matthew 2231:
2232: The 'title' field is set to "Untitled" if the title field is blank.
2233:
2234: 'abstract' and 'keywords' are truncated to 200 characters.
2235:
2236: =cut
2237:
2238: ###########################################################
2239: ###########################################################
2240: sub parse_raw_result {
2241: my ($result,$hostname) = @_;
1.198 www 2242: # conclude from self to others regarding fields
1.199 www 2243: my %Fields=&Apache::lonmeta::metadata_col_to_hash(
2244: map {
2245: &Apache::lonnet::unescape($_);
2246: } (split(/\,/,$result))
2247: );
1.126 matthew 2248: return %Fields;
2249: }
2250:
2251: ###########################################################
2252: ###########################################################
2253:
2254: =pod
2255:
2256: =item &handle_custom_fields()
2257:
2258: =cut
2259:
2260: ###########################################################
2261: ###########################################################
2262: sub handle_custom_fields {
2263: my @results = @{shift()};
2264: my $customshow='';
2265: my $extrashow='';
2266: my @customfields;
2267: if ($ENV{'form.customshow'}) {
2268: $customshow=$ENV{'form.customshow'};
2269: $customshow=~s/[^\w\s]//g;
2270: my @fields=map {
2271: "<font color=\"#008000\">$_:</font><!-- $_ -->";
2272: } split(/\s+/,$customshow);
2273: @customfields=split(/\s+/,$customshow);
2274: if ($customshow) {
2275: $extrashow="<ul><li>".join("</li><li>",@fields)."</li></ul>\n";
2276: }
2277: }
2278: my $customdata='';
2279: my %customhash;
2280: foreach my $result (@results) {
2281: if ($result=~/^(custom\=.*)$/) { # grab all custom metadata
2282: my $tmp=$result;
2283: $tmp=~s/^custom\=//;
2284: my ($k,$v)=map {&Apache::lonnet::unescape($_);
2285: } split(/\,/,$tmp);
2286: $customhash{$k}=$v;
2287: }
2288: }
2289: return ($extrashow,\@customfields,\%customhash);
1.41 harris41 2290: }
2291:
1.122 matthew 2292: ######################################################################
2293: ######################################################################
2294:
1.125 matthew 2295: =pod
2296:
2297: =item &search_results_header
2298:
1.130 matthew 2299: Output the proper html headers and javascript code to deal with different
2300: calling modes.
2301:
2302: Takes most inputs directly from %ENV, except $mode.
2303:
2304: =over 4
2305:
2306: =item $mode is either (at this writing) 'Basic' or 'Advanced'
2307:
2308: =back
1.126 matthew 2309:
1.130 matthew 2310: The following environment variables are checked:
1.126 matthew 2311:
2312: =over 4
2313:
2314: =item 'form.catalogmode'
2315:
2316: Checked for 'interactive' and 'groupsearch'.
2317:
2318: =item 'form.mode'
2319:
2320: Checked for existance & 'edit' mode.
2321:
2322: =item 'form.form'
2323:
1.191 albertel 2324: Contains the name of the form that has the input fields to set
2325:
1.126 matthew 2326: =item 'form.element'
2327:
1.191 albertel 2328: the name of the input field to put the URL into
2329:
2330: =item 'form.titleelement'
2331:
2332: the name of the input field to put the title into
2333:
1.126 matthew 2334: =back
2335:
1.125 matthew 2336: =cut
2337:
2338: ######################################################################
2339: ######################################################################
2340: sub search_results_header {
1.150 matthew 2341: my ($importbutton,$closebutton) = @_;
1.196 matthew 2342: my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.125 matthew 2343: my $result = '';
2344: # output beginning of search page
2345: # conditional output of script functions dependent on the mode in
2346: # which the search was invoked
2347: if ($ENV{'form.catalogmode'} eq 'interactive'){
2348: if (! exists($ENV{'form.mode'}) || $ENV{'form.mode'} ne 'edit') {
2349: $result.=<<SCRIPT;
2350: <script type="text/javascript">
2351: function select_data(title,url) {
2352: changeTitle(title);
2353: changeURL(url);
1.150 matthew 2354: parent.close();
1.125 matthew 2355: }
2356: function changeTitle(val) {
1.153 matthew 2357: if (parent.opener.inf.document.forms.resinfo.elements.t) {
2358: parent.opener.inf.document.forms.resinfo.elements.t.value=val;
1.125 matthew 2359: }
2360: }
2361: function changeURL(val) {
1.153 matthew 2362: if (parent.opener.inf.document.forms.resinfo.elements.u) {
2363: parent.opener.inf.document.forms.resinfo.elements.u.value=val;
1.125 matthew 2364: }
2365: }
2366: </script>
2367: SCRIPT
2368: } elsif ($ENV{'form.mode'} eq 'edit') {
2369: my $form = $ENV{'form.form'};
2370: my $element = $ENV{'form.element'};
1.191 albertel 2371: my $titleelement = $ENV{'form.titleelement'};
2372: my $changetitle;
2373: if (!$titleelement) {
2374: $changetitle='function changeTitle(val) {}';
2375: } else {
2376: $changetitle=<<END;
2377: function changeTitle(val) {
2378: if (parent.targetwin.document) {
2379: parent.targetwin.document.forms["$form"].elements["$titleelement"].value=val;
2380: } else {
2381: var url = 'forms[\"$form\"].elements[\"$titleelement\"].value';
2382: alert("Unable to transfer data to "+url);
2383: }
2384: }
2385: END
2386: }
2387:
1.125 matthew 2388: $result.=<<SCRIPT;
2389: <script type="text/javascript">
2390: function select_data(title,url) {
2391: changeURL(url);
1.191 albertel 2392: changeTitle(title);
1.150 matthew 2393: parent.close();
1.125 matthew 2394: }
1.191 albertel 2395: $changetitle
1.125 matthew 2396: function changeURL(val) {
1.150 matthew 2397: if (parent.targetwin.document) {
2398: parent.targetwin.document.forms["$form"].elements["$element"].value=val;
1.125 matthew 2399: } else {
2400: var url = 'forms[\"$form\"].elements[\"$element\"].value';
2401: alert("Unable to transfer data to "+url);
2402: }
2403: }
2404: </script>
2405: SCRIPT
2406: }
2407: }
2408: $result.=<<SCRIPT if $ENV{'form.catalogmode'} eq 'groupsearch';
2409: <script type="text/javascript">
1.158 matthew 2410: function queue(checkbox_num,val) {
1.185 matthew 2411: if (document.forms.results.returnvalues.length != "undefined" &&
2412: typeof(document.forms.results.returnvalues.length) == "number") {
2413: if (document.forms.results.returnvalues[checkbox_num].checked) {
2414: parent.statusframe.document.forms.statusform.elements.Queue.value +='1a'+val+'b';
2415: } else {
2416: parent.statusframe.document.forms.statusform.elements.Queue.value +='0a'+val+'b';
2417: }
1.150 matthew 2418: } else {
1.185 matthew 2419: if (document.forms.results.returnvalues.checked) {
2420: parent.statusframe.document.forms.statusform.elements.Queue.value +='1a'+val+'b';
2421: } else {
2422: parent.statusframe.document.forms.statusform.elements.Queue.value +='0a'+val+'b';
2423: }
1.150 matthew 2424: }
1.125 matthew 2425: }
2426: function select_group() {
1.150 matthew 2427: parent.window.location=
1.125 matthew 2428: "/adm/groupsort?mode=$ENV{'form.mode'}&catalogmode=groupsearch&acts="+
1.150 matthew 2429: parent.statusframe.document.forms.statusform.elements.Queue.value;
1.125 matthew 2430: }
2431: </script>
2432: SCRIPT
1.130 matthew 2433: $result.=<<END;
2434: </head>
1.155 matthew 2435: $bodytag
1.150 matthew 2436: <form name="results" method="post" action="" >
2437: <input type="hidden" name="Queue" value="" />
2438: $importbutton
1.130 matthew 2439: END
1.125 matthew 2440: return $result;
2441: }
2442:
2443: ######################################################################
2444: ######################################################################
1.146 matthew 2445: sub search_status_header {
1.196 matthew 2446: my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.146 matthew 2447: return <<ENDSTATUS;
2448: <html><head><title>Search Status</title></head>
1.155 matthew 2449: $bodytag
1.146 matthew 2450: <h3>Search Status</h3>
2451: Sending search request to LON-CAPA servers.<br />
2452: ENDSTATUS
2453: }
2454:
1.150 matthew 2455: sub results_link {
2456: my $basic_link = "/adm/searchcat?"."&table=".$ENV{'form.table'}.
2457: "&persistent_db_id=".$ENV{'form.persistent_db_id'};
2458: my $results_link = $basic_link."&phase=results".
1.151 matthew 2459: "&pause=1"."&start=1";
1.150 matthew 2460: return $results_link;
2461: }
2462:
1.146 matthew 2463: ######################################################################
2464: ######################################################################
2465: sub print_frames_interface {
2466: my $r = shift;
2467: my $basic_link = "/adm/searchcat?"."&table=".$ENV{'form.table'}.
2468: "&persistent_db_id=".$ENV{'form.persistent_db_id'};
2469: my $run_search_link = $basic_link."&phase=run_search";
1.150 matthew 2470: my $results_link = &results_link();
1.146 matthew 2471: my $result = <<"ENDFRAMES";
2472: <html>
2473: <head>
1.150 matthew 2474: <script>
2475: var targetwin = opener;
1.158 matthew 2476: var queue = '';
1.150 matthew 2477: </script>
1.146 matthew 2478: <title>LON-CAPA Digital Library Search Results</title>
2479: </head>
1.176 www 2480: <frameset rows="150,*">
1.146 matthew 2481: <frame name="statusframe" src="$run_search_link">
2482: <frame name="resultsframe" src="$results_link">
2483: </frameset>
2484: </html>
2485: ENDFRAMES
2486:
2487: $r->print($result);
2488: return;
2489: }
2490:
2491: ######################################################################
2492: ######################################################################
1.125 matthew 2493:
1.122 matthew 2494: =pod
2495:
2496: =item Metadata Viewing Functions
2497:
2498: Output is a HTML-ified string.
2499: Input arguments are title, author, subject, url, keywords, version,
2500: notes, short abstract, mime, language, creation date,
1.126 matthew 2501: last revision date, owner, copyright, hostname, and
1.122 matthew 2502: extra custom metadata to show.
2503:
2504: =over 4
2505:
2506: =item &detailed_citation_view()
2507:
2508: =cut
2509:
2510: ######################################################################
2511: ######################################################################
1.50 harris41 2512: sub detailed_citation_view {
1.150 matthew 2513: my ($prefix,%values) = @_;
1.192 albertel 2514: my $icon=&Apache::loncommon::icon($values{'url'});
1.50 harris41 2515: my $result=<<END;
1.192 albertel 2516: <b>$prefix<img src="$icon" /><a href="http://$ENV{'HTTP_HOST'}$values{'url'}"
1.150 matthew 2517: target='search_preview'>$values{'title'}</a></b>
1.56 harris41 2518: <p>
1.130 matthew 2519: <b>$values{'author'}</b>, <i>$values{'owner'}</i><br />
2520:
2521: <b>Subject: </b> $values{'subject'}<br />
2522: <b>Keyword(s): </b> $values{'keywords'}<br />
2523: <b>Notes: </b> $values{'notes'}<br />
2524: <b>MIME Type: </b> $values{'mimetag'}<br />
2525: <b>Language: </b> $values{'language'}<br />
1.198 www 2526: <b>Copyright/Distribution:</b> $values{'copyrighttag'}<br />
1.78 harris41 2527: </p>
1.126 matthew 2528: $values{'extrashow'}
1.78 harris41 2529: <p>
1.126 matthew 2530: $values{'shortabstract'}
1.50 harris41 2531: </p>
1.150 matthew 2532: <hr align='left' width='200' noshade />
1.50 harris41 2533: END
2534: return $result;
2535: }
2536:
1.122 matthew 2537: ######################################################################
2538: ######################################################################
2539:
2540: =pod
2541:
2542: =item &summary_view()
2543:
2544: =cut
2545: ######################################################################
2546: ######################################################################
1.50 harris41 2547: sub summary_view {
1.150 matthew 2548: my ($prefix,%values) = @_;
1.192 albertel 2549: my $icon=&Apache::loncommon::icon($values{'url'});
1.50 harris41 2550: my $result=<<END;
1.192 albertel 2551: $prefix<img src="$icon" /><a href="http://$ENV{'HTTP_HOST'}$values{'url'}"
1.126 matthew 2552: target='search_preview'>$values{'author'}</a><br />
2553: $values{'title'}<br />
2554: $values{'owner'} -- $values{'lastrevisiondate'}<br />
2555: $values{'copyrighttag'}<br />
2556: $values{'extrashow'}
1.50 harris41 2557: </p>
1.150 matthew 2558: <hr align='left' width='200' noshade />
1.50 harris41 2559: END
2560: return $result;
2561: }
2562:
1.122 matthew 2563: ######################################################################
2564: ######################################################################
2565:
2566: =pod
2567:
1.150 matthew 2568: =item &compact_view()
2569:
2570: =cut
2571:
2572: ######################################################################
2573: ######################################################################
2574: sub compact_view {
2575: my ($prefix,%values) = @_;
1.192 albertel 2576: my $icon=&Apache::loncommon::icon($values{'url'});
1.150 matthew 2577: my $result=<<END;
1.192 albertel 2578: $prefix <img src="$icon" /> <a href="http://$ENV{'HTTP_HOST'}$values{'url'}" target='search_preview'>
1.150 matthew 2579: $values{'title'}</a>
2580: <b>$values{'author'}</b><br />
2581: END
2582: return $result;
2583: }
2584:
2585:
2586: ######################################################################
2587: ######################################################################
2588:
2589: =pod
2590:
1.122 matthew 2591: =item &fielded_format_view()
2592:
2593: =cut
2594:
2595: ######################################################################
2596: ######################################################################
1.50 harris41 2597: sub fielded_format_view {
1.150 matthew 2598: my ($prefix,%values) = @_;
1.192 albertel 2599: my $icon=&Apache::loncommon::icon($values{'url'});
1.50 harris41 2600: my $result=<<END;
1.192 albertel 2601: $prefix <img src="$icon" />
1.126 matthew 2602: <b>URL: </b> <a href="http://$ENV{'HTTP_HOST'}$values{'url'}"
2603: target='search_preview'>$values{'url'}</a>
1.56 harris41 2604: <br />
1.126 matthew 2605: <b>Title:</b> $values{'title'}<br />
2606: <b>Author(s):</b> $values{'author'}<br />
2607: <b>Subject:</b> $values{'subject'}<br />
2608: <b>Keyword(s):</b> $values{'keywords'}<br />
2609: <b>Notes:</b> $values{'notes'}<br />
2610: <b>MIME Type:</b> $values{'mimetag'}<br />
2611: <b>Language:</b> $values{'language'}<br />
2612: <b>Creation Date:</b> $values{'creationdate'}<br />
2613: <b>Last Revision Date:</b> $values{'lastrevisiondate'}<br />
2614: <b>Publisher/Owner:</b> $values{'owner'}<br />
2615: <b>Copyright/Distribution:</b> $values{'copyrighttag'}<br />
2616: <b>Repository Location:</b> $values{'hostname'}<br />
2617: <b>Abstract:</b> $values{'shortabstract'}<br />
2618: $values{'extrashow'}
1.50 harris41 2619: </p>
1.150 matthew 2620: <hr align='left' width='200' noshade />
1.50 harris41 2621: END
2622: return $result;
2623: }
2624:
1.122 matthew 2625: ######################################################################
2626: ######################################################################
2627:
2628: =pod
2629:
2630: =item &xml_sgml_view()
2631:
2632: =back
2633:
2634: =cut
2635:
2636: ######################################################################
2637: ######################################################################
1.50 harris41 2638: sub xml_sgml_view {
1.150 matthew 2639: my ($prefix,%values) = @_;
1.50 harris41 2640: my $result=<<END;
1.150 matthew 2641: $prefix
1.56 harris41 2642: <pre>
2643: <LonCapaResource>
1.126 matthew 2644: <url>$values{'url'}</url>
2645: <title>$values{'title'}</title>
2646: <author>$values{'author'}</author>
2647: <subject>$values{'subject'}</subject>
2648: <keywords>$values{'keywords'}</keywords>
2649: <notes>$values{'notes'}</notes>
1.56 harris41 2650: <mimeInfo>
1.126 matthew 2651: <mime>$values{'mime'}</mime>
2652: <mimetag>$values{'mimetag'}</mimetag>
1.56 harris41 2653: </mimeInfo>
2654: <languageInfo>
1.198 www 2655: <language>$values{'language'}</language>
2656: <languagetag>$values{'languagetag'}</languagetag>
1.56 harris41 2657: </languageInfo>
1.126 matthew 2658: <creationdate>$values{'creationdate'}</creationdate>
2659: <lastrevisiondate>$values{'lastrevisiondate'}</lastrevisiondate>
2660: <owner>$values{'owner'}</owner>
1.56 harris41 2661: <copyrightInfo>
1.126 matthew 2662: <copyright>$values{'copyright'}</copyright>
2663: <copyrighttag>$values{'copyrighttag'}</copyrighttag>
1.56 harris41 2664: </copyrightInfo>
1.126 matthew 2665: <repositoryLocation>$values{'hostname'}</repositoryLocation>
2666: <shortabstract>$values{'shortabstract'}</shortabstract>
1.57 harris41 2667: </LonCapaResource>
1.56 harris41 2668: </pre>
1.126 matthew 2669: $values{'extrashow'}
1.150 matthew 2670: <hr align='left' width='200' noshade />
1.50 harris41 2671: END
2672: return $result;
1.60 harris41 2673: }
2674:
1.122 matthew 2675: ######################################################################
2676: ######################################################################
2677:
2678: =pod
2679:
2680: =item &filled() see if field is filled.
2681:
2682: =cut
2683:
2684: ######################################################################
2685: ######################################################################
1.98 harris41 2686: sub filled {
2687: my ($field)=@_;
2688: if ($field=~/\S/ && $field ne 'any') {
2689: return 1;
1.61 harris41 2690: }
1.98 harris41 2691: else {
2692: return 0;
1.61 harris41 2693: }
1.60 harris41 2694: }
2695:
1.122 matthew 2696: ######################################################################
2697: ######################################################################
2698:
2699: =pod
2700:
2701: =item &output_blank_field_error()
2702:
1.151 matthew 2703: Output a complete page that indicates the user has not filled in enough
2704: information to do a search.
2705:
2706: Inputs: $r (Apache request handle), $closebutton, $parms.
2707:
2708: Returns: nothing
2709:
2710: $parms is extra information to include in the 'Revise search request' link.
2711:
1.122 matthew 2712: =cut
2713:
2714: ######################################################################
2715: ######################################################################
1.98 harris41 2716: sub output_blank_field_error {
1.196 matthew 2717: my ($r,$closebutton,$parms,$hidden_fields)=@_;
2718: my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.98 harris41 2719: # make query information persistent to allow for subsequent revision
2720: $r->print(<<BEGINNING);
2721: <html>
2722: <head>
2723: <title>The LearningOnline Network with CAPA</title>
2724: BEGINNING
2725: $r->print(<<RESULTS);
2726: </head>
1.155 matthew 2727: $bodytag
1.98 harris41 2728: <img align='right' src='/adm/lonIcons/lonlogos.gif' />
2729: <h1>Search Catalog</h1>
2730: <form method="post" action="/adm/searchcat">
1.145 matthew 2731: $hidden_fields
1.151 matthew 2732: <a href="/adm/searchcat?$parms&persistent_db_id=$ENV{'form.persistent_db_id'}"
1.146 matthew 2733: >Revise search request</a>
1.98 harris41 2734: $closebutton
2735: <hr />
1.151 matthew 2736: <h3>Unactionable search query.</h3>
1.98 harris41 2737: <p>
1.151 matthew 2738: You did not fill in enough information for the search to be started.
2739: You need to fill in relevant fields on the search page in order
2740: for a query to be processed.
1.98 harris41 2741: </p>
2742: </body>
2743: </html>
2744: RESULTS
2745: }
2746:
1.122 matthew 2747: ######################################################################
2748: ######################################################################
2749:
2750: =pod
2751:
2752: =item &output_date_error()
2753:
2754: Output a full html page with an error message.
2755:
1.145 matthew 2756: Inputs:
2757:
2758: $r, the request pointer.
2759: $message, the error message for the user.
2760: $closebutton, the specialized close button needed for groupsearch.
2761:
1.122 matthew 2762: =cut
2763:
2764: ######################################################################
2765: ######################################################################
1.60 harris41 2766: sub output_date_error {
1.196 matthew 2767: my ($r,$message,$closebutton,$hidden_fields)=@_;
1.60 harris41 2768: # make query information persistent to allow for subsequent revision
1.196 matthew 2769: my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
1.122 matthew 2770: $r->print(<<RESULTS);
1.60 harris41 2771: <html>
2772: <head>
2773: <title>The LearningOnline Network with CAPA</title>
2774: </head>
1.155 matthew 2775: $bodytag
1.98 harris41 2776: <img align='right' src='/adm/lonIcons/lonlogos.gif' />
1.60 harris41 2777: <h1>Search Catalog</h1>
2778: <form method="post" action="/adm/searchcat">
1.145 matthew 2779: $hidden_fields
1.60 harris41 2780: <input type='button' value='Revise search request'
1.98 harris41 2781: onClick='this.form.submit();' />
1.60 harris41 2782: $closebutton
1.98 harris41 2783: <hr />
1.151 matthew 2784: <h3>Error</h3>
1.60 harris41 2785: <p>
2786: $message
2787: </p>
2788: </body>
2789: </html>
2790: RESULTS
1.101 harris41 2791: }
2792:
1.122 matthew 2793: ######################################################################
2794: ######################################################################
2795:
2796: =pod
2797:
2798: =item &start_fresh_session()
2799:
1.142 matthew 2800: Cleans the global %groupsearch_db by removing all fields which begin with
1.122 matthew 2801: 'pre_' or 'store'.
2802:
2803: =cut
2804:
2805: ######################################################################
2806: ######################################################################
1.101 harris41 2807: sub start_fresh_session {
1.142 matthew 2808: delete $groupsearch_db{'mode_catalog'};
2809: foreach (keys %groupsearch_db) {
1.101 harris41 2810: if ($_ =~ /^pre_/) {
1.142 matthew 2811: delete $groupsearch_db{$_};
1.101 harris41 2812: }
2813: if ($_ =~ /^store/) {
1.142 matthew 2814: delete $groupsearch_db{$_};
1.101 harris41 2815: }
1.109 harris41 2816: }
1.3 harris41 2817: }
1.1 www 2818:
2819: 1;
1.162 www 2820:
2821: sub cleanup {
1.163 www 2822: if (tied(%groupsearch_db)) {
2823: unless (untie(%groupsearch_db)) {
2824: &Apache::lonnet::logthis('Failed cleanup searchcat: groupsearch_db');
2825: }
2826: }
1.167 www 2827: &untiehash();
1.162 www 2828: &Apache::lonmysql::disconnect_from_db();
2829: }
1.98 harris41 2830:
1.1 www 2831: __END__
1.105 harris41 2832:
1.121 matthew 2833: =pod
1.105 harris41 2834:
1.121 matthew 2835: =back
1.105 harris41 2836:
2837: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>