Diff for /loncom/interface/lonchatfetch.pm between versions 1.1 and 1.28

version 1.1, 2002/08/08 13:44:17 version 1.28, 2006/06/28 23:56:09
Line 29 Line 29
 package Apache::lonchatfetch;  package Apache::lonchatfetch;
   
 use strict;  use strict;
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common :http);
 use Apache::lontexconvert;  use Apache::lontexconvert;
   use Apache::loncommon;
   use Apache::lonnet;
   use Apache::longroup;
   use lib '/home/httpd/lib/perl/';
   use LONCAPA;
    
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     $r->content_type('text/html');  
       &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'}))) {
               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 = 
    '<b>'.&unescape($group_info{description}).
    '</b><br />';
           }
       } elsif (! &Apache::lonnet::allowed('pch',$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; }
   
       &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;
   
 # ------------------------------------------------------------ retrieve entries  # ------------------------------------------------------------ retrieve entries
   
     my $cnum=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};      my $chome=$env{'course.'.$env{'request.course.id'}.'.home'};
     my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};  
     my $chome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};  
     my @entries=split(/\:/,      my @entries=split(/\:/,
                        &Apache::lonnet::reply("chatretr:$cdom:$cnum",$chome));         &Apache::lonnet::reply(
     my ($lastid)=($entries[$#entries]=~/^(\w+)/);          "chatretr:$cdom:$cnum:$env{'user.domain'}:$env{'user.name'}:$group",
     my ($thentime,$idnum)=split(/\_/,$lastid);          $chome));
   # Figure out what the last valid entry-id is
       my ($lastid,$thentime,$idnum);
       foreach (@entries) {
    $_=~/^(\w+)/;
           if ($1 ne 'active_participant') {
       $lastid=$1;
               ($thentime,$idnum)=split(/\_/,$lastid);
    }
       }
   # ----------------------------------------------------------- Can see identity?
       my $seeid = &get_seeid_status();
 # -------------------------------------------------------- see which ones apply  # -------------------------------------------------------- see which ones apply
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['lastid']);  
     my $include=0;      my $include=0;
     my $newstuff='';      my $newstuff='';
     unless ($ENV{'form.lastid'}) { $include=1; }      my $bottomid='';
       unless ($env{'form.lastid'}) { 
    $include=1; 
    $newstuff .=
       &Apache::loncommon::start_page(undef,undef,
      {'only_body' => 1,
       'bgcolor'   => '#FFFFFF',
       'js_ready'  => 1,});
    # removing the CSS reference for now
    # see BUG# 4839
           # to fix, need to either write the whole webpage to the bottom frame
           # everytime or store the page in a js variable somewhere.
    # although in tryng both of these ideas, the .scroll to 
    # the bottom seems to fail.
    $newstuff =~ s|(<link.*?/>)||;
       }
       my @participants=();
     foreach (@entries) {      foreach (@entries) {
  if ($include) {   my ($id,$msg,$udom)=split(/\:/,&unescape($_));
             my ($id,$msg)=split(/\:/,&Apache::lonnet::unescape($_));    if ($id eq 'active_participant') {
             chomp($msg);             chomp($udom);
             my ($msgtime,$msgnum)=split(/\_/,$id);     my $participant= &Apache::loncommon::nickname($msg,$udom);
             my ($sdom,$snum,$anon,$contrib)=split(/\:/,     unless ($participant=~/\w/) { $participant=$msg.'@'.$udom; }
                                               &Apache::lonnet::unescape($msg));     $participants[$#participants+1]=$participant;
             $contrib=&Apache::lonnet::unescape($contrib);   } elsif ($include) {
             $contrib=~s/\n/\<br \/\>/g;      chomp($msg);
     $contrib=&Apache::lontexconvert::msgtexconverted($contrib);      my ($msgtime,$msgnum)=split(/\_/,$id);
             $contrib=~s/\n/ /g;      my ($sdom,$snum,$anon,$contrib)=split(/\:/,
             $contrib=~s/\'/\&\#39\;/g;       &unescape($msg));
             my $sender=$snum.' at '.$sdom;      $contrib=&unescape($contrib);
             if ($anon) {      &Apache::lonfeedback::newline_to_br(\$contrib);
             }      ($contrib,my $errors)=&Apache::lontexconvert::msgtexconverted($contrib);
     $newstuff.='<b>'.$sender.'</b> ('.localtime($msgtime).'): '.      if ($errors) { $contrib.="[Message not fully displayed due to incorrect embedded TeX]"; }
                        $contrib."<br>";      if ($errors && $snum eq $env{'user.name'} &&
         } else {   $sdom eq $env{'user.domain'} ) {
             $_=~/^(\w+)/;   $contrib.="<br />[TeX error message: $errors]";
             if ($1 eq $ENV{'form.lastid'}) { $include=1; }      }
         }      $contrib=~s/\n/ /g;
       $contrib=~s/\'/\&\#39\;/g;
       my $sender='';
       if ($seeid) {
    $sender=&Apache::loncommon::plainname($snum,$sdom);
    my $nick=&Apache::loncommon::nickname($snum,$sdom);
    if (($nick) && ($nick ne $sender)) {
       $sender.=' '.$nick;
    }
    unless ($sender) { $sender=$snum.'@'.$sdom; }
    if ($anon) { $sender.=' [Anon]' };
       } elsif (!$anon) {
    $sender=&Apache::loncommon::nickname($snum,$sdom);
    unless ($sender) { $sender=$snum.'@'.$sdom; }
       } else {
    $sender=&Apache::loncommon::screenname($snum,$sdom);
    unless ($sender) { $sender="Anonymous"; }
       }
       $sender=~s/\'/\&\#39\;/g;
       my $color=$sender;
       $color=~tr/a-j/0-9/;
       $color=~tr/A-J/0-9/;
       $color=~tr/k-t/0-9/;
       $color=~tr/K-T/0-9/;
       $color=~tr/u-z/0-5/;
       $color=~tr/U-Z/0-5/;
       $color=~s/\D//g;
       $color=substr($color,0,6);
       my $timestamp=localtime($msgtime);
       my ($mhour,$mmin,$msec)=($timestamp=~/(\d\d)\:(\d\d)\:(\d\d)/);
       $newstuff.='<font color="#'.$color.'"><a name="LC_'.$id.'"></a><b>'.
    $sender.'</b> ('.$mhour.':'.$mmin.':'.$msec.'): '.
    $contrib."</font><br />";
       $bottomid='LC_'.$id;
    } else {
       $_=~/^(\w+)/;
       if ($1 eq $env{'form.lastid'}) { $include=1; }
    }
       }
       my $participant_output=join('<br />',sort @participants);
       my $refresh_cmd = "/adm/chatfetch?lastid=$lastid";
       if (defined($group)) {
           $refresh_cmd .= "&amp;group=$group";
     }      }
       my $start_page = 
    &Apache::loncommon::start_page('Chat',undef,
          {'redirect'  => [5,$refresh_cmd],
    'only_body' => 1,});
       my $end_page = &Apache::loncommon::end_page();
     $r->print(<<ENDDOCUMENT);      $r->print(<<ENDDOCUMENT);
 <html>  $start_page
 <head>  <script type="text/javascript">
 <title>The LearningOnline Network with CAPA</title>  
   <meta HTTP-EQUIV="Refresh" CONTENT="5; url=/adm/chatfetch?lastid=$lastid">  
 </head>  
 <body bgcolor="#FFFFFF">  
 <script>  
 parent.chatout.document.writeln('$newstuff');  parent.chatout.document.writeln('$newstuff');
   parent.chatout.scroll(0,10000000);
 </script>  </script>
 </body>  $grouptitle
 </html>  $participant_output
   $end_page
 ENDDOCUMENT  ENDDOCUMENT
     return OK;      return OK;
 }   }
   
   sub get_seeid_status {
       my $crs='/'.$env{'request.course.id'};
       my $seeid;
       if (exists($env{'form.group'})) {
           $seeid = &Apache::lonnet::allowed('rci',$crs.'/'.$env{'form.group'});
       } else {
           if ($env{'request.course.sec'}) {
               $crs.='_'.$env{'request.course.sec'};
           }
           $crs=~s/\_/\//g;
           $seeid=&Apache::lonnet::allowed('rin',$crs);
       }
       return $seeid;
   }
   
 1;  1;
 __END__  __END__

Removed from v.1.1  
changed lines
  Added in v.1.28


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