--- loncom/interface/lonrss.pm 2006/12/09 23:33:55 1.32
+++ loncom/interface/lonrss.pm 2025/03/16 21:04:09 1.64
@@ -1,7 +1,7 @@
# The LearningOnline Network
# RSS Feeder
#
-# $Id: lonrss.pm,v 1.32 2006/12/09 23:33:55 albertel Exp $
+# $Id: lonrss.pm,v 1.64 2025/03/16 21:04:09 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -36,7 +36,7 @@ use Apache::lonnet;
use Apache::lontexconvert;
use Apache::lonlocal;
use Apache::lonhtmlcommon;
-
+use Apache::inputtags();
sub filterfeedname {
my $filename=shift;
@@ -61,6 +61,9 @@ sub displayfeedname {
my $name=$filterfilename;
if ($name=~/^CourseBlog/) {
$name=&mt('Course Blog');
+ if ($env{'course.'.$env{'request.course.id'}.'.type'} eq 'Community') {
+ $name = &mt('Community Blog');
+ }
if ($env{'course.'.$env{'request.course.id'}.'.description'}) {
$name.=' '.$env{'course.'.$env{'request.course.id'}.'.description'};
}
@@ -85,7 +88,7 @@ sub changefeeddisplay {
}
sub advertisefeeds {
- my ($uname,$udom,$edit)=@_;
+ my ($uname,$udom,$edit,$count,$hidden,$skipheader)=@_;
my $feeds='';
my %feednames=&Apache::lonnet::dump('nohist_all_rss_feeds',$udom,$uname);
my $mode='public';
@@ -94,30 +97,69 @@ sub advertisefeeds {
}
my $server = &Apache::lonnet::absolute_url();
foreach my $feed (sort(keys(%feednames))) {
- if (($feed!~/^error\:/) && ($feed!~/^feed\_display\_option\_/)) {
- my $feedurl= $server.'/public/'.$udom.'/'.$uname.'/'.$feed.'.rss';
- my $htmlurl= $server.'/'.$mode.'/'.$udom.'/'.$uname.'/'.$feed.'_rss.html';
- if ($feednames{'feed_display_option_'.$feed} eq 'hidden') {
- if ($edit) {
- $feeds.='
');
} else { # render RSS
my $server = &Apache::lonnet::absolute_url();
$r->print("
\n".
@@ -312,7 +390,7 @@ sub handler {
my $newid = &get_new_feed_id();
# Is this user for real?
my $homeserver=&Apache::lonnet::homeserver($uname,$udom);
- if ($html && !$blocked) {
+ if ($html && !$blocked && !$disabled) {
# Any new feeds or renaming of feeds?
if ($edit) {
# Hide a feed?
@@ -344,6 +422,9 @@ sub handler {
} elsif ($blocked) {
$r->print($blocktext);
$r->print(($html?&Apache::loncommon::end_page():''."\n"));
+ } elsif ($disabled) {
+ $r->print($disabletext);
+ $r->print(($html?&Apache::loncommon::end_page():''."\n"));
} else { # is indeed a user
# Course or user?
my $name='';
@@ -355,9 +436,10 @@ sub handler {
}
# Add a new feed
if (($html) && ($edit)) {
- $r->print('
');
}
if ($displayfeedname) { # this is an existing feed
@@ -374,8 +456,10 @@ sub handler {
'status',
'enclosureurl',
'enclosuretype']);
+
# my ($id,$uname,$udom,$filename,$title,$description,$url,$status,$encurl,$enctype)=@_;
+
&editentry($env{'form.queryid'},
$uname,$udom,$filename,
$env{'form.title'},
@@ -386,6 +470,8 @@ sub handler {
$env{'form.enctype'}
);
}
+
+# store away the fields modified in the online form
my %newsfeed=&Apache::lonnet::dump($feedname,$udom,$uname);
foreach my $entry (sort(keys(%newsfeed)),$env{'form.newid'}.'_status') {
if ($entry=~/^(\d+)\_status$/) {
@@ -402,6 +488,49 @@ sub handler {
}
}
}
+
+# see if we have any uploaded or portfolio files
+ my @uploadeditems=();
+
+ if ($env{'form.HWFILE0_0'}) {
+# We have an uploaded file - store it away.
+ $uploadeditems[0]=&Apache::lonnet::userfileupload('HWFILE0_0',undef,'portfolio/podcasts');
+ }
+ if ($env{'form.HWPORT0_0'}) {
+# Selected portfolio files
+ foreach my $filename (split(/\,/,$env{'form.HWPORT0_0'})) {
+ if ($filename) {
+# construct full path and remember
+ push(@uploadeditems,'/uploaded/'.$env{'user.domain'}.'/'.$env{'user.name'}.'/portfolio'.$filename);
+ }
+ }
+ }
+# the zeroth item should be stored together with the last displayed (newid) field
+ if ($uploadeditems[0]) {
+ my $id=$env{'form.newid'};
+ &editentry($id,$uname,$udom,$feedname,
+ $env{'form.'.$id.'_title'},
+ $env{'form.'.$id.'_description'},
+ $env{'form.'.$id.'_link'},
+ $env{'form.'.$id.'_status'},
+ $uploadeditems[0],
+ &Apache::loncommon::filemimetype(($uploadeditems[0]=~/\.(\w+)$/)[0]),
+ );
+ &Apache::lonnet::make_public_indefinitely($uploadeditems[0]);
+ }
+# if there are more files, they need new entries, since each can only have one enclosure
+ for (my $i=1; $i<=$#uploadeditems; $i++) {
+ my $id = &get_new_feed_id().$i;
+ &editentry($id,$uname,$udom,$feedname,
+ 'New Entry',
+ '',
+ '',
+ 'public',
+ $uploadeditems[$i],
+ &Apache::loncommon::filemimetype(($uploadeditems[$i]=~/\.(\w+)$/)[0]),
+ );
+ &Apache::lonnet::make_public_indefinitely($uploadeditems[$i]);
+ }
} #done storing
# Render private items?
@@ -410,16 +539,16 @@ sub handler {
($html?'
':'').
&mt('LON-CAPA Feed "[_1]" for [_2]',$displayfeedname,$name).
($displayoption eq 'hidden'?' ('.&mt('Hidden').')':'').
- ($html?'
'.($edit?'
');
}
} # was a real display feedname
- $r->print(($html?''.&Apache::loncommon::end_page():''."\n"));
+ $r->print(($html?'
'.&Apache::loncommon::end_page():''."\n"));
} # a real user
return OK;
} # end handler