File:  [LON-CAPA] / loncom / interface / lonaboutme.pm
Revision 1.108: download - view: text, annotated - select for diffs
Mon Mar 2 22:32:19 2009 UTC (15 years, 2 months ago) by schualex
Branches: MAIN
CVS tags: HEAD
After that change the helpfunction in the blue table-element on the top of the page will only be shown in the EDITOR-View to clear out the PUBLIC VIEW of any unnecessary user-functions.

    1: # The LearningOnline Network
    2: # Personal Information Page
    3: #
    4: # $Id: lonaboutme.pm,v 1.108 2009/03/02 22:32:19 schualex 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: use Image::Magick;
   90: 
   91: sub handler {
   92:     my $r = shift;
   93:     &Apache::loncommon::content_type($r,'text/html');
   94:     $r->send_http_header;
   95:     return OK if $r->header_only;
   96:     my $target=$env{'form.grade_target'};
   97: # ------------------------------------------------------------ Print the screen
   98:     if ($target eq 'tex') {
   99: 	$r->print(&Apache::lonprintout::print_latex_header($env{'form.latex_type'}));
  100:     }
  101:     my (undef,undef,$cdom,$cnum,undef,$action)=split(/\//,$r->uri);
  102:     my $is_course;
  103: # Is this even a user?
  104:     if (&Apache::lonnet::homeserver($cnum,$cdom) eq 'no_host') {
  105: 	&Apache::loncommon::simple_error_page($r,'No info',
  106: 					      'No user information available');
  107:         return OK;
  108:     } else {
  109:         $is_course = &Apache::lonnet::is_course($cdom,$cnum);
  110:     }
  111: 
  112:     my $candisplay = 1;
  113:     if (!$is_course) {
  114:         if ($action ne 'portfolio') {
  115:             $candisplay = &Apache::lonnet::usertools_access($cnum,$cdom,'aboutme');
  116:             if ((!$candisplay) && ($env{'request.course.id'})) {
  117:                 $candisplay = &aboutme_access($cnum,$cdom);
  118:             }
  119:             if (!$candisplay) {
  120:                 if ($target eq 'tex') {
  121:                     $r->print('\noindent{\large\textbf{'.&mt('No user home page available').'}}\\\\\\\\');
  122:                 } else {
  123:                     $r->print(&Apache::loncommon::start_page("Personal Information Page"));
  124:                     $r->print('<h2>'.&mt('No user home page available') .'</h2>'.
  125:                               &mt('This is a result of one of the following:').'<ul>'.
  126:                               '<li>'.&mt('The administrator of this domain has disabled home page functionality for this specific user.').'</li>'.
  127:                               '<li>'.&mt('The domain has been configured to disable, by default, home page functionality for all users in the domain.').'</li>'.
  128:                               '</ul>');
  129:                     $r->print(&Apache::loncommon::end_page());
  130:                 }
  131:                 return OK;
  132:             }
  133:         }
  134:     }
  135: 
  136: # --------------------------------------------------------- The syllabus fields
  137:     my %syllabusfields=&Apache::lonlocal::texthash(
  138:        'aaa_contactinfo'   => 'Contact Information',
  139:        'bbb_aboutme'       => 'Personal Information',
  140:        'ccc_webreferences' => 'Web References');
  141: 
  142: # ------------------------------------------------------------ Get Query String
  143:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
  144: 					    ['forceedit','forcestudent',
  145: 					     'register','popup']);
  146: 
  147: # ----------------------------------------------- Available Portfolio file display 
  148:     if (($target ne 'tex') && ($action eq 'portfolio')) {
  149:         &display_portfolio_header($r,$is_course);
  150:         if ((!$is_course) && (!&Apache::lonnet::usertools_access($cnum,$cdom,'portfolio'))) {
  151:             $r->print('<h2>'.&mt('No user portfolio available') .'</h2>'.
  152:                       &mt('This is a result of one of the following:').'<ul>'.
  153:                       '<li>'.&mt('The administrator of this domain has disabled portfolio functionality for this specific user.').'</li>'.
  154:                       '<li>'.&mt('The domain has been configured to disable, by default, portfolio functionality for all users in the domain.').'</li>'.
  155:                       '</ul>');
  156:         } else {
  157:             my ($blocked,$blocktext) = 
  158:                 &Apache::loncommon::blocking_status('port',$cnum,$cdom);
  159:             if (!$blocked) {
  160:                 &display_portfolio_files($r,$is_course);
  161:             } else {
  162:                 $r->print($blocktext);
  163:             }
  164:         }
  165:         $r->print(&Apache::loncommon::end_page());
  166:         return OK;
  167:     }
  168: 
  169:     if ($is_course) {
  170:         if ($target ne 'tex') {
  171: 	    my $brcrum = [{href=>"/adm/navmaps",text=>"Navigate Course Contents"},
  172: 			  {href=>"/adm/aboutme",text=>"Course Information"}];
  173:             my $start_page =
  174:                 &Apache::loncommon::start_page(
  175:                     "Course Information",
  176:                      undef,
  177:                      {'function' => $env{'forcestudent'},
  178:                       'domain'   => $cdom,
  179:                       'force_register' => $env{'forceregister'},
  180:                       'bread_crumbs' => $brcrum});
  181:             $r->print($start_page);
  182:             $r->print('<h2>'.&mt('Group files').'</h2>');
  183:             &print_portfiles_link($r,$is_course);
  184:             $r->print(&Apache::loncommon::end_page());
  185:         }
  186:         return OK;
  187:     }
  188: 
  189: # --------------------------------------------------------------- Force Student
  190:     my $forcestudent='';
  191:     if ($env{'form.forcestudent'}) { $forcestudent='student'; };
  192: 
  193:     my $forceregister = '';
  194:     if ($forcestudent eq '') {
  195:         $forceregister = $env{'form.register'};
  196:     }
  197: 
  198: #------------Get rights
  199:  my %courseenv=&Apache::lonnet::dump('environment',$cdom,$cnum);
  200:  my %syllabus=&Apache::lonnet::dump('aboutme',$cdom,$cnum);
  201:     my $allowed=0;
  202:   my $privleged=$allowed=(($env{'user.name'} eq $cnum) && 
  203: 			       ($env{'user.domain'} eq $cdom));
  204:        if ($forcestudent or $target eq 'tex') { $allowed=0; } 
  205:  
  206: 
  207: # --------------------------------------- There is such a user, get environment
  208:   
  209:     if ($target ne 'tex') {
  210: 	my $rss_link = &Apache::lonrss::rss_link($cnum,$cdom);
  211:         my $args = {'function' => $forcestudent,
  212:                     'domain'   => $cdom,
  213:                     'force_register' => $forceregister};
  214:         if ($env{'form.popup'}) {
  215:             $args->{'no_nav_bar'} = 1;
  216:         }
  217: 	$args->{'bread_crumbs'} = [{href=>"/adm/fhwfdev/$cnum/aboutme",text=>"Personal Information Page"}];
  218: 	my $start_page = 
  219: 	    &Apache::loncommon::start_page("Personal Data",$rss_link,$args);
  220: 	$r->print($start_page);
  221:         
  222:     }   
  223: 
  224: #Print Help Text
  225: if  ($target ne 'tex') {
  226: 	if($allowed){
  227: 		$r->print(&Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')));
  228: 	}
  229: }
  230: 
  231: #----------------Print Functions
  232: 	if( $target ne 'tex'){
  233: 		 &Apache::lontemplate::print_start_page_functions($r);
  234:       		if($allowed){
  235: 			 my $query_string = &build_query_string({'forcestudent' => '1','popup' => $env{'form.popup'}});		
  236: 			&Apache::lontemplate::print_functions_content($r,'<a href="'.$r->uri.$query_string.'">'.&mt('Show Public View').'</a>'.&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView'));
  237:     		}elsif($privleged){
  238: 			my $query_string = &build_query_string({'forceedit' => '1','popup' => $env{'form.popup'}});
  239: 			 &Apache::lontemplate::print_functions_content($r,'<a href="'.$r->uri.$query_string.'">'. &mt('Edit').'</a>');
  240: 		}
  241: 		&Apache::lontemplate::print_functions_content($r,&Apache::lontemplate::send_message($r,$cnum,$cdom));
  242: 
  243: 		if ($env{'request.course.id'} && &Apache::lonnet::allowed('srm',$env{'request.course.id'})	&& &in_course($cdom,$cnum)) {
  244: 			if (&Apache::lonnet::allowed('vsa', $env{'request.course.id'}) || &Apache::lonnet::allowed('vsa', $env{'request.course.id'}.'/'.
  245: 					 $env{'request.course.sec'})) {
  246: 				&Apache::lontemplate::print_functions_content($r,&Apache::loncommon::track_student_link('View recent activity by this student',
  247: 			  	 	$cnum,$cdom).('&nbsp;'x2));
  248: 	    		}
  249: 	    		&Apache::lontemplate::print_functions_content($r,&Apache::loncommon::noteswrapper(&mt('Add Records'),$cnum,$cdom));
  250: 		}
  251: 	&Apache::lontemplate::print_end_page_functions($r);
  252: 	}  
  253: #------Print Headtitle
  254:  if ($target ne 'tex') {
  255: 	 $r->print('<div class="LC_ContentBoxSpecial">');
  256: 	$r->print('<h2 class="LC_hcell">'.&Apache::loncommon::plainname($cnum,$cdom).'</h2>');
  257: 	$r->print('<blockquote>');
  258: 	 if ($courseenv{'nickname'}) {
  259:       	 	$r->print('<h2>&quot;'.$courseenv{'nickname'}.'&quot;</h2>');
  260:     	}
  261: 	$r->print('<h3>'.&Apache::lonnet::domain($cdom,'description').'</h3>');
  262:  }
  263: else{
  264: 	$r->print('\noindent{\large\textbf{'.&Apache::loncommon::plainname($cnum,$cdom).'}}\\\\\\\\');
  265: 	$r->print('\textbf{'.&Apache::lonnet::domain($cdom,'description').'}\\\\');	
  266: }
  267: # does this user have privileges to post, etc?
  268: 
  269:      
  270: 	my $query_string; 
  271: 	
  272:        if ($allowed) {          
  273: 	   $r->print('<p><b>'.&mt('Privacy Note').':</b> '.&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.'). '</p>');
  274: 	} 
  275:        
  276: 	
  277:       if (($env{'form.uploaddoc.filename'}) &&
  278:           ($env{'form.storeupl'}) && ($allowed)) {
  279:  	  if ($env{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/i) {
  280: 	      if ($syllabus{'uploaded.photourl'}) {
  281: 		  &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
  282: 	      }
  283: 	      $syllabus{'uploaded.photourl'}=
  284:                  &Apache::lonnet::userphotoupload('uploaddoc','aboutme');
  285:  	  }
  286:           $syllabus{'uploaded.lastmodified'}=time;
  287:           &Apache::lonnet::put('aboutme',\%syllabus,$cdom,$cnum);
  288:        }
  289:     if ($allowed && $env{'form.delupl'}) {
  290: 	if ($syllabus{'uploaded.photourl'}) {
  291: 	    &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
  292: 	    delete($syllabus{'uploaded.photourl'});
  293: 	    &Apache::lonnet::del('aboutme',['uploaded.photourl'],$cdom,$cnum);
  294: 	}
  295:     }
  296:        if (($allowed) && ($env{'form.storesyl'})) {
  297: 	   foreach my $syl_field (keys(%syllabusfields)) {
  298:                my $field=$env{'form.'.$syl_field};
  299:                $field=~s/\s+$//s;
  300:                $field=&Apache::lonfeedback::clear_out_html($field,
  301:                                                            $env{'user.adv'});
  302: 	       $syllabus{$syl_field}=$field;
  303:            }
  304:            $syllabus{'uploaded.lastmodified'}=time;
  305:            &Apache::lonnet::put('aboutme',\%syllabus,$cdom,$cnum);
  306:        }
  307: 
  308: my $lastmod;
  309: my $image; 
  310: # ---------------------------------------------------------------- Get syllabus
  311:     if (($syllabus{'uploaded.lastmodified'}) || ($allowed)) {
  312:        $lastmod=$syllabus{'uploaded.lastmodified'};
  313:        $lastmod=($lastmod?&Apache::lonlocal::locallocaltime($lastmod):&mt('never'));
  314:  	$r->print('<br />'.&mt('Last updated').': '.$lastmod);
  315: 
  316: 
  317:        if ($syllabus{'uploaded.photourl'}) {
  318: 	   &Apache::lonnet::allowuploaded('/adm/aboutme',
  319: 					  $syllabus{'uploaded.photourl'});
  320: 	
  321:            #This call is to resize all "Personal Information" images in the LonCapa System. When its done, you can remove this line.
  322: 	   &Apache::lonnet::resizeImage(&Apache::lonnet::filelocation('',$syllabus{'uploaded.photourl'}));
  323: 	   #---End Resize---
  324: 
  325: 	   $image=qq{<img name="userPhoto" src="$syllabus{'uploaded.photourl'} " class="LC_AboutMe_Image" />};
  326: 	   
  327: 	   if ($target eq 'tex') {
  328: 	       $image=&Apache::lonxml::xmlparse($r,'tex',$image);
  329: 	   }
  330: 	
  331:        }
  332: 	
  333:        if ($allowed) {
  334:            $r->print(
  335: 	 '<form method="post" enctype="multipart/form-data">'.
  336:          '<h3>'.&mt('Upload a Photo').'</h3>'.
  337:          '<input type="file" name="uploaddoc" size="50" />'.
  338:          '<input type="submit" name="storeupl" value="'.&mt('Upload').'" />'.
  339:          '<input type="hidden" name="popup" value="'.$env{'form.popup'}.'" />'.
  340: 	 '</form><form method="post"><input type="submit" name="delupl" value="'.&mt('Delete Photo').'" /> </form><p>
  341: ');
  342: 
  343:        }
  344: 
  345: 	if($allowed) {
  346: 		$r->print('<form method="post">');
  347: 	}
  348: 
  349: 	 if($target ne 'tex') #print Image
  350:      	 {	
  351: 		&Apache::lontemplate::start_ContentBox($r);			
  352: 		&Apache::lontemplate::end_ContentBox($r);
  353: 		$r->print($image);		
  354: 		
  355: 	}#End Print Image
  356: 
  357: 	#Print Content eg. Contactinfo aboutme,...	
  358: 	&Apache::lontemplate::print_aboutme_content_template($r,$allowed,$target,\%syllabusfields,\%syllabus);	
  359:         #End Print Content
  360: 
  361:        if($target ne 'tex')#Begin Print RSS and portfiles
  362:        {			
  363: 		&print_portfiles_link($r,$is_course);
  364: 		if(&Apache::lonrss::advertisefeeds($cnum,$cdom) ne ''){			
  365: 			&Apache::lontemplate::print_template($r,'RSS Feeds and Blogs',&Apache::lonrss::advertisefeeds($cnum,$cdom),1,'LC_ContentBoxSpecial');
  366: 		}		
  367: 		
  368:        } #End  Print RSS and portfiles
  369: 
  370:        
  371:        if ($allowed) {
  372:            if ($env{'form.popup'}) {
  373:                $r->print('<input type="hidden" name="popup" value="'.
  374:                          $env{'form.popup'}.'" />');
  375:            }
  376: 	   $r->print('</form>');
  377:        }
  378:        if ($target ne 'tex') {$r->print('<br />');} else {$r->print('\\\\');}
  379:     } else {
  380: 	# &Apache::lontemplate::send_message($r,$cnum,$cdom);
  381:        $r->print('<p>'.&mt('No personal information provided').'.</p>');
  382:     }
  383:     if($target ne 'tex'){
  384: 		#$r->print('</blockquote>');
  385:     		#$r->print('</div>');	
  386: 	}
  387: 
  388:     if ($env{'request.course.id'}
  389: 	&& &Apache::lonnet::allowed('srm',$env{'request.course.id'})
  390: 	&& &in_course($cdom,$cnum)) {
  391: 	if ($target ne 'tex') {
  392: 	    $r->print('<a name="coursecomment" />');
  393: 	   &Apache::lontemplate::print_start_template($r,&mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course').&mt('Shared by course faculty and staff').&Apache::loncommon::help_open_topic("Course_Face_To_Face_Records,Course_Critical_Message"),'LC_ContentBoxSpecial');
  394: 	   &Apache::lonmsgdisplay::disfacetoface($r,$cnum,$cdom);
  395: 	   &Apache::lontemplate::print_end_template($r);
  396: 	    
  397: 	} else {
  398: 	    $r->print('\\\\\textbf{'.&mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course').'}\\\\'.&mt('Shared by course faculty and staff').'\\\\\\\\');
  399: 	    &Apache::lonmsgdisplay::disfacetoface($r,$cnum,$cdom);
  400: 	}
  401:     }
  402:     $r->print('</blockquote>');
  403:     $r->print('</div>');
  404:     if ($target ne 'tex') {
  405:         if ($env{'form.popup'}) {
  406:             $r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a>');
  407:         }
  408: 	$r->print(&Apache::loncommon::end_page());
  409:     } else {
  410: 	$r->print('\end{document}');
  411:     }
  412: 
  413:   
  414: 	
  415:     return OK;
  416: }
  417: 
  418: sub in_course {
  419:     my ($udom,$uname,$cdom,$cnum,$type) = @_;
  420:     $type ||= 'any';
  421:     if (!defined($cdom) || !defined($cnum)) {
  422: 	my $cid  = $env{'request.course.id'};
  423: 	$cdom = $env{'course.'.$cid.'.domain'};
  424: 	$cnum = $env{'course.'.$cid.'.num'};
  425:     }
  426:     my %roles = &Apache::lonnet::dump('roles',$udom,$uname);
  427:     my @course_roles = grep(m{^/\Q$cdom\E/\Q$cnum\E[/_]}, keys(%roles));
  428:     return 0 if (!@course_roles);
  429:     return 1 if ($type eq 'any');
  430:     my $now = time();
  431:     foreach my $role (@course_roles) {
  432: 	my (undef,$role_end,$role_start)=split(/\_/,$roles{$role});
  433: 	my $status = 'active';
  434: 	if ($role_start > 0 && $now < $role_start) {
  435: 	    $status = 'future';
  436: 	}
  437: 	if ($role_end > 0 && $now > $role_end) {
  438: 	    $status = 'previous';
  439: 	}
  440: 	return 1 if ($status eq $type);
  441:     }
  442:     return 0;
  443: }
  444: 
  445: sub aboutme_info {
  446:     my ($r,$is_course) = @_;
  447:     my (undef,undef,$cdom,$cnum)=split(/\//,$r->uri);
  448:     my $name;
  449:     if (!$is_course) {
  450:         $name = &Apache::loncommon::plainname($cnum,$cdom);
  451:     }
  452:     return ($cdom,$cnum,$name);
  453: }
  454: 
  455: sub print_portfiles_link {
  456:     my ($r,$is_course) = @_;
  457:     my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course);
  458:     my $filecounts = &portfolio_files($r,'showlink',undef,$is_course,
  459:                                       $cdom,$cnum,$name);
  460:     my $query_string = &build_query_string();
  461:     my $output;
  462:     my %lt = &Apache::lonlocal::texthash(
  463:                          vpfi => 'Viewable portfolio files',
  464:                          vgpf => 'Viewable group portfolio files',
  465:                          difl => 'Display file listing',
  466:              );                     
  467:     if ($filecounts->{'both'} > 0) {
  468: 	$output = '<div class="LC_ContentBoxSpecial"><h4 class="LC_hcell">';
  469: 	$output .= ($is_course?$lt{'vgpf'}:$lt{'vpfi'}).'</h4>';
  470:         
  471: 	#$output = '<h4>'.($is_course?$lt{'vgpf'}:$lt{'vpfi'}).'</h4>';
  472:         $output .= '<a href="/adm/'.$cdom.'/'.$cnum.'/aboutme/portfolio'.
  473:                    $query_string.'">'.$lt{'difl'}.
  474:                    '</a><br /><br />';
  475:         if ($filecounts->{'both'} == 1) {
  476:             if ($is_course) {
  477:                 $output .= &mt('One group portfolio file is available.').'<ul>';
  478:             } else {
  479:                 $output .= &mt('One portfolio file owned by [_1] is available.',$name).'<ul>';
  480:             }
  481:         } else {
  482:             if ($is_course) {
  483:                 $output .= &mt('A total of [_1] group portfolio files are available.',$filecounts->{'both'}).'<ul>';
  484:             } else {
  485:                 $output .= &mt('A total of [_1] portfolio files owned by [_2] are available.',$filecounts->{'both'},$name).'<ul>';
  486:             }
  487:         }
  488:         if ($filecounts->{'withoutpass'}) {
  489: 	    $output .= '<li>'.&mt('[quant,_1,file is,files are] publicly accessible.',$filecounts->{'withoutpass'}).'</li>';
  490:         }
  491:         if ($filecounts->{'withpass'}) {
  492: 	    $output .= '<li>'.&mt('[quant,_1,file requires,files require] a passphrase for access.',$filecounts->{'withpass'}).'</li>';
  493:         }
  494:         $output .= '</ul>';
  495: 	$output .='</p>';
  496: 	$output .='</div>';
  497:     }
  498:     $r->print($output);
  499:     return;
  500: }
  501: 
  502: sub build_query_string {
  503:     my ($new_items) = @_;
  504:     my $query_string;
  505:     my @formelements = ('register'); 
  506:     my $new = 0;
  507:     if (ref($new_items) eq 'HASH') {
  508:         $new = 1;
  509:         if (!defined($new_items->{'forceedit'}) && 
  510:             !defined($new_items->{'forcestudent'})) {
  511:             push(@formelements,('forceedit','forcestudent'));
  512:         }
  513:     } else {
  514:         push(@formelements,('forceedit','forcestudent'));
  515:     }
  516:     foreach my $element (@formelements) {
  517:         if (exists($env{'form.'.$element})) {
  518:             if ((!$new) || (!defined($new_items->{$element}))) {
  519:                 $query_string .= '&amp;'.$element.'='.$env{'form.'.$element};
  520:             }
  521:         }
  522:     }
  523:     if ($new) {
  524:         foreach my $key (keys(%{$new_items})) {
  525:             $query_string .= '&amp;'.$key.'='.$new_items->{$key};
  526:         }
  527:     }
  528:     $query_string =~ s/^\&amp;/\?/;
  529:     return $query_string;
  530: }
  531: 
  532: sub display_portfolio_header {
  533:     my ($r,$is_course) = @_;
  534:     my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course);
  535:     my $query_string = &build_query_string();
  536:     &Apache::lonhtmlcommon::clear_breadcrumbs();
  537:     my $forcestudent='';
  538:     if ($env{'form.forcestudent'}) { $forcestudent='student'; };
  539: 
  540:     my $output;
  541:     if ($is_course) {
  542:         $output = 
  543:             &Apache::loncommon::start_page('Viewable group portfolio files',undef,
  544:                                             {'function' => $forcestudent,
  545:                                              'domain'   => $cdom,});
  546:         $output .= '<h3>'.&mt('Group Portfolio files').'</h3>';
  547:     } else {
  548:         $output  =
  549:             &Apache::loncommon::start_page('Viewable portfolio files',undef,
  550:                                             {'function' => $forcestudent,
  551:                                              'domain'   => $cdom,});
  552:         if (!($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public')) {
  553:             &Apache::lonhtmlcommon::add_breadcrumb
  554:                 ({href=>"/adm/$cdom/$cnum/aboutme".$query_string,
  555:                   text=>&mt('Personal Information Page - [_1]',$name),
  556:                   title=>&mt('Go to personal information page for [_1]', $name)},
  557: 		 {href=>"/adm/$cdom/$cnum/aboutme/portfolio",
  558:                   text=>&mt('Viewable files - [_1]', $name),
  559:                   title=>&mt('Viewable portfolio files for [_1]', $name)}
  560:             );
  561:             $output .= &Apache::lonhtmlcommon::breadcrumbs(&mt('Viewable portfolio files.'));
  562:         }
  563:         $output .= '<h3>'.&mt('Portfolio files for [_1]',$name).'</h3>';
  564:     }
  565:     $r->print($output);
  566:     return;
  567: }
  568: 
  569: sub display_portfolio_files {
  570:     my ($r,$is_course) = @_;
  571:     my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course);
  572:     my %lt = ( withoutpass => 'passphrase not required',
  573: 	       withpass    => 'passphrase protected',
  574: 	       both        => 'all access types ',);
  575:     %lt = &Apache::lonlocal::texthash(%lt);
  576: 
  577:     my $portaccess = 'withoutpass';
  578:     if (exists($env{'form.portaccess'})) {
  579:         $portaccess = $env{'form.portaccess'};
  580:     }
  581: 
  582:     my $output = '<form action="'.&HTML::Entities::encode($r->uri,'<>&"')
  583: 	.'" name="displaystatus" method="post">'.
  584: 	&mt('File access type: ').'<select name="portaccess">';
  585:     foreach my $type ('withoutpass','withpass','both') {
  586:         $output .= '<option value="'.$type.'" ';
  587:         if ($portaccess eq $type) {
  588:             $output .= 'selected="selected"';
  589:         }
  590:         $output .= '>'.$lt{$type}.'</option>';
  591:     }
  592:     $output .= '</select>'."\n".
  593:                '<input type="submit" name="portaccessbutton" value="'.
  594:                &mt('Update display').'" />';
  595:     $output .= '</form><br /><br />';
  596:     $r->print($output);
  597:     my $filecounts = &portfolio_files($r,'listfiles',\%lt,$is_course,
  598:                                       $cdom,$cnum,$name);
  599:     if (!($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public')) {
  600:         my $query_string = &build_query_string();
  601:         $r->print('<br /><br /><a href="/adm/'.$cdom.'/'.$cnum.
  602:                   '/aboutme'.$query_string.'">');
  603:         if ($is_course) {
  604:             $r->print(&mt('Course Information page'));
  605:         } else {
  606:             $r->print(&mt('Information about [_1]',$name));
  607:         }
  608:         $r->print('</a>');
  609:     }
  610:     return;
  611: }
  612: 
  613: sub portfolio_files {
  614:     my ($r,$mode,$lt,$is_course,$cdom,$cnum,$name) = @_;
  615:     my $filecounts = {
  616:                        withpass    => 0,
  617:                        withoutpass => 0,
  618:                        both        => 0,
  619:                      };
  620:     my $current_permissions =
  621: 	&Apache::lonnet::get_portfile_permissions($cdom,$cnum);
  622:     my %access_controls = 
  623: 	&Apache::lonnet::get_access_controls($current_permissions);
  624:     my $portaccess;
  625:     if ($mode eq 'showlink') {
  626:         $portaccess = 'both';
  627:     } else {
  628:         $portaccess = 'withoutpass';
  629:         if (exists($env{'form.portaccess'})) {
  630:             $portaccess = $env{'form.portaccess'};
  631:         }
  632:     }
  633: 
  634:     my $diroutput;
  635:     if ($is_course) {
  636:         my %files_by_group;
  637:         foreach my $filename (sort(keys(%access_controls))) {
  638:             my ($group,$path) = split('/',$filename,2);
  639:             $files_by_group{$group}{$path} = $access_controls{$filename}; 
  640:         }
  641:         foreach my $group (sort(keys(%files_by_group))) {
  642:             my %fileshash;
  643:             my $grpout .= &build_hierarchy($r,$cdom,$cnum,$portaccess,
  644:                                            $is_course,$filecounts,$mode,
  645:                                            $files_by_group{$group},
  646:                                            \%fileshash,$group);
  647:             if ($grpout) {
  648:                 $diroutput .= '<h3>'.$group.'</h3>'.$grpout.'<br />';
  649:             }
  650:         }
  651:     } else {
  652:         my %allfileshash;
  653:         $diroutput = &build_hierarchy($r,$cdom,$cnum,$portaccess,$is_course,
  654:                                       $filecounts,$mode,\%access_controls,
  655:                                       \%allfileshash);
  656:     }
  657:     if ($mode eq 'listfiles') {
  658:         if ($filecounts->{'both'}) {
  659:              $r->print($diroutput);
  660:         } else {
  661:             my $access_text;
  662:             if (ref($lt) eq 'HASH') {
  663:                 $access_text = $lt->{$portaccess};   
  664:             }
  665:             $r->print(&mt('There are no available files of the specified access type: [_1]',$access_text));
  666:         }
  667:     }
  668:     return $filecounts;
  669: }
  670: 
  671: { 
  672:     my $count=0;
  673:     sub portfolio_table_start {
  674: 	$count=0;
  675: 	return '<table class="LC_aboutme_port">';
  676:     }
  677:     sub portfolio_row_start {
  678: 	$count++;
  679: 	my $class = ($count%2)?'LC_odd_row'
  680: 	                      :'LC_even_row';
  681: 	return '<tr class="'.$class.'">';
  682:     }
  683: }
  684: 
  685: sub build_hierarchy {
  686:     my ($r,$cdom,$cnum,$portaccess,$is_course,$filecounts,$mode,$access_info,
  687:         $allfileshash,$group) = @_;
  688:     foreach my $filename (sort(keys(%{$access_info}))) {
  689:         my $access_status =
  690:            &Apache::lonnet::get_portfolio_access($cdom,$cnum,$filename,$group,                                                 $$access_info{$filename});
  691:         if ($portaccess eq 'both') {
  692:             if (($access_status ne 'ok') &&
  693:                 ($access_status !~  /^[^:]+:guest_/)) {
  694:                 next;
  695:             }
  696:         } elsif ($portaccess eq 'withoutpass') {
  697:             if ($access_status ne 'ok') {
  698:                 next;
  699:             }
  700:         } elsif ($portaccess eq 'withpass') {
  701:             if ($access_status !~  /^[^:]+:guest_/) {
  702:                 next;
  703:             }
  704:         }
  705:         if ($mode eq 'listfiles') {
  706:             $filename =~ s/^\///;
  707:             my @pathitems = split('/',$filename);
  708:             my $lasthash = $allfileshash;
  709:             while (@pathitems > 1) {
  710:                 my $newlevel = shift(@pathitems);
  711:                 if (!exists($lasthash->{$newlevel})) {
  712:                     $lasthash->{$newlevel} = {};
  713:                 }
  714:                 $lasthash = $lasthash->{$newlevel};
  715:             }
  716:             $lasthash->{$pathitems[0]} = $filename;
  717:         }
  718:         if ($access_status eq 'ok') {
  719:             $filecounts->{'withoutpass'} ++;
  720:         } elsif ($access_status =~  /^[^:]+:guest_/) {
  721:             $filecounts->{'withpass'} ++;
  722:         }
  723:     }
  724:     $filecounts->{'both'} =  $filecounts->{'withoutpass'} +
  725:                               $filecounts->{'withpass'};
  726:     my $output;
  727:     if ($mode eq 'listfiles') {
  728:         if ($filecounts->{'both'} > 0) {
  729:             $output = &portfolio_table_start();
  730:             $output .= &parse_directory($r,0,$allfileshash,'',$is_course,
  731:                                         $group);
  732:             $output .= '</table>';
  733:         }
  734:     }
  735:     return $output;
  736: }
  737: 
  738: sub parse_directory {
  739:     my ($r,$depth,$currhash,$path,$is_course,$group) = @_;
  740:     my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course);
  741:     $depth++;
  742:     my $output;
  743: 
  744:     my $portfolio_root = &Apache::portfolio::get_portfolio_root($cdom,$cnum,
  745:                                                                 $group);
  746:     my $getpropath = 1;
  747:     my %dirlist = map {
  748: 	    ((split('&',$_,2))[0],1)
  749: 	} &Apache::lonnet::dirlist($portfolio_root.$path,$cdom,$cnum,$getpropath);
  750:     foreach my $item (sort(keys(%{$currhash}))) {
  751:         $output .= &portfolio_row_start();
  752:         $output .= '<td style="padding-left: '.($depth*25).'px">';
  753:         if (ref($currhash->{$item}) eq 'HASH') {
  754:             my $title=&HTML::Entities::encode($item,'<>&"');
  755:             $output .= '<img src="'.&Apache::loncommon::lonhttpdurl("/adm/lonIcons/navmap.folder.open.gif").'" alt="'.&mt('Folder').' '.$title.'" class="LC_icon" />&nbsp;'.$title;
  756: 	    $output .= '</td><td></td></tr>';
  757:             $output .= &parse_directory($r,$depth,$currhash->{$item},
  758: 					$path.'/'.$item,$is_course,$group);
  759:         } else {
  760: 	    my $file_name; 
  761: 	    if ($currhash->{$item} =~ m|/([^/]+)$|) {
  762: 		$file_name = $1;
  763: 	    } else {
  764: 		$file_name = $currhash->{$item};
  765: 	    }
  766: 	    my $have_meta = exists($dirlist{$file_name.'.meta'});
  767:             my $url;
  768:             if ($is_course) {
  769:                 $url = '/uploaded/'.$cdom.'/'.$cnum.'/groups/'.$group.
  770:                        '/portfolio/'.$currhash->{$item};
  771:             } else { 
  772: 	        $url = '/uploaded/'.$cdom.'/'.$cnum.'/portfolio/'.
  773: 		       $currhash->{$item};
  774:             }
  775:             my $showname;
  776: 	    if ($have_meta) {
  777: 		$showname = &Apache::lonnet::metadata($url,'title');
  778: 	    }
  779: 	    if ($showname eq '') {
  780: 		$showname = $file_name;
  781: 	    } else {
  782: 		$showname = $file_name.' ('.$showname.')';
  783: 	    }
  784: 
  785:             $showname=&HTML::Entities::encode($showname,'<>&"');
  786:             $output .= '<a href="'.$url.'">'.
  787: 		'<img alt="" src="'.&Apache::loncommon::icon($currhash->{$item}).'" class="LC_icon" />'.
  788: 		'&nbsp;'.$showname.'</a>';
  789: 	    $output.='</td><td>';
  790: 	    if ($have_meta) {
  791: 		$output.= '<a href="'.$url.'.meta"><img alt="'.&mt('Metadata').'" src="'.
  792: 		&Apache::loncommon::lonhttpdurl('/res/adm/pages/catalog.gif').
  793: 		'" class="LC_icon" /></a>';
  794: 	    }
  795: 	    $output .= '</td></tr>';
  796:         }
  797:     }
  798:     return $output;
  799: }
  800: 
  801: sub aboutme_access {
  802:     my ($uname,$udom) = @_;
  803:     my $privcheck = $env{'request.course.id'};
  804:     my $sec;
  805:     if ($env{'request.course.sec'} ne '') {
  806:         $sec = $env{'request.course.sec'};
  807:         $privcheck .= '/'.$sec;
  808:     }
  809:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  810:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  811:     if (($cdom eq '') || ($cnum eq '')) {
  812:         my %coursehash = &coursedescription($env{'request.course.id'});
  813:         $cdom = $coursehash{'domain'};
  814:         $cnum = $coursehash{'cnum'};
  815:     }
  816:     if ((&Apache::lonnet::allowed('srm',$privcheck)) || 
  817:         (&Apache::lonnet::allowed('dff',$privcheck))) {
  818:         if (&in_course($uname,$udom,$cnum,$cdom)) {
  819:             return 1;
  820:         }
  821:     }
  822:     return;
  823: }
  824: 
  825: 1;
  826: __END__

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