Annotation of loncom/interface/lonmeta.pm, revision 1.238

1.1       www         1: # The LearningOnline Network with CAPA
1.8       albertel    2: # Metadata display handler
                      3: #
1.238   ! bisitz      4: # $Id: lonmeta.pm,v 1.237 2009/12/01 18:07:50 bisitz Exp $
1.8       albertel    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.
1.1       www        14: #
1.8       albertel   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: #
1.100     banghart   20: # You should have received a copy of the GNU General Public License 
1.8       albertel   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/
1.44      www        27: 
1.1       www        28: 
                     29: package Apache::lonmeta;
                     30: 
                     31: use strict;
1.63      matthew    32: use LONCAPA::lonmetadata();
1.1       www        33: use Apache::Constants qw(:common);
1.96      albertel   34: use Apache::lonnet;
1.10      www        35: use Apache::loncommon();
1.100     banghart   36: use Apache::lonhtmlcommon(); 
1.23      www        37: use Apache::lonmsg;
                     38: use Apache::lonpublisher;
1.35      www        39: use Apache::lonlocal;
1.43      www        40: use Apache::lonmysql;
1.49      www        41: use Apache::lonmsg;
1.190     albertel   42: use LONCAPA qw(:DEFAULT :match);
1.1       www        43: 
1.44      www        44: 
1.80      matthew    45: sub get_dynamic_metadata_from_sql {
                     46:     my ($url) = shift();
1.190     albertel   47:     my ($authordom,$author)=($url=~m{^/res/($match_domain)/($match_username)/});
1.80      matthew    48:     if (! defined($authordom)) {
                     49:         $authordom = shift();
                     50:     }
                     51:     if  (! defined($author)) { 
                     52:         $author = shift();
                     53:     }
                     54:     if (! defined($authordom) || ! defined($author)) {
                     55:         return ();
                     56:     }
1.158     www        57:     my $query = 'SELECT * FROM metadata WHERE url LIKE "'.$url.'%"';
1.80      matthew    58:     my $server = &Apache::lonnet::homeserver($author,$authordom);
                     59:     my $reply = &Apache::lonnet::metadata_query($query,undef,undef,
                     60:                                                 ,[$server]);
                     61:     return () if (! defined($reply) || ref($reply) ne 'HASH');
                     62:     my $filename = $reply->{$server};
                     63:     if (! defined($filename) || $filename =~ /^error/) {
                     64:         return ();
                     65:     }
                     66:     my $max_time = time + 10; # wait 10 seconds for results at most
                     67:     my %ReturnHash;
                     68:     #
                     69:     # Look for results
                     70:     my $finished = 0;
                     71:     while (! $finished && time < $max_time) {
                     72:         my $datafile=$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename;
                     73:         if (! -e "$datafile.end") { next; }
                     74:         my $fh;
                     75:         if (!($fh=Apache::File->new($datafile))) { next; }
                     76:         while (my $result = <$fh>) {
                     77:             chomp($result);
                     78:             next if (! $result);
1.180     albertel   79:             my %hash=&LONCAPA::lonmetadata::metadata_col_to_hash('metadata',
                     80: 								 map { &unescape($_) } split(/\,/,$result));
1.158     www        81:             foreach my $key (keys(%hash)) {
                     82:                 $ReturnHash{$hash{'url'}}->{$key}=$hash{$key};
1.80      matthew    83:             }
                     84:         }
                     85:         $finished = 1;
                     86:     }
                     87:     #
                     88:     return %ReturnHash;
                     89: }
                     90: 
                     91: 
