version 1.152, 2006/03/02 20:57:15
|
version 1.195.2.1, 2007/01/18 23:20:56
|
Line 39 use Apache::lonpublisher;
|
Line 39 use Apache::lonpublisher;
|
use Apache::lonlocal; |
use Apache::lonlocal; |
use Apache::lonmysql; |
use Apache::lonmysql; |
use Apache::lonmsg; |
use Apache::lonmsg; |
|
use LONCAPA qw(:DEFAULT :match); |
|
|
|
|
############################################################ |
############################################################ |
Line 61 use Apache::lonmsg;
|
Line 62 use Apache::lonmsg;
|
############################################################ |
############################################################ |
sub get_dynamic_metadata_from_sql { |
sub get_dynamic_metadata_from_sql { |
my ($url) = shift(); |
my ($url) = shift(); |
my ($authordom,$author)=($url=~m:^/res/(\w+)/(\w+)/:); |
my ($authordom,$author)=($url=~m{^/res/($match_domain)/($match_username)/}); |
if (! defined($authordom)) { |
if (! defined($authordom)) { |
$authordom = shift(); |
$authordom = shift(); |
} |
} |
Line 71 sub get_dynamic_metadata_from_sql {
|
Line 72 sub get_dynamic_metadata_from_sql {
|
if (! defined($authordom) || ! defined($author)) { |
if (! defined($authordom) || ! defined($author)) { |
return (); |
return (); |
} |
} |
my @Fields = ('url','count','course','course_list', |
my $query = 'SELECT * FROM metadata WHERE url LIKE "'.$url.'%"'; |
'goto','goto_list', |
|
'comefrom','comefrom_list', |
|
'sequsage','sequsage_list', |
|
'stdno','stdno_list', |
|
'dependencies', |
|
'avetries','avetries_list', |
|
'difficulty','difficulty_list', |
|
'disc','disc_list', |
|
'clear','technical','correct', |
|
'helpful','depth'); |
|
# |
|
my $query = 'SELECT '.join(',',@Fields). |
|
' FROM metadata WHERE url LIKE "'.$url.'%"'; |
|
my $server = &Apache::lonnet::homeserver($author,$authordom); |
my $server = &Apache::lonnet::homeserver($author,$authordom); |
my $reply = &Apache::lonnet::metadata_query($query,undef,undef, |
my $reply = &Apache::lonnet::metadata_query($query,undef,undef, |
,[$server]); |
,[$server]); |
Line 106 sub get_dynamic_metadata_from_sql {
|
Line 94 sub get_dynamic_metadata_from_sql {
|
while (my $result = <$fh>) { |
while (my $result = <$fh>) { |
chomp($result); |
chomp($result); |
next if (! $result); |
next if (! $result); |
my @Data = |
my %hash=&LONCAPA::lonmetadata::metadata_col_to_hash('metadata', |
map { |
map { &unescape($_) } split(/\,/,$result)); |
&Apache::lonnet::unescape($_); |
foreach my $key (keys(%hash)) { |
} split(',',$result); |
$ReturnHash{$hash{'url'}}->{$key}=$hash{$key}; |
my $url = $Data[0]; |
|
for (my $i=0;$i<=$#Fields;$i++) { |
|
$ReturnHash{$url}->{$Fields[$i]}=$Data[$i]; |
|
} |
} |
} |
} |
$finished = 1; |
$finished = 1; |
Line 126 sub get_dynamic_metadata_from_sql {
|
Line 111 sub get_dynamic_metadata_from_sql {
|
sub dynamicmeta { |
sub dynamicmeta { |
my $url=&Apache::lonnet::declutter(shift); |
my $url=&Apache::lonnet::declutter(shift); |
$url=~s/\.meta$//; |
$url=~s/\.meta$//; |
my ($adomain,$aauthor)=($url=~/^(\w+)\/(\w+)\//); |
my ($adomain,$aauthor)=($url=~/^($match_domain)\/($match_username)\//); |
my $regexp=$url; |
my $regexp=$url; |
$regexp=~s/(\W)/\\$1/g; |
$regexp=~s/(\W)/\\$1/g; |
$regexp='___'.$regexp.'___'; |
$regexp='___'.$regexp.'___'; |
Line 185 sub authordisplay {
|
Line 170 sub authordisplay {
|
my ($aname,$adom)=@_; |
my ($aname,$adom)=@_; |
return &Apache::loncommon::aboutmewrapper |
return &Apache::loncommon::aboutmewrapper |
(&Apache::loncommon::plainname($aname,$adom), |
(&Apache::loncommon::plainname($aname,$adom), |
$aname,$adom,'preview').' <tt>['.$aname.'@'.$adom.']</tt>'; |
$aname,$adom,'preview').' <tt>['.$aname.':'.$adom.']</tt>'; |
} |
} |
|
|
# Pretty display |
# Pretty display |
Line 250 sub fieldnames {
|
Line 235 sub fieldnames {
|
'lowestgradelevel' => 'Lowest Grade Level', |
'lowestgradelevel' => 'Lowest Grade Level', |
'highestgradelevel' => 'Highest Grade Level'); |
'highestgradelevel' => 'Highest Grade Level'); |
|
|
if (! defined($file_type) || $file_type ne 'portfolio') { |
if ( !defined($file_type) || ($file_type ne 'portfolio' && $file_type ne 'groups') ) { |
%fields = |
|
(%fields, |
|
'courserestricted' => 'Course Restricting Metadata'); |
|
} |
|
|
|
if (! defined($file_type) || $file_type ne 'portfolio') { |
|
%fields = |
%fields = |
(%fields, |
(%fields, |
'domain' => 'Domain', |
'domain' => 'Domain', |
Line 296 sub fieldnames {
|
Line 275 sub fieldnames {
|
} |
} |
|
|
sub portfolio_linked_path { |
sub portfolio_linked_path { |
my ($path) = @_; |
my ($path,$group,$port_path) = @_; |
my $result = &Apache::portfolio::make_anchor('portfolio','/'); |
|
|
my $start = 'portfolio'; |
|
if ($group) { |
|
$start = "groups/$group/".$start; |
|
} |
|
my %anchor_fields = ( |
|
'selectfile' => $start, |
|
'currentpath' => '/' |
|
); |
|
my $result = &Apache::portfolio::make_anchor($port_path,\%anchor_fields,$start); |
my $fullpath = '/'; |
my $fullpath = '/'; |
my (undef,@tree) = split('/',$path); |
my (undef,@tree) = split('/',$path); |
my $filename = pop(@tree); |
my $filename = pop(@tree); |
foreach my $dir (@tree) { |
foreach my $dir (@tree) { |
$fullpath .= $dir.'/'; |
$fullpath .= $dir.'/'; |
$result .= '/'; |
$result .= '/'; |
$result .= &Apache::portfolio::make_anchor($dir,$fullpath); |
my %anchor_fields = ( |
|
'selectfile' => $dir, |
|
'currentpath' => $fullpath |
|
); |
|
$result .= &Apache::portfolio::make_anchor($port_path,\%anchor_fields,$dir); |
} |
} |
$result .= "/$filename"; |
$result .= "/$filename"; |
return $result; |
return $result; |
} |
} |
|
|
|
sub get_port_path_and_group { |
|
my ($uri)=@_; |
|
|
|
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
|
|
my ($port_path,$group); |
|
if ($uri =~ m{^/editupload/\Q$cdom\E/\Q$cnum\E/groups/}) { |
|
$group = (split('/',$uri))[5]; |
|
$port_path = '/adm/coursegrp_portfolio'; |
|
} else { |
|
$port_path = '/adm/portfolio'; |
|
} |
|
if ($env{'form.group'} ne $group) { |
|
$env{'form.group'} = $group; |
|
} |
|
return ($port_path,$group); |
|
} |
|
|
sub portfolio_display_uri { |
sub portfolio_display_uri { |
my ($uri,$as_links)=@_; |
my ($uri,$as_links)=@_; |
|
|
|
my ($port_path,$group) = &get_port_path_and_group($uri); |
|
|
$uri =~ s|.*/(portfolio/.*)$|$1|; |
$uri =~ s|.*/(portfolio/.*)$|$1|; |
my ($res_uri,$meta_uri) = ($uri,$uri); |
my ($res_uri,$meta_uri) = ($uri,$uri); |
|
|
if ($uri =~ /\.meta$/) { |
if ($uri =~ /\.meta$/) { |
$res_uri =~ s/\.meta//; |
$res_uri =~ s/\.meta//; |
} else { |
} else { |
Line 322 sub portfolio_display_uri {
|
Line 335 sub portfolio_display_uri {
|
} |
} |
|
|
my ($path) = ($res_uri =~ m|^portfolio(.*/)[^/]*$|); |
my ($path) = ($res_uri =~ m|^portfolio(.*/)[^/]*$|); |
|
|
if ($as_links) { |
if ($as_links) { |
$res_uri = &portfolio_linked_path($res_uri); |
$res_uri = &portfolio_linked_path($res_uri,$group,$port_path); |
$meta_uri = &portfolio_linked_path($meta_uri); |
$meta_uri = &portfolio_linked_path($meta_uri,$group,$port_path); |
} |
} |
return ($res_uri,$meta_uri,$path); |
return ($res_uri,$meta_uri,$path); |
} |
} |
Line 347 sub pre_select_course {
|
Line 359 sub pre_select_course {
|
$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>'); |
$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>'); |
$output = &select_course(); |
$output = &select_course(); |
$r->print($output.'<br /><input type="submit" name="store" value="'. |
$r->print($output.'<br /><input type="submit" name="store" value="'. |
&mt('Associate Resource With Selected Course').'">'); |
&mt('Associate Resource With Selected Course').'" />'); |
|
$r->print('<input type="hidden" name="currentpath" value="'.$env{'form.currentpath'}.'" />'); |
|
$r->print('<input type="hidden" name="associate" value="true" />'); |
$r->print('</form>'); |
$r->print('</form>'); |
|
|
$r->print('<br /><br /><form method="POST" action="/adm/portfolio">'. |
my ($port_path,$group) = &get_port_path_and_group($uri); |
|
my $group_input; |
|
if ($group) { |
|
$group_input = '<input type="hidden" name="group" value="'.$group.'" />'; |
|
} |
|
$r->print('<br /><br /><form method="post" action="'.$port_path.'">'. |
'<input type="hidden" name="currentpath" value="'.$path.'" />'. |
'<input type="hidden" name="currentpath" value="'.$path.'" />'. |
'<input type="submit" name="cancel" value="'.&mt('Cancel').'">'. |
$group_input. |
|
'<input type="submit" name="cancel" value="'.&mt('Cancel').'" />'. |
'</form>'); |
'</form>'); |
|
|
return; |
return; |
Line 363 sub select_course {
|
Line 383 sub select_course {
|
$Apache::lonpublisher::metadatafields{'courserestricted'}; |
$Apache::lonpublisher::metadatafields{'courserestricted'}; |
my $selected = ($current_restriction eq 'none' ? 'selected="selected"' |
my $selected = ($current_restriction eq 'none' ? 'selected="selected"' |
: ''); |
: ''); |
|
if ($current_restriction =~ /^course\.($match_domain\_$match_courseid)$/) { |
|
my $assoc_crs = $1; |
|
my $added_metadata_fields = &Apache::lonparmset::get_added_meta_fieldnames($assoc_crs); |
|
if (ref($added_metadata_fields) eq 'HASH') { |
|
if (keys(%{$added_metadata_fields}) > 0) { |
|
my $transfernotes; |
|
foreach my $field_name (keys(%{$added_metadata_fields})) { |
|
my $value = $Apache::lonpublisher::metadatafields{$field_name}; |
|
if ($value) { |
|
$transfernotes .= |
|
&Apache::loncommon::start_data_table_row(). |
|
'<td><input type="checkbox" name="transfer_'. |
|
$field_name.'" value="1" /></td><td>'. |
|
$field_name.'</td><td>'.$value.'</td>'. |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
} |
|
if ($transfernotes ne '') { |
|
my %courseinfo = &Apache::lonnet::coursedescription($assoc_crs,{'one_time' => 1}); |
|
my $assoc_crs_description = $courseinfo{'description'}; |
|
$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". |
|
&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 />'. |
|
&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>Copy to notes?</th>'."\n". |
|
'<th>Field name</th>'."\n". |
|
'<th>Values</th>'."\n". |
|
&Apache::loncommon::end_data_table_header_row(). |
|
$transfernotes. |
|
&Apache::loncommon::end_data_table().'<br />'; |
|
} |
|
} |
|
} |
|
} |
$output .= '<select name="new_courserestricted" >'; |
$output .= '<select name="new_courserestricted" >'; |
$output .= '<option value="none" '.$selected.'>'. |
$output .= '<option value="none" '.$selected.'>'. |
&mt('None').'</option>'.$/; |
&mt('None').'</option>'.$/; |
Line 428 sub prettyprint {
|
Line 481 sub prettyprint {
|
($type eq 'owner') || |
($type eq 'owner') || |
($type eq 'modifyinguser') || |
($type eq 'modifyinguser') || |
($type eq 'authorspace')) { |
($type eq 'authorspace')) { |
$value=~s/(\w+)(\:|\@)(\w+)/&authordisplay($1,$3)/gse; |
$value=~s/($match_username)(\:|\@)($match_domain)/&authordisplay($1,$3)/gse; |
return $value; |
return $value; |
} |
} |
# Gradelevel |
# Gradelevel |
Line 448 sub prettyprint {
|
Line 501 sub prettyprint {
|
($type eq 'sequsage_list') || |
($type eq 'sequsage_list') || |
($type eq 'dependencies')) { |
($type eq 'dependencies')) { |
return '<font size="-1"><ul>'.join("\n",map { |
return '<font size="-1"><ul>'.join("\n",map { |
my $url = &Apache::lonnet::clutter($_); |
my $url = &Apache::lonnet::clutter_with_no_wrapper($_); |
my $title = &Apache::lonnet::gettitle($url); |
my $title = &Apache::lonnet::gettitle($url); |
if ($title eq '') { |
if ($title eq '') { |
$title = 'Untitled'; |
$title = 'Untitled'; |
Line 485 sub prettyprint {
|
Line 538 sub prettyprint {
|
if ($type=~/\_list/) { |
if ($type=~/\_list/) { |
my @Courses = split(/\s*\,\s*/,$value); |
my @Courses = split(/\s*\,\s*/,$value); |
my $Str='<font size="-1"><ul>'; |
my $Str='<font size="-1"><ul>'; |
|
my %descriptions; |
foreach my $course (@Courses) { |
foreach my $course (@Courses) { |
my %courseinfo = &Apache::lonnet::coursedescription($course); |
my %courseinfo = |
|
&Apache::lonnet::coursedescription($course, |
|
{'one_time' => 1}); |
if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') { |
if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') { |
next; |
next; |
} |
} |
$Str .= '<li><a href="/public/'.$courseinfo{'domain'}.'/'. |
$descriptions{join('\0',@courseinfo{'domain','description'})} .= |
|
'<li><a href="/public/'.$courseinfo{'domain'}.'/'. |
$courseinfo{'num'}.'/syllabus" target="preview">'. |
$courseinfo{'num'}.'/syllabus" target="preview">'. |
$courseinfo{'description'}.'</a></li>'; |
$courseinfo{'description'}.' ('.$courseinfo{'domain'}. |
|
')</a></li>'; |
} |
} |
|
foreach my $course (sort {lc($a) cmp lc($b)} (keys(%descriptions))) { |
|
$Str .= $descriptions{$course}; |
|
} |
|
|
return $Str.'</ul></font>'; |
return $Str.'</ul></font>'; |
} |
} |
# No pretty print found |
# No pretty print found |
Line 581 sub prettyinput {
|
Line 643 sub prettyinput {
|
} |
} |
if (($type eq 'keywords') || ($type eq 'subject') |
if (($type eq 'keywords') || ($type eq 'subject') |
|| ($type eq 'author')||($type eq 'notes') |
|| ($type eq 'author')||($type eq 'notes') |
|| ($type eq 'abstract')|| ($type eq 'title')|| ($type eq 'standards')) { |
|| ($type eq 'abstract')|| ($type eq 'title')|| ($type eq 'standards') |
|
|| (exists($env{$course_key.'.metadata.'.$type.'.added'}))) { |
if ($values) { |
if ($values) { |
if ($only_one) { |
if ($only_one) { |
$output .= (&Apache::loncommon::select_form($cur_values_inst[0],'new_'.$type,%meta_options)); |
$output .= (&Apache::loncommon::select_form($cur_values_inst[0],'new_'.$type,%meta_options)); |
Line 596 sub prettyinput {
|
Line 659 sub prettyinput {
|
$relatedvalue); |
$relatedvalue); |
} |
} |
return ($output); |
return ($output); |
} |
} |
if (($type eq 'lowestgradelevel') || |
if (($type eq 'lowestgradelevel') || |
($type eq 'highestgradelevel')) { |
($type eq 'highestgradelevel')) { |
return &Apache::loncommon::select_level_form($value,$fieldname). |
return &Apache::loncommon::select_level_form($value,$fieldname). |
Line 691 sub prettyinput {
|
Line 754 sub prettyinput {
|
# Main Handler |
# Main Handler |
sub handler { |
sub handler { |
my $r=shift; |
my $r=shift; |
# |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
|
['currentpath','changecourse']); |
my $uri=$r->uri; |
my $uri=$r->uri; |
# |
# |
# Set document type |
# Set document type |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
return OK if $r->header_only; |
return OK if $r->header_only; |
# |
|
my ($resdomain,$resuser)= |
my ($resdomain,$resuser)= |
(&Apache::lonnet::declutter($uri)=~/^(\w+)\/(\w+)\//); |
(&Apache::lonnet::declutter($uri)=~/^($match_domain)\/($match_username)\//); |
my $html=&Apache::lonxml::xmlbegin(); |
|
$r->print($html.'<head><title>'. |
|
'Catalog Information'. |
|
'</title></head>'); |
|
if ($uri=~m:/adm/bombs/(.*)$:) { |
if ($uri=~m:/adm/bombs/(.*)$:) { |
$r->print(&Apache::loncommon::bodytag('Error Messages')); |
$r->print(&Apache::loncommon::start_page('Error Messages')); |
# Looking for all bombs? |
# Looking for all bombs? |
&report_bombs($r,$uri); |
&report_bombs($r,$uri); |
} elsif ($uri=~/\/portfolio\//) { |
} elsif ($uri=~m|^/editupload/[^/]+/[^/]+/portfolio/|) { |
($resdomain,$resuser)= |
($resdomain,$resuser)= |
(&Apache::lonnet::declutter($uri)=~m|^(\w+)/(\w+)/portfolio|); |
(&Apache::lonnet::declutter($uri)=~m|^($match_domain)/($match_name)/portfolio|); |
$r->print(&Apache::loncommon::bodytag |
$r->print(&Apache::loncommon::start_page('Edit Portfolio File Catalog Information', |
('Edit Portfolio File Information','','','',$resdomain)); |
undef, |
|
{'domain' => $resdomain,})); |
if ($env{'form.store'}) { |
if ($env{'form.store'}) { |
&present_editable_metadata($r,$uri,'portfolio'); |
&present_editable_metadata($r,$uri,'portfolio'); |
} else { |
} else { |
&pre_select_course($r,$uri); |
my $fn=&Apache::lonnet::filelocation('',$uri); |
|
%Apache::lonpublisher::metadatafields=(); |
|
%Apache::lonpublisher::metadatakeys=(); |
|
my $result=&Apache::lonnet::getfile($fn); |
|
&Apache::lonpublisher::metaeval($result); |
|
&Apache::lonnet::logthis("restricted is: ".$Apache::lonpublisher::metadatafields{'courserestricted'}); |
|
if ((!$Apache::lonpublisher::metadatafields{'courserestricted'}) || |
|
($env{'form.changecourse'} eq 'true')) { |
|
&pre_select_course($r,$uri); |
|
} else { |
|
&present_editable_metadata($r,$uri,'portfolio'); |
|
} |
} |
} |
} elsif ($uri=~/^\/\~/) { |
} elsif ($uri=~m|^/editupload/[^/]+/[^/]+/groups/|) { |
|
$r->print(&Apache::loncommon::start_page('Edit Group Portfolio File Catalog Information', |
|
undef, |
|
{'domain' => $resdomain,})); |
|
&present_editable_metadata($r,$uri,'groups'); |
|
} elsif ($uri=~m|^/~|) { |
# Construction space |
# Construction space |
$r->print(&Apache::loncommon::bodytag |
$r->print(&Apache::loncommon::start_page('Edit Catalog nformation', |
('Edit Catalog Information','','','',$resdomain)); |
undef, |
|
{'domain' => $resdomain,})); |
&present_editable_metadata($r,$uri); |
&present_editable_metadata($r,$uri); |
} else { |
} else { |
$r->print(&Apache::loncommon::bodytag |
$r->print(&Apache::loncommon::start_page('Catalog Information', |
('Catalog Information','','','',$resdomain)); |
undef, |
|
{'domain' => $resdomain,})); |
&present_uneditable_metadata($r,$uri); |
&present_uneditable_metadata($r,$uri); |
} |
} |
$r->print('</body></html>'); |
$r->print(&Apache::loncommon::end_page()); |
return OK; |
return OK; |
} |
} |
|
|
Line 746 sub report_bombs {
|
Line 824 sub report_bombs {
|
$uri =~ s:/adm/bombs/::; |
$uri =~ s:/adm/bombs/::; |
$uri = &Apache::lonnet::declutter($uri); |
$uri = &Apache::lonnet::declutter($uri); |
$r->print('<h1>'.&Apache::lonnet::clutter($uri).'</h1>'); |
$r->print('<h1>'.&Apache::lonnet::clutter($uri).'</h1>'); |
my ($domain,$author)=($uri=~/^(\w+)\/(\w+)\//); |
my ($domain,$author)=($uri=~/^($match_domain)\/($match_username)\//); |
if (&Apache::loncacc::constructaccess('/~'.$author.'/',$domain)) { |
if (&Apache::loncacc::constructaccess('/~'.$author.'/',$domain)) { |
if ($env{'form.clearbombs'}) { |
if ($env{'form.clearbombs'}) { |
&Apache::lonmsg::clear_author_res_msg($uri); |
&Apache::lonmsg::clear_author_res_msg($uri); |
Line 783 ENDCLEAR
|
Line 861 ENDCLEAR
|
sub present_uneditable_metadata { |
sub present_uneditable_metadata { |
my ($r,$uri) = @_; |
my ($r,$uri) = @_; |
# |
# |
|
my $uploaded = ($uri =~ m|/uploaded/|); |
my %content=(); |
my %content=(); |
# Read file |
# Read file |
foreach (split(/\,/,&Apache::lonnet::metadata($uri,'keys'))) { |
foreach (split(/\,/,&Apache::lonnet::metadata($uri,'keys'))) { |
Line 792 sub present_uneditable_metadata {
|
Line 871 sub present_uneditable_metadata {
|
# displayed url |
# displayed url |
my ($thisversion)=($uri=~/\.(\d+)\.(\w+)\.meta$/); |
my ($thisversion)=($uri=~/\.(\d+)\.(\w+)\.meta$/); |
$uri=~s/\.meta$//; |
$uri=~s/\.meta$//; |
my $disuri=&Apache::lonnet::clutter($uri); |
my $disuri=&Apache::lonnet::clutter_with_no_wrapper($uri); |
$disuri=~s/^\/adm\/wrapper//; |
|
# version |
# version |
my $currentversion=&Apache::lonnet::getversion($disuri); |
|
my $versiondisplay=''; |
my $versiondisplay=''; |
if ($thisversion) { |
if (!$uploaded) { |
$versiondisplay=&mt('Version').': '.$thisversion. |
my $currentversion=&Apache::lonnet::getversion($disuri); |
' ('.&mt('most recent version').': '. |
if ($thisversion) { |
($currentversion>0 ? |
$versiondisplay=&mt('Version').': '.$thisversion. |
$currentversion : |
' ('.&mt('most recent version').': '. |
&mt('information not available')).')'; |
($currentversion>0 ? |
} else { |
$currentversion : |
$versiondisplay='Version: '.$currentversion; |
&mt('information not available')).')'; |
|
} else { |
|
$versiondisplay='Version: '.$currentversion; |
|
} |
} |
} |
# crumbify displayed URL uri target prefix form size |
# crumbify displayed URL uri target prefix form size |
$disuri=&Apache::lonhtmlcommon::crumbs($disuri,undef, undef, undef,'+1'); |
$disuri=&Apache::lonhtmlcommon::crumbs($disuri,undef, undef, undef,'+1'); |
Line 824 sub present_uneditable_metadata {
|
Line 904 sub present_uneditable_metadata {
|
if (! defined($title)) { |
if (! defined($title)) { |
$title = 'Untitled Resource'; |
$title = 'Untitled Resource'; |
} |
} |
foreach ('title', |
my @fields; |
'author', |
if ($uploaded) { |
'subject', |
@fields = ('title','author','subject','keywords','notes','abstract', |
'keywords', |
'lowestgradelevel','highestgradelevel','standards','mime', |
'notes', |
'owner'); |
'abstract', |
} else { |
'lowestgradelevel', |
@fields = ('title', |
'highestgradelevel', |
'author', |
'standards', |
'subject', |
'mime', |
'keywords', |
'language', |
'notes', |
'creationdate', |
'abstract', |
'lastrevisiondate', |
'lowestgradelevel', |
'owner', |
'highestgradelevel', |
'copyright', |
'standards', |
'customdistributionfile', |
'mime', |
'sourceavail', |
'language', |
'sourcerights', |
'creationdate', |
'obsolete', |
'lastrevisiondate', |
'obsoletereplacement') { |
'owner', |
$table.='<tr><td bgcolor="#AAAAAA">'.$lt{$_}. |
'copyright', |
|
'customdistributionfile', |
|
'sourceavail', |
|
'sourcerights', |
|
'obsolete', |
|
'obsoletereplacement'); |
|
} |
|
foreach my $field (@fields) { |
|
$table.='<tr><td bgcolor="#AAAAAA">'.$lt{$field}. |
'</td><td bgcolor="#CCCCCC">'. |
'</td><td bgcolor="#CCCCCC">'. |
&prettyprint($_,$content{$_}).'</td></tr>'; |
&prettyprint($field,$content{$field}).'</td></tr>'; |
delete $content{$_}; |
delete($content{$field}); |
} |
} |
# |
# |
$r->print(<<ENDHEAD); |
$r->print(<<ENDHEAD); |
Line 861 $versiondisplay
|
Line 949 $versiondisplay
|
$table |
$table |
</table> |
</table> |
ENDHEAD |
ENDHEAD |
if ($env{'user.adv'}) { |
if (!$uploaded && $env{'user.adv'}) { |
&print_dynamic_metadata($r,$uri,\%content); |
&print_dynamic_metadata($r,$uri,\%content); |
} |
} |
return; |
return; |
Line 944 sub print_dynamic_metadata {
|
Line 1032 sub print_dynamic_metadata {
|
foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) { |
foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) { |
my $data = $dynmeta{'stats'}->{$identifier}; |
my $data = $dynmeta{'stats'}->{$identifier}; |
my $course = $data->{'course'}; |
my $course = $data->{'course'}; |
my %courseinfo = &Apache::lonnet::coursedescription($course); |
my %courseinfo = |
|
&Apache::lonnet::coursedescription($course, |
|
{'one_time' => 1}); |
if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') { |
if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') { |
&Apache::lonnet::logthis('lookup for '.$course.' failed'); |
&Apache::lonnet::logthis('lookup for '.$course.' failed'); |
next; |
next; |
Line 1001 sub print_dynamic_metadata {
|
Line 1091 sub print_dynamic_metadata {
|
} else { |
} else { |
$r->print('<h4>'.&mt('No Evaluation Data is available for this resource.').'</h4>'); |
$r->print('<h4>'.&mt('No Evaluation Data is available for this resource.').'</h4>'); |
} |
} |
$uri=~/^\/res\/(\w+)\/(\w+)\//; |
$uri=~/^\/res\/($match_domain)\/($match_username)\//; |
if ((($env{'user.domain'} eq $1) && ($env{'user.name'} eq $2)) |
if ((($env{'user.domain'} eq $1) && ($env{'user.name'} eq $2)) |
|| ($env{'user.role.ca./'.$1.'/'.$2})) { |
|| ($env{'user.role.ca./'.$1.'/'.$2})) { |
if (exists($dynmeta{'comments'})) { |
if (exists($dynmeta{'comments'})) { |
Line 1064 sub print_dynamic_metadata {
|
Line 1154 sub print_dynamic_metadata {
|
##################################################### |
##################################################### |
##################################################### |
##################################################### |
sub present_editable_metadata { |
sub present_editable_metadata { |
my ($r,$uri, $file_type) = @_; |
my ($r,$uri,$file_type) = @_; |
# Construction Space Call |
# Construction Space Call |
# Header |
# Header |
my $disuri=$uri; |
my $disuri=$uri; |
my $fn=&Apache::lonnet::filelocation('',$uri); |
my $fn=&Apache::lonnet::filelocation('',$uri); |
$disuri=~s/^\/\~/\/priv\//; |
$disuri=~s{^/\~}{/priv/}; |
$disuri=~s/\.meta$//; |
$disuri=~s/\.meta$//; |
my $meta_uri = $disuri; |
my $meta_uri = $disuri; |
my $path; |
my $path; |
Line 1077 sub present_editable_metadata {
|
Line 1167 sub present_editable_metadata {
|
($disuri, $meta_uri, $path) = &portfolio_display_uri($disuri,1); |
($disuri, $meta_uri, $path) = &portfolio_display_uri($disuri,1); |
} |
} |
my $target=$uri; |
my $target=$uri; |
$target=~s/^\/\~/\/res\/$env{'request.role.domain'}\//; |
$target=~s{^/\~}{/res/$env{'request.role.domain'}/}; |
$target=~s/\.meta$//; |
$target=~s/\.meta$//; |
my $bombs=&Apache::lonmsg::retrieve_author_res_msg($target); |
my $bombs=&Apache::lonmsg::retrieve_author_res_msg($target); |
if ($bombs) { |
if ($bombs) { |
Line 1105 sub present_editable_metadata {
|
Line 1195 sub present_editable_metadata {
|
my $goback=&mt('Back to Source File'); |
my $goback=&mt('Back to Source File'); |
$r->print(<<ENDBOMBS); |
$r->print(<<ENDBOMBS); |
<h1>$disuri</h1> |
<h1>$disuri</h1> |
<form method="post" name="defaultmeta"> |
<form method="post" action="" name="defaultmeta"> |
ENDBOMBS |
ENDBOMBS |
if ($showdel) { |
if ($showdel) { |
$r->print(<<ENDDEL); |
$r->print(<<ENDDEL); |
Line 1133 ENDDEL
|
Line 1223 ENDDEL
|
} else { |
} else { |
&Apache::lonpublisher::metaeval($result); |
&Apache::lonpublisher::metaeval($result); |
} |
} |
|
if ($env{'form.new_courserestricted'}) { |
|
my $new_assoc_course = $env{'form.new_courserestricted'}; |
|
my $prev_courserestricted = $Apache::lonpublisher::metadatafields{'courserestricted'}; |
|
if (($prev_courserestricted) && |
|
($prev_courserestricted ne $new_assoc_course)) { |
|
my $transfers = []; |
|
foreach my $key (keys(%env)) { |
|
if ($key =~ /^form\.transfer_(.+)$/) { |
|
push(@{$transfers},$1); |
|
} |
|
} |
|
if (@{$transfers} > 0) { |
|
&store_transferred_addedfields($fn,$uri,$transfers); |
|
} |
|
} |
|
} |
$r->print(<<ENDEDIT); |
$r->print(<<ENDEDIT); |
<h1>$displayfile</h1> |
<h1>$displayfile</h1> |
<form method="post" name="defaultmeta"> |
<form method="post" action="" name="defaultmeta"> |
ENDEDIT |
ENDEDIT |
$r->print('<script language="JavaScript">'. |
$r->print('<script type="JavaScript">'. |
&Apache::loncommon::browser_and_searcher_javascript(). |
&Apache::loncommon::browser_and_searcher_javascript(). |
'</script>'); |
'</script>'); |
my %lt=&fieldnames($file_type); |
my %lt=&fieldnames($file_type); |
my $output; |
my $output; |
my @fields; |
my @fields; |
if ($file_type eq 'portfolio') { |
my $added_metadata_fields; |
@fields = ('author','title','subject','keywords','abstract','notes','lowestgradelevel', |
my @added_order; |
'highestgradelevel','standards'); |
if ($file_type eq 'groups') { |
} else { |
$Apache::lonpublisher::metadatafields{'courserestricted'}= |
@fields = ('author','title','subject','keywords','abstract','notes', |
'course.'.$env{'request.course.id'}; |
'copyright','customdistributionfile','language', |
|
'standards', |
|
'lowestgradelevel','highestgradelevel','sourceavail','sourcerights', |
|
'obsolete','obsoletereplacement'); |
|
} |
} |
if ((! $Apache::lonpublisher::metadatafields{'courserestricted'}) && |
if ((! $Apache::lonpublisher::metadatafields{'courserestricted'}) && |
(! $env{'form.new_courserestricted'})) { |
(! $env{'form.new_courserestricted'}) && (! $file_type eq 'groups')) { |
$Apache::lonpublisher::metadatafields{'courserestricted'}= |
$Apache::lonpublisher::metadatafields{'courserestricted'}= |
'none'; |
'none'; |
} elsif ($env{'form.new_courserestricted'}) { |
} elsif ($env{'form.new_courserestricted'}) { |
$Apache::lonpublisher::metadatafields{'courserestricted'}= |
$Apache::lonpublisher::metadatafields{'courserestricted'}= |
$env{'form.new_courserestricted'}; |
$env{'form.new_courserestricted'}; |
} |
} |
|
if ($file_type eq 'portfolio' || $file_type eq 'groups') { |
|
if(exists ($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'})) { |
|
# retrieve fieldnames (in order) from the course restricted list |
|
@fields = (split(/,/,$env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'})); |
|
} else { |
|
# no saved field list, use default list |
|
@fields = ('author','title','subject','keywords','abstract', |
|
'notes','lowestgradelevel', |
|
'highestgradelevel','standards'); |
|
if ($Apache::lonpublisher::metadatafields{'courserestricted'} =~ /^course\.($match_domain\_$match_courseid)$/) { |
|
my $assoc_crs = $1; |
|
$added_metadata_fields = &Apache::lonparmset::get_added_meta_fieldnames($assoc_crs); |
|
if ($env{'course.'.$assoc_crs.'.metadata.addedorder'}) { |
|
@added_order = split(/,/,$env{'course.'.$assoc_crs.'.metadata.addedorder'}); |
|
} |
|
$env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'} = join(",",@fields); |
|
} |
|
} |
|
} else { |
|
@fields = ('author','title','subject','keywords','abstract','notes', |
|
'copyright','customdistributionfile','language', |
|
'standards', |
|
'lowestgradelevel','highestgradelevel','sourceavail','sourcerights', |
|
'obsolete','obsoletereplacement'); |
|
} |
if (! $Apache::lonpublisher::metadatafields{'copyright'}) { |
if (! $Apache::lonpublisher::metadatafields{'copyright'}) { |
$Apache::lonpublisher::metadatafields{'copyright'}= |
$Apache::lonpublisher::metadatafields{'copyright'}= |
'default'; |
'default'; |
} |
} |
if ($file_type eq 'portfolio') { |
if (($file_type eq 'portfolio') || ($file_type eq 'groups')) { |
|
if (! $Apache::lonpublisher::metadatafields{'mime'}) { |
|
($Apache::lonpublisher::metadatafields{'mime'}) = |
|
( $target=~/\.(\w+)$/ ); |
|
} |
|
if (! $Apache::lonpublisher::metadatafields{'owner'}) { |
|
$Apache::lonpublisher::metadatafields{'owner'} = |
|
$env{'user.name'}.':'.$env{'user.domain'}; |
|
} |
|
|
if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none') { |
if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none') { |
$r->print(&mt('Associated with course [_1]','<strong>'.$env{$Apache::lonpublisher::metadatafields{'courserestricted'}.".description"}. |
if ($file_type eq 'portfolio') { |
'</strong>').'<br />'); |
$r->print(&mt('Associated with course [_1]', |
|
'<strong><a href="'.$uri.'?changecourse=true">'. |
|
$env{$Apache::lonpublisher::metadatafields{'courserestricted'}. |
|
".description"}. |
|
'</a></strong>').'<br />'); |
|
} else { |
|
$r->print(&mt('Associated with course [_1]', |
|
'<strong>'. |
|
$env{$Apache::lonpublisher::metadatafields{'courserestricted'}. |
|
".description"}.'</strong>').'<br />'); |
|
} |
} else { |
} else { |
$r->print("This resource is not associated with a course.<br />"); |
$r->print('<a href="'.$uri.'?changecourse=true">This resource is not associated with a course.</a><br />'); |
} |
} |
} |
} |
|
if (@added_order) { |
|
foreach my $field_name (@added_order) { |
|
push(@fields,$field_name); |
|
$lt{$field_name} = $$added_metadata_fields{$field_name}; |
|
} |
|
} else { |
|
foreach my $field_name (keys(%$added_metadata_fields)) { |
|
push(@fields,$field_name); |
|
$lt{$field_name} = $$added_metadata_fields{$field_name}; |
|
} |
|
} |
|
$output .= &Apache::loncommon::start_data_table(); |
|
my $row_alt = 1; |
foreach my $field_name (@fields) { |
foreach my $field_name (@fields) { |
|
|
if (defined($env{'form.new_'.$field_name})) { |
if (defined($env{'form.new_'.$field_name})) { |
$Apache::lonpublisher::metadatafields{$field_name}= |
$Apache::lonpublisher::metadatafields{$field_name}= |
join(',',&Apache::loncommon::get_env_multiple('form.new_'.$field_name)); |
join(',',&Apache::loncommon::get_env_multiple('form.new_'.$field_name)); |
Line 1182 ENDEDIT
|
Line 1340 ENDEDIT
|
if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none' |
if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none' |
&& exists($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'})) { |
&& exists($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'})) { |
# handle restrictions here |
# handle restrictions here |
if (($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/active/) || |
if ((($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/active/) || |
($field_name eq 'courserestricted')){ |
($field_name eq 'courserestricted'))&& |
$output.=("\n".'<p>'.$lt{$field_name}.': '. |
(!($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/deleted/))){ |
|
|
|
$output .= "\n".&Apache::loncommon::start_data_table_row(); |
|
$output .= ('<td><span class="LC_metadata">'.$lt{$field_name}.':</span></td><td> '. |
&prettyinput($field_name, |
&prettyinput($field_name, |
$Apache::lonpublisher::metadatafields{$field_name}, |
$Apache::lonpublisher::metadatafields{$field_name}, |
'new_'.$field_name,'defaultmeta', |
'new_'.$field_name,'defaultmeta', |
undef,undef,undef,undef, |
undef,undef,undef,undef, |
$Apache::lonpublisher::metadatafields{'courserestricted'}).'</p>'."\n"); |
$Apache::lonpublisher::metadatafields{'courserestricted'}).'</td>'); |
|
$output .= &Apache::loncommon::end_data_table_row(); |
} |
} |
} else { |
} else { |
|
|
$output.=('<p>'.$lt{$field_name}.': '. |
$output.=(&Apache::loncommon::start_data_table_row().'<td><span class="LC_metadata">'.$lt{$field_name}.':</span></td><td> '. |
&prettyinput($field_name, |
&prettyinput($field_name, |
$Apache::lonpublisher::metadatafields{$field_name}, |
$Apache::lonpublisher::metadatafields{$field_name}, |
'new_'.$field_name,'defaultmeta').'</p>'); |
'new_'.$field_name,'defaultmeta').'</td>'.&Apache::loncommon::end_data_table_row()); |
|
|
} |
} |
} |
} |
|
$output .= &Apache::loncommon::end_data_table(); |
if ($env{'form.store'}) { |
if ($env{'form.store'}) { |
my $mfh; |
my ($outcome,$result) = &store_metadata($fn,$uri,'store'); |
my $formname='store'; |
$r->print($result); |
my $file_content; |
|
if (&Apache::loncommon::get_env_multiple('form.new_keywords')) { |
|
$Apache::lonpublisher::metadatafields{'keywords'} = |
|
join (',', &Apache::loncommon::get_env_multiple('form.new_keywords')); |
|
} |
|
|
|
foreach (sort keys %Apache::lonpublisher::metadatafields) { |
|
next if ($_ =~ /\./); |
|
my $unikey=$_; |
|
$unikey=~/^([A-Za-z]+)/; |
|
my $tag=$1; |
|
$tag=~tr/A-Z/a-z/; |
|
$file_content.= "\n\<$tag"; |
|
foreach (split(/\,/, |
|
$Apache::lonpublisher::metadatakeys{$unikey}) |
|
) { |
|
my $value= |
|
$Apache::lonpublisher::metadatafields{$unikey.'.'.$_}; |
|
$value=~s/\"/\'\'/g; |
|
$file_content.=' '.$_.'="'.$value.'"' ; |
|
# print $mfh ' '.$_.'="'.$value.'"'; |
|
} |
|
$file_content.= '>'. |
|
&HTML::Entities::encode |
|
($Apache::lonpublisher::metadatafields{$unikey}, |
|
'<>&"'). |
|
'</'.$tag.'>'; |
|
} |
|
if ($fn =~ m|/portfolio/|) { |
|
my ($path, $new_fn) = ($fn =~ m|/(portfolio.*)/([^/]*)$|); |
|
$env{'form.'.$formname}=$file_content."\n"; |
|
$env{'form.'.$formname.'.filename'}=$new_fn; |
|
my $result =&Apache::lonnet::userfileupload($formname,'', |
|
$path); |
|
|
|
if ($result =~ /(error|notfound)/) { |
|
$r->print('<p><font color="red">'. |
|
&mt('Could not write metadata').', '. |
|
&mt('FAIL').'</font></p>'); |
|
} else { |
|
$r->print('<p><font color="blue">'.&mt('Wrote Metadata'). |
|
' '.&Apache::lonlocal::locallocaltime(time). |
|
'</font></p>'); |
|
} |
|
} else { |
|
if (! ($mfh=Apache::File->new('>'.$fn))) { |
|
$r->print('<p><font color="red">'. |
|
&mt('Could not write metadata').', '. |
|
&mt('FAIL').'</font></p>'); |
|
} else { |
|
print $mfh $file_content; |
|
$r->print('<p><font color="blue">'.&mt('Wrote Metadata'). |
|
' '.&Apache::lonlocal::locallocaltime(time). |
|
'</font></p>'); |
|
} |
|
} |
|
} |
} |
|
|
$r->print($output.'<br /><input type="submit" name="store" value="'. |
$r->print($output.'<br /><input type="submit" name="store" value="'. |
&mt('Store Catalog Information').'">'); |
&mt('Store Catalog Information').'" />'); |
|
|
if ($file_type eq 'portfolio') { |
if ($file_type eq 'portfolio' || $file_type eq 'groups') { |
$r->print('</form> |
my ($port_path,$group) = &get_port_path_and_group($uri); |
<br /><br /><form method="POST" action="/adm/portfolio">'. |
if ($group ne '') { |
'<input type="hidden" name="currentpath" value="'.$path.'" />'. |
$r->print('<input type="hidden" name="group" value="'.$group.'" />'); |
'<input type="submit" name="cancel" value="'.&mt('Discard Edits and Return to Portfolio').'">'); |
} |
|
$r->print('<input type="hidden" name="currentpath" value="'.$env{'form.currentpath'}.'" />'); |
|
$r->print('</form><br /><br /><form method="post" action="'.$port_path.'">'); |
|
if ($group ne '') { |
|
$r->print('<input type="hidden" name="group" value="'.$group.'" />'); |
|
} |
|
$r->print('<input type="hidden" name="currentpath" value="'.$path.'" />'. |
|
'<input type="submit" name="cancel" value="'.&mt('Discard Edits and Return to Portfolio').'" />'); |
} |
} |
} |
} |
|
|
Line 1277 ENDEDIT
|
Line 1390 ENDEDIT
|
return; |
return; |
} |
} |
|
|
|
sub store_metadata { |
|
my ($fn,$uri,$caller) = @_; |
|
my $mfh; |
|
my $formname='store'; |
|
my ($file_content,$output,$outcome); |
|
if (&Apache::loncommon::get_env_multiple('form.new_keywords')) { |
|
$Apache::lonpublisher::metadatafields{'keywords'} = |
|
join (',', &Apache::loncommon::get_env_multiple('form.new_keywords')); |
|
} |
|
foreach my $field (sort(keys(%Apache::lonpublisher::metadatafields))) { |
|
next if ($field =~ /\./); |
|
my $unikey=$field; |
|
$unikey=~/^([A-Za-z_]+)/; |
|
my $tag=$1; |
|
$tag=~tr/A-Z/a-z/; |
|
$file_content.= "\n\<$tag"; |
|
foreach my $key (split(/\,/,$Apache::lonpublisher::metadatakeys{$unikey})) { |
|
my $value = $Apache::lonpublisher::metadatafields{$unikey.'.'.$key}; |
|
$value=~s/\"/\'\'/g; |
|
$file_content.=' '.$key.'="'.$value.'"' ; |
|
} |
|
$file_content.= '>'. |
|
&HTML::Entities::encode |
|
($Apache::lonpublisher::metadatafields{$unikey},'<>&"'). |
|
'</'.$tag.'>'; |
|
} |
|
if ($fn =~ m|^$Apache::lonnet::perlvar{'lonDocRoot'}/userfiles|) { |
|
my ($path, $new_fn); |
|
if ($fn =~ m|$match_name/groups/\w+/portfolio/|) { |
|
($path, $new_fn) = ($fn =~ m|/(groups/\w+/portfolio.*)/([^/]*)$|); |
|
} else { |
|
($path, $new_fn) = ($fn =~ m|/(portfolio.*)/([^/]*)$|); |
|
} |
|
($outcome,my $result) = |
|
&store_portfolio_metadata($formname,$file_content, |
|
$path,$new_fn,$uri,$caller); |
|
$output .= $result; |
|
} else { |
|
if (! ($mfh=Apache::File->new('>'.$fn))) { |
|
$output .= '<p><font color="red">'; |
|
if ($caller eq 'transfer') { |
|
$output .= &mt('Could not transfer data in added fields to notes'); |
|
} else { |
|
$output .= &mt('Could not write metadata'); |
|
} |
|
$output .= ', '.&mt('FAIL').'</font></p>'; |
|
$outcome = 'fail'; |
|
} else { |
|
print $mfh ($file_content); |
|
close($mfh); |
|
&update_metadata_table($uri); |
|
$output .= '<p><font color="blue">'; |
|
if ($caller eq 'transfer') { |
|
$output .= &mt('Transferred data in added fields to notes'); |
|
} else { |
|
$output .= &mt('Wrote Metadata'); |
|
} |
|
$output .= ' '.&Apache::lonlocal::locallocaltime(time). |
|
'</font></p>'; |
|
$outcome = 'ok'; |
|
} |
|
} |
|
return ($outcome,$output); |
|
} |
|
|
|
sub store_transferred_addedfields { |
|
my ($fn,$uri,$transfers) = @_; |
|
foreach my $item (@{$transfers}) { |
|
$Apache::lonpublisher::metadatafields{'notes'} .= |
|
' '.$item.' = '.$Apache::lonpublisher::metadatafields{$item}; |
|
} |
|
my ($outcome,$output) = &store_metadata($fn,$uri,'transfer'); |
|
if ($outcome eq 'ok') { |
|
foreach my $item (@{$transfers}) { |
|
delete($Apache::lonpublisher::metadatafields{$item}); |
|
} |
|
} |
|
} |
|
|
|
sub store_portfolio_metadata { |
|
my ($formname,$content,$path,$new_fn,$uri,$caller) = @_; |
|
my ($outcome,$output); |
|
$env{'form.'.$formname}=$content."\n"; |
|
$env{'form.'.$formname.'.filename'}=$new_fn; |
|
my $result =&Apache::lonnet::userfileupload($formname,'',$path); |
|
if ($result =~ /(error|notfound)/) { |
|
$output = '<p><font color="red">'; |
|
if ($caller eq 'transfer') { |
|
$output .= |
|
&mt('Could not transfer data in added fields to notes'); |
|
} else { |
|
$output .= &mt('Could not write metadata'); |
|
} |
|
$output .= ', '.&mt('FAIL').'</font></p>'; |
|
$outcome = 'fail'; |
|
} else { |
|
&update_metadata_table($uri); |
|
$output = '<p><font color="blue">'; |
|
if ($caller eq 'transfer') { |
|
$output .= &mt('Transferred data in added fields to notes'); |
|
} else { |
|
$output .= &mt('Wrote Metadata'); |
|
} |
|
$output .= ' '.&Apache::lonlocal::locallocaltime(time). |
|
'</font></p>'; |
|
$outcome = 'ok'; |
|
} |
|
return ($outcome,$output); |
|
} |
|
|
|
sub update_metadata_table { |
|
my ($uri) = @_; |
|
my ($group,$file_name); |
|
my ($udom,$uname,$remainder) = |
|
($uri=~m -^/+(?:uploaded|editupload)/+($match_domain)/+($match_name)/+(.*)$-); |
|
|
|
if ($remainder =~ /^groups\/(\w+)\/portfolio(\/.+)$/) { |
|
$group = $1; |
|
$file_name = $2; |
|
} elsif ($remainder =~ /^portfolio(\/.+)$/) { |
|
$file_name = $1; |
|
} |
|
$file_name =~ s/\.meta$//; |
|
my $current_permissions = |
|
&Apache::lonnet::get_portfile_permissions($udom,$uname); |
|
my %access_controls = |
|
&Apache::lonnet::get_access_controls($current_permissions,$group, |
|
$group.$file_name); |
|
my $access_hash = $access_controls{$file_name}; |
|
my $available = 0; |
|
if (ref($access_hash) eq 'HASH') { |
|
foreach my $key (keys(%{$access_hash})) { |
|
my ($num,$scope,$end,$start) = |
|
($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/); |
|
if ($scope eq 'public' || $scope eq 'guest') { |
|
$available = 1; |
|
last; |
|
} |
|
} |
|
} |
|
if ($available) { |
|
my $result = |
|
&Apache::lonnet::update_portfolio_table($uname,$udom, |
|
$file_name,'portfolio_metadata',$group,'update'); |
|
} |
|
} |
|
|
|
|
1; |
1; |
__END__ |
__END__ |
|
|
|
|