Annotation of loncom/interface/lonaboutme.pm, revision 1.141

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

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