File:  [LON-CAPA] / loncom / interface / lonaboutme.pm
Revision 1.169: download - view: text, annotated - select for diffs
Thu Dec 28 17:56:01 2023 UTC (4 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_12_X, HEAD
- Fix indents

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

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