File:  [LON-CAPA] / loncom / interface / lonaboutme.pm
Revision 1.74: download - view: text, annotated - select for diffs
Thu Nov 20 13:11:36 2008 UTC (15 years, 7 months ago) by jms
Branches: MAIN
CVS tags: HEAD
Added/created/modified POD documentation

    1: # The LearningOnline Network
    2: # "About Me" Personal Information
    3: #
    4: # $Id: lonaboutme.pm,v 1.74 2008/11/20 13:11:36 jms 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: =pod
   30: 
   31: =head1 NAME
   32: 
   33: pache::lonaboutme
   34: 
   35: =head1 SYNOPSIS
   36: 
   37: (empty)
   38: 
   39: This is part of the LearningOnline Network with CAPA project
   40: described at http://www.lon-capa.org.
   41: 
   42: =head1 OVERVIEW
   43: 
   44: (empty)
   45: 
   46: 
   47: =head1 SUBROUTINES
   48: 
   49: =over
   50: 
   51: =item handler()
   52: 
   53: =item in_course()
   54: 
   55: =item aboutme_info()
   56: 
   57: =item print_portfiles_link()
   58: 
   59: =item build_query_string()
   60: 
   61: =item display_portfolio_header()
   62: 
   63: =item display_portfolio_files()
   64: 
   65: =item portfolio_files()
   66: 
   67: =item build_hierarchy()
   68: 
   69: =item parse_directory()
   70: 
   71: =back
   72: 
   73: =cut
   74: 
   75: 
   76: package Apache::lonaboutme;
   77: 
   78: use strict;
   79: use Apache::Constants qw(:common);
   80: use Apache::loncommon;
   81: use Apache::lonnet;
   82: use Apache::lontexconvert;
   83: use Apache::lonfeedback;
   84: use Apache::lonrss();
   85: use Apache::lonlocal;
   86: use Apache::lonmsgdisplay();
   87: use Apache::lontemplate;
   88: use HTML::Entities();
   89: 
   90: sub handler {
   91:     my $r = shift;
   92:     &Apache::loncommon::content_type($r,'text/html');
   93:     $r->send_http_header;
   94:     return OK if $r->header_only;
   95:     my $target=$env{'form.grade_target'};
   96: # ------------------------------------------------------------ Print the screen
   97:     if ($target eq 'tex') {
   98: 	$r->print(&Apache::lonprintout::print_latex_header($env{'form.latex_type'}));
   99:     }
  100:     my (undef,undef,$cdom,$cnum,undef,$action)=split(/\//,$r->uri);
  101:     my $is_course;
  102: # Is this even a user?
  103:     if (&Apache::lonnet::homeserver($cnum,$cdom) eq 'no_host') {
  104: 	&Apache::loncommon::simple_error_page($r,'No info',
  105: 					      'No user information available');
  106:         return OK;
  107:     } else {
  108:         $is_course = &Apache::lonnet::is_course($cdom,$cnum);
  109:     }
  110: 
  111: # --------------------------------------------------------- The syllabus fields
  112:     my %syllabusfields=&Apache::lonlocal::texthash(
  113:        'aaa_contactinfo'   => 'Contact Information',
  114:        'bbb_aboutme'       => 'About Me',
  115:        'ccc_webreferences' => 'Web References');
  116: 
  117: # ------------------------------------------------------------ Get Query String
  118:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
  119: 					    ['forceedit','forcestudent',
  120: 					     'register','popup']);
  121: 
  122: # ----------------------------------------------- Available Portfolio file display 
  123:     if (($target ne 'tex') && ($action eq 'portfolio')) {
  124:         &display_portfolio_header($r,$is_course);
  125:         my ($blocked,$blocktext) = 
  126:            &Apache::loncommon::blocking_status('port',$cnum,$cdom);
  127:         if (!$blocked) {
  128:             &display_portfolio_files($r,$is_course);
  129:         } else {
  130:             $r->print($blocktext);
  131:         }
  132:         $r->print(&Apache::loncommon::end_page());
  133:         return OK;
  134:     }
  135: 
  136:     if ($is_course) {
  137:         if ($target ne 'tex') {
  138:             my $start_page =
  139:                 &Apache::loncommon::start_page(
  140:                     "Course Information",
  141:                      undef,
  142:                      {'function' => $env{'forcestudent'},
  143:                       'domain'   => $cdom,
  144:                       'force_register' => $env{'forceregister'},});
  145:             $r->print($start_page);
  146:             $r->print('<h2>'.&mt('Group files').'</h2>');
  147:             &print_portfiles_link($r,$is_course);
  148:             $r->print(&Apache::loncommon::end_page());
  149:         }
  150:         return OK;
  151:     }
  152: 
  153: # --------------------------------------------------------------- Force Student
  154:     my $forcestudent='';
  155:     if ($env{'form.forcestudent'}) { $forcestudent='student'; };
  156: 
  157:     my $forceregister = '';
  158:     if ($forcestudent eq '') {
  159:         $forceregister = $env{'form.register'};
  160:     }
  161:        
  162: # --------------------------------------- There is such a user, get environment
  163:     my %courseenv=&Apache::lonnet::dump('environment',$cdom,$cnum);
  164:     if ($target ne 'tex') {
  165: 	my $rss_link = &Apache::lonrss::rss_link($cnum,$cdom);
  166:         my $args = {'function' => $forcestudent,
  167:                     'domain'   => $cdom,
  168:                     'force_register' => $forceregister};
  169:         if ($env{'form.popup'}) {
  170:             $args->{'no_nav_bar'} = 1;
  171:         }
  172: 	my $start_page = 
  173: 	    &Apache::loncommon::start_page("Personal Information",$rss_link,$args);
  174: 	$r->print($start_page);
  175: 	$r->print('<h1>'.&Apache::loncommon::plainname($cnum,$cdom).'</h1>');
  176:     } else {
  177: 	$r->print('\noindent{\large\textbf{'.&Apache::loncommon::plainname($cnum,$cdom).'}}\\\\\\\\');
  178:     }
  179:     if ($courseenv{'nickname'}) {
  180:        $r->print(
  181:          '<h2>&quot;'.$courseenv{'nickname'}.
  182:          '&quot;</h2>');
  183:     }
  184:     if ($target ne 'tex') {
  185: 	$r->print('<h3>'.&Apache::lonnet::domain($cdom,'description').'</h3>');#OLD SendMessage POS
  186:     } else {
  187: 	$r->print('\textbf{'.&Apache::lonnet::domain($cdom,'description').'}\\\\');
  188:     }
  189:     my %syllabus=&Apache::lonnet::dump('aboutme',$cdom,$cnum);
  190:     my $allowed=0;
  191: 
  192: # does this user have privileges to post, etc?
  193: 
  194:        my $privleged=$allowed=(($env{'user.name'} eq $cnum) && 
  195: 			       ($env{'user.domain'} eq $cdom));
  196:        if ($forcestudent or $target eq 'tex') { $allowed=0; }
  197:  
  198:        if ($allowed) {
  199:            my $query_string = &build_query_string({'forcestudent' => '1','popup' => $env{'form.popup'}});
  200: 	   $r->print('<p><b>'.&mt('Privacy Note').':</b> '.
  201: 		     &mt('The information you submit can be viewed by anybody who is logged into LON-CAPA. Do not provide information that you are not ready to share publicly.').
  202: 		     '</p>'.
  203: 		     &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')).'</p><p><a href="'.$r->uri.$query_string.'">'.&mt('Show Public View').'</a>'.
  204: 		     &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>');
  205:        } elsif ($privleged && $target ne 'tex') {
  206:            my $query_string = &build_query_string({'forceedit' => '1','popup' => $env{'form.popup'}});
  207: 	   $r->print('<p><a href="'.$r->uri.$query_string.'"><font size="+1">'.
  208: 		     &mt('Edit').'</font></a></p>');
  209:        }
  210:       if (($env{'form.uploaddoc.filename'}) &&
  211:           ($env{'form.storeupl'}) && ($allowed)) {
  212:  	  if ($env{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/i) {
  213: 	      if ($syllabus{'uploaded.photourl'}) {
  214: 		  &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
  215: 	      }
  216: 	      $syllabus{'uploaded.photourl'}=
  217:                  &Apache::lonnet::userfileupload('uploaddoc',undef,'aboutme');
  218:  	  }
  219:           $syllabus{'uploaded.lastmodified'}=time;
  220:           &Apache::lonnet::put('aboutme',\%syllabus,$cdom,$cnum);
  221:        }
  222:     if ($allowed && $env{'form.delupl'}) {
  223: 	if ($syllabus{'uploaded.photourl'}) {
  224: 	    &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
  225: 	    delete($syllabus{'uploaded.photourl'});
  226: 	    &Apache::lonnet::del('aboutme',['uploaded.photourl'],$cdom,$cnum);
  227: 	}
  228:     }
  229:        if (($allowed) && ($env{'form.storesyl'})) {
  230: 	   foreach my $syl_field (keys(%syllabusfields)) {
  231:                my $field=$env{'form.'.$syl_field};
  232:                $field=~s/\s+$//s;
  233:                $field=&Apache::lonfeedback::clear_out_html($field,
  234:                                                            $env{'user.adv'});
  235: 	       $syllabus{$syl_field}=$field;
  236:            }
  237:            $syllabus{'uploaded.lastmodified'}=time;
  238:            &Apache::lonnet::put('aboutme',\%syllabus,$cdom,$cnum);
  239:        }
  240: 
  241: my $lastmod;
  242: my $image; 
  243: # ---------------------------------------------------------------- Get syllabus
  244:     if (($syllabus{'uploaded.lastmodified'}) || ($allowed)) {
  245:        $lastmod=$syllabus{'uploaded.lastmodified'};
  246:        $lastmod=($lastmod?&Apache::lonlocal::locallocaltime($lastmod):&mt('never'));
  247:        # $r->print(&mt('Last updated').': '.$lastmod); #Old Last Modifi Pos
  248:        if ($syllabus{'uploaded.photourl'}) {
  249: 	   &Apache::lonnet::allowuploaded('/adm/aboutme',
  250: 					  $syllabus{'uploaded.photourl'});
  251: 	   $image=
  252:                qq{<img name="userPhoto" src="$syllabus{'uploaded.photourl'}" style="vertical-align:text-top;float:right;" />};
  253: 
  254: 	   if ($target eq 'tex') {
  255: 	       $image=&Apache::lonxml::xmlparse($r,'tex',$image);
  256: 	   }
  257: 	  # $r->print($image); #Print old Image
  258:        }
  259:        if ($allowed) {
  260:            $r->print(
  261: 	 '<form method="post">
  262:                <input type="submit" name="delupl" value="'.&mt('Delete Photo').'" />
  263:           </form>'.
  264: 	 '<form method="post" enctype="multipart/form-data">'.
  265:          '<h3>'.&mt('Upload a Photo').'</h3>'.
  266:          '<input type="file" name="uploaddoc" size="50" />'.
  267:          '<input type="submit" name="storeupl" value="'.&mt('Upload').'" />'.
  268:          '<input type="hidden" name="popup" value="'.$env{'form.popup'}.'" />'.
  269: 	 '</form><form method="post">');
  270: 
  271:        }
  272: 
  273: 	
  274:        foreach my $field (sort(keys(%syllabusfields))) {
  275:           if (($syllabus{$field}) || ($allowed)) {
  276:               my $message=$syllabus{$field};
  277: 	      &Apache::lonfeedback::newline_to_br(\$message);
  278:               $message
  279:              =~s/(http\:\/\/[^\s]+)/\<a href=\"$1\"\>\<tt\>$1\<\/tt\>\<\/a\>/g;
  280: 	      if ($allowed) {
  281: 		  $message=&Apache::lonspeller::markeduptext($message);
  282: 	      }
  283: 	      $message=&Apache::lontexconvert::msgtexconverted($message);
  284: 	      if ($target ne 'tex') {
  285: 				
  286: 		Apache::lontemplate::print_template($r,$syllabusfields{$field},$message);
  287: 				
  288: 				
  289: 				
  290: 	      } else {
  291: 		     $r->print('\\\\\textbf{'.$syllabusfields{$field}.'}\\\\'.
  292: 			       &Apache::lonxml::xmlparse($r,'tex',$message).'\\\\');
  293: 	      }
  294:               if ($allowed) {
  295: 		Apache::lontemplate::print_editbox_template($r,$syllabus{$field},$field);
  296: 	      }
  297: 	  }
  298:        }
  299:        if($target ne 'tex')
  300:        {
  301: 		
  302: 		  &print_portfiles_link($r,$is_course);
  303:  
  304:       		 $r->print('</div>');
  305: 			$r->print('<div style="margin:0 0 0 75">');
  306:         $r->print($image);
  307: 
  308: 	$r->print('Kontakt');
  309: 	$r->print(&Apache::loncommon::messagewrapper(&mt('Send me a message'),$cnum,$cdom).'</p>'.&Apache::lonrss::advertisefeeds($cnum,$cdom));
  310: 
  311: 
  312:        }
  313: 
  314:        if ($allowed) {
  315:            if ($env{'form.popup'}) {
  316:                $r->print('<input type="hidden" name="popup" value="'.
  317:                          $env{'form.popup'}.'" />');
  318:            }
  319: 	   $r->print('</form>');
  320:        }
  321:        if ($target ne 'tex') {$r->print('<br />');} else {$r->print('\\\\');}
  322:     } else {
  323:        $r->print('<p>'.&mt('No personal information provided').'.</p>');
  324:     }
  325: 
  326:     if ($target ne 'tex') {
  327:         # &print_portfiles_link($r,$is_course); #old Print files
  328: 
  329:     }
  330: 
  331:     if ($env{'request.course.id'}
  332: 	&& &Apache::lonnet::allowed('srm',$env{'request.course.id'})
  333: 	&& &in_course($cdom,$cnum)) {
  334: 	if ($target ne 'tex') {
  335: 	    $r->print('<a name="coursecomment" />');
  336: 	    $r->print('<hr /><h3>'.
  337: 		      &mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course').'</h3>'.
  338: 		      &mt('Shared by course faculty and staff').
  339: 		      &Apache::loncommon::help_open_topic("Course_Face_To_Face_Records,Course_Critical_Message").
  340: 		      '<br />');
  341: 	    &Apache::lonmsgdisplay::disfacetoface($r,$cnum,$cdom);
  342: 	    $r->print('<hr />');
  343: 	    if (&Apache::lonnet::allowed('vsa',
  344: 					 $env{'request.course.id'}) ||
  345: 		&Apache::lonnet::allowed('vsa',
  346: 					 $env{'request.course.id'}.'/'.
  347: 					 $env{'request.course.sec'})) {
  348: 		$r->print(&Apache::loncommon::track_student_link
  349: 			  ('View recent activity by this student',
  350: 			   $cnum,$cdom).('&nbsp;'x2));
  351: 	    }
  352: 	    $r->print(&Apache::loncommon::noteswrapper('Add Records',$cnum,$cdom));
  353: 	} else {
  354: 	    $r->print('\\\\\textbf{'.&mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course').'}\\\\'.&mt('Shared by course faculty and staff').'\\\\\\\\');
  355: 	    &Apache::lonmsgdisplay::disfacetoface($r,$cnum,$cdom);
  356: 	}
  357:     }
  358:     if ($target ne 'tex') {
  359:         if ($env{'form.popup'}) {
  360:             $r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a>');
  361:         }
  362: 	$r->print('<br />'.&mt('Last updated').': '.$lastmod);
  363: 
  364: 	$r->print(&Apache::loncommon::end_page());
  365:     } else {
  366: 	$r->print('\end{document}');
  367:     }
  368: 
  369:   
  370: 	
  371:     return OK;
  372: }
  373: 
  374: sub in_course {
  375:     my ($udom,$uname,$cdom,$cnum,$type) = @_;
  376:     $type ||= 'any';
  377:     if (!defined($cdom) || !defined($cnum)) {
  378: 	my $cid  = $env{'request.course.id'};
  379: 	$cdom = $env{'course.'.$cid.'.domain'};
  380: 	$cnum = $env{'course.'.$cid.'.num'};
  381:     }
  382:     my %roles = &Apache::lonnet::dump('roles',$udom,$uname);
  383:     my @course_roles = grep(m{^/\Q$cdom\E/\Q$cnum\E[/_]}, keys(%roles));
  384:     return 0 if (!@course_roles);
  385:     return 1 if ($type eq 'any');
  386:     my $now = time();
  387:     foreach my $role (@course_roles) {
  388: 	my (undef,$role_end,$role_start)=split(/\_/,$roles{$role});
  389: 	my $status = 'active';
  390: 	if ($role_start > 0 && $now < $role_start) {
  391: 	    $status = 'future';
  392: 	}
  393: 	if ($role_end > 0 && $now > $role_end) {
  394: 	    $status = 'previous';
  395: 	}
  396: 	return 1 if ($status eq $type);
  397:     }
  398:     return 0;
  399: }
  400: 
  401: sub aboutme_info {
  402:     my ($r,$is_course) = @_;
  403:     my (undef,undef,$cdom,$cnum)=split(/\//,$r->uri);
  404:     my $name;
  405:     if (!$is_course) {
  406:         $name = &Apache::loncommon::plainname($cnum,$cdom);
  407:     }
  408:     return ($cdom,$cnum,$name);
  409: }
  410: 
  411: sub print_portfiles_link {
  412:     my ($r,$is_course) = @_;
  413:     my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course);
  414:     my $filecounts = &portfolio_files($r,'showlink',undef,$is_course,
  415:                                       $cdom,$cnum,$name);
  416:     my $query_string = &build_query_string();
  417:     my $output;
  418:     my %lt = &Apache::lonlocal::texthash(
  419:                          vpfi => 'Viewable portfolio files',
  420:                          vgpf => 'Viewable group portfolio files',
  421:                          difl => 'Display file listing',
  422:              );                     
  423:     if ($filecounts->{'both'} > 0) {
  424: 	$output = '<fieldset><legend><b>';
  425: 	$output .= ($is_course?$lt{'vgpf'}:$lt{'vpfi'}).'</b></legend><br />';
  426:         
  427: 	#$output = '<h3>'.($is_course?$lt{'vgpf'}:$lt{'vpfi'}).'</h3>';
  428:         $output .= '<a href="/adm/'.$cdom.'/'.$cnum.'/aboutme/portfolio'.
  429:                    $query_string.'">'.$lt{'difl'}.
  430:                    '</a><br /><br />';
  431:         if ($filecounts->{'both'} == 1) {
  432:             if ($is_course) {
  433:                 $output .= &mt('One group portfolio file is available.').'<ul>';
  434:             } else {
  435:                 $output .= &mt('One portfolio file owned by [_1] is available.',$name).'<ul>';
  436:             }
  437:         } else {
  438:             if ($is_course) {
  439:                 $output .= &mt('A total of [_1] group portfolio files are available.',$filecounts->{'both'}).'<ul>';
  440:             } else {
  441:                 $output .= &mt('A total of [_1] portfolio files owned by [_2] are available.',$filecounts->{'both'},$name).'<ul>';
  442:             }
  443:         }
  444:         if ($filecounts->{'withoutpass'}) {
  445: 	    $output .= '<li>'.&mt('[quant,_1,file is,files are] publicly accessible.',$filecounts->{'withoutpass'}).'</li>';
  446:         }
  447:         if ($filecounts->{'withpass'}) {
  448: 	    $output .= '<li>'.&mt('[quant,_1,file requires,files require] a passphrase for access.',$filecounts->{'withpass'}).'</li>';
  449:         }
  450:         $output .= '</ul>';
  451: 	$output .='</fieldset>';
  452:     }
  453:     $r->print($output);
  454:     return;
  455: }
  456: 
  457: sub build_query_string {
  458:     my ($new_items) = @_;
  459:     my $query_string;
  460:     my @formelements = ('register'); 
  461:     my $new = 0;
  462:     if (ref($new_items) eq 'HASH') {
  463:         $new = 1;
  464:         if (!defined($new_items->{'forceedit'}) && 
  465:             !defined($new_items->{'forcestudent'})) {
  466:             push(@formelements,('forceedit','forcestudent'));
  467:         }
  468:     } else {
  469:         push(@formelements,('forceedit','forcestudent'));
  470:     }
  471:     foreach my $element (@formelements) {
  472:         if (exists($env{'form.'.$element})) {
  473:             if ((!$new) || (!defined($new_items->{$element}))) {
  474:                 $query_string .= '&amp;'.$element.'='.$env{'form.'.$element};
  475:             }
  476:         }
  477:     }
  478:     if ($new) {
  479:         foreach my $key (keys(%{$new_items})) {
  480:             $query_string .= '&amp;'.$key.'='.$new_items->{$key};
  481:         }
  482:     }
  483:     $query_string =~ s/^\&amp;/\?/;
  484:     return $query_string;
  485: }
  486: 
  487: sub display_portfolio_header {
  488:     my ($r,$is_course) = @_;
  489:     my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course);
  490:     my $query_string = &build_query_string();
  491:     &Apache::lonhtmlcommon::clear_breadcrumbs();
  492:     my $forcestudent='';
  493:     if ($env{'form.forcestudent'}) { $forcestudent='student'; };
  494: 
  495:     my $output;
  496:     if ($is_course) {
  497:         $output = 
  498:             &Apache::loncommon::start_page('Viewable group portfolio files',undef,
  499:                                             {'function' => $forcestudent,
  500:                                              'domain'   => $cdom,});
  501:         $output .= '<h3>'.&mt('Group Portfolio files').'</h3>';
  502:     } else {
  503:         $output  =
  504:             &Apache::loncommon::start_page('Viewable portfolio files',undef,
  505:                                             {'function' => $forcestudent,
  506:                                              'domain'   => $cdom,});
  507:         if (!($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public')) {
  508:             &Apache::lonhtmlcommon::add_breadcrumb
  509:                 ({href=>"/adm/$cdom/$cnum/aboutme".$query_string,
  510:                   text=>"Personal information - $name",
  511:                   title=>"Go to personal information page for $name"},                 {href=>"/adm/$cdom/$cnum/aboutme/portfolio",
  512:                   text=>"Viewable files - $name",
  513:                   title=>"Viewable portfolio files for $name"}
  514:             );
  515:             $output .= &Apache::lonhtmlcommon::breadcrumbs(&mt('Viewable portfolio files.'));
  516:         }
  517:         $output .= '<h3>'.&mt('Portfolio files for [_1]',$name).'</h3>';
  518:     }
  519:     $r->print($output);
  520:     return;
  521: }
  522: 
  523: sub display_portfolio_files {
  524:     my ($r,$is_course) = @_;
  525:     my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course);
  526:     my %lt = ( withoutpass => 'passphrase not required',
  527: 	       withpass    => 'passphrase protected',
  528: 	       both        => 'all access types ',);
  529:     %lt = &Apache::lonlocal::texthash(%lt);
  530: 
  531:     my $portaccess = 'withoutpass';
  532:     if (exists($env{'form.portaccess'})) {
  533:         $portaccess = $env{'form.portaccess'};
  534:     }
  535: 
  536:     my $output = '<form action="'.&HTML::Entities::encode($r->uri,'<>&"')
  537: 	.'" name="displaystatus" method="post">'.
  538: 	&mt('File access type: ').'<select name="portaccess">';
  539:     foreach my $type ('withoutpass','withpass','both') {
  540:         $output .= '<option value="'.$type.'" ';
  541:         if ($portaccess eq $type) {
  542:             $output .= 'selected="selected"';
  543:         }
  544:         $output .= '>'.$lt{$type}.'</option>';
  545:     }
  546:     $output .= '</select>'."\n".
  547:                '<input type="submit" name="portaccessbutton" value="'.
  548:                &mt('Update display').'" />';
  549:     $output .= '</form><br /><br />';
  550:     $r->print($output);
  551:     my $filecounts = &portfolio_files($r,'listfiles',\%lt,$is_course,
  552:                                       $cdom,$cnum,$name);
  553:     if (!($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public')) {
  554:         my $query_string = &build_query_string();
  555:         $r->print('<br /><br /><a href="/adm/'.$cdom.'/'.$cnum.
  556:                   '/aboutme'.$query_string.'">');
  557:         if ($is_course) {
  558:             $r->print(&mt('Course Information page'));
  559:         } else {
  560:             $r->print(&mt('Information about [_1]',$name));
  561:         }
  562:         $r->print('</a>');
  563:     }
  564:     return;
  565: }
  566: 
  567: sub portfolio_files {
  568:     my ($r,$mode,$lt,$is_course,$cdom,$cnum,$name) = @_;
  569:     my $filecounts = {
  570:                        withpass    => 0,
  571:                        withoutpass => 0,
  572:                        both        => 0,
  573:                      };
  574:     my $current_permissions =
  575: 	&Apache::lonnet::get_portfile_permissions($cdom,$cnum);
  576:     my %access_controls = 
  577: 	&Apache::lonnet::get_access_controls($current_permissions);
  578:     my $portaccess;
  579:     if ($mode eq 'showlink') {
  580:         $portaccess = 'both';
  581:     } else {
  582:         $portaccess = 'withoutpass';
  583:         if (exists($env{'form.portaccess'})) {
  584:             $portaccess = $env{'form.portaccess'};
  585:         }
  586:     }
  587: 
  588:     my $diroutput;
  589:     if ($is_course) {
  590:         my %files_by_group;
  591:         foreach my $filename (sort(keys(%access_controls))) {
  592:             my ($group,$path) = split('/',$filename,2);
  593:             $files_by_group{$group}{$path} = $access_controls{$filename}; 
  594:         }
  595:         foreach my $group (sort(keys(%files_by_group))) {
  596:             my %fileshash;
  597:             my $grpout .= &build_hierarchy($r,$cdom,$cnum,$portaccess,
  598:                                            $is_course,$filecounts,$mode,
  599:                                            $files_by_group{$group},
  600:                                            \%fileshash,$group);
  601:             if ($grpout) {
  602:                 $diroutput .= '<h3>'.$group.'</h3>'.$grpout.'<br />';
  603:             }
  604:         }
  605:     } else {
  606:         my %allfileshash;
  607:         $diroutput = &build_hierarchy($r,$cdom,$cnum,$portaccess,$is_course,
  608:                                       $filecounts,$mode,\%access_controls,
  609:                                       \%allfileshash);
  610:     }
  611:     if ($mode eq 'listfiles') {
  612:         if ($filecounts->{'both'}) {
  613:              $r->print($diroutput);
  614:         } else {
  615:             my $access_text;
  616:             if (ref($lt) eq 'HASH') {
  617:                 $access_text = $lt->{$portaccess};   
  618:             }
  619:             $r->print(&mt('There are no available files of the specified access type: [_1]',$access_text));
  620:         }
  621:     }
  622:     return $filecounts;
  623: }
  624: 
  625: { 
  626:     my $count=0;
  627:     sub portfolio_table_start {
  628: 	$count=0;
  629: 	return '<table class="LC_aboutme_port">';
  630:     }
  631:     sub portfolio_row_start {
  632: 	$count++;
  633: 	my $class = ($count%2)?'LC_odd_row'
  634: 	                      :'LC_even_row';
  635: 	return '<tr class="'.$class.'">';
  636:     }
  637: }
  638: 
  639: sub build_hierarchy {
  640:     my ($r,$cdom,$cnum,$portaccess,$is_course,$filecounts,$mode,$access_info,
  641:         $allfileshash,$group) = @_;
  642:     foreach my $filename (sort(keys(%{$access_info}))) {
  643:         my $access_status =
  644:            &Apache::lonnet::get_portfolio_access($cdom,$cnum,$filename,$group,                                                 $$access_info{$filename});
  645:         if ($portaccess eq 'both') {
  646:             if (($access_status ne 'ok') &&
  647:                 ($access_status !~  /^[^:]+:guest_/)) {
  648:                 next;
  649:             }
  650:         } elsif ($portaccess eq 'withoutpass') {
  651:             if ($access_status ne 'ok') {
  652:                 next;
  653:             }
  654:         } elsif ($portaccess eq 'withpass') {
  655:             if ($access_status !~  /^[^:]+:guest_/) {
  656:                 next;
  657:             }
  658:         }
  659:         if ($mode eq 'listfiles') {
  660:             $filename =~ s/^\///;
  661:             my @pathitems = split('/',$filename);
  662:             my $lasthash = $allfileshash;
  663:             while (@pathitems > 1) {
  664:                 my $newlevel = shift(@pathitems);
  665:                 if (!exists($lasthash->{$newlevel})) {
  666:                     $lasthash->{$newlevel} = {};
  667:                 }
  668:                 $lasthash = $lasthash->{$newlevel};
  669:             }
  670:             $lasthash->{$pathitems[0]} = $filename;
  671:         }
  672:         if ($access_status eq 'ok') {
  673:             $filecounts->{'withoutpass'} ++;
  674:         } elsif ($access_status =~  /^[^:]+:guest_/) {
  675:             $filecounts->{'withpass'} ++;
  676:         }
  677:     }
  678:     $filecounts->{'both'} =  $filecounts->{'withoutpass'} +
  679:                               $filecounts->{'withpass'};
  680:     my $output;
  681:     if ($mode eq 'listfiles') {
  682:         if ($filecounts->{'both'} > 0) {
  683:             $output = &portfolio_table_start();
  684:             $output .= &parse_directory($r,0,$allfileshash,'',$is_course,
  685:                                         $group);
  686:             $output .= '</table>';
  687:         }
  688:     }
  689:     return $output;
  690: }
  691: 
  692: sub parse_directory {
  693:     my ($r,$depth,$currhash,$path,$is_course,$group) = @_;
  694:     my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course);
  695:     $depth++;
  696:     my $output;
  697: 
  698:     my $portfolio_root = &Apache::portfolio::get_portfolio_root($cdom,$cnum,
  699:                                                                 $group);
  700:     my $getpropath = 1;
  701:     my %dirlist = map {
  702: 	    ((split('&',$_,2))[0],1)
  703: 	} &Apache::lonnet::dirlist($portfolio_root.$path,$cdom,$cnum,$getpropath);
  704:     foreach my $item (sort(keys(%{$currhash}))) {
  705:         $output .= &portfolio_row_start();
  706:         $output .= '<td style="padding-left: '.($depth*25).'px">';
  707:         if (ref($currhash->{$item}) eq 'HASH') {
  708:             my $title=&HTML::Entities::encode($item,'<>&"');
  709:             $output .= '<img src="'.&Apache::loncommon::lonhttpdurl("/adm/lonIcons/navmap.folder.open.gif").'" alt="'.&mt('Folder').' '.$title.'" class="LC_icon" />&nbsp;'.$title;
  710: 	    $output .= '</td><td></td></tr>';
  711:             $output .= &parse_directory($r,$depth,$currhash->{$item},
  712: 					$path.'/'.$item,$is_course,$group);
  713:         } else {
  714: 	    my $file_name; 
  715: 	    if ($currhash->{$item} =~ m|/([^/]+)$|) {
  716: 		$file_name = $1;
  717: 	    } else {
  718: 		$file_name = $currhash->{$item};
  719: 	    }
  720: 	    my $have_meta = exists($dirlist{$file_name.'.meta'});
  721:             my $url;
  722:             if ($is_course) {
  723:                 $url = '/uploaded/'.$cdom.'/'.$cnum.'/groups/'.$group.
  724:                        '/portfolio/'.$currhash->{$item};
  725:             } else { 
  726: 	        $url = '/uploaded/'.$cdom.'/'.$cnum.'/portfolio/'.
  727: 		       $currhash->{$item};
  728:             }
  729:             my $showname;
  730: 	    if ($have_meta) {
  731: 		$showname = &Apache::lonnet::metadata($url,'title');
  732: 	    }
  733: 	    if ($showname eq '') {
  734: 		$showname = $file_name;
  735: 	    } else {
  736: 		$showname = $file_name.' ('.$showname.')';
  737: 	    }
  738: 
  739:             $showname=&HTML::Entities::encode($showname,'<>&"');
  740:             $output .= '<a href="'.$url.'">'.
  741: 		'<img alt="" src="'.&Apache::loncommon::icon($currhash->{$item}).'" class="LC_icon" />'.
  742: 		'&nbsp;'.$showname.'</a>';
  743: 	    $output.='</td><td>';
  744: 	    if ($have_meta) {
  745: 		$output.= '<a href="'.$url.'.meta"><img alt="'.&mt('Catalog Information').'" src="'.
  746: 		&Apache::loncommon::lonhttpdurl('/res/adm/pages/catalog.gif').
  747: 		'" class="LC_icon" /></a>';
  748: 	    }
  749: 	    $output .= '</td></tr>';
  750:         }
  751:     }
  752:     return $output;
  753: }
  754: 
  755: 1;
  756: __END__

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