';
}
}
if ($feeds) {
@@ -115,8 +118,22 @@ sub advertisefeeds {
}
sub rss_link {
- my ($url) = @_;
- return qq||;
+ my ($uname,$udom)=@_;
+ my $result;
+ my $server = &Apache::lonnet::absolute_url();
+ my %feednames=&Apache::lonnet::dump('nohist_all_rss_feeds',$udom,$uname);
+ foreach my $feed (sort(keys(%feednames))) {
+ next if ($feed =~/^\s*$/ ||
+ $feed =~ /^error:/ ||
+ $feed =~/^feed_display_option_/ );
+ my $url= $server.'/public/'.$udom.'/'.$uname.'/'.$feed.'.rss';
+ my $title = $feed;
+ $title =~ s/_/ /g;
+ $result.=qq|
+
+|;
+ }
+ return $result;
}
{
@@ -200,16 +217,62 @@ sub add_blog_entry_link {
my ($id,$uname,$udom,$filename,$title,$description,$url,$status,$encurl,$enctype,$linktext)=@_;
return "".$linktext.'';
}
+sub blocking_blogdisplay {
+ my ($uname,$udom,$html,$filterfeedname) = @_;
+ my $user = &Apache::loncommon::plainname($uname,$udom);
+ if ($html) {
+ $user = &Apache::loncommon::aboutmewrapper($user,$uname,$udom);
+ } else {
+ $user = $user.' ('.$uname.':'.$udom.')';
+ }
+ my %setters;
+ my ($blocked,$output,$blockcause);
+ my ($startblock,$endblock) =
+ &Apache::loncommon::blockcheck(\%setters,'blogs');
+ if ($startblock && $endblock) {
+ $blockcause = 'user';
+ } else {
+ if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
+ ($startblock,$endblock) =
+ &Apache::loncommon::blockcheck(\%setters,'blogs',
+ $uname,$udom);
+ $blockcause = 'blogowner';
+ }
+ }
+ if ($startblock && $endblock) {
+ $blocked = 1;
+ my $showstart = &Apache::lonlocal::locallocaltime($startblock);
+ my $showend = &Apache::lonlocal::locallocaltime($endblock);
+ $output = &mt('Blogs belonging to [_1] are unavailable from [_2] to [_3].',$user,$showstart,$showend);
+ if ($html) {$output.=' ';}
+ if ($blockcause eq 'user') {
+ $output .= &mt('This is because you are a student in one or more courses in which communication is being blocked.');
+ if ($html) {
+ $output .= ' '.
+ &Apache::loncommon::build_block_table($startblock,
+ $endblock,\%setters);
+ }
+ } else {
+ $output .= &mt('This is because the blog owner is a student in one or more courses in which communication is being blocked.');
+ }
+ if (!$html) {
+ my $id = &get_new_feed_id();
+ $output = ''.$output."".$id.$filterfeedname.'_'.$udom.'_'.$uname.'';
+ }
+ }
+ return ($blocked,$output);
+}
+
sub handler {
my ($r) = @_;
@@ -240,15 +303,37 @@ sub handler {
my $filterfeedname=&filterfeedname($filename);
my $feedname=&feedname($filename);
my ($displayfeedname,$displayoption)=&displayfeedname($filename,$uname,$udom);
+ my ($blocked,$blocktext,$disabled,$disabletext);
+ if (!&Apache::lonnet::is_course($udom,$uname)) {
+ ($blocked,$blocktext) = &blocking_blogdisplay($uname,$udom,$html,$filterfeedname);
+ $disabled = &Apache::lonnet::usertools_access($uname,$udom,'blog');
+ if ($disabled) {
+ if ($html) {
+ $disabletext = '
'.&mt('No user blog available') .'
'.
+ &mt('This is a result of one of the following:').'
'.
+ '
'.&mt('The administrator of this domain has disabled blog functionality for this specific user.').'
'.
+ '
'.&mt('The domain has been configured to disable, by default, blog functionality for all users in the domain.').'
'.
+ '
';
+ } else {
+ $disabletext = &mt('No user blog available');
+ }
+ }
+ }
if ($html) {
- $r->print(&Apache::loncommon::start_page(($displayfeedname?$displayfeedname:&mt("Available RSS Feeds and Blogs")),undef,
- {'domain' => $udom,
+ my $title = $displayfeedname?$displayfeedname
+ :"Available RSS Feeds and Blogs";
+ my $rss_link = &Apache::lonrss::rss_link($uname,$udom);
+ my @brcrumb = [{href=>$rss_link,text=>"Available RSS Feeds and Blogs"}];
+ $r->print(&Apache::loncommon::start_page($title,$rss_link,
+ {'bread_crumbs' => @brcrumb,
+ 'domain' => $udom,
'force_register' =>
$env{'form.register'}}).
&changed_js());
} else { # render RSS
+ my $server = &Apache::lonnet::absolute_url();
$r->print("\n".
- "\nhttp://".$ENV{'HTTP_HOST'}.'/public/'.$udom.'/'.$uname.'/'.
+ "\n".''.$server.'/public/'.$udom.'/'.$uname.'/'.
$filterfeedname.'_rss.html'.
"\n".
&mt('An RSS Feed provided by the LON-CAPA Learning Content Management System').
@@ -258,7 +343,7 @@ sub handler {
my $newid = &get_new_feed_id();
# Is this user for real?
my $homeserver=&Apache::lonnet::homeserver($uname,$udom);
- if ($html) {
+ if ($html && !$blocked && !$disabled) {
# Any new feeds or renaming of feeds?
if ($edit) {
# Hide a feed?
@@ -287,10 +372,16 @@ sub handler {
}
if ($homeserver eq 'no_host') {
$r->print(($html?'
':'').&mt('No feed available').($html?'
':''));
+ } 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='';
- if ($uname=~/^\d/) {
+ if (&Apache::lonnet::is_course($udom,$uname)) {
my %cenv=&Apache::lonnet::dump('environment',$udom,$uname);
$name=$cenv{'description'};
} else {
@@ -298,7 +389,7 @@ sub handler {
}
# Add a new feed
if (($html) && ($edit)) {
- $r->print('');
@@ -317,8 +408,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'},
@@ -329,6 +422,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$/) {
@@ -337,7 +432,7 @@ sub handler {
&editentry($id,$uname,$udom,$feedname,
$env{'form.'.$id.'_title'},
$env{'form.'.$id.'_description'},
- $env{'form.'.$id.'_url'},
+ $env{'form.'.$id.'_link'},
$env{'form.'.$id.'_status'},
$env{'form.'.$id.'_enclosureurl'},
$env{'form.'.$id.'_enclosuretype'},
@@ -345,24 +440,67 @@ 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?
+ my $viewpubliconly=1;
$r->print("\n".
($html?'