File:  [LON-CAPA] / loncom / interface / coursecatalog.pm
Revision 1.87: download - view: text, annotated - select for diffs
Tue May 19 18:07:35 2015 UTC (9 years ago) by raeburn
Branches: MAIN
CVS tags: version_2_11_1, HEAD
- xhtml

    1: # The LearningOnline Network with CAPA
    2: # Handler for displaying the course catalog interface
    3: #
    4: # $Id: coursecatalog.pm,v 1.87 2015/05/19 18:07:35 raeburn Exp $
    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.
   14: #
   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/
   27: #
   28: 
   29: package Apache::coursecatalog;
   30: 
   31: use strict;
   32: use lib qw(/home/httpd/lib/perl);
   33: use Apache::Constants qw(:common);
   34: use Apache::loncommon;
   35: use Apache::lonhtmlcommon;
   36: use Apache::lonnet;
   37: use Apache::lonlocal;
   38: use Apache::courseclassifier;
   39: use Apache::lonacc;
   40: use LONCAPA;
   41: use LONCAPA::lonauthcgi;
   42: 
   43: sub handler {
   44:     my ($r) = @_;
   45:     &Apache::loncommon::content_type($r,'text/html');
   46:     $r->send_http_header;
   47:     if ($r->header_only) {
   48:         return OK;
   49:     }
   50:     my $handle = &Apache::lonnet::check_for_valid_session($r);
   51:     my $lonidsdir=$r->dir_config('lonIDsDir');
   52:     if ($handle ne '') {
   53:         &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
   54:     }
   55:     &Apache::lonacc::get_posted_cgi($r);
   56:     &Apache::lonlocal::get_language_handle($r);
   57:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
   58:                                             ['sortby','showdom']);
   59: 
   60:     my $codedom = &Apache::lonnet::default_login_domain();
   61: 
   62:     if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) { 
   63:         $codedom = $env{'user.domain'};
   64:         if ($env{'request.role.domain'} ne '') {
   65:             $codedom = $env{'request.role.domain'};
   66:         }
   67:     }
   68:     my $formname = 'coursecatalog';
   69:     if ($env{'form.showdom'} ne '') {
   70:         $env{'form.showdom'} = &LONCAPA::clean_domain($env{'form.showdom'});
   71:         if (&Apache::lonnet::domain($env{'form.showdom'}) ne '') {
   72:             $codedom = $env{'form.showdom'};
   73:         } else {
   74:             $env{'form.showdom'} = '';
   75:         }
   76:     }
   77:     my $domdesc = &Apache::lonnet::domain($codedom,'description');
   78:     &Apache::lonhtmlcommon::clear_breadcrumbs();
   79: 
   80:     my %domconfig =
   81:         &Apache::lonnet::get_dom('configuration',['coursecategories'],$codedom);
   82:     my $knownuser = &user_is_known();
   83:     my $canviewall = &canview_all();
   84:     
   85:     my ($cathash,$cattype);
   86:     if (ref($domconfig{'coursecategories'}) eq 'HASH') {
   87:         $cathash = $domconfig{'coursecategories'}{'cats'};
   88:         if ($knownuser || $canviewall) {
   89:             $cattype = $domconfig{'coursecategories'}{'auth'};
   90:         } else {
   91:             $cattype = $domconfig{'coursecategories'}{'unauth'};
   92:         }
   93:         if ($cattype eq '') {
   94:             $cattype = 'std';
   95:         }
   96:     } else {
   97:         $cathash = {};
   98:         $cattype = 'std';
   99:     }
  100:     if ($cattype eq 'none') {
  101:         $r->print(&Apache::loncommon::start_page('Course/Community Catalog'));
  102:         &Apache::lonhtmlcommon::add_breadcrumb
  103:         ({href=>"/adm/coursecatalog",
  104:           text=>"Course/Community Catalog"});
  105:         $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
  106:         if ($knownuser || $canviewall) {
  107:             $r->print('<div>'.&mt('No catalog of LON-CAPA courses/communities is provided for: [_1]',$domdesc).'</div>');
  108:         } else {
  109:             if ($domconfig{'coursecategories'}{'auth'} eq 'none') {
  110:                 $r->print('<div>'.&mt('No catalog of LON-CAPA courses/communities is provided for: [_1]',$domdesc).'</div>');
  111:             } else {
  112:                 $r->print('<div>'.&mt('The catalog of LON-CAPA courses/communities provided for: "[_1]" is only available to users who are logged in.',$domdesc).'</div>');
  113:             }
  114:         }      
  115:         $r->print(&Apache::loncommon::end_page());
  116:         return OK;
  117:     }
  118: 
  119:     my $cnum; 
  120:     if ($cattype eq 'codesrch') {
  121:         my ($uniquecode,$codemsg,$brtext);
  122:         if ($env{'form.uniquecode'}) {
  123:             $uniquecode = $env{'form.uniquecode'};
  124:             $uniquecode =~ s/^\s+|\s+$//g;
  125:         }
  126:         my $js = '<script type="text/javascript">'."\n".
  127:                  '// <![CDATA['."\n".
  128:                  &courselink_javascript()."\n".
  129:                  '// ]]>'."\n".
  130:                  '</script>'."\n";
  131:         $r->print(&Apache::loncommon::start_page('Search for a Course/Community',$js));
  132:         if ($uniquecode =~ /^\w{6}$/) {
  133:             &Apache::lonhtmlcommon::add_breadcrumb
  134:             ({href=>"/adm/coursecatalog",
  135:               text=>"Course/Community Catalog"});
  136:             $brtext = 'Search Result';
  137:         } else {
  138:             $brtext = 'Course/Community Catalog';
  139:         }
  140:         &Apache::lonhtmlcommon::add_breadcrumb
  141:         ({href=>"/adm/coursecatalog",
  142:           text=>"$brtext"});
  143:         $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
  144:         $r->print(&coursesearch($codedom,$domdesc,$uniquecode));
  145:         if ($uniquecode =~ /^\w{6}$/) {
  146:             $r->print('<hr />');
  147:             my $confname = $codedom.'-domainconfig';
  148:             my %codes = &Apache::lonnet::get('uniquecodes',[$uniquecode],$codedom,$confname);
  149:             if ($codes{$uniquecode}) {
  150:                 $cnum = $codes{$uniquecode};
  151:                 my %courses = &Apache::lonnet::courseiddump($codedom,'.',1,'.','.',
  152:                                                             $cnum,undef,undef,'.',1);
  153:                 if (keys(%courses)) {
  154:                     $env{'form.coursenum'} = $cnum;
  155:                     my %courseinfo = &build_courseinfo_hash(\%courses,$knownuser,$codedom,$canviewall);
  156:                     undef($env{'form.coursenum'});
  157:                     if (ref($courseinfo{$codedom.'_'.$cnum}) eq 'HASH') {
  158:                         $r->print(&Apache::lonhtmlcommon::start_pick_box());
  159:                         my @cols = ('title','ownerlastnames','seclist','access');
  160:                         my %lt = &Apache::lonlocal::texthash(
  161:                                      title          => 'Title',
  162:                                      ownerlastnames => 'Owner & Co-owner(s)',
  163:                                      seclist        => 'Sections',
  164:                                      access         => 'Default Access Dates for Students',
  165:                                  );
  166:                         my @shown;
  167:                         foreach my $item (@cols) {
  168:                             if ($courseinfo{$codedom.'_'.$cnum}{$item}) {
  169:                                 push(@shown,$item);
  170:                             }
  171:                         }
  172:                         my $num = 0;
  173:                         foreach my $item (@shown) {
  174:                             $num ++;
  175:                             $r->print(&Apache::lonhtmlcommon::row_title($lt{$item}).
  176:                                       $courseinfo{$codedom.'_'.$cnum}{$item});
  177:                             if ($item eq 'title') {
  178:                                 if ($courseinfo{$codedom.'_'.$cnum}{'showsyllabus'}) {
  179:                                     $r->print('&nbsp;<font size="-2">'.
  180:                                               '<a href="javascript:ToSyllabus('."'$codedom','$cnum'".')">'.
  181:                                               &mt('Syllabus').'</a></font>');
  182:                                 }
  183:                             }
  184:                             my $arg = ( $num == scalar(@shown) ? 1 : '' );
  185:                             $r->print(&Apache::lonhtmlcommon::row_closure($arg));
  186:                         }
  187:                         $r->print(&Apache::lonhtmlcommon::end_pick_box());
  188:                         my $selfenroll = &selfenroll_status($courseinfo{$codedom.'_'.$cnum},$codedom.'_'.$cnum);
  189:                         if ($selfenroll) {
  190:                             $r->print('<br />'.$selfenroll);
  191:                         }
  192:                         $r->print('<form name="linklaunch" method="post" action="">'."\n".
  193:                                   '<input type="hidden" name="backto" value="coursecatalog" />'."\n".
  194:                                   '<input type="hidden" name="courseid" value="" />'."\n".
  195:                                   '</form>'."\n");
  196: 
  197:                     } else {
  198:                         $codemsg = &mt('Code matched, but course ID to which this mapped is invalid.');
  199:                     }
  200:                 } else {
  201:                     $codemsg = &mt('Code matched, but course ID to which this mapped is invalid.');              
  202:                 } 
  203:             } else {
  204:                 $codemsg = &mt('No match');
  205:             }
  206:         }
  207:         $r->print('<br />'.&Apache::loncommon::end_page());
  208:         return OK;
  209:     } else {
  210:         if ($env{'form.coursenum'}) {
  211:             $cnum = $env{'form.coursenum'};
  212:         }
  213:     }
  214: 
  215:     if ($env{'form.catalog_maxdepth'} ne '') {
  216:         $env{'form.catalog_maxdepth'} =~ s{\D}{}g;
  217:     }
  218: 
  219:     my (@cats,@trails,%allitems,%idx,@jsarray,%subcathash,$subcats);
  220:     if ($env{'form.withsubcats'}) {
  221:         $subcats = \%subcathash;
  222:     }
  223:     &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,\%allitems,
  224:                                            \%idx,\@jsarray,$subcats);
  225:     my ($numtitles,@codetitles);
  226:     if (($env{'form.coursenum'} ne '') && ($knownuser)) {
  227:         &course_details($r,$codedom,$formname,$domdesc,\@trails,\%allitems,\@codetitles);
  228:     } else {
  229:         my ($catlinks,$has_subcats,$selitem) = &category_breadcrumbs($codedom,@cats);
  230:         my $wasacctext = &get_wasactive_text();
  231:         my $catjs = <<"ENDSCRIPT";
  232: 
  233: function setCatDepth(depth) {
  234:     document.coursecats.catalog_maxdepth.value = depth;
  235:     if (depth == '') {
  236:         document.coursecats.currcat_0.value = '';
  237:     }
  238:     document.coursecats.submit();
  239:     return;
  240: }
  241: 
  242: function changeSort(caller) {
  243:     document.$formname.sortby.value = caller;
  244:     document.$formname.submit();
  245: }
  246: 
  247: function setCourseId(caller) {
  248:     document.$formname.coursenum.value = caller;
  249:     document.$formname.submit();
  250: }
  251: 
  252: ENDSCRIPT
  253:         $catjs .= &courselink_javascript();
  254:         if (&user_is_dc($codedom) || $canviewall) {
  255:             $catjs .= <<ENDTOGGJS
  256: 
  257: function toggleStatuses() {
  258:     if (document.$formname.showdetails.checked) {
  259:         document.getElementById('statuschoice').style.display='block';
  260:         document.getElementById('statuscell').style.borderLeft='1px solid'; 
  261:     } else {
  262:         document.getElementById('statuschoice').style.display='none';
  263:         document.getElementById('statuscell').style.borderLeft='0px';
  264:     }
  265:     return;
  266: }
  267: 
  268: function toggleWasActive() {
  269:     if (document.getElementById('counts_Previous')) {
  270:         if (document.getElementById('counts_Previous').checked) {
  271:             document.getElementById('choosewasactive').style.display='block';
  272:             document.getElementById('choosewasacctext').innerHTML = '$wasacctext';
  273:         } else {
  274:             document.getElementById('choosewasactive').style.display='none';
  275:             document.getElementById('choosewasacctext').innerHTML = '';
  276:         }
  277:     }
  278:     return;
  279: }
  280: 
  281: ENDTOGGJS
  282:         }
  283:         if ($env{'form.currcat_0'} eq 'instcode::0') {
  284:             $numtitles = &instcode_course_selector($r,$codedom,$formname,$domdesc,
  285:                                                    $catlinks,$catjs,\@codetitles,$cattype,$canviewall);
  286:             if ($env{'form.state'} eq 'listing') {
  287:                 $r->print(&print_course_listing($codedom,$numtitles,undef,undef,undef,
  288:                                                 \@codetitles,$canviewall));
  289:             }
  290:         } else {
  291:             my (%add_entries);
  292:             my ($currdepth,$deeper) = &get_depth_values();
  293:             if ($selitem) {
  294:                 my $alert = &mt('Choose a subcategory to display');
  295:                 if (!$deeper) {
  296:                     $alert = &mt('Choose a category to display');
  297:                 }
  298:                 $catjs .= <<ENDJS;
  299: function check_selected() {
  300:     if (document.coursecats.$selitem.options[document.coursecats.$selitem.selectedIndex].value == "") {
  301:         alert('$alert');
  302:         return false;
  303:     }
  304: }
  305: ENDJS
  306:             }
  307:             $catjs = '<script type="text/javascript">'."\n".$catjs."\n".'</script>';
  308:             &cat_header($r,$codedom,$catjs,\%add_entries,$catlinks,undef,$cattype);
  309:             if ($env{'form.currcat_0'} ne '') {
  310:                 $r->print('<form name="'.$formname.
  311:                           '" method="post" action="/adm/coursecatalog">'.
  312:                           &additional_filters($codedom,$has_subcats,$canviewall)."\n");
  313:                 $r->print('<input type="hidden" name="catalog_maxdepth" value="'.
  314:                           $deeper.'" />'."\n");
  315:                 for (my $i=0; $i<$deeper; $i++) {
  316:                     $r->print('<input type="hidden" name="currcat_'.$i.'" value="'.$env{'form.currcat_'.$i}.'" />'."\n");
  317:                 }
  318:                 my $display_button;
  319:                 if ($env{'form.currcat_0'} eq 'communities::0') {
  320:                     $display_button = &mt('Display communities');
  321:                 } else {
  322:                     $display_button = &mt('Display courses');
  323:                 }
  324:                 $r->print('<input type="hidden" name="coursenum" value="" />'."\n".
  325:                           '<input type="hidden" name="sortby" value="" />'."\n".
  326:                           '<input type="hidden" name="state" value="listing" />'."\n".
  327:                           '<input type="hidden" name="showdom" value="'.
  328:                           $env{'form.showdom'}.'" />'.
  329:                           '<input type="submit" name="catalogfilter" value="'.
  330:                           $display_button.'" /></form><br /><br />');
  331:             }
  332:             if ($env{'form.state'} eq 'listing') {
  333:                 $r->print(&print_course_listing($codedom,undef,\@trails,\%allitems,$subcats,\@codetitles,
  334:                                                 $canviewall));
  335:             }
  336:         }
  337:     }
  338:     $r->print('<br />'.&Apache::loncommon::end_page());
  339:     return OK;
  340: }
  341: 
  342: sub course_details {
  343:     my ($r,$codedom,$formname,$domdesc,$trails,$allitems,$codetitles) = @_;
  344:     my $output;
  345:     my %add_entries = (topmargin    => "0",
  346:                        marginheight => "0",);
  347:     my $js = '<script type="text/javascript">'."\n".
  348:              &courselink_javascript().'</script>'."\n";
  349:     my $start_page =
  350:         &Apache::loncommon::start_page('Course/Community Catalog',$js,
  351:                                        {'add_entries' => \%add_entries, });
  352:     $r->print($start_page);
  353:     if ($env{'form.numtitles'} > 0) {
  354:         &Apache::lonhtmlcommon::add_breadcrumb
  355:                 ({href=>"/adm/coursecatalog",
  356:                   text=>"Course/Community Catalog"});
  357:     }
  358:     my $brtextone = 'Course listing';
  359:     my $brtexttwo = 'Course details';
  360:     if ($env{'form.currcat_0'} eq 'communities::0') {
  361:         $brtextone = 'Community listing';
  362:         $brtexttwo = 'Community details';
  363:     }
  364:     &Apache::lonhtmlcommon::add_breadcrumb
  365:              ({href=>"javascript:document.$formname.submit()",
  366:               text=>$brtextone},
  367:              {text=>$brtexttwo});
  368:     $r->print(
  369:         &Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog').
  370:         '<h2>'.
  371:         (($env{'form.currcat_0'} eq 'communities::0') ?
  372:             &mt('Detailed community information:') :
  373:             &mt('Detailed course information:')).
  374:         '</h2>'.
  375:         &print_course_listing($codedom,undef,$trails,$allitems,undef,$codetitles).
  376:         '<br />'.
  377:         '<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  378:         &Apache::lonhtmlcommon::actionbox([
  379:             '<a href = "javascript:document.coursecatalog.submit()">'.
  380:             (($env{'form.currcat_0'} eq 'communities::0') ?
  381:                 &mt('Back to community listing') : &mt('Back to course listing')).
  382:             '</a>'
  383:         ]).
  384:         &Apache::lonhtmlcommon::echo_form_input(['coursenum','catalogfilter',
  385:                                                  'showdetails','courseid']).
  386:         '</form>');
  387:     return;
  388: }
  389: 
  390: sub coursesearch {
  391:     my ($codedom,$domdesc,$uniquecode) = @_;
  392:     my %lt = &Apache::lonlocal::texthash (
  393:                                            crlk => 'Course look-up',  
  394:                                            code => 'Code',
  395:                                            ifyo => 'Enter the course code (six letters and numbers)',
  396:                                            srch => 'Find course',
  397:                                          );
  398:     return <<"END";
  399: <h3>$lt{'crlk'} ($domdesc)</h3>
  400: $lt{'ifyo'}
  401: <form name="searchbycode" method="post" action="">
  402: <span class="LC_nobreak">
  403: <input type="text" value="$uniquecode" size="6" name="uniquecode" />&nbsp;
  404: <br />
  405: <input type="submit" value="$lt{'srch'}" name="srch" /></span>
  406: </form>
  407: END
  408: }
  409: 
  410: sub courselink_javascript {
  411:     return <<"END";
  412: 
  413: function ToSyllabus(cdom,cnum) {
  414:     if (cdom == '' || cdom == null) {
  415:         return;
  416:     }
  417:     if (cnum == '' || cnum == null) {
  418:         return;
  419:     }
  420:     document.linklaunch.action = "/public/"+cdom+"/"+cnum+"/syllabus";
  421:     document.linklaunch.submit();
  422: }
  423: 
  424: function ToSelfenroll(courseid) {
  425:     if (courseid == '') {
  426:         return;
  427:     }
  428:     document.linklaunch.action = "/adm/selfenroll";
  429:     document.linklaunch.courseid.value = courseid;
  430:     document.linklaunch.submit();
  431: }
  432: 
  433: END
  434: }
  435: 
  436: sub instcode_course_selector {
  437:     my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs,$codetitles,$cattype,$canviewall) = @_;
  438:     my %coursecodes = ();
  439:     my %codes = ();
  440:     my %cat_titles = ();
  441:     my %cat_order = ();
  442:     my %cat_items;
  443:     my $caller = 'global';
  444:     my $format_reply;
  445:     my %add_entries = (topmargin    => "0",
  446:                        marginheight => "0",);
  447:     my ($jscript,$totcodes,$numtitles,$lasttitle) = 
  448:         &Apache::courseclassifier::instcode_selectors_data($codedom,$formname,
  449:                            \%cat_items,$codetitles,\%cat_titles,\%cat_order);
  450:     my $js = '<script type="text/javascript">'."\n".
  451:              '// <![CDATA['."\n".
  452:              "$jscript\n$catjs\n".
  453:              '// ]]>'."\n".
  454:              '</script>';
  455:     if ($totcodes) {
  456:         if (($env{'form.state'} eq 'listing') && ($numtitles > 0)) {
  457:             $add_entries{'onload'} = 'setElements();';
  458:         }
  459:         if (&user_is_dc($codedom) || $canviewall) {
  460:             $add_entries{'onload'} .= ' toggleStatuses();toggleWasActive();'
  461:         }
  462:         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles,$cattype);
  463:         my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  464:         $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  465:                   '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'."\n".
  466:                   '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'."\n".
  467:                   '<input type="hidden" name="currcat_0" value="instcode::0" />'.
  468:                   &additional_filters($codedom,undef,$canviewall));
  469:         if ($numtitles > 0) {
  470:             $r->print('<b>'.&mt('Choose which course(s) to list.').'</b><br />'.
  471:                       &Apache::courseclassifier::build_instcode_selectors($numtitles,
  472:                        $lasttitle,\%cat_items,$codetitles,\%cat_titles,\%cat_order));
  473:         }
  474:         $r->print('<input type="hidden" name="coursenum" value="" />'."\n".
  475:                   '<input type="hidden" name="sortby" value="" />'."\n".
  476:                   '<input type="hidden" name="state" value="listing" />'."\n".
  477:                   '<input type="submit" name="catalogfilter" value="'.
  478:                   &mt('Display courses').'" />'.
  479:                   '<input type="hidden" name="numtitles" value="'.$numtitles.
  480:                   '" /></form><br /><br />');
  481:     } else {
  482:         $js = '<script type="text/javascript">'."\n".
  483:               '// <![CDATA['."\n".
  484:               "$catjs\n".
  485:               '// ]]>'."\n".
  486:               '</script>';
  487:         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles,$cattype);
  488:         my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  489:         $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  490:                   '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'.
  491:                   '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'.
  492:                   '<input type="hidden" name="currcat_0" value="instcode::0" />');
  493:         $r->print('<br />'.&mt('No official courses to display for [_1].',$domdesc).'</form>');
  494:     }
  495:     return $numtitles;
  496: }
  497: 
  498: sub cat_header {
  499:     my ($r,$codedom,$js,$add_entries,$catlinks,$numtitles,$cattype) = @_;
  500:     my $start_page =
  501:         &Apache::loncommon::start_page('Course/Community Catalog',$js,
  502:                                        { 'add_entries' => $add_entries, });
  503:     $r->print($start_page);
  504:     my $brtext = 'Course listing';
  505:     if ($env{'form.currcat_0'} eq 'communities::0') {
  506:         $brtext = 'Community listing';
  507:     }
  508:     if ($env{'form.state'} eq 'listing') {
  509:         if ($numtitles > 0) {
  510:             &Apache::lonhtmlcommon::add_breadcrumb
  511:                 ({href=>"/adm/coursecatalog",
  512:                   text=>"Course/Community Catalog"},
  513:                  {text=>$brtext});
  514:         } else {
  515:             &Apache::lonhtmlcommon::add_breadcrumb
  516:             ({text=>$brtext});
  517:         }
  518:     } else {
  519:         &Apache::lonhtmlcommon::add_breadcrumb
  520:         ({href=>"/adm/coursecatalog",
  521:           text=>"Course/Community Catalog"});
  522:     }
  523:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
  524:     if ($cattype eq 'std') {
  525:         my $onchange = 'this.form.submit()';
  526:         $r->print('<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.
  527:                   '<table border="0"><tr><td><b>'.&mt('Domain:').'</b></td><td>'.
  528:                   &Apache::loncommon::select_dom_form($codedom,'showdom','',1,$onchange));
  529:         if (!$onchange) {
  530: 	   $r->print('&nbsp;<input type="submit" name="godom" value="'.&mt('Change').'" />');
  531:         }
  532:         $r->print('</td></tr></table></form>');
  533:     }
  534:     $r->print('<form name="coursecats" method="post" action="/adm/coursecatalog"'.
  535:               ' onsubmit="return check_selected();">'.
  536:               '<table border="0"><tr>'.$catlinks.'</tr></table></form>');
  537:     return;
  538: }
  539: 
  540: sub category_breadcrumbs {
  541:     my ($dom,@cats) = @_;
  542:     my $crumbsymbol = ' &#x25b6; ';
  543:     my ($currdepth,$deeper) = &get_depth_values();
  544:     my $currcat_str = 
  545:         '<input type="hidden" name="catalog_maxdepth" value="'.$deeper.'" />'.
  546:         '<input type="hidden" name="showdom" value="'.$dom.'" />';
  547:     my $catlinks = '<td valign="top"><b>'.&mt('Catalog:').'</b></td><td><table><tr><td>';
  548:     my $has_subcats;
  549:     my $selitem;
  550:     if (ref($cats[0]) eq 'ARRAY') {
  551:         if (@{$cats[0]} == 0) {
  552:             $catlinks .= &mt('No categories defined in this domain'); 
  553:         } elsif (@{$cats[0]} == 1) {
  554:             if ($cats[0][0] eq 'instcode') {
  555:                 $catlinks .= &mt('Official courses (with institutional codes)');
  556:                 $env{'form.currcat_0'} = 'instcode::0';
  557:             } elsif ($cats[0][0] eq 'communities') {
  558:                 $catlinks .= &mt('Communities');
  559:                 $env{'form.currcat_0'} = 'communities::0';
  560:             } else {
  561:                 my $name = $cats[0][0];
  562:                 my $item = &escape($name).'::0';
  563:                 $catlinks .= $name;
  564:                 $env{'form.currcat_0'} = $item;
  565:             }
  566:             $currcat_str .= '<input type="hidden" name="currcat_0" value="'.$env{'form.currcat_0'}.'" />';
  567:         } else {
  568:             $catlinks .= &main_category_selector(@cats);
  569:             if (($env{'form.currcat_0'} ne '') && 
  570:                 ($env{'form.currcat_0'} ne 'instcode::0')) {
  571:                 $catlinks .= $crumbsymbol;
  572:             }
  573:         }
  574:     } else {
  575:         $catlinks .= &mt('Official courses (with institutional codes)');
  576:                      $env{'form.currcat_0'} = 'instcode::0';
  577:          $currcat_str .= '<input type="hidden" name="currcat_0" value="'.$env{'form.currcat_0'}.'" />';
  578:     }
  579:     if ($deeper) {
  580:         for (my $i=1; $i<=$deeper; $i++) {
  581:             my $shallower = $i-1;
  582:             next if ($shallower == 0);
  583:             my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
  584:             if ($cat ne '') {
  585:                 $catlinks .= '<td valign="top">'.
  586:                              '<select name="currcat_'.$shallower.'" onchange="'.
  587:                              'setCatDepth('."'$shallower'".');this.form.submit();">';
  588:                 if (ref($cats[$shallower]{$container}) eq 'ARRAY') {
  589:                     $catlinks .= '<option value="">'.&mt('De-select').'</option>';
  590:                     for (my $j=0; $j<@{$cats[$shallower]{$container}}; $j++) {
  591:                         my $name = $cats[$shallower]{$container}[$j];
  592:                         my $item = &escape($name).':'.&escape($container).':'.$shallower;
  593:                         my $selected = '';
  594:                         if ($item eq $env{'form.currcat_'.$shallower}) {
  595:                             $selected = ' selected="selected"';
  596:                         }
  597:                         $catlinks .= 
  598:                            '<option value="'.$item.'"'.$selected.'>'.$name.'</option>';
  599:                     }
  600:                 }
  601:                 $catlinks .= '</select>';
  602:             }
  603:             unless ($i == $deeper) {
  604:                 $catlinks .= $crumbsymbol;
  605:             } 
  606:         }
  607:         my ($cat,$container,$depth);
  608:         if ($env{'form.currcat_'.$currdepth} eq '') {
  609:             my $shallower = $currdepth - 1;
  610:             ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
  611:         } else {
  612:             ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$currdepth});
  613:         }
  614:         my $deeperlevel = $depth +1;
  615:         if (ref($cats[$deeperlevel]{$cat}) eq 'ARRAY') {
  616:             $has_subcats = 1;
  617:             my $buttontext = &mt('Show subcategories');
  618:             my $selitem = 'currcat_'.$deeperlevel;
  619:             $catlinks .= '&nbsp;<select name="'.$selitem.'" onchange="this.form.submit()">';
  620:             if (@{$cats[$deeperlevel]{$cat}}) {
  621:                 $catlinks .= '<option value="" selected="selected">'.
  622:                              &mt('Subcategory ...').'</option>';
  623:             }
  624:             for (my $k=0; $k<@{$cats[$deeperlevel]{$cat}}; $k++) {
  625:                 my $name = $cats[$deeperlevel]{$cat}[$k];
  626:                 my $item = &escape($name).':'.&escape($cat).':'.$deeperlevel;
  627:                 $catlinks .= '<option value="'.$item.'">'.$name.'</option>'."\n";
  628:             }
  629:             $catlinks .= '</select>'."\n";
  630:         } elsif ($cat ne 'instcode') {
  631:             $catlinks .= '&nbsp;'.&mt('(No subcategories)');
  632:         }
  633:     } else {
  634:         $selitem = 'currcat_0';
  635:     }
  636:     $catlinks .= $currcat_str.'</td></tr></table></td>';
  637:     return ($catlinks,$has_subcats,$selitem);
  638: }
  639: 
  640: sub main_category_selector {
  641:     my (@cats) = @_;
  642:     my $maincatlinks = '<select name="currcat_0" onchange="setCatDepth('."'0'".');this.form.submit();">'."\n";
  643:     if (ref($cats[0]) eq 'ARRAY') {
  644:         if (@{$cats[0]} > 1) {
  645:             my $selected = '';
  646:             if ($env{'form.currcat_0'} eq '') {
  647:                 $selected = ' selected="selected"';    
  648:             }
  649:             $maincatlinks .= 
  650:                 '<option value=""'.$selected.'>'.&mt('Select').'</option>'."\n";
  651:         }
  652:         for (my $i=0; $i<@{$cats[0]}; $i++) {
  653:             my $name = $cats[0][$i];
  654:             my $item = &escape($name).'::0';
  655:             my $selected;
  656:             if ($env{'form.currcat_0'} eq $item) {
  657:                 $selected = ' selected="selected"';
  658:             }
  659:             $maincatlinks .= '<option value="'.$item.'"'.$selected.'>';
  660:             if ($name eq 'instcode') {
  661:                 $maincatlinks .= &mt('Official courses (with institutional codes)');
  662:             } elsif ($name eq 'communities') {
  663:                 $maincatlinks .= &mt('Communities');
  664:             } else {
  665:                 $maincatlinks .= $name;
  666:             }
  667:             $maincatlinks .= '</option>'."\n";
  668:         }
  669:         $maincatlinks .= '</select>'."\n";
  670:     }
  671:     return $maincatlinks;
  672: }
  673: 
  674: sub get_depth_values {
  675:     my $currdepth = 0;
  676:     my $deeper = 0;
  677:     if ($env{'form.catalog_maxdepth'} ne '') {
  678:         $currdepth = $env{'form.catalog_maxdepth'};
  679:         if ($env{'form.currcat_'.$currdepth} eq '') {
  680:             $deeper = $currdepth;
  681:         } else {
  682:             $deeper = $currdepth + 1;
  683:         }
  684:     }
  685:     return ($currdepth,$deeper);
  686: }
  687: 
  688: sub additional_filters {
  689:     my ($codedom,$has_subcats,$canviewall) = @_;
  690:     my $is_dc = &user_is_dc($codedom);
  691:     my $output = '<div class="LC_left_float">';
  692:     if ($is_dc || $canviewall) {
  693:         $output .= '<fieldset><legend>'.&mt('Options').'</legend>';
  694:     }
  695:     $output .= '<table><tr><td valign="top">';
  696:     if (($env{'form.currcat_0'} ne 'instcode::0') &&
  697:         ($env{'form.currcat_0'} ne '') && ($has_subcats)) {
  698:         my $include_subcat_status;
  699:         if ($env{'form.withsubcats'}) {
  700:             $include_subcat_status = 'checked="checked" ';
  701:         }
  702:         my $counter = $env{'form.catalog_maxdepth'};
  703:         if ($counter > 0) {
  704:             if ($env{'form.state'} eq 'listing') {
  705:                 $counter --;
  706:             } elsif ($env{'form.currcat_'.$counter} eq '') {
  707:                 $counter --;
  708:             }
  709:         }
  710:         my ($catname) = split(/:/,$env{'form.currcat_'.$counter});
  711:         if ($catname ne '') {
  712:             $output .= '<span class="LC_nobreak"><label>'.
  713:                        '<input type="checkbox" name="withsubcats" value="1" '.
  714:                        $include_subcat_status.'/>'.
  715:                        &mt('Include subcategories within "[_1]"',
  716:                            &unescape($catname)).'</label></span><br />';
  717:         }
  718:     }
  719:     my $show_selfenroll_status;
  720:     if ($env{'form.showselfenroll'}) {
  721:         $show_selfenroll_status = 'checked="checked" ';
  722:     }
  723:     my $selfenroll_text;
  724:     if ($env{'form.currcat_0'} eq 'communities::0') {
  725:         $selfenroll_text = &mt('Only show communities which currently allow self-enrollment (or will allow it in the future)');
  726:     } else {
  727:         $selfenroll_text = &mt('Only show courses which currently allow self-enrollment (or will allow it in the future)');
  728:     }
  729:     $output .= '<span class="LC_nobreak">'.
  730:                '<label><input type="checkbox" name="showselfenroll" value="1" '.
  731:                $show_selfenroll_status.'/>'.$selfenroll_text.
  732:                '</label></span><br />';
  733:     if ($is_dc || $canviewall) {
  734:         my ($titlesref,$orderref) = &get_statustitles('filters');
  735:         my $showdetails_status;
  736:         if ($env{'form.showdetails'}) {
  737:             $showdetails_status = 'checked="checked" ';
  738:         }
  739:         my $showhidden_status;
  740:         if ($env{'form.showhidden'}) {
  741:             $showhidden_status = 'checked="checked" ';
  742:         }
  743:         my @currstatuses = &Apache::loncommon::get_env_multiple('form.showcounts');
  744:         my $dc_title = &Apache::lonnet::plaintext('dc');
  745:         my ($details_text,$hidden_text,$statusdisplay,$cellborder);
  746:         my $wasactivedisplay = 'none';
  747:         if ($env{'form.showdetails'}) {
  748:             $statusdisplay = 'block';
  749:             $cellborder = 'border-left: 1px solid;';
  750:             if (grep(/^Previous$/,@currstatuses)) {
  751:                 $wasactivedisplay = 'block';
  752:             }
  753:         } else {
  754:             $statusdisplay = 'none';
  755:             $cellborder = 'border-left: 0px';
  756:         }
  757:         if ($env{'form.currcat_0'} eq 'communities::0') {
  758:             $details_text = &mt('Show full details for each community ([_1] only)',$dc_title);
  759:             $hidden_text = &mt('Include communities set to be hidden from catalog ([_1] only)',$dc_title);
  760:         } else {
  761:             $details_text = &mt('Show full details for each course ([_1] only)',$dc_title);
  762:             $hidden_text = &mt('Include courses set to be hidden from catalog ([_1] only)',$dc_title);
  763:         }
  764:         if ($is_dc) {
  765:             $output .= '<span class="LC_nobreak">'.
  766:                        '<label><input type="checkbox" name="showhidden" value="1" '.
  767:                        $showhidden_status.'/>'.$hidden_text.
  768:                        '</label></span><br />'."\n";
  769:         }
  770:         $output .= '<span class="LC_nobreak">'.
  771:                    '<label><input type="checkbox" name="showdetails" value="1" '.
  772:                    $showdetails_status.'onclick="toggleStatuses();" />'.
  773:                    $details_text.'</label></span></td>'."\n".
  774:                    '<td id="statuscell" valign="top" style="'.$cellborder.'">'.
  775:                    '<div id="statuschoice" style="display:'.$statusdisplay.'">';
  776:         if (ref($orderref) eq 'ARRAY') {
  777:             if (@{$orderref} > 0) {
  778:                 foreach my $type (@{$orderref}) {
  779:                     my $checked;
  780:                     if (grep(/^\Q$type\E$/,@currstatuses)) {
  781:                         $checked = ' checked="checked"';
  782:                     }
  783:                     my $title;
  784:                     if (ref($titlesref) eq 'HASH') {
  785:                         $title = $titlesref->{$type};
  786:                     }
  787:                     unless ($title) {
  788:                         $title = &mt($type);
  789:                     }
  790:                     my $onclick;
  791:                     if ($type eq 'Previous') {
  792:                         $onclick = ' onclick="toggleWasActive();"'; 
  793:                     }
  794:                     $output .= '<span class="LC_nobreak">'.
  795:                                '<label><input type="checkbox" id="counts_'.$type.'"'.
  796:                                ' name="showcounts" value="'.$type.'"'.$checked.$onclick.
  797:                                ' />'.$title.'</label></span>';
  798:                     if ($type eq 'Previous') {
  799:                         my %milestonetext = &Apache::lonlocal::texthash (
  800:                             accessend => 'immediately prior to default end access date',
  801:                             enrollend => 'immediately prior to end date for auto-enrollment',
  802:                             date      => 'immediately prior to specific date:',
  803:                         );
  804:                         my @statuses = &Apache::loncommon::get_env_multiple('form.showcounts');
  805:                         $output .= '<span id="choosewasacctext" class="LC_nobreak">';
  806:                         if ($checked) {
  807:                             $output .= &get_wasactive_text();
  808:                         }
  809:                         $output .= '</span>'.
  810:                                    '<div id="choosewasactive" style="display:'.$wasactivedisplay.'">'.
  811:                                    '<table>';
  812:                         my @milestones = ('accessend');
  813:                         if (&Apache::lonnet::auto_run(undef,$codedom)) {
  814:                             push(@milestones,'enrollend');
  815:                         }
  816:                         push(@milestones,'date');
  817:                         foreach my $item (@milestones) {
  818:                             my $checked;
  819:                             if ($env{'form.state'} eq 'listing') {
  820:                                 if ($env{'form.wasactive'} eq $item) {
  821:                                     $checked = ' checked="checked"';
  822:                                 }
  823:                             } elsif ($item eq 'accessend') {
  824:                                 $checked = ' checked="checked"';
  825:                             }
  826:                             $output .=
  827:                                 '<tr><td width="10">&nbsp;</td><td>'.
  828:                                 '<span class="LC_nobreak"><label>'.
  829:                                 '<input type="radio" value="'.$item.'" name="wasactive"'.$checked.' />'.
  830:                                 $milestonetext{$item}.'</label></span>';
  831:                             if ($item eq 'date') {
  832:                                 my $wasactiveon;
  833:                                 if (grep(/^Previous$/,@currstatuses)) {
  834:                                     $wasactiveon =
  835:                                         &Apache::lonhtmlcommon::get_date_from_form('wasactiveon');
  836:                                 } else {
  837:                                     $wasactiveon = 'now';
  838:                                 }
  839:                                 $output .= ' '.
  840:                                     &Apache::lonhtmlcommon::date_setter('coursecatalog',
  841:                                                                         'wasactiveon',
  842:                                                                         $wasactiveon,
  843:                                                                         '','','',1,'',
  844:                                                                         '','',1);
  845:                             }
  846:                             $output .= '</td></tr>';
  847:                         }
  848:                         $output .= '</table></div>';
  849:                     }
  850:                     $output .= '<br />';
  851:                 }
  852:             }
  853:         }
  854:         $output .= '</div></td>';
  855:     } else {
  856:         $output .= '</td>';  
  857:     }
  858:     $output .= '</tr></table></fieldset></div>'.
  859:                '<div style="clear:both;margin:0;"></div>';  
  860:     return $output;
  861: }
  862: 
  863: sub user_is_dc {
  864:     my ($codedom) = @_;
  865:     if (exists($env{'user.role.dc./'.$codedom.'/'})) {
  866:         my $livedc = 1;
  867:         my $now = time;
  868:         my ($start,$end)=split(/\./,$env{'user.role.dc./'.$codedom.'/'});
  869:         if ($start && $start>$now) { $livedc = 0; }
  870:         if ($end   && $end  <$now) { $livedc = 0; }
  871:         return $livedc;
  872:     }
  873:     return;
  874: }
  875: 
  876: sub canview_all {
  877:     my $canviewall = 0;
  878:     my $page = 'coursecatalog';
  879:     if (&LONCAPA::lonauthcgi::can_view($page)) {
  880:         $canviewall = 1;
  881:     } elsif (&LONCAPA::lonauthcgi::check_ipbased_access($page)) {
  882:         $canviewall= 1;
  883:     }
  884:     return $canviewall;
  885: }
  886: 
  887: sub get_statustitles {
  888:     my ($caller) = @_;
  889:     my @status_order = ('Active','Future','Previous');
  890:     my %status_title;
  891:     if ($caller eq 'filters') {
  892:         %status_title = &Apache::lonlocal::texthash(
  893:                            Previous => 'Show count for past access',
  894:                            Active => 'Show count for current student access',
  895:                            Future => 'Show count for future student access',
  896:                         );
  897:         if ($env{'form.currcat_0'} eq 'communities::0') {
  898:             $status_title{'Active'} = 'Show count for current member access';
  899:             $status_title{'Future'} = 'Show count for future member access'; 
  900:         }
  901:     } else {    
  902:         %status_title = &Apache::lonlocal::texthash(
  903:                            Previous => 'Previous access',
  904:                            Active => 'Current access',
  905:                            Future => 'Future access',
  906:                         );
  907:     }
  908:     return (\%status_title,\@status_order);
  909: }
  910: 
  911: sub get_wasactive_text {
  912:     my $wasacctext = ' -- ';
  913:     if ($env{'form.currcat_0'} eq 'communities::0') {
  914:         $wasacctext .= &mt('where member access status was current ...');
  915:     } else {
  916:         $wasacctext .= &mt('where student access status was current ...');
  917:     }
  918:     return $wasacctext;
  919: }
  920: 
  921: sub search_official_courselist {
  922:     my ($domain,$numtitles,$codetitles) = @_;
  923:     my $instcode = &Apache::courseclassifier::instcode_search_str($domain,$numtitles,$codetitles);
  924:     my $showhidden;
  925:     if (&user_is_dc($domain)) {
  926:         $showhidden = $env{'form.showhidden'};
  927:     }
  928:     my %courses = 
  929:         &Apache::lonnet::courseiddump($domain,'.',1,$instcode,'.','.',undef,undef,
  930:                                       'Course',1,$env{'form.showselfenroll'},undef,
  931:                                       $showhidden,'coursecatalog');
  932:     return %courses;
  933: }
  934: 
  935: sub search_courselist {
  936:     my ($domain,$subcats) = @_;
  937:     my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  938:     my $filter = $env{'form.currcat_'.$cat_maxdepth};
  939:     if (($filter eq '') && ($cat_maxdepth > 0)) {
  940:         my $shallower = $cat_maxdepth - 1;
  941:         $filter = $env{'form.currcat_'.$shallower};
  942:     }
  943:     my %courses;
  944:     my $filterstr;
  945:     if ($filter ne '') {
  946:         if ($env{'form.withsubcats'}) {
  947:             if (ref($subcats) eq 'HASH') {
  948:                 if (ref($subcats->{$filter}) eq 'ARRAY') {
  949:                     $filterstr = join('&',@{$subcats->{$filter}});
  950:                     if ($filterstr ne '') {
  951:                         $filterstr = $filter.'&'.$filterstr;
  952:                     }
  953:                 } else {
  954:                     $filterstr = $filter;
  955:                 }
  956:             } else {
  957:                 $filterstr = $filter;
  958:             }  
  959:         } else {
  960:             $filterstr = $filter; 
  961:         }
  962:         my ($showhidden,$typefilter);
  963:         if (&user_is_dc($domain)) {
  964:             $showhidden = $env{'form.showhidden'};
  965:         }
  966:         if ($env{'form.currcat_0'} eq 'communities::0') {
  967:             $typefilter = 'Community';
  968:         } else {
  969:             $typefilter = '.';
  970:         }
  971:         %courses = 
  972:             &Apache::lonnet::courseiddump($domain,'.',1,'.','.','.',undef,undef,
  973:                                           $typefilter,1,$env{'form.showselfenroll'},
  974:                                           $filterstr,$showhidden,'coursecatalog');
  975:     }
  976:     return %courses;
  977: }
  978: 
  979: sub print_course_listing {
  980:     my ($domain,$numtitles,$trails,$allitems,$subcats,$codetitles,$canviewall) = @_;
  981:     my $output;
  982:     my %courses;
  983:     my $knownuser = &user_is_known();
  984:     my $canviewall = &canview_all();
  985:     my $details = $env{'form.coursenum'};
  986:     if (&user_is_dc($domain) || $canviewall) {
  987:         if ($env{'form.showdetails'}) {
  988:             $details = 1;
  989:         }
  990:     }
  991:     if ($env{'form.coursenum'} ne '') {
  992:         %courses = &Apache::lonnet::courseiddump($domain,'.',1,'.','.',
  993:                                                  $env{'form.coursenum'},
  994:                                                  undef,undef,'.',1);
  995:         if (keys(%courses) == 0) {
  996:             $output = '<p class="LC_error">';
  997:             if ($env{'form.currcat_0'} eq 'communities::0') {
  998:                 $output .= &mt('The courseID provided does not match a community in this domain.');
  999:             } else { 
 1000:                 $output .= &mt('The courseID provided does not match a course in this domain.');
 1001:             }
 1002:             $output .= '</p>';
 1003:             return $output;
 1004:         }
 1005:     } else {
 1006:         if ($env{'form.currcat_0'} eq 'instcode::0') {
 1007:             %courses = &search_official_courselist($domain,$numtitles,$codetitles);
 1008:         } else {
 1009:             %courses = &search_courselist($domain,$subcats);
 1010:         }
 1011:         if (keys(%courses) == 0) {
 1012:             $output = '<p class="LC_info">';
 1013:             if ($env{'form.currcat_0'} eq 'communities::0') {
 1014:                 $output .= &mt('No communities match the criteria you selected.');
 1015:             } else {
 1016:                 $output .= &mt('No courses match the criteria you selected.');
 1017:             }
 1018:             $output .= '</p>';
 1019:             return $output;
 1020:         }
 1021:         if (($knownuser) && (!$env{'form.showdetails'}) && (!&user_is_dc($domain)) && (!$canviewall)) {
 1022:             $output = '<b>'.&mt('Note for students:').'</b> '
 1023:                      .&mt('If you are officially enrolled in a course but the course is not listed in your LON-CAPA courses, click the "Show more details" link for the specific course and check the default access dates and/or automated enrollment settings.')
 1024:                      .'<br /><br />';
 1025:         }
 1026:     }
 1027:     my $now = time;
 1028:     $output .= &construct_data_table($knownuser,$domain,\%courses,$details,undef,
 1029:                                      $now,$trails,$allitems,$canviewall);
 1030:     $output .= "\n".'<form name="linklaunch" method="post" action="">'.
 1031:                '<input type="hidden" name="backto" value="coursecatalog" />'.
 1032:                '<input type="hidden" name="courseid" value="" />'.
 1033:                &Apache::lonhtmlcommon::echo_form_input(['catalogfilter','courseid']).'</form>';
 1034:     return $output;
 1035: }
 1036: 
 1037: sub construct_data_table {
 1038:     my ($knownuser,$domain,$courses,$details,$usersections,$now,$trails,$allitems,$canviewall) = @_;
 1039:     my %sortname;
 1040:     if (($details eq '') || ($env{'form.showdetails'})) {
 1041:         $sortname{'Code'} = 'code';
 1042:         $sortname{'Categories'} = 'cats';
 1043:         $sortname{'Title'} = 'title';
 1044:         $sortname{'Owner & Co-owner(s)'} = 'owner';
 1045:     }
 1046:     my $output = &Apache::loncommon::start_data_table().
 1047:                  &Apache::loncommon::start_data_table_header_row();
 1048:     my @coltitles = ('Count');
 1049:     if ($env{'form.currcat_0'} eq 'instcode::0') {
 1050:         push(@coltitles,'Code');
 1051:     } else {
 1052:         push(@coltitles,'Categories');
 1053:     }
 1054:     push(@coltitles,('Sections','Crosslisted','Title','Owner & Co-owner(s)'));
 1055:     if (ref($usersections) eq 'HASH') {
 1056:        $coltitles[1] = 'Your Section';
 1057:     }
 1058:     foreach my $item (@coltitles) {
 1059:         $output .= '<th>';
 1060:         if (defined($sortname{$item})) {
 1061:             $output .= '<a href="javascript:changeSort('."'$sortname{$item}'".')">'.&mt($item).'</a>';
 1062:         } elsif ($item eq 'Count') {
 1063:             $output .= '&nbsp;&nbsp;';
 1064:         } else {
 1065:             $output .= &mt($item);
 1066:         }
 1067:         $output .= '</th>';
 1068:     }
 1069:     my (@fields,%fieldtitles,$wasactiveon);
 1070:     if ($knownuser || ($canviewall && $details)) {
 1071:         if ($details) {
 1072:             if ($env{'form.currcat_0'} eq 'communities::0') {
 1073:                 $output .= '<th>'.&mt('Default Access Dates for Members').'</th>'.
 1074:                            '<th>'.&mt('Member Counts').'</th>';
 1075:             } else {
 1076:                 $output .=
 1077:                     '<th>'.&mt('Default Access Dates for Students').'</th>'.
 1078:                     '<th>'.&mt('Student Counts').'</th>'.
 1079:                     '<th>'.&mt('Auto-enrollment of[_1]registered students','<br />').'</th>';
 1080:             }
 1081:             my ($titlesref,$orderref) = &get_statustitles();
 1082:             my @statuses;
 1083:             if (&user_is_dc($domain) || $canviewall) {
 1084:                 @statuses = &Apache::loncommon::get_env_multiple('form.showcounts');
 1085:                 if (grep(/^Previous$/,@statuses)) {
 1086:                     if ($env{'form.wasactive'} eq 'date') { 
 1087:                         $wasactiveon = 
 1088:                             &Apache::lonhtmlcommon::get_date_from_form('wasactiveon');
 1089:                     } else {
 1090:                         $wasactiveon = $env{'form.wasactive'};
 1091:                     }
 1092:                 }
 1093:                 if (ref($orderref) eq 'ARRAY') {
 1094:                     foreach my $status (@{$orderref}) {
 1095:                         if (grep(/^\Q$status\E$/,@statuses)) {
 1096:                             push(@fields,$status); 
 1097:                         }
 1098:                     }
 1099:                 }
 1100:             } else {
 1101:                 @fields = ('Active','Future');
 1102:             }
 1103:             foreach my $status (@fields) {
 1104:                 my $title;
 1105:                 if (ref($titlesref) eq 'HASH') {
 1106:                     $title = $titlesref->{$status};
 1107:                 }
 1108:                 unless ($title) {
 1109:                     $title = &mt($status);
 1110:                 }
 1111:                 $fieldtitles{$status} = $title;
 1112:             }
 1113:         } else {
 1114:             $output .= '<th>'.&mt('Details').'</th>';
 1115:         }
 1116:     }
 1117:     $output .= '<th>'.&mt('Self-enroll (if permitted)').'</th>';
 1118:     &Apache::loncommon::end_data_table_header_row();
 1119:     my (%numbers,%creditsum);
 1120:     my ($showcredits,$defofficial,$defunofficial,$deftextbook);
 1121:     my %domdefaults = &Apache::lonnet::get_domain_defaults($domain);
 1122:     unless ($env{'form.currcat_0'} eq 'communities::0') {
 1123:         if ($domdefaults{'officialcredits'} || $domdefaults{'unofficialcredits'} || $domdefaults{'textbookcredits'}) {
 1124:             $showcredits = 1;
 1125:             $defofficial = $domdefaults{'officialcredits'};
 1126:             $defunofficial = $domdefaults{'unofficialcredits'};
 1127:             $deftextbook = $domdefaults{'textbookcredits'};
 1128:         }
 1129:     }
 1130:     my %courseinfo = &build_courseinfo_hash($courses,$knownuser,$domain,$canviewall,$details,
 1131:                                             $usersections,\@fields,\%fieldtitles,
 1132:                                             $wasactiveon,\%numbers,\%creditsum,
 1133:                                             $showcredits,$defofficial,$defunofficial,$deftextbook);
 1134:     my %Sortby;
 1135:     foreach my $course (sort(keys(%{$courses}))) {
 1136:         if ($env{'form.sortby'} eq 'code') {
 1137:             push(@{$Sortby{$courseinfo{$course}{'code'}}},$course);
 1138:         } elsif ($env{'form.sortby'} eq 'cats') {
 1139:             push(@{$Sortby{$courseinfo{$course}{'categories'}}},$course);
 1140:         } elsif ($env{'form.sortby'} eq 'owner') {
 1141:             push(@{$Sortby{$courseinfo{$course}{'ownerlastnames'}}},$course);
 1142:         } else {
 1143:             my $clean_title = $courseinfo{$course}{'title'};
 1144:             $clean_title =~ s/\W+//g;
 1145:             if ($clean_title eq '') {
 1146:                 $clean_title = $courseinfo{$course}{'title'};
 1147:             }
 1148:             push(@{$Sortby{$clean_title}},$course);
 1149:         }
 1150:     }
 1151:     my @sorted_courses;
 1152:     if (($env{'form.sortby'} eq 'code') || ($env{'form.sortby'} eq 'owner') ||
 1153:         ($env{'form.sortby'} eq 'cats')) {
 1154:         @sorted_courses = sort(keys(%Sortby));
 1155:     } else {
 1156:         @sorted_courses = sort { lc($a) cmp lc($b) } (keys(%Sortby));
 1157:     }
 1158:     my $count = 1;
 1159:     my $totalsec = 0;
 1160:     foreach my $item (@sorted_courses) {
 1161:         foreach my $course (@{$Sortby{$item}}) {
 1162:             $output.=&Apache::loncommon::start_data_table_row(); 
 1163:             $output.=&courseinfo_row($courseinfo{$course},$knownuser,$details,
 1164:                                      \$count,$now,$course,$trails,$allitems,\%numbers,$canviewall);
 1165:             $output.=&Apache::loncommon::end_data_table_row();
 1166:         }
 1167:     }
 1168:     if (($knownuser || $canviewall) && ($count > 1) && $env{'form.showdetails'}) {
 1169:         if (&user_is_dc($domain) || $canviewall) {
 1170:             my %lt = &Apache::lonlocal::texthash (
 1171:                                                      'Active'   => 'Total current students',
 1172:                                                      'Future'   => 'Total future students',
 1173:                                                      'Previous' => 'Total previous students',
 1174:                                                      'courses'  => 'Total unique codes and courses without codes',
 1175:                                                      'sections' => 'Total sections',
 1176:                                                      'xlists'   => 'Total cross-listings',
 1177:                                                  );
 1178:             if ($showcredits) {
 1179:                 $lt{'cr_Active'} = &mt('Total current student credit hours');
 1180:                 $lt{'cr_Future'} = &mt('Total future student credit hours');
 1181:                 $lt{'cr_Previous'} = &mt('Total previous student credit hours');
 1182:             }
 1183:             if ($env{'form.currcat_0'} eq 'communities::0') {
 1184:                 $lt{'courses'} = &mt('Total communities');
 1185:                 $lt{'Active'} = &mt('Total current members'); 
 1186:                 $lt{'Future'} = &mt('Total future members');
 1187:                 $lt{'Previous'} = &mt('Total previous members');
 1188:             }
 1189:             my $colspan = 8;
 1190:             if ($showcredits) {
 1191:                 $colspan = 4;
 1192:             }
 1193:             $output .= '<tr class="LC_footer_row">'.
 1194:                        '<td colspan="2">&nbsp;</td>'.
 1195:                        '<td colspan="'.$colspan.'">'.
 1196:                        '<table border="0">';
 1197:             foreach my $item ('courses','sections','xlists') {
 1198:                 $output .= '<tr>'.
 1199:                            '<td>'.$lt{$item}.'</td><td>&nbsp;</td>'.
 1200:                            '<td align="right">'.$numbers{$item}.'</td>'.
 1201:                            '</tr>'."\n";
 1202:             }
 1203:             if (@fields > 0) { 
 1204:                 foreach my $status (@fields) {
 1205:                     $output .= '<tr>'.
 1206:                                '<td>'.$lt{$status}.'</td><td>&nbsp;</td>'.
 1207:                                '<td align="right">'.$numbers{$status}.'</td>'.
 1208:                                '</tr>'."\n";
 1209:                 }
 1210:             }
 1211:             $output .= '</table></td>';
 1212:             if ($showcredits) {
 1213:                 $output .= '<td colspan="'.$colspan.'" valign="bottom"><table>';
 1214:                 foreach my $status (@fields) {
 1215:                     $output .= '<tr>'.
 1216:                                '<td>'.$lt{'cr_'.$status}.'</td><td>&nbsp;</td>'.
 1217:                                '<td align="right">'.$creditsum{$status}.'</td></tr>';
 1218:                 }
 1219:                 $output .= '</table></td></tr>';
 1220:             }
 1221:         }
 1222:     }
 1223:     $output .= &Apache::loncommon::end_data_table();
 1224:     return $output;
 1225: }
 1226: 
 1227: sub build_courseinfo_hash {
 1228:     my ($courses,$knownuser,$domain,$canviewall,$details,$usersections,$fields,$fieldtitles,
 1229:         $wasactiveon,$numbers,$creditsum,$showcredits,$defofficial,$defunofficial) = @_;
 1230:     my %courseinfo;
 1231:     my $now = time;
 1232:     my $gettotals;
 1233:     if ((keys(%{$courses}) > 0) && (&user_is_dc($domain) || $canviewall) && ($details)) {
 1234:         $gettotals = 1;
 1235:     }
 1236:     my (%uniquecodes,$nocodes,$defcreds);
 1237:     foreach my $course (keys(%{$courses})) {
 1238:         my $descr;
 1239:         if (ref($courses->{$course}) eq 'HASH') {
 1240:             $descr = $courses->{$course}{'description'}; 
 1241:         }
 1242:         my $cleandesc=&HTML::Entities::encode($descr,'<>&"');
 1243:         $cleandesc=~s/'/\\'/g;
 1244:         $cleandesc =~ s/^\s+//;
 1245:         my ($cdom,$cnum)=split(/\_/,$course);
 1246:         my ($instcode,$singleowner,$ttype,$selfenroll_types,
 1247:             $selfenroll_start,$selfenroll_end,@owners,%ownernames,$categories);
 1248:         if (ref($courses->{$course}) eq 'HASH') {
 1249:             $descr = $courses->{$course}{'description'};
 1250:             $instcode =  $courses->{$course}{'inst_code'};
 1251:             $singleowner = $courses->{$course}{'owner'};
 1252:             $ttype =  $courses->{$course}{'type'};
 1253:             $selfenroll_types = $courses->{$course}{'selfenroll_types'};
 1254:             $selfenroll_start = $courses->{$course}{'selfenroll_start_date'};
 1255:             $selfenroll_end = $courses->{$course}{'selfenroll_end_date'};
 1256:             $categories = $courses->{$course}{'categories'};
 1257:             push(@owners,$singleowner);
 1258:             if ($courses->{$course}{'co-owners'} ne '') {
 1259:                 foreach my $item (split(/,/,$courses->{$course}{'co-owners'})) {
 1260:                     push(@owners,$item);
 1261:                 }
 1262:             }
 1263:         }
 1264:         if ($instcode ne '') {
 1265:             $uniquecodes{$instcode} = 1;
 1266:         } else {
 1267:             $nocodes ++;
 1268:         } 
 1269:         foreach my $owner (@owners) {
 1270:             my ($ownername,$ownerdom); 
 1271:             if ($owner =~ /:/) {
 1272:                 ($ownername,$ownerdom) = split(/:/,$owner);
 1273:             } else {
 1274:                 $ownername = $owner;
 1275:                 if ($owner ne '') {
 1276:                     $ownerdom = $cdom;
 1277:                 }
 1278:             }
 1279:             if ($ownername ne '' && $ownerdom ne '') {
 1280:                 my %namehash=&Apache::loncommon::getnames($ownername,$ownerdom);
 1281:                 $ownernames{$ownername.':'.$ownerdom} = \%namehash; 
 1282:             }
 1283:         }
 1284:         $courseinfo{$course}{'cdom'} = $cdom;
 1285:         $courseinfo{$course}{'cnum'} = $cnum;
 1286:         $courseinfo{$course}{'code'} = $instcode;
 1287:         my @lastnames;
 1288:         foreach my $owner (keys(%ownernames)) {
 1289:             if (ref($ownernames{$owner}) eq 'HASH') {
 1290:                 push(@lastnames,$ownernames{$owner}{'lastname'});
 1291:             }
 1292:         }
 1293:         $courseinfo{$course}{'ownerlastnames'} = join(', ',sort(@lastnames));
 1294:         $courseinfo{$course}{'title'} = $cleandesc;
 1295:         $courseinfo{$course}{'owner'} = $singleowner;
 1296:         $courseinfo{$course}{'selfenroll_types'} = $selfenroll_types;
 1297:         $courseinfo{$course}{'selfenroll_start'} = $selfenroll_start;
 1298:         $courseinfo{$course}{'selfenroll_end'} = $selfenroll_end;
 1299:         $courseinfo{$course}{'categories'} = $categories;
 1300: 
 1301:         my %coursehash = &Apache::lonnet::dump('environment',$cdom,$cnum);
 1302:         my @classids;
 1303:         my @crosslistings;
 1304:         my ($seclist,$numsec) = 
 1305:             &identify_sections($coursehash{'internal.sectionnums'});
 1306:         $courseinfo{$course}{'seclist'} = $seclist;
 1307:         my ($xlist_items,$numxlist) = 
 1308:             &identify_sections($coursehash{'internal.crosslistings'});
 1309:         if (ref($numbers) eq 'HASH') {
 1310:             $numbers->{'sections'} += $numsec; 
 1311:             $numbers->{'xlists'} += $numxlist;  
 1312:         }
 1313:         my $showsyllabus = 1; # default is to include a syllabus link
 1314:         if (defined($coursehash{'showsyllabus'})) {
 1315:             $showsyllabus = $coursehash{'showsyllabus'};
 1316:         }
 1317:         $courseinfo{$course}{'showsyllabus'} = $showsyllabus;
 1318:         if ($showcredits) {
 1319:             if ($coursehash{'internal.defaultcredits'}) {
 1320:                 $courseinfo{$course}{'defaultcredits'} = $coursehash{'internal.defaultcredits'};
 1321:             } elsif ($instcode ne '') {
 1322:                 $courseinfo{$course}{'defaultcredits'} = $defofficial;
 1323:             } else {
 1324:                 $courseinfo{$course}{'defaultcredits'} = $defunofficial;
 1325:             }
 1326:             $defcreds = $courseinfo{$course}{'defaultcredits'};
 1327:         }
 1328:         if (((defined($env{'form.coursenum'}) && ($cnum eq $env{'form.coursenum'}))) ||
 1329:             (($knownuser || $canviewall) && ($details == 1))) {
 1330:             my $milestone;
 1331:             if ($wasactiveon eq 'accessend') {
 1332:                 if ($coursehash{'default_enrollment_end_date'}) {
 1333:                     $milestone = $coursehash{'default_enrollment_end_date'};
 1334:                 } else {
 1335:                     $milestone = time;
 1336:                 }
 1337:             } elsif ($wasactiveon eq 'enrollend') {
 1338:                 if ($coursehash{'internal.autoend'}) {
 1339:                     $milestone = $coursehash{'internal.autoend'};
 1340:                 } else {
 1341:                     $milestone = time;
 1342:                 }
 1343:             } else {
 1344:                 $milestone = $wasactiveon;
 1345:             }
 1346:             $courseinfo{$course}{'counts'} =  
 1347:                 &count_students($cdom,$cnum,$numsec,$fields,$fieldtitles,$gettotals,
 1348:                                 $numbers,$creditsum,$showcredits,$defcreds,$milestone);
 1349:             if ($instcode ne '') {
 1350:                 $courseinfo{$course}{'autoenrollment'} =
 1351:                     &autoenroll_info(\%coursehash,$now,$seclist,$xlist_items,
 1352:                                      $instcode,\@owners,$cdom,$cnum);
 1353:             }
 1354:             my $startaccess = '';
 1355:             my $endaccess = '';
 1356:             my $accessdates;
 1357:             if ( defined($coursehash{'default_enrollment_start_date'}) ) {
 1358:                 $startaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_start_date'});
 1359:             }
 1360:             if ( defined($coursehash{'default_enrollment_end_date'}) ) {
 1361:                 $endaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_end_date'});
 1362:                 if ($coursehash{'default_enrollment_end_date'} == 0) {
 1363:                     $endaccess = &mt('No ending date');
 1364:                 }
 1365:             }
 1366:             if ($startaccess) {
 1367:                 $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$startaccess).'<br />';
 1368:             }
 1369:             if ($endaccess) {
 1370:                 $accessdates .= '<i>'.&mt('To:[_1]','</i> '.$endaccess).'<br />';
 1371:             }
 1372:             if (($selfenroll_types ne '') && 
 1373:                 ($selfenroll_end > 0 && $selfenroll_end > $now)) {
 1374:                 my ($selfenroll_start_access,$selfenroll_end_access);
 1375:                 if (($coursehash{'default_enrollment_start_date'} ne 
 1376:                      $coursehash{'internal.selfenroll_start_access'}) ||
 1377:                    ($coursehash{'default_enrollment_end_date'} ne 
 1378:                     $coursehash{'internal.selfenroll_end_access'})) {
 1379:                     if ( defined($coursehash{'internal.selfenroll_start_access'}) ) {
 1380:                         $selfenroll_start_access = &Apache::lonlocal::locallocaltime($coursehash{'internal.selfenroll_start_access'});
 1381:                     }
 1382:                     if ( defined($coursehash{'default_enrollment_end_date'}) ) {
 1383:                         $selfenroll_end_access = &Apache::lonlocal::locallocaltime($coursehash{'internal.selfenroll_end_access'});
 1384:                         if ($coursehash{'internal.selfenroll_end_access'} == 0) {
 1385:                             $selfenroll_end_access = &mt('No ending date');
 1386:                         }
 1387:                     }
 1388:                     if ($selfenroll_start_access || $selfenroll_end_access) {
 1389:                         $accessdates .= '<br/><br /><i>'.&mt('Self-enrollers:').'</i><br />';
 1390:                         if ($selfenroll_start_access) {
 1391:                             $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$selfenroll_start_access).'<br />';
 1392:                         }
 1393:                         if ($selfenroll_end_access) {
 1394:                             $accessdates .= '<i>'.&mt('To:[_1]','</i> '.$selfenroll_end_access).'<br />';
 1395:                         }
 1396:                     }
 1397:                 }
 1398:             }
 1399:             $courseinfo{$course}{'access'} = $accessdates;
 1400:         }
 1401:         if ($xlist_items eq '') {
 1402:             $xlist_items = &mt('No');
 1403:         }
 1404:         $courseinfo{$course}{'xlist'} = $xlist_items;
 1405:     }
 1406:     if (ref($numbers) eq 'HASH') {
 1407:         $numbers->{'courses'} = $nocodes + scalar(keys(%uniquecodes));
 1408:     }
 1409:     return %courseinfo;
 1410: }
 1411: 
 1412: sub count_students {
 1413:     my ($cdom,$cnum,$numsec,$fieldsref,$titlesref,$getcounts,$numbers,$creditsum,
 1414:         $showcredits,$defcreds,$wasactiveon) = @_;
 1415:     my $countslist = '<span class="LC_nobreak">'.
 1416:                      &mt('[quant,_1,section,sections,No sections]',$numsec).'</span>';
 1417:     my (@fields,%titles,$showexpired);
 1418:     if ((ref($fieldsref) eq 'ARRAY') && (ref($titlesref) eq 'HASH') &&
 1419:         (ref($numbers) eq 'HASH')) {
 1420:         @fields = @{$fieldsref};
 1421:         %titles = %{$titlesref};
 1422:         if (grep(/^Previous$/,@fields)) {
 1423:             $showexpired = 1;
 1424:         }
 1425:     } else {
 1426:         return;
 1427:     }
 1428:     my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cnum);
 1429:     my (%student_count,%credit_count);
 1430:     %student_count = (
 1431:                            Active   => 0,
 1432:                            Future   => 0,
 1433:                            Previous => 0,
 1434:                      );
 1435:     if ($showcredits) {
 1436:         %credit_count = (
 1437:                           Active   => 0,
 1438:                           Future   => 0,
 1439:                           Previous => 0,
 1440:                         );
 1441:     }
 1442:     my %idx;
 1443:     $idx{'status'} = &Apache::loncoursedata::CL_STATUS();
 1444:     $idx{'end'}    = &Apache::loncoursedata::CL_END();
 1445:     $idx{'credits'} = &Apache::loncoursedata::CL_CREDITS();
 1446:     while (my ($student,$data) = each(%$classlist)) {
 1447:         my $status = $data->[$idx{'status'}];
 1448:         my $credits = $data->[$idx{'credits'}];
 1449:         if ($credits eq '') {
 1450:             $credits = $defcreds;  
 1451:         }
 1452:         if ($status eq 'Expired') {
 1453:             if (($showexpired) &&
 1454:                 ($data->[$idx{'end'}] >= $wasactiveon)) {
 1455:                 $student_count{'Previous'} ++;
 1456:                 if ($showcredits) {
 1457:                     $credit_count{'Previous'} += $credits; 
 1458:                 }
 1459:             }
 1460:         } else {
 1461:             $student_count{$status} ++;
 1462:             if ($showcredits) {
 1463:                 $credit_count{$status} += $credits;
 1464:             }
 1465:         }
 1466:     }
 1467:     if (@fields) {
 1468:         $countslist .= ':<br />';
 1469:         foreach my $status (@fields) {
 1470:             $countslist .= '<span class="LC_nobreak">'.$titles{$status}.': '.
 1471:                            $student_count{$status}.'</span><br />';
 1472:             $numbers->{$status} += $student_count{$status};
 1473:             if ($showcredits) {
 1474:                 $creditsum->{$status} += $credit_count{$status};
 1475:             }
 1476:         }
 1477:     }
 1478:     return $countslist;
 1479: }
 1480: 
 1481: sub courseinfo_row {
 1482:     my ($info,$knownuser,$details,$countref,$now,$course,$trails,$allitems,$numbers,$canviewall) = @_;
 1483:     my ($cdom,$cnum,$title,$ownerlast,$code,$owner,$seclist,$xlist_items,
 1484:         $accessdates,$showsyllabus,$counts,$autoenrollment,$output,$categories);
 1485:     if (ref($info) eq 'HASH') {
 1486:         $cdom = $info->{'cdom'};
 1487:         $cnum = $info->{'cnum'};
 1488:         $title = $info->{'title'};
 1489:         $ownerlast = $info->{'ownerlastnames'};
 1490:         $code = $info->{'code'};
 1491:         $owner = $info->{'owner'};
 1492:         $seclist = $info->{'seclist'};
 1493:         $xlist_items = $info->{'xlist'};
 1494:         $accessdates = $info->{'access'};
 1495:         $counts = $info->{'counts'};
 1496:         $autoenrollment = $info->{'autoenrollment'};
 1497:         $showsyllabus = $info->{'showsyllabus'};
 1498:         $categories = $info->{'categories'};
 1499:     } else {
 1500:         $output = '<td colspan="8">'.&mt('No information available for [_1].',
 1501:                                          $code).'</td>';
 1502:         return $output;
 1503:     }
 1504:     $output .= '<td>'.$$countref.'</td>';
 1505:     if ($env{'form.currcat_0'} eq 'instcode::0') {
 1506:         $output .= '<td>'.$code.'</td>';
 1507:     } else {
 1508:         my ($categorylist,@cats);
 1509:         if ($categories ne '') {
 1510:             @cats = split('&',$categories);
 1511:         }
 1512:         if ((ref($trails) eq 'ARRAY') && (ref($allitems) eq 'HASH')) {
 1513:             my @categories = map { $trails->[$allitems->{$_}]; } @cats;
 1514:             $categorylist = join('<br />',@categories);
 1515:         }
 1516:         if ($categorylist eq '') {
 1517:             $categorylist = '&nbsp;';
 1518:         }
 1519:         $output .= '<td>'.$categorylist.'</td>';
 1520:     }
 1521:     $output .= '<td>'.$seclist.'</td>'.
 1522:                '<td>'.$xlist_items.'</td>'.
 1523:                '<td>'.$title.'&nbsp;<font size="-2">';
 1524:     if ($showsyllabus) {
 1525:         $output .= '<a href="javascript:ToSyllabus('."'$cdom','$cnum'".')">'.&mt('Syllabus').'</a>';
 1526:     } else {
 1527:         $output .= '&nbsp;';
 1528:     }
 1529:     $output .= '</font></td>'.
 1530:                '<td>'.$ownerlast.'</td>';
 1531:     if (($knownuser) || ($canviewall && $details)) {
 1532:         if ($details) {
 1533:             $output .=
 1534:                 '<td>'.$accessdates.'</td>'.
 1535:                 '<td>'.$counts.'</td>';
 1536:             unless ($env{'form.currcat_0'} eq 'communities::0') {
 1537:                 $output .= '<td>'.$autoenrollment.'</td>';
 1538:             }
 1539:         } else {
 1540:             $output .= "<td><a href=\"javascript:setCourseId('$cnum')\">".&mt('Show more details').'</a></td>';
 1541:         }
 1542:     }
 1543:     my $selfenroll = &selfenroll_status($info,$course);
 1544:     if ($selfenroll) {
 1545:         $output .= '<td>'.$selfenroll.'</td>';
 1546:     } else {
 1547:         $output .= '<td>&nbsp;</td>';
 1548:     }
 1549:     $$countref ++;
 1550:     return $output;
 1551: }
 1552: 
 1553: sub selfenroll_status {
 1554:     my ($info,$course) = @_;
 1555:     my $now = time;
 1556:     my $output;
 1557:     if (ref($info) eq 'HASH') {
 1558:         if ($info->{'selfenroll_types'}) {
 1559:             my $showstart = &Apache::lonlocal::locallocaltime($info->{'selfenroll_start'});
 1560:             my $showend = &Apache::lonlocal::locallocaltime($info->{'selfenroll_end'});
 1561:             if (($info->{'selfenroll_end'} > 0) && ($info->{'selfenroll_end'} > $now)) {
 1562:                 if (($info->{'selfenroll_start'} > 0) && ($info->{'selfenroll_start'} > $now)) {
 1563:                     $output = &mt('Starts: [_1]','<span class="LC_cusr_emph">'.$showstart.'</span>').'<br />'.&mt('Ends: [_1]','<span class="LC_cusr_emph">'.$showend.'</span>');
 1564:                 } else {
 1565:                     $output = '<a href="javascript:ToSelfenroll('."'$course'".')">'.
 1566:                               &mt('Enroll in course').'</a><br />';
 1567:                     if ($info->{'selfenroll_end'} == 0) {
 1568:                         $output .= &mt('Available permanently');
 1569:                     } elsif ($info->{'selfenroll_end'} > $now) {
 1570:                         $output .= &mt('Self-enrollment ends: [_1]','<span class="LC_cusr_emph">'.$showend.'</span>');
 1571:                     }
 1572:                 }
 1573:             }
 1574:         }
 1575:     }
 1576:     return $output;
 1577: }
 1578: 
 1579: sub identify_sections {
 1580:     my ($seclist) = @_;
 1581:     my @secnums;
 1582:     if ($seclist =~ /,/) {
 1583:         my @sections = split(/,/,$seclist);
 1584:         foreach my $sec (@sections) {
 1585:             $sec =~ s/:[^:]*$//;
 1586:             push(@secnums,$sec);
 1587:         }
 1588:     } else {
 1589:         if ($seclist =~ m/^([^:]+):/) {
 1590:             my $sec = $1;
 1591:             if (!grep(/^\Q$sec\E$/,@secnums)) {
 1592:                 push(@secnums,$sec);
 1593:             }
 1594:         }
 1595:     }
 1596:     @secnums = sort {$a <=> $b} @secnums;
 1597:     $seclist = join(', ',@secnums);
 1598:     my $numsec = @secnums;
 1599:     return ($seclist,$numsec);
 1600: }
 1601: 
 1602: sub get_valid_classes {
 1603:     my ($seclist,$xlist_items,$crscode,$owners,$cdom,$cnum) = @_;
 1604:     my $response;
 1605:     my %validations;
 1606:     @{$validations{'sections'}} = ();
 1607:     @{$validations{'xlists'}} = ();
 1608:     my $totalitems = 0;
 1609:     if ($seclist) {
 1610:         foreach my $sec (split(/, /,$seclist)) {
 1611:             my $class = $crscode.$sec;
 1612:             if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owners,
 1613: 							 $class) eq 'ok') {
 1614:                 if (!grep(/^\Q$sec$\E/,@{$validations{'sections'}})) {
 1615:                     push(@{$validations{'sections'}},$sec);
 1616:                     $totalitems ++;
 1617:                 }
 1618:             }
 1619:         }
 1620:     }
 1621:     if ($xlist_items) {
 1622:         foreach my $item (split(/, /,$xlist_items)) {
 1623:             if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owners,
 1624: 							 $item) eq 'ok') {
 1625:                 if (!grep(/^\Q$item$\E/,@{$validations{'xlists'}})) {
 1626:                     push(@{$validations{'xlists'}},$item);
 1627:                     $totalitems ++;
 1628:                 }
 1629:             }
 1630:         }
 1631:     }
 1632:     if ($totalitems > 0) {
 1633:         if (@{$validations{'sections'}}) {
 1634:             $response = &mt('Sections:').' '.
 1635:                         join(', ',@{$validations{'sections'}}).'<br />';
 1636:         }
 1637:         if (@{$validations{'xlists'}}) {
 1638:             $response .= &mt('Courses:').' '.
 1639:                         join(', ',@{$validations{'xlists'}});
 1640:         }
 1641:     }
 1642:     return $response;
 1643: }
 1644: 
 1645: sub autoenroll_info {
 1646:     my ($coursehash,$now,$seclist,$xlist_items,$code,$owners,$cdom,$cnum) = @_;
 1647:     my $autoenrolldates = &mt('Not enabled');
 1648:     if (defined($coursehash->{'internal.autoadds'}) && $coursehash->{'internal.autoadds'} == 1) {
 1649:         my ($autostart,$autoend);
 1650:         if ( defined($coursehash->{'internal.autostart'}) ) {
 1651:             $autostart = &Apache::lonlocal::locallocaltime($coursehash->{'internal.autostart'});
 1652:         }
 1653:         if ( defined($coursehash->{'internal.autoend'}) ) {
 1654:             $autoend = &Apache::lonlocal::locallocaltime($coursehash->{'internal.autoend'});
 1655:         }
 1656:         if ($coursehash->{'internal.autostart'} > $now) {
 1657:             if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
 1658:                 $autoenrolldates = &mt('Not enabled');
 1659:             } else {
 1660:                 my $valid_classes = 
 1661:                    &get_valid_classes($seclist,$xlist_items,$code,
 1662:                                       $owners,$cdom,$cnum);
 1663:                 if ($valid_classes ne '') {
 1664:                     $autoenrolldates = &mt('Not enabled').'<br />'
 1665:                                       .&mt('Starts: [_1]',$autostart)
 1666:                                       .'<br />'.$valid_classes;
 1667:                 }
 1668:             }
 1669:         } else {
 1670:             if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
 1671:                 $autoenrolldates = &mt('Not enabled').'<br />'
 1672:                                   .&mt('Ended: [_1]',$autoend);
 1673:             } else {
 1674:                 my $valid_classes = &get_valid_classes($seclist,$xlist_items,
 1675:                                                        $code,$owners,$cdom,$cnum);
 1676:                 if ($valid_classes ne '') {
 1677:                     $autoenrolldates = &mt('Currently enabled').'<br />'.
 1678:                                        $valid_classes;
 1679:                 }
 1680:             }
 1681:         }
 1682:     }
 1683:     return $autoenrolldates;
 1684: }
 1685: 
 1686: sub user_is_known {
 1687:     my $known = 0;
 1688:     if ($env{'user.name'} ne '' && $env{'user.name'} ne 'public' 
 1689:         && $env{'user.domain'} ne '' && $env{'user.domain'} ne 'public') {
 1690:         $known = 1;
 1691:     }
 1692:     return $known;
 1693: }
 1694: 
 1695: 1;

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