Annotation of loncom/interface/lonchatfetch.pm, revision 1.36

1.1       www         1: # The LearningOnline Network
                      2: # Chat Fetching
                      3: #
1.36    ! bisitz      4: # $Id: lonchatfetch.pm,v 1.35 2009/07/26 16:53:40 kalberla Exp $
1.1       www         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.
                     14: #
                     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: #
                     20: # You should have received a copy of the GNU General Public License
                     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/
                     27: #
                     28: 
                     29: package Apache::lonchatfetch;
                     30: 
                     31: use strict;
1.12      matthew    32: use Apache::Constants qw(:common :http);
1.1       www        33: use Apache::lontexconvert;
1.4       www        34: use Apache::loncommon;
                     35: use Apache::lonnet;
1.24      raeburn    36: use Apache::longroup;
1.32      raeburn    37: use Apache::lonlocal;
1.25      www        38: use lib '/home/httpd/lib/perl/';
                     39: use LONCAPA;
                     40:  
1.1       www        41: 
                     42: sub handler {
                     43:     my $r = shift;
1.12      matthew    44: 
1.22      albertel   45:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                     46: 					    ['lastid','group']);
1.21      raeburn    47:     my ($group,$grouptitle);
                     48:     my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
                     49:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                     50:     if (defined($env{'form.group'})) {
                     51:         $group = $env{'form.group'};
1.28      raeburn    52:         if ((! &Apache::lonnet::allowed('pgc',$env{'request.course.id'}.'/'.
                     53: 				       $group)) &&
1.31      raeburn    54:            (! &Apache::lonnet::allowed('vcg',$env{'request.course.id'}.
                     55:          ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')))) {
1.21      raeburn    56:             return HTTP_NOT_ACCEPTABLE;
                     57:         }
1.24      raeburn    58:         my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum,$group);
1.23      albertel   59:         if (%curr_groups) {
1.22      albertel   60:             my %group_info = 
1.24      raeburn    61: 		&Apache::longroup::get_group_settings($curr_groups{$group});
1.22      albertel   62:             $grouptitle = 
1.25      www        63: 		'<b>'.&unescape($group_info{description}).
1.22      albertel   64: 		'</b><br />';
1.21      raeburn    65:         }
                     66:     } elsif (! &Apache::lonnet::allowed('pch',$env{'request.course.id'}.
1.17      albertel   67:              ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
1.12      matthew    68:         ) {
                     69:         return HTTP_NOT_ACCEPTABLE;
                     70:     }
1.6       www        71: 
                     72:     my $loaderror=&Apache::lonnet::overloaderror($r);
                     73:     if ($loaderror) { return $loaderror; }
                     74:     $loaderror=
                     75:        &Apache::lonnet::overloaderror($r,
1.17      albertel   76:          $env{'course.'.$env{'request.course.id'}.'.home'});
1.6       www        77:     if ($loaderror) { return $loaderror; }
                     78: 
1.16      albertel   79:     &Apache::loncommon::content_type($r,'text/html');
1.1       www        80:     $r->send_http_header;
                     81:     return OK if $r->header_only;
                     82: 
                     83: # ------------------------------------------------------------ retrieve entries
                     84: 
1.17      albertel   85:     my $chome=$env{'course.'.$env{'request.course.id'}.'.home'};
1.4       www        86: 
1.1       www        87:     my @entries=split(/\:/,
1.8       www        88:        &Apache::lonnet::reply(
1.21      raeburn    89:         "chatretr:$cdom:$cnum:$env{'user.domain'}:$env{'user.name'}:$group",
                     90:         $chome));
1.10      www        91: # Figure out what the last valid entry-id is
                     92:     my ($lastid,$thentime,$idnum);
1.32      raeburn    93:     foreach my $entry (@entries) {
                     94: 	$entry =~/^(\w+)/;
1.10      www        95:         if ($1 ne 'active_participant') {
                     96: 	    $lastid=$1;
                     97:             ($thentime,$idnum)=split(/\_/,$lastid);
                     98: 	}
                     99:     }
1.4       www       100: # ----------------------------------------------------------- Can see identity?
1.21      raeburn   101:     my $seeid = &get_seeid_status();
1.1       www       102: # -------------------------------------------------------- see which ones apply
                    103:     my $include=0;
1.32      raeburn   104:     my $header;
1.1       www       105:     my $newstuff='';
1.3       www       106:     my $bottomid='';
1.17      albertel  107:     unless ($env{'form.lastid'}) { 
1.20      albertel  108: 	$include=1; 
1.32      raeburn   109: 	$header = 
1.20      albertel  110: 	    &Apache::loncommon::start_page(undef,undef,
                    111: 					   {'only_body' => 1,
                    112: 					    'bgcolor'   => '#FFFFFF',
                    113: 					    'js_ready'  => 1,});
1.2       www       114:     }
1.9       www       115:     my @participants=();
1.32      raeburn   116:     foreach my $entry (@entries) {
                    117: 	my ($id,$msg,$udom)=split(/\:/,&unescape($entry));
1.9       www       118:  	if ($id eq 'active_participant') {
                    119:            chomp($udom);
1.14      www       120: 	   my $participant= &Apache::loncommon::nickname($msg,$udom);
1.32      raeburn   121: 	   unless ($participant=~/\w/) { $participant=$msg.':'.$udom; }
1.14      www       122: 	   $participants[$#participants+1]=$participant;
1.9       www       123: 	} elsif ($include) {
                    124: 	    chomp($msg);
                    125: 	    my ($msgtime,$msgnum)=split(/\_/,$id);
                    126: 	    my ($sdom,$snum,$anon,$contrib)=split(/\:/,
1.25      www       127: 					     &unescape($msg));
                    128: 	    $contrib=&unescape($contrib);
1.18      albertel  129: 	    &Apache::lonfeedback::newline_to_br(\$contrib);
1.11      albertel  130: 	    ($contrib,my $errors)=&Apache::lontexconvert::msgtexconverted($contrib);
1.36    ! bisitz    131:             if ($errors) {
        !           132:                 $contrib.=' <span class="LC_error">'
        !           133:                          .&mt('(Message not fully displayed due to incorrect embedded TeX.)')
        !           134:                          .'</span>';
        !           135:             }
1.17      albertel  136: 	    if ($errors && $snum eq $env{'user.name'} &&
                    137: 		$sdom eq $env{'user.domain'} ) {
1.36    ! bisitz    138:                 $contrib.='<br /><span class="LC_error">'
        !           139:                          .&mt('TeX error message: [_1]',$errors)
        !           140:                          .'</span>';
1.11      albertel  141: 	    }
1.9       www       142: 	    $contrib=~s/\n/ /g;
                    143: 	    $contrib=~s/\'/\&\#39\;/g;
                    144: 	    my $sender='';
                    145: 	    if ($seeid) {
                    146: 		$sender=&Apache::loncommon::plainname($snum,$sdom);
                    147: 		my $nick=&Apache::loncommon::nickname($snum,$sdom);
                    148: 		if (($nick) && ($nick ne $sender)) {
                    149: 		    $sender.=' '.$nick;
                    150: 		}
1.32      raeburn   151: 		unless ($sender) { $sender=$snum.':'.$sdom; }
1.9       www       152: 		if ($anon) { $sender.=' [Anon]' };
                    153: 	    } elsif (!$anon) {
                    154: 		$sender=&Apache::loncommon::nickname($snum,$sdom);
1.32      raeburn   155: 		unless ($sender) { $sender=$snum.':'.$sdom; }
1.7       www       156: 	    } else {
1.9       www       157: 		$sender=&Apache::loncommon::screenname($snum,$sdom);
1.32      raeburn   158: 		unless ($sender) { $sender=&mt("Anonymous"); }
1.7       www       159: 	    }
1.13      www       160: 	    $sender=~s/\'/\&\#39\;/g;
1.9       www       161: 	    my $color=$sender;
                    162: 	    $color=~tr/a-j/0-9/;
                    163: 	    $color=~tr/A-J/0-9/;
                    164: 	    $color=~tr/k-t/0-9/;
                    165: 	    $color=~tr/K-T/0-9/;
                    166: 	    $color=~tr/u-z/0-5/;
                    167: 	    $color=~tr/U-Z/0-5/;
                    168: 	    $color=~s/\D//g;
                    169: 	    $color=substr($color,0,6);
                    170: 	    my $timestamp=localtime($msgtime);
                    171: 	    my ($mhour,$mmin,$msec)=($timestamp=~/(\d\d)\:(\d\d)\:(\d\d)/);
1.36    ! bisitz    172: 	    $newstuff.='<span style="color:#'.$color.'"><a name="LC_'.$id.'"></a><b>'.
1.9       www       173: 		$sender.'</b> ('.$mhour.':'.$mmin.':'.$msec.'): '.
1.36    ! bisitz    174: 		$contrib."</span><br />";
1.26      albertel  175: 	    $bottomid='LC_'.$id;
1.9       www       176: 	} else {
1.32      raeburn   177: 	    $entry=~/^(\w+)/;
1.17      albertel  178: 	    if ($1 eq $env{'form.lastid'}) { $include=1; }
1.9       www       179: 	}
1.1       www       180:     }
1.9       www       181:     my $participant_output=join('<br />',sort @participants);
1.21      raeburn   182:     my $refresh_cmd = "/adm/chatfetch?lastid=$lastid";
                    183:     if (defined($group)) {
1.26      albertel  184:         $refresh_cmd .= "&amp;group=$group";
1.21      raeburn   185:     }
1.32      raeburn   186:     my $headarg;
1.35      kalberla  187:     my ($blocked,$blocktext) = blockstatus();
1.32      raeburn   188:     if ($blocked) {
                    189:         $newstuff = $blocktext;
                    190:         $headarg =  {'only_body' => 1,};
1.35      kalberla  191: 
                    192: 	$r->print(<<ENDSCRIPT);
                    193:           <script type="text/javascript">
                    194:             parent.location.href="/adm/blockingstatus/?activity=chat"
                    195:           </script>
                    196: ENDSCRIPT
1.32      raeburn   197:     } else {
                    198:         $headarg = {'redirect'  => [5,$refresh_cmd,1],
                    199:                                     'only_body' => 1,};
                    200:     }
1.33      hauer     201:     my $start_page = &Apache::loncommon::start_page('Chat Room',undef,$headarg); 
1.19      albertel  202:     my $end_page = &Apache::loncommon::end_page();
1.1       www       203:     $r->print(<<ENDDOCUMENT);
1.19      albertel  204: $start_page
                    205: <script type="text/javascript">
1.32      raeburn   206: parent.chatout.document.writeln('$header$newstuff');
1.3       www       207: parent.chatout.scroll(0,10000000);
1.1       www       208: </script>
1.21      raeburn   209: $grouptitle
1.9       www       210: $participant_output
1.19      albertel  211: $end_page
1.1       www       212: ENDDOCUMENT
                    213:     return OK;
1.21      raeburn   214: }
                    215: 
1.22      albertel  216: sub get_seeid_status {
1.21      raeburn   217:     my $crs='/'.$env{'request.course.id'};
                    218:     my $seeid;
                    219:     if (exists($env{'form.group'})) {
                    220:         $seeid = &Apache::lonnet::allowed('rci',$crs.'/'.$env{'form.group'});
                    221:     } else {
                    222:         if ($env{'request.course.sec'}) {
                    223:             $crs.='_'.$env{'request.course.sec'};
                    224:         }
                    225:         $crs=~s/\_/\//g;
                    226:         $seeid=&Apache::lonnet::allowed('rin',$crs);
                    227:     }
                    228:     return $seeid;
                    229: }
1.1       www       230: 
1.32      raeburn   231: sub blockstatus {
                    232:     my ($blocked,$output);
                    233:     my %setters;
                    234:     my ($startblock,$endblock) = &Apache::loncommon::blockcheck(\%setters,'chat');
                    235:     if ($startblock && $endblock) {
                    236:         $blocked = 1;
                    237:         my $endblocktime = &Apache::lonlocal::locallocaltime($endblock);
1.34      bisitz    238:         $output .= &mt('Chat Room will be unavailable to you until [_1] because communication is blocked in one or more of your courses:',$endblocktime).'<br /><br />';
1.32      raeburn   239:         foreach my $course (keys(%setters)) {
                    240:             my %courseinfo=&Apache::lonnet::coursedescription($course);
                    241:             for (my $i=0; $i<@{$setters{$course}{staff}}; $i++) {
                    242:                 my ($uname,$udom) = @{$setters{$course}{staff}[$i]};
                    243:                 my $fullname = &Apache::loncommon::plainname($uname,$udom);
                    244:                 my ($openblock,$closeblock) = @{$setters{$course}{times}[$i]};
                    245:                 $openblock = &Apache::lonlocal::locallocaltime($openblock);
                    246:                 $closeblock= &Apache::lonlocal::locallocaltime($closeblock);
                    247:                 $output .= &mt('Block for [_1] starts: [_2], ends [_3], set by: [_4]<br />',$courseinfo{'description'},$openblock,$closeblock,$fullname);
                    248:             }
                    249:         }
                    250:     }
                    251:     return ($blocked,$output);
                    252: }
                    253: 
1.1       www       254: 1;
                    255: __END__

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