1.64      matthew    92: # Fetch and evaluate dynamic metadata
1.9       www        93: sub dynamicmeta {
                     94:     my $url=&Apache::lonnet::declutter(shift);
                     95:     $url=~s/\.meta$//;
1.190     albertel   96:     my ($adomain,$aauthor)=($url=~/^($match_domain)\/($match_username)\//);
1.19      www        97:     my $regexp=$url;
1.9       www        98:     $regexp=~s/(\W)/\\$1/g;
1.10      www        99:     $regexp='___'.$regexp.'___';
1.16      albertel  100:     my %evaldata=&Apache::lonnet::dump('nohist_resevaldata',$adomain,
                    101: 				       $aauthor,$regexp);
1.63      matthew   102:     my %DynamicData = &LONCAPA::lonmetadata::process_reseval_data(\%evaldata);
                    103:     my %Data = &LONCAPA::lonmetadata::process_dynamic_metadata($url,
                    104:                                                                \%DynamicData);
1.40      matthew   105:     #
1.46      www       106:     # Deal with 'count' separately
1.63      matthew   107:     $Data{'count'} = &access_count($url,$aauthor,$adomain);
1.67      matthew   108:     #
                    109:     # Debugging code I will probably need later
                    110:     if (0) {
                    111:         &Apache::lonnet::logthis('Dynamic Metadata');
                    112:         while(my($k,$v)=each(%Data)){
                    113:             &Apache::lonnet::logthis('    "'.$k.'"=>"'.$v.'"');
                    114:         }
                    115:         &Apache::lonnet::logthis('-------------------');
                    116:     }
1.63      matthew   117:     return %Data;
1.40      matthew   118: }
                    119: 
                    120: sub access_count {
                    121:     my ($src,$author,$adomain) = @_;
                    122:     my %countdata=&Apache::lonnet::dump('nohist_accesscount',$adomain,
                    123:                                         $author,$src);
                    124:     if (! exists($countdata{$src})) {
1.47      www       125:         return &mt('Not Available');
1.40      matthew   126:     } else {
                    127:         return $countdata{$src};
                    128:     }
1.25      www       129: }
                    130: 
1.64      matthew   131: # Try to make an alt tag if there is none
1.25      www       132: sub alttag {
1.26      www       133:     my ($base,$src)=@_;
                    134:     my $fullpath=&Apache::lonnet::hreflocation($base,$src);
                    135:     my $alttag=&Apache::lonnet::metadata($fullpath,'title').' '.
1.64      matthew   136:         &Apache::lonnet::metadata($fullpath,'subject').' '.
                    137:         &Apache::lonnet::metadata($fullpath,'abstract');
1.26      www       138:     $alttag=~s/\s+/ /gs;
                    139:     $alttag=~s/\"//gs;
                    140:     $alttag=~s/\'//gs;
                    141:     $alttag=~s/\s+$//gs;
                    142:     $alttag=~s/^\s+//gs;
1.64      matthew   143:     if ($alttag) { 
                    144:         return $alttag; 
                    145:     } else { 
                    146:         return &mt('No information available'); 
                    147:     }
1.9       www       148: }
1.1       www       149: 
1.64      matthew   150: # Author display
1.29      www       151: sub authordisplay {
                    152:     my ($aname,$adom)=@_;
1.64      matthew   153:     return &Apache::loncommon::aboutmewrapper
                    154:         (&Apache::loncommon::plainname($aname,$adom),
1.164     albertel  155:          $aname,$adom,'preview').' <tt>['.$aname.':'.$adom.']</tt>';
1.29      www       156: }
                    157: 
1.64      matthew   158: # Pretty display
1.12      www       159: sub evalgraph {
                    160:     my $value=shift;
1.65      matthew   161:     if (! $value) { 
                    162:         return '';
                    163:     }
1.12      www       164:     my $val=int($value*10.+0.5)-10;
1.71      matthew   165:     my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';
1.12      www       166:     if ($val>=20) {
1.221     raeburn   167: 	$output.='<td width="20" bgcolor="#555555">'.('&nbsp;' x2).'</td>';
1.12      www       168:     } else {
1.71      matthew   169:         $output.='<td width="'.($val).'" bgcolor="#555555">&nbsp;</td>'.
                    170:                  '<td width="'.(20-$val).'" bgcolor="#FF3333">&nbsp;</td>';
1.12      www       171:     }
                    172:     $output.='<td bgcolor="#FFFF33">&nbsp;</td>';
                    173:     if ($val>20) {
1.71      matthew   174: 	$output.='<td width="'.($val-20).'" bgcolor="#33FF33">&nbsp;</td>'.
                    175:                  '<td width="'.(40-$val).'" bgcolor="#555555">&nbsp;</td>';
1.12      www       176:     } else {
1.221     raeburn   177:         $output.='<td width="20" bgcolor="#555555">'.('&nbsp;' x2).'</td>';
1.12      www       178:     }
1.71      matthew   179:     $output.='<td> ('.sprintf("%5.2f",$value).') </td></tr></table>';
1.12      www       180:     return $output;
                    181: }
                    182: 
                    183: sub diffgraph {
                    184:     my $value=shift;
1.65      matthew   185:     if (! $value) { 
                    186:         return '';
                    187:     }
1.12      www       188:     my $val=int(40.0*$value+0.5);
1.13      www       189:     my @colors=('#FF9933','#EEAA33','#DDBB33','#CCCC33',
                    190:                 '#BBDD33','#CCCC33','#DDBB33','#EEAA33');
1.71      matthew   191:     my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';
1.12      www       192:     for (my $i=0;$i<8;$i++) {
                    193: 	if ($val>$i*5) {
1.71      matthew   194:             $output.='<td width="5" bgcolor="'.$colors[$i].'">&nbsp;</td>';
1.12      www       195:         } else {
1.71      matthew   196: 	    $output.='<td width="5" bgcolor="#555555">&nbsp;</td>';
1.12      www       197: 	}
                    198:     }
1.71      matthew   199:     $output.='<td> ('.sprintf("%3.2f",$value).') </td></tr></table>';
1.12      www       200:     return $output;
                    201: }
                    202: 
1.44      www       203: 
1.64      matthew   204: # The field names
1.45      www       205: sub fieldnames {
1.90      banghart  206:     my $file_type=shift;
1.115     banghart  207:     my %fields = 
                    208:         ('title' => 'Title',
1.113     banghart  209:          'author' =>'Author(s)',
1.131     albertel  210:          'authorspace' => 'Author Space',
                    211:          'modifyinguser' => 'Last Modifying User',
1.113     banghart  212:          'subject' => 'Subject',
1.133     banghart  213:          'standards' => 'Standards',
1.113     banghart  214:          'keywords' => 'Keyword(s)',
                    215:          'notes' => 'Notes',
                    216:          'abstract' => 'Abstract',
                    217:          'lowestgradelevel' => 'Lowest Grade Level',
1.149     albertel  218:          'highestgradelevel' => 'Highest Grade Level');
                    219:     
1.191     raeburn   220:     if ( !defined($file_type) || ($file_type ne 'portfolio' && $file_type ne 'groups') ) {
1.149     albertel  221:         %fields = 
1.93      matthew   222:         (%fields,
                    223:          'domain' => 'Domain',
1.64      matthew   224:          'mime' => 'MIME Type',
                    225:          'language' => 'Language',
                    226:          'creationdate' => 'Creation Date',
                    227:          'lastrevisiondate' => 'Last Revision Date',
                    228:          'owner' => 'Publisher/Owner',
                    229:          'copyright' => 'Copyright/Distribution',
                    230:          'customdistributionfile' => 'Custom Distribution File',
1.84      banghart  231:          'sourceavail' => 'Source Available',
1.78      taceyjo1  232:          'sourcerights' => 'Source Custom Distribution File',
1.64      matthew   233:          'obsolete' => 'Obsolete',
                    234:          'obsoletereplacement' => 'Suggested Replacement for Obsolete File',
                    235:          'count'      => 'Network-wide number of accesses (hits)',
                    236:          'course'     => 'Network-wide number of courses using resource',
                    237:          'course_list' => 'Network-wide courses using resource',
                    238:          'sequsage'      => 'Number of resources using or importing resource',
                    239:          'sequsage_list' => 'Resources using or importing resource',
                    240:          'goto'       => 'Number of resources that follow this resource in maps',
                    241:          'goto_list'  => 'Resources that follow this resource in maps',
                    242:          'comefrom'   => 'Number of resources that lead up to this resource in maps',
                    243:          'comefrom_list' => 'Resources that lead up to this resource in maps',
                    244:          'clear'      => 'Material presented in clear way',
                    245:          'depth'      => 'Material covered with sufficient depth',
                    246:          'helpful'    => 'Material is helpful',
                    247:          'correct'    => 'Material appears to be correct',
                    248:          'technical'  => 'Resource is technically correct', 
                    249:          'avetries'   => 'Average number of tries till solved',
1.205     www       250:          'stdno'      => 'Statistics calculated for number of students',
1.73      matthew   251:          'difficulty' => 'Degree of difficulty',
                    252:          'disc'       => 'Degree of discrimination',
1.133     banghart  253: 	     'dependencies' => 'Resources used by this resource',
1.64      matthew   254:          );
1.93      matthew   255:     }
                    256:     return &Apache::lonlocal::texthash(%fields);
1.45      www       257: }
1.141     albertel  258: 
1.146     albertel  259: sub portfolio_linked_path {
1.155     albertel  260:     my ($path,$group,$port_path) = @_;
                    261: 
                    262:     my $start = 'portfolio';
                    263:     if ($group) {
                    264: 	$start = "groups/$group/".$start;
                    265:     }
1.166     banghart  266:     my %anchor_fields = (
1.165     banghart  267:         'selectfile'  => $start,
                    268:         'currentpath' => '/'
                    269:     );
                    270:     my $result = &Apache::portfolio::make_anchor($port_path,\%anchor_fields,$start);
1.146     albertel  271:     my $fullpath = '/';
                    272:     my (undef,@tree) = split('/',$path);
1.147     albertel  273:     my $filename = pop(@tree);
1.146     albertel  274:     foreach my $dir (@tree) {
                    275: 	$fullpath .= $dir.'/';
                    276: 	$result .= '/';
1.166     banghart  277: 	my %anchor_fields = (
1.165     banghart  278:             'selectfile'  => $dir,
                    279:             'currentpath' => $fullpath
                    280:         );
                    281: 	$result .= &Apache::portfolio::make_anchor($port_path,\%anchor_fields,$dir);
1.146     albertel  282:     }
1.147     albertel  283:     $result .= "/$filename";
1.146     albertel  284:     return $result;
                    285: }
                    286: 
1.156     albertel  287: sub get_port_path_and_group {
                    288:     my ($uri)=@_;
                    289: 
1.155     albertel  290:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                    291:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.156     albertel  292: 
1.155     albertel  293:     my ($port_path,$group);
                    294:     if ($uri =~ m{^/editupload/\Q$cdom\E/\Q$cnum\E/groups/}) {
                    295: 	$group = (split('/',$uri))[5];
                    296: 	$port_path = '/adm/coursegrp_portfolio';
                    297:     } else {
                    298: 	$port_path = '/adm/portfolio';
                    299:     }
1.160     albertel  300:     if ($env{'form.group'} ne $group) {
1.161     albertel  301: 	$env{'form.group'} = $group;
1.160     albertel  302:     }
1.156     albertel  303:     return ($port_path,$group);
                    304: }
                    305: 
                    306: sub portfolio_display_uri {
                    307:     my ($uri,$as_links)=@_;
                    308: 
                    309:     my ($port_path,$group) = &get_port_path_and_group($uri);
                    310: 
1.144     albertel  311:     $uri =~ s|.*/(portfolio/.*)$|$1|;
1.141     albertel  312:     my ($res_uri,$meta_uri) = ($uri,$uri);
                    313:     if ($uri =~ /\.meta$/) {
                    314: 	$res_uri =~ s/\.meta//;
                    315:     } else {
                    316: 	$meta_uri .= '.meta';
                    317:     }
1.146     albertel  318: 
1.148     albertel  319:     my ($path) = ($res_uri =~ m|^portfolio(.*/)[^/]*$|);
1.146     albertel  320:     if ($as_links) {
1.155     albertel  321: 	$res_uri = &portfolio_linked_path($res_uri,$group,$port_path);
                    322: 	$meta_uri = &portfolio_linked_path($meta_uri,$group,$port_path);
1.146     albertel  323:     }
1.145     albertel  324:     return ($res_uri,$meta_uri,$path);
1.141     albertel  325: }
                    326: 
1.140     banghart  327: sub pre_select_course {
                    328:     my ($r,$uri) = @_;
                    329:     my $output;
                    330:     my $fn=&Apache::lonnet::filelocation('',$uri);
1.145     albertel  331:     my ($res_uri,$meta_uri,$path) = &portfolio_display_uri($uri);
1.140     banghart  332:     %Apache::lonpublisher::metadatafields=();
                    333:     %Apache::lonpublisher::metadatakeys=();
                    334:     my $result=&Apache::lonnet::getfile($fn);
                    335:     if ($result == -1){
1.141     albertel  336:         $r->print(&mt('Creating new file [_1]'),$meta_uri);
1.140     banghart  337:     } else {
                    338:         &Apache::lonpublisher::metaeval($result);
                    339:     }
1.141     albertel  340:     $r->print('<hr /><form method="post" action="" >');
1.224     bisitz    341:     $r->print('<p>'.&mt('If you would like to associate this resource ([_1]) with a current or previous course, please select one from the list below, otherwise select, "None".','<tt>'.$res_uri.'</tt>').'</p>');
1.140     banghart  342:     $output = &select_course();
                    343:     $r->print($output.'<br /><input type="submit" name="store" value="'.
1.167     banghart  344:                   &mt('Associate Resource With Selected Course').'" />');
1.169     banghart  345:     $r->print('<input type="hidden" name="currentpath" value="'.$env{'form.currentpath'}.'" />');
                    346:     $r->print('<input type="hidden" name="associate" value="true" />');
1.140     banghart  347:     $r->print('</form>');
1.145     albertel  348:     
1.156     albertel  349:     my ($port_path,$group) = &get_port_path_and_group($uri);
1.167     banghart  350:     my $group_input;
                    351:     if ($group) {
1.168     banghart  352:         $group_input = '<input type="hidden" name="group" value="'.$group.'" />';
                    353:     } 
1.167     banghart  354:     $r->print('<br /><br /><form method="post" action="'.$port_path.'">'.
1.145     albertel  355:               '<input type="hidden" name="currentpath" value="'.$path.'" />'.
1.167     banghart  356: 	      $group_input.
                    357: 	      '<input type="submit" name="cancel" value="'.&mt('Cancel').'" />'.
1.145     albertel  358: 	      '</form>');
                    359: 
1.140     banghart  360:     return;
                    361: }
1.100     banghart  362: sub select_course {
1.150     albertel  363:     my $output=$/;
                    364:     my $current_restriction=
                    365: 	$Apache::lonpublisher::metadatafields{'courserestricted'};
                    366:     my $selected = ($current_restriction eq 'none' ? 'selected="selected"' 
                    367: 		                                   : '');
1.200     raeburn   368:     if ($current_restriction =~ /^course\.($match_domain\_$match_courseid)$/) {
                    369:         my $assoc_crs = $1;
                    370:         my $added_metadata_fields = &Apache::lonparmset::get_added_meta_fieldnames($assoc_crs);
                    371:         if (ref($added_metadata_fields) eq 'HASH') {
                    372:             if (keys(%{$added_metadata_fields}) > 0) {
                    373:                 my $transfernotes;
                    374:                 foreach my $field_name (keys(%{$added_metadata_fields})) {
                    375:                     my $value = $Apache::lonpublisher::metadatafields{$field_name};
                    376:                     if ($value) {
                    377:                         $transfernotes .= 
                    378:                             &Apache::loncommon::start_data_table_row(). 
                    379:                             '<td><input type="checkbox" name="transfer_'.
                    380:                             $field_name.'" value="1" /></td><td>'.
                    381:                             $field_name.'</td><td>'.$value.'</td>'.
                    382:                             &Apache::loncommon::end_data_table_row();
                    383:                     }
                    384:                 }
                    385:                 if ($transfernotes ne '') {
                    386:                     my %courseinfo = &Apache::lonnet::coursedescription($assoc_crs,{'one_time' => 1});
                    387:                     my $assoc_crs_description = $courseinfo{'description'};
                    388:                     $output .= &mt('This resource is currently associated with a course ([_1]) which includes added metadata fields specific to the course.',$assoc_crs_description).'<br />'."\n".
                    389:                     &mt('You can choose to transfer data from the added fields to the "Notes" field if you are planning to change the course association.').'<br /><br />'.
                    390:                     &Apache::loncommon::start_data_table().
                    391:                     &Apache::loncommon::start_data_table_header_row().
                    392:                     '<th>Copy to notes?</th>'."\n".
                    393:                     '<th>Field name</th>'."\n".
                    394:                     '<th>Values</th>'."\n".
                    395:                     &Apache::loncommon::end_data_table_header_row().
                    396:                     $transfernotes.
                    397:                     &Apache::loncommon::end_data_table().'<br />';
                    398:                 }
                    399:             }
                    400:         }
                    401:     }
1.150     albertel  402:     $output .= '<select name="new_courserestricted" >';
                    403:     $output .= '<option value="none" '.$selected.'>'.
                    404: 	&mt('None').'</option>'.$/;
1.113     banghart  405:     my %courses;
1.150     albertel  406:     foreach my $key (keys(%env)) {
                    407:         if ($key !~ m/^course\.(.+)\.description$/) { next; }
                    408: 	my $cid = $1;
                    409:         if ($env{$key} !~ /\S/) { next; }
                    410: 	$courses{$key} = $cid;
                    411:     }
                    412:     foreach my $key (sort { lc($env{$a}) cmp lc($env{$b}) } (keys(%courses))) {
                    413: 	my $cid = 'course.'.$courses{$key};
                    414: 	my $selected = ($current_restriction eq $cid ? 'selected="selected"' 
                    415: 		                                     : '');
                    416:         if ($env{$key} !~ /\S/) { next; }
                    417: 	$output .= '<option value="'.$cid.'" '.$selected.'>';
                    418: 	$output .= $env{$key};
                    419: 	$output .= '</option>'.$/;
                    420: 	$selected = '';
1.100     banghart  421:     }
1.138     banghart  422:     $output .= '</select><br />';
1.137     banghart  423:     return ($output);
1.100     banghart  424: }
1.64      matthew   425: # Pretty printing of metadata field
1.46      www       426: 
                    427: sub prettyprint {
1.237     bisitz    428:     my ($type,$value,$target,$prefix,$form)=@_;
1.82      www       429: # $target,$prefix,$form are optional and for filecrumbs only
1.65      matthew   430:     if (! defined($value)) { 
                    431:         return '&nbsp;'; 
                    432:     }
1.64      matthew   433:     # Title
1.46      www       434:     if ($type eq 'title') {
1.226     schulted  435: 	return $value;
1.46      www       436:     }
1.64      matthew   437:     # Dates
1.46      www       438:     if (($type eq 'creationdate') ||
                    439: 	($type eq 'lastrevisiondate')) {
1.55      www       440: 	return ($value?&Apache::lonlocal::locallocaltime(
                    441: 			  &Apache::lonmysql::unsqltime($value)):
                    442: 		&mt('not available'));
1.46      www       443:     }
1.64      matthew   444:     # Language
1.46      www       445:     if ($type eq 'language') {
                    446: 	return &Apache::loncommon::languagedescription($value);
                    447:     }
1.64      matthew   448:     # Copyright
1.46      www       449:     if ($type eq 'copyright') {
                    450: 	return &Apache::loncommon::copyrightdescription($value);
                    451:     }
1.78      taceyjo1  452:     # Copyright
                    453:     if ($type eq 'sourceavail') {
                    454: 	return &Apache::loncommon::source_copyrightdescription($value);
                    455:     }
1.64      matthew   456:     # MIME
1.46      www       457:     if ($type eq 'mime') {
1.64      matthew   458:         return '<img src="'.&Apache::loncommon::icon($value).'" />&nbsp;'.
                    459:             &Apache::loncommon::filedescription($value);
                    460:     }
                    461:     # Person
1.46      www       462:     if (($type eq 'author') || 
                    463: 	($type eq 'owner') ||
                    464: 	($type eq 'modifyinguser') ||
                    465: 	($type eq 'authorspace')) {
1.190     albertel  466: 	$value=~s/($match_username)(\:|\@)($match_domain)/&authordisplay($1,$3)/gse;
1.46      www       467: 	return $value;
                    468:     }
1.64      matthew   469:     # Gradelevel
1.48      www       470:     if (($type eq 'lowestgradelevel') ||
                    471: 	($type eq 'highestgradelevel')) {
                    472: 	return &Apache::loncommon::gradeleveldescription($value);
                    473:     }
1.64      matthew   474:     # Only for advance users below
1.96      albertel  475:     if (! $env{'user.adv'}) { 
1.65      matthew   476:         return '<i>- '.&mt('not displayed').' -</i>';
                    477:     }
1.64      matthew   478:     # File
1.46      www       479:     if (($type eq 'customdistributionfile') ||
                    480: 	($type eq 'obsoletereplacement') ||
                    481: 	($type eq 'goto_list') ||
                    482: 	($type eq 'comefrom_list') ||
1.82      www       483: 	($type eq 'sequsage_list') ||
1.83      www       484: 	($type eq 'dependencies')) {
1.226     schulted  485: 	return '<ul class="LC_fontsize_medium">'.join("\n",map {
1.183     albertel  486:             my $url = &Apache::lonnet::clutter_with_no_wrapper($_);
1.72      matthew   487:             my $title = &Apache::lonnet::gettitle($url);
                    488:             if ($title eq '') {
                    489:                 $title = 'Untitled';
                    490:                 if ($url =~ /\.sequence$/) {
                    491:                     $title .= ' Sequence';
                    492:                 } elsif ($url =~ /\.page$/) {
                    493:                     $title .= ' Page';
                    494:                 } elsif ($url =~ /\.problem$/) {
                    495:                     $title .= ' Problem';
                    496:                 } elsif ($url =~ /\.html$/) {
                    497:                     $title .= ' HTML document';
                    498:                 } elsif ($url =~ m:/syllabus$:) {
                    499:                     $title .= ' Syllabus';
                    500:                 } 
                    501:             }
1.82      www       502:             $_ = '<li>'.$title.' '.
1.237     bisitz    503:                  &Apache::lonhtmlcommon::crumbs($url,$target,$prefix,$form).
                    504:                  '</li>'
1.226     schulted  505: 	    } split(/\s*\,\s*/,$value)).'</ul>';
1.46      www       506:     }
1.64      matthew   507:     # Evaluations
1.46      www       508:     if (($type eq 'clear') ||
                    509: 	($type eq 'depth') ||
                    510: 	($type eq 'helpful') ||
                    511: 	($type eq 'correct') ||
                    512: 	($type eq 'technical')) {
                    513: 	return &evalgraph($value);
                    514:     }
1.64      matthew   515:     # Difficulty
1.73      matthew   516:     if ($type eq 'difficulty' || $type eq 'disc') {
1.46      www       517: 	return &diffgraph($value);
                    518:     }
1.64      matthew   519:     # List of courses
1.46      www       520:     if ($type=~/\_list/) {
1.72      matthew   521:         my @Courses = split(/\s*\,\s*/,$value);
1.226     schulted  522:         my $Str='<ul class="LC_fontsize_medium">';
1.180     albertel  523: 	my %descriptions;
1.72      matthew   524:         foreach my $course (@Courses) {
1.154     albertel  525:             my %courseinfo =
                    526: 		&Apache::lonnet::coursedescription($course,
                    527: 						   {'one_time' => 1});
1.72      matthew   528:             if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {
                    529:                 next;
                    530:             }
1.180     albertel  531: 	    $descriptions{join('\0',@courseinfo{'domain','description'})} .= 
                    532: 		'<li><a href="/public/'.$courseinfo{'domain'}.'/'.
1.72      matthew   533:                 $courseinfo{'num'}.'/syllabus" target="preview">'.
1.180     albertel  534:                 $courseinfo{'description'}.' ('.$courseinfo{'domain'}.
                    535: 		')</a></li>';
1.72      matthew   536:         }
1.180     albertel  537: 	foreach my $course (sort {lc($a) cmp lc($b)} (keys(%descriptions))) {
                    538: 	    $Str .= $descriptions{$course};
                    539: 	}
                    540: 
1.226     schulted  541: 	return $Str.'</ul>';
1.46      www       542:     }
1.64      matthew   543:     # No pretty print found
1.46      www       544:     return $value;
                    545: }
                    546: 
1.64      matthew   547: # Pretty input of metadata field
1.54      www       548: sub direct {
                    549:     return shift;
                    550: }
                    551: 
1.48      www       552: sub selectbox {
                    553:     my ($name,$value,$functionref,@idlist)=@_;
1.65      matthew   554:     if (! defined($functionref)) {
                    555:         $functionref=\&direct;
                    556:     }
1.48      www       557:     my $selout='<select name="'.$name.'">';
1.220     raeburn   558:     foreach my $id (@idlist) {
1.223     raeburn   559:         $selout.='<option value="'.$id.'"';
1.220     raeburn   560:         if ($id eq $value) {
1.228     raeburn   561: 	    $selout.=' selected="selected">'.&{$functionref}($id).'</option>';
1.220     raeburn   562:         } else {
                    563:             $selout.='>'.&{$functionref}($id).'</option>';
                    564:         }
1.48      www       565:     }
                    566:     return $selout.'</select>';
                    567: }
                    568: 
1.54      www       569: sub relatedfield {
                    570:     my ($show,$relatedsearchflag,$relatedsep,$fieldname,$relatedvalue)=@_;
1.65      matthew   571:     if (! $relatedsearchflag) { 
                    572:         return '';
                    573:     }
                    574:     if (! defined($relatedsep)) {
                    575:         $relatedsep=' ';
                    576:     }
                    577:     if (! $show) {
                    578:         return $relatedsep.'&nbsp;';
                    579:     }
1.54      www       580:     return $relatedsep.'<input type="checkbox" name="'.$fieldname.'_related"'.
1.229     bisitz    581: 	($relatedvalue?' checked="checked"':'').' />';
1.54      www       582: }
1.48      www       583: 
1.46      www       584: sub prettyinput {
1.54      www       585:     my ($type,$value,$fieldname,$formname,
1.116     banghart  586: 	$relatedsearchflag,$relatedsep,$relatedvalue,$size,$course_key)=@_;
1.75      matthew   587:     if (! defined($size)) {
                    588:         $size = 80;
                    589:     }
1.128     banghart  590:     my $output;
1.150     albertel  591:     if (defined($course_key) 
                    592: 	&& exists($env{$course_key.'.metadata.'.$type.'.options'})) {
1.116     banghart  593:         my $stu_add;
                    594:         my $only_one;
1.128     banghart  595:         my %meta_options;
                    596:         my @cur_values_inst;
                    597:         my $cur_values_stu;
1.132     banghart  598:         my $values = $env{$course_key.'.metadata.'.$type.'.values'};
                    599:         if ($env{$course_key.'.metadata.'.$type.'.options'} =~ m/stuadd/) {
1.116     banghart  600:             $stu_add = 'true';
                    601:         }
1.132     banghart  602:         if ($env{$course_key.'.metadata.'.$type.'.options'} =~ m/onlyone/) {
1.116     banghart  603:             $only_one = 'true';
                    604:         }
1.128     banghart  605:         # need to take instructor values out of list where instructor and student
                    606:         # values may be mixed.
1.133     banghart  607:         if ($values) {
1.132     banghart  608:             foreach my $item (split(/,/,$values)) {
                    609:                 $item =~ s/^\s+//;
1.133     banghart  610:                 $meta_options{$item} = $item;
1.128     banghart  611:             }
1.132     banghart  612:             foreach my $item (split(/,/,$value)) {
                    613:                 $item =~ s/^\s+//;
                    614:                 if ($meta_options{$item}) {
                    615:                     push(@cur_values_inst,$item);
1.128     banghart  616:                 } else {
1.201     raeburn   617:                     if ($item ne '') {
1.198     banghart  618:                         $cur_values_stu .= $item.',';
                    619:                     }
1.128     banghart  620:                 }
                    621:             }
1.202     raeburn   622:              $cur_values_stu =~ s/,$//;
1.197     banghart  623:             my @key_order = sort(keys(%meta_options));
1.203     albertel  624:             unshift(@key_order,'');
1.201     raeburn   625:             $meta_options{''} = 'Not specified';
1.197     banghart  626:             $meta_options{'select_form_order'} = \@key_order;
1.129     banghart  627:         } else {
                    628:             $cur_values_stu = $value;
1.128     banghart  629:         }
1.121     banghart  630:         if ($type eq 'courserestricted') {
1.138     banghart  631:             return (&select_course());
                    632:             # return ('<input type="hidden" name="new_courserestricted" value="'.$course_key.'" />');
1.121     banghart  633:         }
1.130     banghart  634:         if (($type eq 'keywords') || ($type eq 'subject')
                    635:              || ($type eq 'author')||($type eq  'notes')
1.174     banghart  636:              || ($type eq  'abstract')|| ($type eq  'title')|| ($type eq  'standards')
1.199     raeburn   637:              || (exists($env{$course_key.'.metadata.'.$type.'.added'}))) {
1.197     banghart  638:             
1.129     banghart  639:             if ($values) {
                    640:                 if ($only_one) {
1.134     banghart  641:                     $output .= (&Apache::loncommon::select_form($cur_values_inst[0],'new_'.$type,%meta_options));
1.129     banghart  642:                 } else {
1.130     banghart  643:                     $output .= (&Apache::loncommon::multiple_select_form('new_'.$type,\@cur_values_inst,undef,\%meta_options));
1.129     banghart  644:                 }
1.128     banghart  645:             }
                    646:             if ($stu_add) {
                    647:                 $output .= '<input type="text" name="'.$fieldname.'" size="'.$size.'" '.
                    648:                 'value="'.$cur_values_stu.'" />'.
                    649:                 &relatedfield(1,$relatedsearchflag,$relatedsep,$fieldname,
                    650:                       $relatedvalue); 
1.119     banghart  651:             }
1.128     banghart  652:             return ($output);
1.176     banghart  653:         } 
1.116     banghart  654:         if (($type eq 'lowestgradelevel') ||
                    655: 	    ($type eq 'highestgradelevel')) {
                    656: 	    return &Apache::loncommon::select_level_form($value,$fieldname).
                    657:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
                    658:         }
                    659:         return(); 
                    660:     }
1.64      matthew   661:     # Language
1.48      www       662:     if ($type eq 'language') {
                    663: 	return &selectbox($fieldname,
                    664: 			  $value,
                    665: 			  \&Apache::loncommon::languagedescription,
1.54      www       666: 			  (&Apache::loncommon::languageids)).
1.64      matthew   667:                               &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48      www       668:     }
1.64      matthew   669:     # Copyright
1.48      www       670:     if ($type eq 'copyright') {
                    671: 	return &selectbox($fieldname,
                    672: 			  $value,
                    673: 			  \&Apache::loncommon::copyrightdescription,
1.54      www       674: 			  (&Apache::loncommon::copyrightids)).
1.64      matthew   675:                               &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48      www       676:     }
1.78      taceyjo1  677:     # Source Copyright
                    678:     if ($type eq 'sourceavail') {
                    679: 	return &selectbox($fieldname,
                    680: 			  $value,
                    681: 			  \&Apache::loncommon::source_copyrightdescription,
                    682: 			  (&Apache::loncommon::source_copyrightids)).
                    683:                               &relatedfield(0,$relatedsearchflag,$relatedsep);
                    684:     }
1.64      matthew   685:     # Gradelevels
1.48      www       686:     if (($type eq 'lowestgradelevel') ||
                    687: 	($type eq 'highestgradelevel')) {
1.54      www       688: 	return &Apache::loncommon::select_level_form($value,$fieldname).
1.64      matthew   689:             &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48      www       690:     }
1.64      matthew   691:     # Obsolete
1.48      www       692:     if ($type eq 'obsolete') {
                    693: 	return '<input type="checkbox" name="'.$fieldname.'"'.
1.229     bisitz    694: 	    ($value?' checked="checked"':'').' />'.
1.64      matthew   695:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
1.48      www       696:     }
1.64      matthew   697:     # Obsolete replacement file
1.48      www       698:     if ($type eq 'obsoletereplacement') {
                    699: 	return '<input type="text" name="'.$fieldname.
                    700: 	    '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
                    701: 	    "('".$formname."','".$fieldname."'".
1.54      www       702: 	    ",'')\">".&mt('Select').'</a>'.
1.64      matthew   703:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
                    704:     }
                    705:     # Customdistribution file
1.48      www       706:     if ($type eq 'customdistributionfile') {
                    707: 	return '<input type="text" name="'.$fieldname.
                    708: 	    '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
                    709: 	    "('".$formname."','".$fieldname."'".
1.54      www       710: 	    ",'rights')\">".&mt('Select').'</a>'.
1.64      matthew   711:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
1.48      www       712:     }
1.78      taceyjo1  713:     # Source Customdistribution file
                    714:     if ($type eq 'sourcerights') {
                    715: 	return '<input type="text" name="'.$fieldname.
                    716: 	    '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
                    717: 	    "('".$formname."','".$fieldname."'".
                    718: 	    ",'rights')\">".&mt('Select').'</a>'.
                    719:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
                    720:     }
1.135     banghart  721:     if ($type eq 'courserestricted') {
1.138     banghart  722:         return (&select_course());
                    723:         #return ('<input type="hidden" name="new_courserestricted" value="'.$course_key.'" />');
1.135     banghart  724:     }
                    725: 
1.64      matthew   726:     # Dates
1.48      www       727:     if (($type eq 'creationdate') ||
                    728: 	($type eq 'lastrevisiondate')) {
1.64      matthew   729: 	return 
                    730:             &Apache::lonhtmlcommon::date_setter($formname,$fieldname,$value).
                    731:             &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48      www       732:     }
1.64      matthew   733:     # No pretty input found
1.48      www       734:     $value=~s/^\s+//gs;
                    735:     $value=~s/\s+$//gs;
                    736:     $value=~s/\s+/ /gs;
1.77      matthew   737:     $value=~s/\"/\&quot\;/gs;
1.54      www       738:     return 
1.74      matthew   739:         '<input type="text" name="'.$fieldname.'" size="'.$size.'" '.
1.64      matthew   740:         'value="'.$value.'" />'.
                    741:         &relatedfield(1,$relatedsearchflag,$relatedsep,$fieldname,
                    742:                       $relatedvalue); 
1.46      www       743: }
                    744: 
1.234     bisitz    745: # Create pageheader
                    746: sub pageheader {
1.238   ! bisitz    747:     my $output = '';
        !           748:     # No CSTR? Include breadcrumbs
        !           749:     if ($env{'request.state'} ne 'construct') {
        !           750:         # loncommon::bodytag already includes breadcrumbs for CSTR
        !           751:         # by calling lonmenu::innerregister
        !           752:         $output = &Apache::lonhtmlcommon::breadcrumbs();
        !           753:     }
        !           754:     # CSTR? Include CSTR header
1.236     bisitz    755:     if ($env{'request.state'} eq 'construct') {
                    756:           $output .= &Apache::loncommon::head_subbox(
                    757:                          &Apache::loncommon::CSTR_pageheader());
                    758:     }
                    759:     return $output;
1.234     bisitz    760: }
                    761: 
1.64      matthew   762: # Main Handler
1.1       www       763: sub handler {
1.64      matthew   764:     my $r=shift;
1.169     banghart  765:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.188     banghart  766:          ['currentpath','changecourse']);
1.67      matthew   767:     my $uri=$r->uri;
                    768:     #
                    769:     # Set document type
                    770:     &Apache::loncommon::content_type($r,'text/html');
                    771:     $r->send_http_header;
                    772:     return OK if $r->header_only;
1.76      matthew   773:     my ($resdomain,$resuser)=
1.190     albertel  774:         (&Apache::lonnet::declutter($uri)=~/^($match_domain)\/($match_username)\//);
1.234     bisitz    775: 
                    776:     # Breadcrumbs
                    777:     &Apache::lonhtmlcommon::clear_breadcrumbs();
1.236     bisitz    778: 
                    779:     if ($env{'request.state'} eq 'construct') {
                    780:         &Apache::lonhtmlcommon::add_breadcrumb({
                    781:             'text'  => 'Construction Space',
                    782:             'href'  => &Apache::loncommon::authorspace(),
                    783:         });
                    784:     }
1.234     bisitz    785: 
1.66      matthew   786:     if ($uri=~m:/adm/bombs/(.*)$:) {
1.234     bisitz    787:         &Apache::lonhtmlcommon::add_breadcrumb({
                    788:             'text'  => 'Error Messages',
                    789:             'href'  => '',
                    790:         });
1.153     albertel  791:         $r->print(&Apache::loncommon::start_page('Error Messages'));
1.234     bisitz    792:         $r->print(&pageheader());
1.66      matthew   793:         # Looking for all bombs?
                    794:         &report_bombs($r,$uri);
1.162     albertel  795:     } elsif ($uri=~m|^/editupload/[^/]+/[^/]+/portfolio/|) {
1.234     bisitz    796:         &Apache::lonhtmlcommon::add_breadcrumb({
                    797:             'text'  => 'Edit Portfolio File Metadata',
                    798:             'href'  => '',
                    799:         });
1.140     banghart  800: 	    ($resdomain,$resuser)=
1.190     albertel  801: 		(&Apache::lonnet::declutter($uri)=~m|^($match_domain)/($match_name)/portfolio|);
1.225     schafran  802:         $r->print(&Apache::loncommon::start_page('Edit Portfolio File Metadata',
1.153     albertel  803: 						 undef,
                    804: 						 {'domain' => $resdomain,}));
1.234     bisitz    805:         $r->print(&pageheader());
1.140     banghart  806:         if ($env{'form.store'}) {
                    807:             &present_editable_metadata($r,$uri,'portfolio');
                    808:         } else {
1.186     banghart  809:             my $fn=&Apache::lonnet::filelocation('',$uri);
                    810:             %Apache::lonpublisher::metadatafields=();
                    811:             %Apache::lonpublisher::metadatakeys=();
                    812:             my $result=&Apache::lonnet::getfile($fn);
                    813:             &Apache::lonpublisher::metaeval($result);
1.188     banghart  814:             if ((!$Apache::lonpublisher::metadatafields{'courserestricted'}) ||
                    815:                 ($env{'form.changecourse'} eq 'true')) {
1.186     banghart  816:                 &pre_select_course($r,$uri);
                    817:             } else {
                    818:                 &present_editable_metadata($r,$uri,'portfolio');
                    819:             }
1.140     banghart  820:         }
1.171     banghart  821:     } elsif ($uri=~m|^/editupload/[^/]+/[^/]+/groups/|) {
1.234     bisitz    822:         &Apache::lonhtmlcommon::add_breadcrumb({
                    823:             'text'  => 'Edit Group Portfolio File Metadata',
                    824:             'href'  => '',
                    825:         });
1.225     schafran  826:         $r->print(&Apache::loncommon::start_page('Edit Group Portfolio File Metadata',
1.171     banghart  827: 						 undef,
                    828: 						 {'domain' => $resdomain,}));
1.234     bisitz    829:         $r->print(&pageheader());
1.172     banghart  830:         &present_editable_metadata($r,$uri,'groups');    
1.162     albertel  831:     } elsif ($uri=~m|^/~|) { 
1.66      matthew   832:         # Construction space
1.234     bisitz    833:         &Apache::lonhtmlcommon::add_breadcrumb({
                    834:             'text'  => 'Edit Metadata',
                    835:             'href'  => '',
                    836:         });
1.225     schafran  837:         $r->print(&Apache::loncommon::start_page('Edit Metadata',
1.204     banghart  838: 						"\n".'<script type="text/javascript">'."\n".
                    839:                                                 &Apache::loncommon::browser_and_searcher_javascript().
                    840:                                                 "\n".'</script>',
1.153     albertel  841: 						 {'domain' => $resdomain,}));
1.234     bisitz    842:         $r->print(&pageheader());
1.66      matthew   843:         &present_editable_metadata($r,$uri);
                    844:     } else {
1.234     bisitz    845:         &Apache::lonhtmlcommon::add_breadcrumb({
                    846:             'text'  => 'Metadata',
                    847:             'href'  => '',
                    848:         });
1.214     schafran  849:         $r->print(&Apache::loncommon::start_page('Metadata',
1.153     albertel  850: 						 undef,
                    851: 						 {'domain' => $resdomain,}));
1.234     bisitz    852:         $r->print(&pageheader());
1.66      matthew   853:         &present_uneditable_metadata($r,$uri);
                    854:     }
1.153     albertel  855:     $r->print(&Apache::loncommon::end_page());
1.66      matthew   856:     return OK;
                    857: }
                    858: 
1.67      matthew   859: #####################################################
                    860: #####################################################
                    861: ###                                               ###
                    862: ###                Report Bombs                   ###
                    863: ###                                               ###
                    864: #####################################################
                    865: #####################################################
1.66      matthew   866: sub report_bombs {
                    867:     my ($r,$uri) = @_;
                    868:     # Set document type
1.67      matthew   869:     $uri =~ s:/adm/bombs/::;
                    870:     $uri = &Apache::lonnet::declutter($uri);
1.66      matthew   871:     $r->print('<h1>'.&Apache::lonnet::clutter($uri).'</h1>');
1.190     albertel  872:     my ($domain,$author)=($uri=~/^($match_domain)\/($match_username)\//);
1.66      matthew   873:     if (&Apache::loncacc::constructaccess('/~'.$author.'/',$domain)) {
1.98      www       874: 	if ($env{'form.clearbombs'}) {
                    875: 	    &Apache::lonmsg::clear_author_res_msg($uri);
                    876: 	}
                    877:         my $clear=&mt('Clear all Messages in Subdirectory');
1.212     www       878:         my $cancel=&mt('Back to Directory');
                    879:         my $cancelurl=$uri;
                    880:         $cancelurl=~s/^\Q$domain\E/\/priv/;
                    881:         $r->print(<<ENDCLEAR);
1.98      www       882: <form method="post">
                    883: <input type="submit" name="clearbombs" value="$clear" />
1.212     www       884: <a href="$cancelurl">$cancel</a>
                    885: </form><hr />
1.98      www       886: ENDCLEAR
1.67      matthew   887:         my %brokenurls = 
                    888:             &Apache::lonmsg::all_url_author_res_msg($author,$domain);
1.220     raeburn   889:         foreach my $key (sort(keys(%brokenurls))) {
                    890:             if ($key=~/^\Q$uri\E/) {
1.70      matthew   891:                 $r->print
1.220     raeburn   892:                     ('<a href="'.&Apache::lonnet::clutter($key).'">'.$key.'</a>'.
                    893:                      &Apache::lonmsg::retrieve_author_res_msg($key).
1.70      matthew   894:                      '<hr />');
1.64      matthew   895:             }
                    896:         }
1.66      matthew   897:     } else {
                    898:         $r->print(&mt('Not authorized'));
                    899:     }
                    900:     return;
                    901: }
                    902: 
1.67      matthew   903: #####################################################
                    904: #####################################################
                    905: ###                                               ###
                    906: ###        Uneditable Metadata Display            ###
                    907: ###                                               ###
                    908: #####################################################
                    909: #####################################################
1.66      matthew   910: sub present_uneditable_metadata {
                    911:     my ($r,$uri) = @_;
                    912:     #
1.162     albertel  913:     my $uploaded = ($uri =~ m|/uploaded/|);
1.66      matthew   914:     my %content=();
                    915:     # Read file
1.220     raeburn   916:     foreach my $key (split(/\,/,&Apache::lonnet::metadata($uri,'keys'))) {
                    917:         $content{$key}=&Apache::lonnet::metadata($uri,$key);
1.66      matthew   918:     }
                    919:     # Render Output
                    920:     # displayed url
                    921:     my ($thisversion)=($uri=~/\.(\d+)\.(\w+)\.meta$/);
                    922:     $uri=~s/\.meta$//;
1.183     albertel  923:     my $disuri=&Apache::lonnet::clutter_with_no_wrapper($uri);
1.66      matthew   924:     # version
                    925:     my $versiondisplay='';
1.162     albertel  926:     if (!$uploaded) {
                    927: 	my $currentversion=&Apache::lonnet::getversion($disuri);
                    928: 	if ($thisversion) {
                    929: 	    $versiondisplay=&mt('Version').': '.$thisversion.
                    930: 		' ('.&mt('most recent version').': '.
                    931: 		($currentversion>0 ? 
                    932: 		 $currentversion   :
                    933: 		 &mt('information not available')).')';
                    934: 	} else {
                    935: 	    $versiondisplay='Version: '.$currentversion;
                    936: 	}
1.66      matthew   937:     }
1.237     bisitz    938:     # crumbify displayed URL               uri     target prefix form 
                    939:     $disuri=&Apache::lonhtmlcommon::crumbs($disuri,undef, undef, undef);
1.66      matthew   940:     # obsolete
                    941:     my $obsolete=$content{'obsolete'};
                    942:     my $obsoletewarning='';
1.96      albertel  943:     if (($obsolete) && ($env{'user.adv'})) {
1.218     bisitz    944:         $obsoletewarning='<p><span class="LC_warning">'.
1.66      matthew   945:             &mt('This resource has been marked obsolete by the author(s)').
1.218     bisitz    946:             '</span></p>';
1.66      matthew   947:     }
                    948:     #
                    949:     my %lt=&fieldnames();
                    950:     my $table='';
1.72      matthew   951:     my $title = $content{'title'};
                    952:     if (! defined($title)) {
                    953:         $title = 'Untitled Resource';
                    954:     }
1.163     albertel  955:     my @fields;
                    956:     if ($uploaded) {
                    957: 	@fields = ('title','author','subject','keywords','notes','abstract',
                    958: 		   'lowestgradelevel','highestgradelevel','standards','mime',
                    959: 		   'owner');
                    960:     } else {
                    961: 	@fields = ('title', 
                    962: 		   'author', 
                    963: 		   'subject', 
                    964: 		   'keywords', 
                    965: 		   'notes', 
                    966: 		   'abstract',
                    967: 		   'lowestgradelevel',
                    968: 		   'highestgradelevel',
                    969: 		   'standards', 
                    970: 		   'mime', 
                    971: 		   'language', 
                    972: 		   'creationdate', 
                    973: 		   'lastrevisiondate', 
                    974: 		   'owner', 
                    975: 		   'copyright', 
                    976: 		   'customdistributionfile',
                    977: 		   'sourceavail',
                    978: 		   'sourcerights', 
                    979: 		   'obsolete', 
                    980: 		   'obsoletereplacement');
                    981:     }
1.222     raeburn   982:     my $rownum = 0;
1.163     albertel  983:     foreach my $field (@fields) {
1.222     raeburn   984:         my $lastrow = '';
                    985:         $rownum ++;
                    986:         $lastrow = 1 if ($rownum == @fields); 
1.218     bisitz    987:         $table.=&Apache::lonhtmlcommon::row_title($lt{$field})
                    988:                .&prettyprint($field,$content{$field})
1.222     raeburn   989:                .&Apache::lonhtmlcommon::row_closure($lastrow);
1.163     albertel  990:         delete($content{$field});
1.66      matthew   991:     }
                    992:     #
1.218     bisitz    993:     $r->print("<h2>$title</h2>"
                    994:              .'<p>'
                    995:              .$disuri.'<br />'
                    996:              .$obsoletewarning
                    997:              .$versiondisplay
                    998:              .'</p>'
                    999:              .&Apache::lonhtmlcommon::start_pick_box()
                   1000:              .$table
                   1001:              .&Apache::lonhtmlcommon::end_pick_box()
                   1002:     );
1.162     albertel 1003:     if (!$uploaded && $env{'user.adv'}) {
1.68      matthew  1004:         &print_dynamic_metadata($r,$uri,\%content);
1.67      matthew  1005:     }
                   1006:     return;
                   1007: }
                   1008: 
                   1009: sub print_dynamic_metadata {
1.68      matthew  1010:     my ($r,$uri,$content) = @_;
                   1011:     #
1.69      matthew  1012:     my %content = %$content;
1.68      matthew  1013:     my %lt=&fieldnames();
1.67      matthew  1014:     #
                   1015:     my $description = 'Dynamic Metadata (updated periodically)';
                   1016:     $r->print('<h3>'.&mt($description).'</h3>'.
1.70      matthew  1017:               &mt('Processing'));
1.67      matthew  1018:     $r->rflush();
                   1019:     my %items=&fieldnames();
                   1020:     my %dynmeta=&dynamicmeta($uri);
                   1021:     #
                   1022:     # General Access and Usage Statistics
1.230     bisitz   1023:     $r->print('<h4>'.&mt('Access and Usage Statistics').'</h4>');
1.70      matthew  1024:     if (exists($dynmeta{'count'}) ||
                   1025:         exists($dynmeta{'sequsage'}) ||
                   1026:         exists($dynmeta{'comefrom'}) ||
                   1027:         exists($dynmeta{'goto'}) ||
                   1028:         exists($dynmeta{'course'})) {
1.230     bisitz   1029:         $r->print(&Apache::lonhtmlcommon::start_pick_box());
1.222     raeburn  1030:         my @counts = ('count','sequsage','sequsage_list',
                   1031:                       'comefrom','comefrom_list','goto',
                   1032:                       'goto_list','course','course_list');
                   1033:         my $rownum = 0;
                   1034:         foreach my $item (@counts) {
                   1035:             my $lastrow = '';
                   1036:             $rownum ++;
                   1037:             $lastrow = 1 if ($rownum == @counts);
1.220     raeburn  1038:             $r->print(&Apache::lonhtmlcommon::row_title($lt{$item})
                   1039:                      .&prettyprint($item,$dynmeta{$item})
1.222     raeburn  1040:                      .&Apache::lonhtmlcommon::row_closure($lastrow)
1.218     bisitz   1041:             );
1.70      matthew  1042:         }
1.218     bisitz   1043:         $r->print(&Apache::lonhtmlcommon::end_pick_box());
1.70      matthew  1044:     } else {
1.230     bisitz   1045:         $r->print('<p>'
                   1046:                  .&mt('No Access or Usages Statistics are available for this resource.')
                   1047:                  .'</p>'
                   1048:         );
1.67      matthew  1049:     }
1.69      matthew  1050:     #
                   1051:     # Assessment statistics
1.73      matthew  1052:     if ($uri=~/\.(problem|exam|quiz|assess|survey|form)$/) {
                   1053:         if (exists($dynmeta{'stdno'}) ||
                   1054:             exists($dynmeta{'avetries'}) ||
                   1055:             exists($dynmeta{'difficulty'}) ||
                   1056:             exists($dynmeta{'disc'})) {
                   1057:             # This is an assessment, print assessment data
                   1058:             $r->print('<h4>'.
                   1059:                       &mt('Overall Assessment Statistical Data').
                   1060:                       '</h4>'.
1.218     bisitz   1061:                       &Apache::lonhtmlcommon::start_pick_box());
                   1062:             $r->print(&Apache::lonhtmlcommon::row_title($lt{'stdno'})
                   1063:                      .&prettyprint('stdno',$dynmeta{'stdno'})
                   1064:                      .&Apache::lonhtmlcommon::row_closure()
                   1065:             );
1.222     raeburn  1066:             my @stats = ('avetries','difficulty','disc');
                   1067:             my $rownum = 0;
                   1068:             foreach my $item (@stats) {
                   1069:                 my $lastrow = '';
                   1070:                 $rownum ++;
                   1071:                 $lastrow = 1 if ($rownum == @stats);
1.220     raeburn  1072:                 $r->print(&Apache::lonhtmlcommon::row_title($lt{$item})
                   1073:                          .&prettyprint($item,sprintf('%5.2f',$dynmeta{$item}))
1.222     raeburn  1074:                          .&Apache::lonhtmlcommon::row_closure($lastrow)
1.218     bisitz   1075:                 );
1.73      matthew  1076:             }
1.218     bisitz   1077:             $r->print(&Apache::lonhtmlcommon::end_pick_box());
1.73      matthew  1078:         }
1.230     bisitz   1079:         #
                   1080:         # New assessment statistics
                   1081:         $r->print('<h4>'
                   1082:                  .&mt('Recent Detailed Assessment Statistical Data')
                   1083:                  .'</h4>'
                   1084:         );
1.73      matthew  1085:         if (exists($dynmeta{'stats'})) {
1.218     bisitz   1086:             my $table=&Apache::loncommon::start_data_table()
                   1087:                      .&Apache::loncommon::start_data_table_header_row()
                   1088:                      .'<th>'.&mt('Course').'</th>'
                   1089:                      .'<th>'.&mt('Section(s)').'</th>'
                   1090:                      .'<th>'.&mt('Num Students').'</th>'
                   1091:                      .'<th>'.&mt('Mean Tries').'</th>'
                   1092:                      .'<th>'.&mt('Degree of Difficulty').'</th>'
                   1093:                      .'<th>'.&mt('Degree of Discrimination').'</th>'
                   1094:                      .'<th>'.&mt('Time of computation').'</th>'
                   1095:                      .&Apache::loncommon::end_data_table_header_row().$/;
1.73      matthew  1096:             foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) {
                   1097:                 my $data = $dynmeta{'stats'}->{$identifier};
                   1098:                 my $course = $data->{'course'};
1.154     albertel 1099:                 my %courseinfo = 
                   1100: 		    &Apache::lonnet::coursedescription($course,
                   1101: 						       {'one_time' => 1});
1.73      matthew  1102:                 if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {
                   1103:                     &Apache::lonnet::logthis('lookup for '.$course.' failed');
                   1104:                     next;
                   1105:                 }
1.218     bisitz   1106:                 $table .= &Apache::loncommon::start_data_table_row();
1.73      matthew  1107:                 $table .= 
1.218     bisitz   1108:                     '<td><span class="LC_nobreak">'.$courseinfo{'description'}.'</span></td>';
1.73      matthew  1109:                 $table .= 
                   1110:                     '<td align="right">'.$data->{'sections'}.'</td>';
                   1111:                 $table .=
                   1112:                     '<td align="right">'.$data->{'stdno'}.'</td>';
1.220     raeburn  1113:                 foreach my $item ('avetries','difficulty','disc') {
1.73      matthew  1114:                     $table .= '<td align="right">';
1.220     raeburn  1115:                     if (exists($data->{$item})) {
                   1116:                         $table .= sprintf('%.2f',$data->{$item}).'&nbsp;';
1.73      matthew  1117:                     } else {
                   1118:                         $table .= '';
                   1119:                     }
                   1120:                     $table .= '</td>';
                   1121:                 }
                   1122:                 $table .=
1.218     bisitz   1123:                     '<td><span class="LC_nobreak">'.
1.73      matthew  1124:                     &Apache::lonlocal::locallocaltime($data->{'timestamp'}).
1.218     bisitz   1125:                     '</span></td>';
                   1126:                 $table .= &Apache::loncommon::end_data_table_row().$/;
1.73      matthew  1127:             }
1.218     bisitz   1128:             $table .= &Apache::loncommon::end_data_table().$/;
1.73      matthew  1129:             $r->print($table);
                   1130:         } else {
1.230     bisitz   1131:             $r->print('<p>'
                   1132:                      .&mt('No new dynamic data found.')
                   1133:                      .'</p>'
                   1134:             );
1.66      matthew  1135:         }
1.70      matthew  1136:     } else {
1.73      matthew  1137:         $r->print('<h4>'.
                   1138:           &mt('No Assessment Statistical Data is available for this resource').
                   1139:                   '</h4>');
1.67      matthew  1140:     }
1.73      matthew  1141: 
                   1142:     #
1.230     bisitz   1143:     # Evaluation Data
                   1144:     $r->print('<h4>'.&mt('Evaluation Data').'</h4>');
1.70      matthew  1145:     if (exists($dynmeta{'clear'})   || 
                   1146:         exists($dynmeta{'depth'})   || 
                   1147:         exists($dynmeta{'helpful'}) || 
                   1148:         exists($dynmeta{'correct'}) || 
                   1149:         exists($dynmeta{'technical'})){ 
1.230     bisitz   1150:         $r->print(&Apache::lonhtmlcommon::start_pick_box());
1.222     raeburn  1151:         my @criteria = ('clear','depth','helpful','correct','technical');
                   1152:         my $rownum = 0;
                   1153:         foreach my $item (@criteria) {
                   1154:             my $lastrow = '';
                   1155:             $rownum ++;
                   1156:             $lastrow = 1 if ($rownum == @criteria);
1.220     raeburn  1157:             $r->print(&Apache::lonhtmlcommon::row_title($lt{$item})
                   1158:                      .&prettyprint($item,$dynmeta{$item})
1.222     raeburn  1159:                      .&Apache::lonhtmlcommon::row_closure($lastrow)
1.218     bisitz   1160:             );
1.70      matthew  1161:         }
1.218     bisitz   1162:         $r->print(&Apache::lonhtmlcommon::end_pick_box());
1.70      matthew  1163:     } else {
1.230     bisitz   1164:         $r->print('<p>'
                   1165:                  .&mt('No Evaluation Data is available for this resource.')
                   1166:                  .'</p>'
                   1167:         );
1.67      matthew  1168:     }
1.230     bisitz   1169:     # Evaluation Comments
1.190     albertel 1170:     $uri=~/^\/res\/($match_domain)\/($match_username)\//; 
1.96      albertel 1171:     if ((($env{'user.domain'} eq $1) && ($env{'user.name'} eq $2))
                   1172:         || ($env{'user.role.ca./'.$1.'/'.$2})) {
1.230     bisitz   1173:         $r->print('<h4>'.&mt('Evaluation Comments').'</h4>'
                   1174:                  .'<div>('
                   1175:                  .&mt('visible to author and co-authors only')
                   1176:                  .')</div>'
                   1177:         );
1.232     bisitz   1178:         if (exists($dynmeta{'comments'})) {
1.230     bisitz   1179:             $r->print('<blockquote>'.$dynmeta{'comments'}.'</blockquote>');
1.70      matthew  1180:         } else {
1.230     bisitz   1181:             $r->print('<p>'
                   1182:                      .&mt('There are no Evaluation Comments on this resource.')
                   1183:                      .'</p>'
                   1184:             );
1.70      matthew  1185:         }
                   1186:         my $bombs = &Apache::lonmsg::retrieve_author_res_msg($uri);
                   1187:         if (defined($bombs) && $bombs ne '') {
1.230     bisitz   1188:             $r->print('<a name="bombs" />'
                   1189:                      .'<h4 class="LC_error">'.&mt('Error Messages').'</h4>'
                   1190:                      .'<div>('
                   1191:                      .&mt('visible to author and co-authors only')
                   1192:                      .')</div>'
                   1193:                      .$bombs
                   1194:             );
                   1195:         } #else {
                   1196:         #    $r->print('<h4>'.&mt('There are currently no Error Messages for this resource.').'</h4>');
                   1197:         #}
1.67      matthew  1198:     }
1.69      matthew  1199:     #
1.67      matthew  1200:     # All other stuff
                   1201:     $r->print('<h3>'.
                   1202:               &mt('Additional Metadata (non-standard, parameters, exports)').
1.218     bisitz   1203:               '</h3>');
                   1204:     $r->print(&Apache::lonhtmlcommon::start_pick_box());
1.222     raeburn  1205:     my @names;
                   1206:     foreach my $key (sort(keys(%content))) {
                   1207:         if ($key!~/\.display$/) {
                   1208:             push(@names,$key);
                   1209:         }
                   1210:     }
                   1211:     if (@names > 0) {
                   1212:         my $rownum = 0;
                   1213:         foreach my $name (@names) {
                   1214:             my $lastrow = '';
                   1215:             $rownum ++;
                   1216:             $lastrow = 1 if ($rownum == @names);
                   1217: 
1.67      matthew  1218:             my $display=&Apache::lonnet::metadata($uri,
                   1219:                                                   $name.'.display');
                   1220:             if (! $display) { 
                   1221:                 $display=$name;
                   1222:             };
                   1223:             my $otherinfo='';
1.220     raeburn  1224:             foreach my $item ('name','part','type','default') {
1.67      matthew  1225:                 if (defined(&Apache::lonnet::metadata($uri,
1.220     raeburn  1226:                                                       $name.'.'.$item))) {
                   1227:                     $otherinfo.=' '.$item.'='.
1.67      matthew  1228:                         &Apache::lonnet::metadata($uri,
1.220     raeburn  1229:                                                   $name.'.'.$item).'; ';
1.67      matthew  1230:                 }
1.64      matthew  1231:             }
1.218     bisitz   1232:             $r->print(&Apache::lonhtmlcommon::row_title($display)
                   1233:                      .$content{$name}
                   1234:             );
1.67      matthew  1235:             if ($otherinfo) {
                   1236:                 $r->print(' ('.$otherinfo.')');
1.64      matthew  1237:             }
1.222     raeburn  1238:             $r->print(&Apache::lonhtmlcommon::row_closure($lastrow));
1.64      matthew  1239:         }
1.66      matthew  1240:     }
1.218     bisitz   1241:     $r->print(&Apache::lonhtmlcommon::end_pick_box());
1.67      matthew  1242:     return;
1.66      matthew  1243: }
1.105     banghart 1244: 
1.102     banghart 1245: 
                   1246: 
1.67      matthew  1247: #####################################################
                   1248: #####################################################
                   1249: ###                                               ###
                   1250: ###          Editable metadata display            ###
                   1251: ###                                               ###
                   1252: #####################################################
                   1253: #####################################################
1.66      matthew  1254: sub present_editable_metadata {
1.172     banghart 1255:     my ($r,$uri,$file_type) = @_;
1.66      matthew  1256:     # Construction Space Call
                   1257:     # Header
                   1258:     my $disuri=$uri;
                   1259:     my $fn=&Apache::lonnet::filelocation('',$uri);
1.155     albertel 1260:     $disuri=~s{^/\~}{/priv/};
1.66      matthew  1261:     $disuri=~s/\.meta$//;
1.141     albertel 1262:     my $meta_uri = $disuri;
1.147     albertel 1263:     my $path;
1.141     albertel 1264:     if ($disuri =~ m|/portfolio/|) {
1.147     albertel 1265: 	($disuri, $meta_uri, $path) =  &portfolio_display_uri($disuri,1);
1.141     albertel 1266:     }
1.66      matthew  1267:     my $target=$uri;
1.155     albertel 1268:     $target=~s{^/\~}{/res/$env{'request.role.domain'}/};
1.66      matthew  1269:     $target=~s/\.meta$//;
                   1270:     my $bombs=&Apache::lonmsg::retrieve_author_res_msg($target);
                   1271:     if ($bombs) {
1.99      www      1272:         my $showdel=1;
1.96      albertel 1273:         if ($env{'form.delmsg'}) {
1.66      matthew  1274:             if (&Apache::lonmsg::del_url_author_res_msg($target) eq 'ok') {
                   1275:                 $bombs=&mt('Messages deleted.');
1.99      www      1276: 		$showdel=0;
1.66      matthew  1277:             } else {
                   1278:                 $bombs=&mt('Error deleting messages');
1.64      matthew  1279:             }
1.66      matthew  1280:         }
1.98      www      1281:         if ($env{'form.clearmsg'}) {
                   1282: 	    my $cleardir=$target;
                   1283: 	    $cleardir=~s/\/[^\/]+$/\//;
                   1284:             if (&Apache::lonmsg::clear_author_res_msg($cleardir) eq 'ok') {
                   1285:                 $bombs=&mt('Messages cleared.');
1.99      www      1286: 		$showdel=0;
1.98      www      1287:             } else {
                   1288:                 $bombs=&mt('Error clearing messages');
                   1289:             }
                   1290:         }
                   1291:         my $del=&mt('Delete Messages for this Resource');
                   1292: 	my $clear=&mt('Clear all Messages in Subdirectory');
1.99      www      1293: 	my $goback=&mt('Back to Source File');
1.66      matthew  1294:         $r->print(<<ENDBOMBS);
1.52      www      1295: <h1>$disuri</h1>
1.169     banghart 1296: <form method="post" action="" name="defaultmeta">
1.99      www      1297: ENDBOMBS
                   1298:         if ($showdel) {
                   1299: 	    $r->print(<<ENDDEL);
1.59      www      1300: <input type="submit" name="delmsg" value="$del" />
1.98      www      1301: <input type="submit" name="clearmsg" value="$clear" />
1.99      www      1302: ENDDEL
                   1303:         } else {
1.208     albertel 1304:             $r->print('<p><a href="'.$disuri.'">'.$goback.'</a></p>');
1.203     albertel 1305: 	    if ($env{'form.clearmsg'}) {
                   1306: 		my ($diruri) = ($disuri =~ m{(.*/)[^/]*});
1.208     albertel 1307: 		$r->print('<p><a href="'.$diruri.'">'.
1.203     albertel 1308: 			  &mt('Back To Directory').'</a></p>');
                   1309: 	    }
1.99      www      1310: 	}
                   1311: 	$r->print('<br />'.$bombs);
1.66      matthew  1312:     } else {
1.214     schafran 1313:         my $displayfile=&mt('Metadata for [_1]',$disuri);
1.66      matthew  1314:         if ($disuri=~/\/default$/) {
                   1315:             my $dir=$disuri;
                   1316:             $dir=~s/default$//;
1.233     bisitz   1317:             $displayfile=&mt('Default Metadata for Directory [_1]'
                   1318:                             ,'<span class="LC_filename">'.$dir.'</span>');
1.66      matthew  1319:         }
                   1320:         %Apache::lonpublisher::metadatafields=();
                   1321:         %Apache::lonpublisher::metadatakeys=();
1.94      banghart 1322:         my $result=&Apache::lonnet::getfile($fn);
                   1323:         if ($result == -1){
1.141     albertel 1324: 	    $r->print(&mt('Creating new file [_1]'),$meta_uri);
1.94      banghart 1325:         } else {
                   1326:             &Apache::lonpublisher::metaeval($result);
                   1327:         }
1.200     raeburn  1328:         if ($env{'form.new_courserestricted'}) {
                   1329:             my $new_assoc_course = $env{'form.new_courserestricted'};
                   1330:             my $prev_courserestricted = $Apache::lonpublisher::metadatafields{'courserestricted'};
                   1331:             if (($prev_courserestricted) && 
                   1332:                 ($prev_courserestricted ne $new_assoc_course)) {
                   1333:                 my $transfers = [];
                   1334:                 foreach my $key (keys(%env)) {
                   1335:                     if ($key =~ /^form\.transfer_(.+)$/) {
                   1336:                         push(@{$transfers},$1);
                   1337:                     }
                   1338:                 }
                   1339:                 if (@{$transfers} > 0) {
                   1340:                     &store_transferred_addedfields($fn,$uri,$transfers);
                   1341:                 }
                   1342:             }
                   1343:         }
1.66      matthew  1344:         $r->print(<<ENDEDIT);
1.233     bisitz   1345: <p>$displayfile</p>
1.169     banghart 1346: <form method="post" action="" name="defaultmeta">
1.23      www      1347: ENDEDIT
1.90      banghart 1348:         my %lt=&fieldnames($file_type);
1.87      albertel 1349: 	my $output;
1.90      banghart 1350: 	my @fields;
1.174     banghart 1351: 	my $added_metadata_fields;
1.184     banghart 1352: 	my @added_order;
1.195     raeburn  1353:         if ($file_type eq 'groups') {
                   1354:             $Apache::lonpublisher::metadatafields{'courserestricted'}=
                   1355:                 'course.'.$env{'request.course.id'};
                   1356:         }
                   1357:         if ((! $Apache::lonpublisher::metadatafields{'courserestricted'}) &&
                   1358:                 (! $env{'form.new_courserestricted'}) && (! $file_type eq 'groups')) {
                   1359:             $Apache::lonpublisher::metadatafields{'courserestricted'}=
                   1360:                 'none';
                   1361:         } elsif ($env{'form.new_courserestricted'}) {
                   1362:             $Apache::lonpublisher::metadatafields{'courserestricted'}=
                   1363:                 $env{'form.new_courserestricted'};
                   1364:         }
1.178     raeburn  1365: 	if ($file_type eq 'portfolio' || $file_type eq 'groups') {
1.174     banghart 1366: 	    if(exists ($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'})) {
                   1367: 	        # retrieve fieldnames (in order) from the course restricted list
1.185     albertel 1368: 	        @fields = (split(/,/,$env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'}));
1.174     banghart 1369: 	    } else {
                   1370: 	        # no saved field list, use default list
                   1371: 	        @fields =  ('author','title','subject','keywords','abstract',
                   1372: 			    'notes','lowestgradelevel',
                   1373: 	                    'highestgradelevel','standards');
1.195     raeburn  1374:                 if ($Apache::lonpublisher::metadatafields{'courserestricted'} =~ /^course\.($match_domain\_$match_courseid)$/) {
                   1375:                     my $assoc_crs = $1;
                   1376: 	            $added_metadata_fields = &Apache::lonparmset::get_added_meta_fieldnames($assoc_crs);
                   1377: 	            if ($env{'course.'.$assoc_crs.'.metadata.addedorder'}) {
                   1378: 	                @added_order = split(/,/,$env{'course.'.$assoc_crs.'.metadata.addedorder'});
                   1379: 	            }
                   1380: 	            $env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'} = join(",",@fields);
                   1381:                 }
1.174     banghart 1382: 	    }
1.90      banghart 1383: 	} else {
                   1384: 	    @fields = ('author','title','subject','keywords','abstract','notes',
1.185     albertel 1385: 		       'copyright','customdistributionfile','language',
                   1386: 		       'standards',
                   1387: 		       'lowestgradelevel','highestgradelevel','sourceavail','sourcerights',
                   1388: 		       'obsolete','obsoletereplacement');
1.90      banghart 1389:         }
1.120     banghart 1390:         if (! $Apache::lonpublisher::metadatafields{'copyright'}) {
                   1391:                 $Apache::lonpublisher::metadatafields{'copyright'}=
1.163     albertel 1392: 		    'default';
1.120     banghart 1393:         }
1.172     banghart 1394: 	if (($file_type eq 'portfolio') || ($file_type eq 'groups'))  {
1.163     albertel 1395: 	    if (! $Apache::lonpublisher::metadatafields{'mime'}) {
                   1396:                 ($Apache::lonpublisher::metadatafields{'mime'}) =
                   1397: 		    ( $target=~/\.(\w+)$/ );
                   1398: 	    }
                   1399: 	    if (! $Apache::lonpublisher::metadatafields{'owner'}) {
                   1400: 		$Apache::lonpublisher::metadatafields{'owner'} =
                   1401: 		    $env{'user.name'}.':'.$env{'user.domain'};
                   1402: 	    }
1.209     albertel 1403: 	    if (! $Apache::lonpublisher::metadatafields{'author'}) {
                   1404: 		$Apache::lonpublisher::metadatafields{'author'} =
                   1405: 		    &Apache::loncommon::plainname($env{'user.name'},
                   1406: 						  $env{'user.domain'});
                   1407: 	    }
1.197     banghart 1408: 	    if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none') {
1.163     albertel 1409: 
1.191     raeburn  1410:                 if ($file_type eq 'portfolio') {
                   1411: 		    $r->print(&mt('Associated with course [_1]',
1.188     banghart 1412: 		        '<strong><a href="'.$uri.'?changecourse=true">'.
                   1413: 		        $env{$Apache::lonpublisher::metadatafields{'courserestricted'}.
                   1414: 		        ".description"}.
                   1415: 			      '</a></strong>').'<br />');
1.191     raeburn  1416:                 } else {
                   1417:                     $r->print(&mt('Associated with course [_1]',
                   1418:                         '<strong>'.
                   1419:   $env{$Apache::lonpublisher::metadatafields{'courserestricted'}.
                   1420:                         ".description"}.'</strong>').'<br />');
                   1421:                 }
1.149     albertel 1422: 	    } else {
1.210     bisitz   1423: 		$r->print('<a href="'.$uri.'?changecourse=true">'.&mt('This resource is not associated with a course.').'</a><br />');
1.149     albertel 1424: 	    }
                   1425: 	}
1.184     banghart 1426: 	if (@added_order) {
1.185     albertel 1427: 	    foreach my $field_name (@added_order) {
                   1428:                 push(@fields,$field_name);
1.184     banghart 1429:                 $lt{$field_name} = $$added_metadata_fields{$field_name};
                   1430: 	    }
                   1431: 	} else {
1.185     albertel 1432:             foreach my $field_name (keys(%$added_metadata_fields)) {
                   1433:                 push(@fields,$field_name);
1.184     banghart 1434:                 $lt{$field_name} = $$added_metadata_fields{$field_name};
                   1435:             }
1.176     banghart 1436:         }
1.233     bisitz   1437:         $output .= &Apache::lonhtmlcommon::start_pick_box();
                   1438:         my $last = $#fields + 1;
                   1439:         my $rowcount = 0;
1.143     albertel 1440:         foreach my $field_name (@fields) {
1.233     bisitz   1441:             $rowcount++;
1.132     banghart 1442:             if (defined($env{'form.new_'.$field_name})) {
1.201     raeburn  1443:                 my @values = &Apache::loncommon::get_env_multiple('form.new_'.$field_name);
                   1444:                 my $newvalue = '';
                   1445:                 foreach my $item (@values) {
                   1446:                     if ($item ne '') {
                   1447:                         $newvalue .= $item.',';
                   1448:                     }
                   1449:                 }
                   1450:                 $newvalue =~ s/,$//; 
                   1451:                 $Apache::lonpublisher::metadatafields{$field_name}=$newvalue;
1.66      matthew  1452:             }
1.150     albertel 1453:             if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none'
                   1454: 		&& exists($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'})) {
1.115     banghart 1455:                 # handle restrictions here
1.181     banghart 1456:                 if ((($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/active/) ||
                   1457:                     ($field_name eq 'courserestricted'))&&
                   1458:                     (!($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/deleted/))){
1.187     banghart 1459:                     
1.233     bisitz   1460:                     $output .= &Apache::lonhtmlcommon::row_title($lt{$field_name})
                   1461:                               .&prettyinput($field_name,
1.132     banghart 1462: 				   $Apache::lonpublisher::metadatafields{$field_name},
1.138     banghart 1463: 				                    'new_'.$field_name,'defaultmeta',
                   1464: 				                    undef,undef,undef,undef,
1.233     bisitz   1465:                                                     $Apache::lonpublisher::metadatafields{'courserestricted'});
                   1466:                     $output .= &Apache::lonhtmlcommon::row_closure($rowcount == $last?1:0);
1.127     banghart 1467:                  }
1.115     banghart 1468:             } else {
1.138     banghart 1469: 
1.233     bisitz   1470:                     $output .= &Apache::lonhtmlcommon::row_title($lt{$field_name})
                   1471:                               .&prettyinput($field_name,
1.185     albertel 1472: 					   $Apache::lonpublisher::metadatafields{$field_name},
1.233     bisitz   1473:                                            'new_'.$field_name,'defaultmeta')
                   1474:                               .&Apache::lonhtmlcommon::row_closure($rowcount == $last?1:0);
1.138     banghart 1475:                
1.115     banghart 1476:             }
1.66      matthew  1477:         }
1.233     bisitz   1478:         $output .= &Apache::lonhtmlcommon::end_pick_box();
1.143     albertel 1479: 	if ($env{'form.store'}) {
1.200     raeburn  1480:             my ($outcome,$result) = &store_metadata($fn,$uri,'store');
                   1481:             $r->print($result);
1.142     albertel 1482: 	}
1.233     bisitz   1483:         my $savebutton = '<p><input type="submit" name="store"'
                   1484:                         .' value="'.&mt('Save').'" title="'.&mt('Save Metadata').'" /></p>';
                   1485:         $r->print($savebutton.$output.$savebutton);
1.147     albertel 1486: 
1.191     raeburn  1487: 	if ($file_type eq 'portfolio' || $file_type eq 'groups') {
1.156     albertel 1488: 	    my ($port_path,$group) = &get_port_path_and_group($uri);
1.191     raeburn  1489:             if ($group ne '') {
1.159     raeburn  1490:                 $r->print('<input type="hidden" name="group" value="'.$group.'" />');
                   1491:             }
1.169     banghart 1492:             $r->print('<input type="hidden" name="currentpath" value="'.$env{'form.currentpath'}.'" />');
1.175     banghart 1493: 	    $r->print('</form><br /><br /><form method="post" action="'.$port_path.'">');
1.191     raeburn  1494: 	    if ($group ne '') {
1.175     banghart 1495: 	        $r->print('<input type="hidden" name="group" value="'.$group.'" />');
1.191     raeburn  1496:             }
1.175     banghart 1497: 	    $r->print('<input type="hidden" name="currentpath" value="'.$path.'" />'.
1.169     banghart 1498: 		      '<input type="submit" name="cancel" value="'.&mt('Discard Edits and Return to Portfolio').'" />');
1.149     albertel 1499: 	}
1.142     albertel 1500:     }
1.149     albertel 1501:     
1.143     albertel 1502:     $r->print('</form>');
                   1503: 
1.66      matthew  1504:     return;
1.1       www      1505: }
1.64      matthew  1506: 
1.200     raeburn  1507: sub store_metadata {
                   1508:     my ($fn,$uri,$caller) = @_;
                   1509:     my $mfh;
                   1510:     my $formname='store';
                   1511:     my ($file_content,$output,$outcome);
                   1512:     if (&Apache::loncommon::get_env_multiple('form.new_keywords')) {
                   1513:         $Apache::lonpublisher::metadatafields{'keywords'} =
                   1514:             join (',', &Apache::loncommon::get_env_multiple('form.new_keywords'));
                   1515:             }
                   1516:     foreach my $field (sort(keys(%Apache::lonpublisher::metadatafields))) {
                   1517:         next if ($field =~ /\./);
                   1518:         my $unikey=$field;
                   1519:         $unikey=~/^([A-Za-z_]+)/;
                   1520:         my $tag=$1;
                   1521:         $tag=~tr/A-Z/a-z/;
                   1522:         $file_content.= "\n\<$tag";
                   1523:         foreach my $key (split(/\,/,$Apache::lonpublisher::metadatakeys{$unikey})) {
                   1524:             my $value = $Apache::lonpublisher::metadatafields{$unikey.'.'.$key};
                   1525:             $value=~s/\"/\'\'/g;
                   1526:             $file_content.=' '.$key.'="'.$value.'"' ;
                   1527:         }
                   1528:         $file_content.= '>'.
                   1529:             &HTML::Entities::encode
                   1530:                 ($Apache::lonpublisher::metadatafields{$unikey},'<>&"').
                   1531:                 '</'.$tag.'>';
                   1532:     }
                   1533:     if ($fn =~ m|^$Apache::lonnet::perlvar{'lonDocRoot'}/userfiles|) {
                   1534:         my ($path, $new_fn);
                   1535:         if ($fn =~ m|$match_name/groups/\w+/portfolio/|) {
                   1536:             ($path, $new_fn) = ($fn =~ m|/(groups/\w+/portfolio.*)/([^/]*)$|);
                   1537:         } else {
                   1538:             ($path, $new_fn) = ($fn =~ m|/(portfolio.*)/([^/]*)$|);
                   1539:         }
                   1540:         ($outcome,my $result) = 
                   1541:             &store_portfolio_metadata($formname,$file_content,
                   1542:                                       $path,$new_fn,$uri,$caller);
                   1543:         $output .= $result;
                   1544:     } else {
                   1545:         if (! ($mfh=Apache::File->new('>'.$fn))) {
1.227     bisitz   1546:             $output .= '<p class="LC_error">';
1.200     raeburn  1547:             if ($caller eq 'transfer') {
                   1548:                 $output .= &mt('Could not transfer data in added fields to notes');
                   1549:             } else { 
                   1550:                 $output .= &mt('Could not write metadata');
                   1551:             }
1.227     bisitz   1552:             $output .= ', '.&mt('FAIL').'</p>';
1.200     raeburn  1553:             $outcome = 'fail';
                   1554:         } else {
                   1555:             print $mfh ($file_content);
                   1556:             close($mfh);
                   1557:             &update_metadata_table($uri);
1.233     bisitz   1558:             my $confirmtext;
1.200     raeburn  1559:             if ($caller eq 'transfer') {
1.233     bisitz   1560:                 $confirmtext = &mt('Transferred data in added fields to notes');
1.200     raeburn  1561:             } else {
1.233     bisitz   1562:                 $confirmtext = &mt('Wrote Metadata');
1.200     raeburn  1563:             }
1.233     bisitz   1564:             $output .= &Apache::loncommon::confirmwrapper(
                   1565:                            &Apache::lonhtmlcommon::confirm_success(
                   1566:                                $confirmtext.' '.&Apache::lonlocal::locallocaltime(time)));
1.200     raeburn  1567:             $outcome = 'ok';
                   1568:         }
                   1569:     }
                   1570:     return ($outcome,$output);
                   1571: }
                   1572: 
                   1573: sub store_transferred_addedfields {
                   1574:     my ($fn,$uri,$transfers) = @_;
                   1575:     foreach my $item (@{$transfers}) {
                   1576:         $Apache::lonpublisher::metadatafields{'notes'} .= 
                   1577:            ' '.$item.' = '.$Apache::lonpublisher::metadatafields{$item};
                   1578:     }
                   1579:     my ($outcome,$output) = &store_metadata($fn,$uri,'transfer');
                   1580:     if ($outcome eq 'ok') {
                   1581:         foreach my $item (@{$transfers}) {
                   1582:             delete($Apache::lonpublisher::metadatafields{$item});
                   1583:         }
                   1584:     }
                   1585: }
                   1586: 
1.159     raeburn  1587: sub store_portfolio_metadata {
1.200     raeburn  1588:     my ($formname,$content,$path,$new_fn,$uri,$caller) = @_;
                   1589:     my ($outcome,$output);
1.159     raeburn  1590:     $env{'form.'.$formname}=$content."\n";
                   1591:     $env{'form.'.$formname.'.filename'}=$new_fn;
                   1592:     my $result =&Apache::lonnet::userfileupload($formname,'',$path);
                   1593:     if ($result =~ /(error|notfound)/) {
1.227     bisitz   1594:         $output = '<p class="LC_error">';
1.200     raeburn  1595:         if ($caller eq 'transfer') {
                   1596:             $output .= 
                   1597:                 &mt('Could not transfer data in added fields to notes'); 
                   1598:         } else {
                   1599:             $output .= &mt('Could not write metadata');
                   1600:         }
1.227     bisitz   1601:         $output .= ', '.&mt('FAIL').'</p>';
1.200     raeburn  1602:         $outcome = 'fail';
1.159     raeburn  1603:     } else {
1.192     raeburn  1604:         &update_metadata_table($uri);
1.227     bisitz   1605:         $output = '<p class="LC_success">';
1.200     raeburn  1606:         if ($caller eq 'transfer') {
                   1607:             $output .= &mt('Transferred data in added fields to notes');
                   1608:         } else {
                   1609:             $output .= &mt('Wrote Metadata');
                   1610:         }
                   1611:         $output .= ' '.&Apache::lonlocal::locallocaltime(time).
1.227     bisitz   1612:                    '</p>';
1.200     raeburn  1613:         $outcome = 'ok';
1.159     raeburn  1614:     }
1.200     raeburn  1615:     return ($outcome,$output);
1.159     raeburn  1616: }
                   1617: 
1.192     raeburn  1618: sub update_metadata_table {
                   1619:     my ($uri) = @_;
1.196     albertel 1620:     my ($type,$udom,$uname,$file_name,$group) =
                   1621: 	&Apache::lonnet::parse_portfolio_url($uri);
1.192     raeburn  1622:     $file_name =~ s/\.meta$//;
                   1623:     my $current_permissions =
                   1624:         &Apache::lonnet::get_portfile_permissions($udom,$uname);
                   1625:     my %access_controls =
                   1626:         &Apache::lonnet::get_access_controls($current_permissions,$group,
1.196     albertel 1627:                                              $file_name);
1.192     raeburn  1628:     my $access_hash = $access_controls{$file_name};
                   1629:     my $available = 0;
                   1630:     if (ref($access_hash) eq 'HASH') {
                   1631:         foreach my $key (keys(%{$access_hash})) {
                   1632:             my ($num,$scope,$end,$start) =
                   1633:                 ($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/);
                   1634:             if ($scope eq 'public' || $scope eq 'guest') {
                   1635:                 $available = 1;
                   1636:                 last;
                   1637:             }
                   1638:         }
                   1639:     }
                   1640:     if ($available) {
                   1641:         my $result =
                   1642:             &Apache::lonnet::update_portfolio_table($uname,$udom,
1.194     raeburn  1643:             $file_name,'portfolio_metadata',$group,'update');
1.192     raeburn  1644:     }
                   1645: }
                   1646: 
                   1647: 
1.1       www      1648: 1;
                   1649: __END__
1.97      banghart 1650: 
1.216     jms      1651: 
                   1652: =head1 NAME
                   1653: 
                   1654: Apache::lonmeta - display meta data
                   1655: 
                   1656: =head1 SYNOPSIS
                   1657: 
                   1658: Handler to display meta data
                   1659: 
                   1660: This is part of the LearningOnline Network with CAPA project
                   1661: described at http://www.lon-capa.org.
                   1662: 
                   1663: =head1 SUBROUTINES
                   1664: 
                   1665: =over
                   1666: 
                   1667: =item &get_dynamic_metadata_from_sql($url) :
                   1668: 
                   1669: Queries sql database for dynamic metdata
                   1670: Returns a hash of hashes, with keys of urls which match $url
                   1671: Returned fields are given below.
                   1672: 
                   1673: Examples:
                   1674: 
                   1675:     %DynamicMetadata = &Apache::lonmeta::get_dynmaic_metadata_from_sql
                   1676:     ('/res/msu/korte/');
                   1677: 
                   1678:     $DynamicMetadata{'/res/msu/korte/example.problem'}->{$field}
                   1679: 
                   1680: =item dynamicmeta()
                   1681: 
                   1682: Fetch and evaluate dynamic metadata
                   1683: 
                   1684: =item access_count()
                   1685: 
                   1686: =item alttag()
                   1687: 
                   1688: Try to make an alt tag if there is none
                   1689: 
                   1690: =item authordisplay()
                   1691: 
                   1692: Author display
                   1693: 
                   1694: =item evalgraph()
                   1695: 
                   1696: Pretty display
                   1697: 
                   1698: =item diffgraph()
                   1699: 
                   1700: =item fieldnames()
                   1701: 
                   1702: =item portfolio_linked_path()
                   1703: 
                   1704: =item get_port_path_and_group()
                   1705: 
                   1706: =item portfolio_display_uri()
                   1707: 
                   1708: =item pre_select_course()
                   1709: 
                   1710: =item select_course()
                   1711: 
                   1712: =item prettyprint()
                   1713: 
                   1714: Pretty printing of metadata field
                   1715: 
                   1716: =item direct()
                   1717: 
                   1718: Pretty input of metadata field
                   1719: 
                   1720: =item selectbox()
                   1721: 
                   1722: =item relatedfield()
                   1723: 
                   1724: =item prettyinput()
                   1725: 
                   1726: =item report_bombs()
                   1727: 
                   1728: =item present_uneditable_metadata()
                   1729: 
                   1730: =item present_editable_metadata()
                   1731: 
                   1732: =item store_metadata()
                   1733: 
                   1734: =item store_transferred_addedfields()
                   1735: 
                   1736: =item store_portfolio_metadata()
                   1737: 
                   1738: =item update_metadata_table()
                   1739: 
                   1740: =back
                   1741: 
                   1742: =cut

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