--- loncom/interface/lonchatfetch.pm 2005/02/17 08:29:42 1.15
+++ loncom/interface/lonchatfetch.pm 2021/11/30 15:55:37 1.40
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Chat Fetching
#
-# $Id: lonchatfetch.pm,v 1.15 2005/02/17 08:29:42 albertel Exp $
+# $Id: lonchatfetch.pm,v 1.40 2021/11/30 15:55:37 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -33,82 +33,104 @@ use Apache::Constants qw(:common :http);
use Apache::lontexconvert;
use Apache::loncommon;
use Apache::lonnet;
+use Apache::longroup;
+use Apache::lonlocal;
+use lib '/home/httpd/lib/perl/';
+use LONCAPA;
+
sub handler {
my $r = shift;
- if (! &Apache::lonnet::allowed('pch',$ENV{'request.course.id'}.
- ($ENV{'request.course.sec'}?'/'.$ENV{'request.course.sec'}:''))
+ &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
+ ['lastid','group']);
+ my ($group,$grouptitle);
+ my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
+ my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
+ if (defined($env{'form.group'})) {
+ $group = $env{'form.group'};
+ if ((! &Apache::lonnet::allowed('pgc',$env{'request.course.id'}.'/'.
+ $group)) &&
+ (! &Apache::lonnet::allowed('vcg',$env{'request.course.id'}.
+ ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')))) {
+ return HTTP_NOT_ACCEPTABLE;
+ }
+ my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum,$group);
+ if (%curr_groups) {
+ my %group_info =
+ &Apache::longroup::get_group_settings($curr_groups{$group});
+ $grouptitle =
+ ''.&unescape($group_info{description}).
+ '
';
+ }
+ } elsif (! &Apache::lonnet::allowed('plc',$env{'request.course.id'}.
+ ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
) {
return HTTP_NOT_ACCEPTABLE;
}
- my $loaderror=&Apache::lonnet::overloaderror($r);
- if ($loaderror) { return $loaderror; }
- $loaderror=
- &Apache::lonnet::overloaderror($r,
- $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
- if ($loaderror) { return $loaderror; }
-
- $r->content_type('text/html');
+ &Apache::loncommon::content_type($r,'text/html');
$r->send_http_header;
return OK if $r->header_only;
# ------------------------------------------------------------ retrieve entries
- my $cnum=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
- my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
- my $chome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
+ my $chome=$env{'course.'.$env{'request.course.id'}.'.home'};
my @entries=split(/\:/,
&Apache::lonnet::reply(
- "chatretr:$cdom:$cnum:$ENV{'user.domain'}:$ENV{'user.name'}",$chome));
+ "chatretr:$cdom:$cnum:$env{'user.domain'}:$env{'user.name'}:$group",
+ $chome));
# Figure out what the last valid entry-id is
my ($lastid,$thentime,$idnum);
- foreach (@entries) {
- $_=~/^(\w+)/;
+ foreach my $entry (@entries) {
+ $entry =~/^(\w+)/;
if ($1 ne 'active_participant') {
$lastid=$1;
($thentime,$idnum)=split(/\_/,$lastid);
}
}
# ----------------------------------------------------------- Can see identity?
- my $crs='/'.$ENV{'request.course.id'};
- if ($ENV{'request.course.sec'}) {
- $crs.='_'.$ENV{'request.course.sec'};
- }
- $crs=~s/\_/\//g;
- my $seeid=&Apache::lonnet::allowed('rin',$crs);
+ my $seeid = &get_seeid_status();
# -------------------------------------------------------- see which ones apply
- &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['lastid']);
my $include=0;
+ my $header;
my $newstuff='';
my $bottomid='';
- unless ($ENV{'form.lastid'}) {
- $include=1;
- my $html=&Apache::lonxml::xmlbegin();
- $newstuff=$html.'