Annotation of loncom/interface/groupsort.pm, revision 1.27
1.1 harris41 1: # The LearningOnline Network with CAPA
1.4 harris41 2: # The LON-CAPA group sort handler
3: # Allows for sorting prior to import into RAT.
4: #
1.27 ! taceyjo1 5: # $Id: groupsort.pm,v 1.26 2004/01/19 18:17:29 albertel Exp $
1.4 harris41 6: #
7: # Copyright Michigan State University Board of Trustees
8: #
9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
10: #
11: # LON-CAPA is free software; you can redistribute it and/or modify
12: # it under the terms of the GNU General Public License as published by
13: # the Free Software Foundation; either version 2 of the License, or
14: # (at your option) any later version.
15: #
16: # LON-CAPA is distributed in the hope that it will be useful,
17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19: # GNU General Public License for more details.
1.1 harris41 20: #
1.4 harris41 21: # You should have received a copy of the GNU General Public License
22: # along with LON-CAPA; if not, write to the Free Software
23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24: #
25: # /home/httpd/html/adm/gpl.txt
1.1 harris41 26: #
1.4 harris41 27: # http://www.lon-capa.org/
1.1 harris41 28: #
29: # YEAR=2001
1.6 harris41 30: # YEAR=2002
1.4 harris41 31: #
32: ###
1.1 harris41 33:
34: package Apache::groupsort;
35:
36: use strict;
37:
38: use Apache::Constants qw(:common);
39: use GDBM_File;
1.15 www 40: use Apache::loncommon;
1.23 www 41: use Apache::lonlocal;
1.27 ! taceyjo1 42: use Apache::lonnet;
1.1 harris41 43:
1.2 harris41 44: my %hash; # variable to tie to user specific database
45: my $iconpath; # variable to be accessible to multiple subroutines
1.17 www 46:
47: sub cleanup {
1.18 www 48: if (tied(%hash)){
49: &Apache::lonnet::logthis('Cleanup groupsort: hash');
50: unless (untie(%hash)) {
51: &Apache::lonnet::logthis('Failed cleanup groupsort: hash');
52: }
53: }
1.17 www 54: }
1.2 harris41 55:
56: # ---------------------------------------------------------------- Main Handler
1.1 harris41 57: sub handler {
58: my $r = shift;
1.9 www 59:
60: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
61: ['acts','catalogmode','mode']);
1.2 harris41 62: # color scheme
63: my $fileclr = '#ffffe6';
64: my $titleclr = '#ddffff';
65:
1.23 www 66: &Apache::loncommon::content_type($r,'text/html');
1.1 harris41 67: $r->send_http_header;
68: return OK if $r->header_only;
1.2 harris41 69:
1.8 www 70: # finish_import looks different for graphical or "simple" RAT
71: my $finishimport='';
1.24 matthew 72: if ($ENV{'form.mode'} eq 'simple' || $ENV{'form.mode'} eq '') {
1.8 www 73: $finishimport=(<<ENDSMP);
74: function finish_import() {
1.10 www 75: opener.document.forms.simpleedit.importdetail.value='';
76: for (var num=0; num<document.forms.groupsort.fnum.value; num++) {
77: opener.document.forms.simpleedit.importdetail.value+='&'+
78: escape(eval("document.forms.groupsort.title"+num+".value"))+'='+
79: escape(eval("document.forms.groupsort.filelink"+num+".value"));
80: }
81: opener.document.forms.simpleedit.submit();
82: self.close();
1.8 www 83: }
84: ENDSMP
85: } else {
86: $finishimport=(<<ENDADV);
87: function finish_import() {
88: var linkflag=false;
89: for (var num=0; num<document.forms.groupsort.fnum.value; num++) {
90: insertRowInLastRow();
91: placeResourceInLastRow(
92: eval("document.forms.groupsort.title"+num+".value"),
93: eval("document.forms.groupsort.filelink"+num+".value"),
94: linkflag
95: );
96: linkflag=true;
97: }
98: opener.editmode=0;
99: opener.notclear=0;
100: opener.linkmode=0;
101: opener.draw();
102: self.close();
103: }
104: ENDADV
105: }
106:
107: # output start of web page
108:
1.1 harris41 109: $r->print(<<END);
110: <html>
111: <head>
112: <title>The LearningOnline Network With CAPA Group Sorter</title>
113: <script language='javascript'>
114: function insertRowInLastRow() {
115: opener.insertrow(opener.maxrow);
116: opener.addobj(opener.maxrow,'e&2');
117: }
118: function placeResourceInLastRow (title,url,linkflag) {
1.2 harris41 119: opener.newresource(opener.maxrow,2,opener.escape(title),
120: opener.escape(url),'false','normal');
1.1 harris41 121: opener.save();
122: opener.mostrecent=opener.obj.length-1;
123: if (linkflag) {
124: opener.joinres(opener.linkmode,opener.mostrecent,0);
125: }
126: opener.linkmode=opener.mostrecent;
127: }
1.8 www 128: $finishimport
1.1 harris41 129: function selectchange(val) {
1.3 harris41 130: var newval=0+eval("document.forms.groupsort.alt"+val+".selectedIndex");
1.1 harris41 131: orderchange(val,newval);
132: }
133: function move(val,newval) {
134: orderchange(val,newval);
135: }
136: function orderchange(val,newval) {
137: document.forms.groupsort.oldval.value=val;
138: document.forms.groupsort.newval.value=newval;
139: document.forms.groupsort.submit();
140: }
141: </script>
142: </head>
143: END
1.2 harris41 144: # read pertinent machine configuration
1.1 harris41 145: my $domain = $r->dir_config('lonDefDomain');
1.2 harris41 146: $iconpath = $r->dir_config('lonIconsURL') . "/";
147:
148: my %shash; # sort order (key is resource location, value is sort order)
149: my %thash; # title (key is resource location, value is title)
1.9 www 150:
1.4 harris41 151: my $diropendb;
1.11 www 152: # ------------------------------ which file do we open? Easy if explictly given
1.4 harris41 153: if ($ENV{'form.catalogmode'} eq 'groupsearch') {
154: $diropendb =
1.21 albertel 155: "/home/httpd/perl/tmp/$ENV{'user.domain'}_$ENV{'user.name'}_searchcat.db";
1.4 harris41 156: }
157: elsif ($ENV{'form.catalogmode'} eq 'groupimport') {
158: $diropendb =
1.21 albertel 159: "/home/httpd/perl/tmp/$ENV{'user.domain'}_$ENV{'user.name'}_indexer.db";
1.6 harris41 160: }
1.11 www 161: elsif ($ENV{'form.catalogmode'} eq 'groupsec') {
162: $diropendb =
1.21 albertel 163: "/home/httpd/perl/tmp/$ENV{'user.domain'}_$ENV{'user.name'}_groupsec.db";
1.11 www 164: }
165: # --------------------- not explicitly given, choose the one most recently used
1.6 harris41 166: else { # choose last accessed
1.11 www 167: my @dbfn;
168: my @dbst;
169:
170: $dbfn[0] =
1.21 albertel 171: "/home/httpd/perl/tmp/$ENV{'user.domain'}_$ENV{'user.name'}_searchcat.db";
1.11 www 172: $dbst[0]=-1;
173: if (-e $dbfn[0]) {
174: $dbst[0]=(stat($dbfn[0]))[9];
1.6 harris41 175: }
1.11 www 176: $dbfn[1] =
1.21 albertel 177: "/home/httpd/perl/tmp/$ENV{'user.domain'}_$ENV{'user.name'}_indexer.db";
1.11 www 178: $dbst[1]=-1;
179: if (-e $dbfn[1]) {
180: $dbst[1]=(stat($dbfn[1]))[9];
1.6 harris41 181: }
1.11 www 182: $dbfn[2] =
1.21 albertel 183: "/home/httpd/perl/tmp/$ENV{'user.domain'}_$ENV{'user.name'}_groupsec.db";
1.11 www 184: $dbst[2]=-1;
185: if (-e $dbfn[2]) {
186: $dbst[2]=(stat($dbfn[2]))[9];
187: }
188: # Expand here for more modes
189: # ....
190:
191: # Okay, find most recent existing
192:
193: my $newest=0;
1.12 www 194: $diropendb='';
1.11 www 195: for (my $i=0; $i<=$#dbfn; $i++) {
196: if ($dbst[$i]>$newest) {
197: $newest=$dbst[$i];
198: $diropendb=$dbfn[$i];
199: }
1.6 harris41 200: }
1.11 www 201:
1.4 harris41 202: }
1.11 www 203: # ----------------------------- diropendb is now the filename of the db to open
1.13 albertel 204: if (tie(%hash,'GDBM_File',$diropendb,&GDBM_WRCREAT(),0640)) {
1.2 harris41 205: my $acts = $ENV{'form.acts'};
206: my @Acts = split(/b/,$acts);
1.1 harris41 207: my %ahash;
208: my %achash;
1.2 harris41 209: my $ac = 0;
1.5 harris41 210: foreach (@Acts) {
1.2 harris41 211: my ($state,$ref) = split(/a/);
212: $ahash{$ref} = $state;
213: $achash{$ref} = $ac;
1.1 harris41 214: $ac++;
1.5 harris41 215: }
216: foreach (sort {$achash{$a} <=> $achash{$b}} (keys %ahash)) {
1.2 harris41 217: my $key = $_;
1.1 harris41 218: if ($ahash{$key} eq '1') {
1.3 harris41 219: # my $keyz=join("<br />",keys %hash);
220: # print "<br />$key<br />$keyz".$hash{'pre_'.$key.'_link'}."<br />\n";
1.2 harris41 221: $hash{'store_'.$hash{'pre_'.$key.'_link'}} =
1.1 harris41 222: $hash{'pre_'.$key.'_title'};
1.2 harris41 223: $hash{'storectr_'.$hash{'pre_'.$key.'_link'}} =
1.1 harris41 224: $hash{'storectr'}+0;
225: $hash{'storectr'}++;
226: }
227: if ($ahash{$key} eq '0') {
228: if ($hash{'store_'.$hash{'pre_'.$key.'_link'}}) {
229: delete $hash{'store_'.$hash{'pre_'.$key.'_link'}};
230: }
231: }
1.5 harris41 232: }
233: foreach (keys %hash) {
1.1 harris41 234: if ($_ =~ /^store_/) {
1.2 harris41 235: my $key = $_;
236: $key =~ s/^store_//;
237: $shash{$key} = $hash{'storectr_'.$key};
1.27 ! taceyjo1 238: if (&Apache::lonnet::gettitle($key) eq '') {
! 239: $thash{$key} = $hash{'store_'.$key}; }
! 240: else {
! 241: $thash{$key} = &Apache::lonnet::gettitle($key); }
1.1 harris41 242: }
1.5 harris41 243: }
1.1 harris41 244: if ($ENV{'form.oldval'}) {
1.2 harris41 245: my $newctr = 0;
1.1 harris41 246: my %chash;
1.5 harris41 247: foreach (sort {$shash{$a} <=> $shash{$b}} (keys %shash)) {
1.2 harris41 248: my $key = $_;
1.1 harris41 249: $newctr++;
1.2 harris41 250: $shash{$key} = $newctr;
251: $hash{'storectr_'.$key} = $newctr;
252: $chash{$newctr} = $key;
1.5 harris41 253: }
1.2 harris41 254: my $oldval = $ENV{'form.oldval'};
255: my $newval = $ENV{'form.newval'};
256: if ($oldval != $newval) {
1.3 harris41 257: # when newval==0, then push down and delete
258: if ($newval!=0) {
259: $shash{$chash{$oldval}} = $newval;
260: $hash{'storectr_'.$chash{$oldval}} = $newval;
261: }
262: else {
263: $shash{$chash{$oldval}} = $newctr;
264: $hash{'storectr_'.$chash{$oldval}} = $newctr;
265: }
266: if ($newval==0) { # push down
267: my $newval2=$newctr;
268: for my $idx ($oldval..($newval2-1)) {
269: $shash{$chash{$idx+1}} = $idx;
270: $hash{'storectr_'.$chash{$idx+1}} = $idx;
271: }
272: delete $shash{$chash{$oldval}};
273: delete $hash{'storectr_'.$chash{$oldval}};
274: delete $hash{'store_'.$chash{$oldval}};
275: }
276: elsif ($oldval < $newval) { # push down
1.1 harris41 277: for my $idx ($oldval..($newval-1)) {
1.2 harris41 278: $shash{$chash{$idx+1}} = $idx;
279: $hash{'storectr_'.$chash{$idx+1}} = $idx;
1.1 harris41 280: }
281: }
1.2 harris41 282: elsif ($oldval > $newval) { # push up
1.1 harris41 283: for my $idx (reverse($newval..($oldval-1))) {
1.2 harris41 284: $shash{$chash{$idx}} = $idx+1;
285: $hash{'storectr_'.$chash{$idx}} = $idx+1;
1.1 harris41 286: }
287: }
288: }
289: }
290: } else {
1.2 harris41 291: $r->print('Unable to tie hash to db file</body></html>');
1.1 harris41 292: return OK;
293: }
294: untie %hash;
1.2 harris41 295: my $ctr = 0;
296: my $clen = scalar(keys %shash);
1.22 albertel 297: if ($clen > 1) {
1.23 www 298: my %lt=&Apache::lonlocal::texthash(
299: 'fin'=> 'Finalize order of resources',
300: 'gb' => 'Go Back',
301: 'ns' => 'New Search',
302: 'fi' => 'Finish Import',
303: 'ca' => 'Cancel',
304: 'co' => 'Change Order',
305: 'ti' => 'Title',
306: 'pa' => 'Path'
307: );
1.22 albertel 308: $r->print(&Apache::loncommon::bodytag('Sort Imported Resources'));
309: $r->print(<<END);
1.23 www 310: <b><font color="#888888">$lt{'fin'}</font></b>
1.14 matthew 311: <form method='post' action='/adm/groupsort' name='groupsort'
312: enctype='application/x-www-form-urlencoded'>
1.1 harris41 313: <input type="hidden" name="fnum" value="$clen" />
314: <input type="hidden" name="oldval" value="" />
315: <input type="hidden" name="newval" value="" />
1.14 matthew 316: <input type="hidden" name="mode" value="$ENV{'form.mode'}" />
1.3 harris41 317: END
1.11 www 318:
1.22 albertel 319: # --- Expand here if "GO BACK" button desired
320: if ($ENV{'form.catalogmode'} eq 'groupimport') {
321: $r->print(<<END);
1.23 www 322: <input type="button" name="alter" value="$lt{'gb'}"
1.2 harris41 323: onClick="window.location='/res/?catalogmode=groupimport'" />
1.3 harris41 324: END
1.22 albertel 325: }
326: if ($ENV{'form.catalogmode'} eq 'groupsearch') {
327: $r->print(<<END);
1.23 www 328: <input type="button" name="alter" value="$lt{'ns'}"
1.16 matthew 329: onClick="window.location='/adm/searchcat?catalogmode=groupsearch&cleargroupsort=1'" />
1.3 harris41 330: END
1.22 albertel 331: }
332: # ---
1.11 www 333:
1.22 albertel 334: $r->print(<<END);
1.23 www 335: <input type="button" name="alter" value="$lt{'fi'}"
1.2 harris41 336: onClick="finish_import()" />
1.23 www 337: <input type="button" name="alter" value="$lt{'ca'}" onClick="self.close()" />
1.1 harris41 338: END
1.22 albertel 339: $r->print("<table border='0'><tr><td bgcolor='#eeeeee'>");
340: $r->print("<table border=0><tr>\n");
1.23 www 341: $r->print("<td colspan='2' bgcolor='$titleclr'><b>$lt{'co'}</b></td>\n");
342: $r->print("<td colspan='2' bgcolor='$titleclr'><b>$lt{'ti'}</b></td>\n");
343: $r->print("<td bgcolor='$titleclr'><b>$lt{'pa'}</b></td></tr>\n");
1.22 albertel 344: } else {
345: $r->print(<<END);
346: <body>
347: <form method='post' action='/adm/groupsort' name='groupsort'
348: enctype='application/x-www-form-urlencoded'>
349: <input type="hidden" name="fnum" value="$clen" />
350: <input type="hidden" name="oldval" value="" />
351: <input type="hidden" name="newval" value="" />
352: <input type="hidden" name="mode" value="$ENV{'form.mode'}" />
353: END
354: }
1.5 harris41 355: foreach (sort {$shash{$a}<=>$shash{$b}} (keys %shash)) {
1.1 harris41 356: my $key=$_;
357: $ctr++;
1.25 albertel 358: my $iconname=&Apache::loncommon::icon($key);
1.22 albertel 359: if ($clen > 1) {
360: $r->print("<tr><td bgcolor='$fileclr'>");
361: $r->print(&movers($clen,$ctr));
362: }
1.1 harris41 363: $r->print(&hidden($ctr-1,$thash{$key},$key));
1.22 albertel 364: if ($clen > 1) {
365: $r->print("</td><td bgcolor='$fileclr'>");
366: $r->print(&select_box($clen,$ctr));
367: $r->print("</td><td bgcolor='$fileclr'>");
1.26 albertel 368: $r->print("<img src='$iconname' />");
1.22 albertel 369: $r->print("</td><td bgcolor='$fileclr'>");
370: $r->print("$thash{$key}</td><td bgcolor='$fileclr'>\n");
371: $r->print("$key</td></tr>\n");
372: }
373: }
374: if ($clen > 1) {
375: $r->print("</table></td></tr></table></form>");
376: } else {
377: $r->print(<<END);
378: <script type="text/javascript">
379: finish_import();
380: </script>
381: END
382: }
1.1 harris41 383: $r->print(<<END);
384: </body>
385: </html>
386: END
1.22 albertel 387:
1.1 harris41 388: return OK;
389: }
390:
1.2 harris41 391: # --------------------------------------- Hidden values (returns scalar string)
1.1 harris41 392: sub hidden {
1.2 harris41 393: my ($sel,$title,$filelink) = @_;
394: my $string = '<input type="hidden" name="title'.$sel.'" value="'.$title.
395: '" />';
396: $string .= '<input type="hidden" name="filelink'.$sel.'" value="'.
397: $filelink.'" />';
1.1 harris41 398: return $string;
399: }
400:
1.2 harris41 401: # --------------------------------------- Moving arrows (returns scalar string)
1.1 harris41 402: sub movers {
1.2 harris41 403: my ($total,$sel) = @_;
404: my $dsel = $sel-1;
405: my $usel = $sel+1;
406: $usel = 1 if $usel > $total;
407: $dsel = $total if $dsel < 1;
1.1 harris41 408: my $string;
1.2 harris41 409: $string = (<<END);
1.1 harris41 410: <table border='0' cellspacing='0' cellpadding='0'>
1.2 harris41 411: <tr><td><a href='javascript:move($sel,$dsel)'>
412: <img src="${iconpath}move_up.gif" alt='UP' border='0' /></a></td></tr>
413: <tr><td><a href='javascript:move($sel,$usel)'>
414: <img src="${iconpath}move_down.gif" alt='DOWN' border='0' /></a></td></tr>
1.1 harris41 415: </table>
416: END
417: return $string;
418: }
1.2 harris41 419:
420: # ------------------------------------------ Select box (returns scalar string)
1.1 harris41 421: sub select_box {
1.2 harris41 422: my ($total,$sel) = @_;
1.1 harris41 423: my $string;
1.2 harris41 424: $string = '<select name="alt'.$sel.'"';
425: $string .= " onChange='selectchange($sel)'>";
1.3 harris41 426: $string .= "<option name='o0' value='0'>remove</option>";
1.1 harris41 427: for my $cur (1..$total) {
1.2 harris41 428: $string .= "<option name='o$cur' value='$cur'";
429: if ($cur == $sel) {
430: $string .= "selected";
1.1 harris41 431: }
1.2 harris41 432: $string .= ">$cur</option>";
1.1 harris41 433: }
1.2 harris41 434: $string .= "</select>\n";
1.1 harris41 435: return $string;
436: }
437:
438: 1;
439:
440: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>