Annotation of loncom/cgi/userstatus.pl, revision 1.21

1.1       www         1: #!/usr/bin/perl
                      2: $|=1;
                      3: # User Status
1.21    ! raeburn     4: # $Id: userstatus.pl,v 1.20 2010/03/23 12:01:49 bisitz Exp $
1.7       albertel    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: 
1.17      raeburn    29: use strict;
1.1       www        30: 
                     31: use lib '/home/httpd/lib/perl/';
1.17      raeburn    32: use Apache::lonlocal;
1.1       www        33: use LONCAPA::Configuration;
1.17      raeburn    34: use LONCAPA::loncgi;
1.18      raeburn    35: use LONCAPA::lonauthcgi;
1.1       www        36: use HTTP::Headers;
1.15      albertel   37: use GDBM_File;
1.1       www        38: 
1.17      raeburn    39: # -------------------- Read loncapa.conf (and by default, loncapa_apache.conf).
                     40: my $perlvar=&LONCAPA::Configuration::read_conf('loncapa.conf');
1.5       albertel   41: 
1.17      raeburn    42: print "Content-type: text/html\n\n";
1.5       albertel   43: my %usercount;
                     44: my @actl=('Active','Moderately Active','Inactive');
                     45: 
1.17      raeburn    46: &main($perlvar);
1.5       albertel   47: 
                     48: sub analyze_time {
                     49:     my ($since)=@_;
                     50:     my $color="#000000";
                     51:     my $userclass=$actl[0];
1.14      albertel   52:     if ($since>300) { $color="#222222"; $userclass=$actl[1]; }
1.5       albertel   53:     if ($since>600) { $color="#444444"; }
1.14      albertel   54:     if ($since>1800) { $color="#666666"; }
1.5       albertel   55:     if ($since>7200) { $color="#888888"; }
                     56:     if ($since>21600) { $color="#AAAAAA"; $userclass=$actl[2]; }
                     57:     return ($color,$userclass);
                     58: }
                     59: 
                     60: sub add_count {
                     61:     my ($cat,$scope,$class)=@_;
                     62:     if (!defined($usercount{$cat})) {
                     63: 	$usercount{$cat}={};
                     64:     }
                     65:     if (!defined($usercount{$cat}{$scope})) {
                     66: 	$usercount{$cat}{$scope}={};
1.1       www        67:     }
1.5       albertel   68:     $usercount{$cat}{$scope}{$class}++;
1.1       www        69: }
1.5       albertel   70: 
                     71: sub main {
1.17      raeburn    72:     my ($perlvar) = @_;
1.5       albertel   73:     delete $$perlvar{'lonReceipt'}; # remove since sensitive and not needed
                     74:     delete $$perlvar{'lonSqlAccess'}; # remove since sensitive and not needed
                     75: 
1.19      raeburn    76:     if (!&LONCAPA::lonauthcgi::check_ipbased_access('userstatus')) {
1.17      raeburn    77:         if (!&LONCAPA::loncgi::check_cookie_and_load_env()) {
                     78:             &Apache::lonlocal::get_language_handle();
                     79:             print &LONCAPA::loncgi::missing_cookie_msg();
                     80:             return;
                     81:         }
                     82: 
1.18      raeburn    83:         if (!&LONCAPA::lonauthcgi::can_view('userstatus')) {
1.17      raeburn    84:             &Apache::lonlocal::get_language_handle();
1.18      raeburn    85:             print &LONCAPA::lonauthcgi::unauthorized_msg('userstatus');
1.17      raeburn    86:             return;
                     87:         }
                     88:     }
                     89: 
                     90:     &Apache::lonlocal::get_language_handle();
                     91:     my (%gets,$dom,$oneline,$justsummary);
                     92:     &LONCAPA::loncgi::cgi_getitems($ENV{'QUERY_STRING'},\%gets);
                     93:     if (defined($gets{'simple'})) { 
                     94:         $oneline = 'simple'; 
                     95:     } 
                     96:     if (defined($gets{'summary'})) { 
                     97:         $justsummary = 'summary'; 
                     98:     }
                     99:  
                    100:     my %lt = &Apache::lonlocal::texthash(
                    101:                   usrs                => 'User Status',
                    102:                   login               => 'Login time',
                    103:                   on                  => 'on',
                    104:                   Client              => 'Client',
                    105:                   role                => 'Role',
                    106:                   notc                => 'Not in a course',
                    107:                   ltra                => 'Last Transaction',
                    108:                   lacc                => 'Last Access',
                    109:                   secs                => 'secs ago',
                    110:                   usrc                => 'User Counts',
                    111:                   load                => 'Load Average',
                    112:                   Overall             => 'Overall',
                    113:                   Domain              => 'Domain',
                    114:                   Course              => 'Course',
                    115:                   Browser             => 'Browser',
                    116:                   OS                  => 'OS',
                    117:                   Active              => 'Active',
                    118:                   'Moderately Active' => 'Moderately Active',
                    119:                   Inactive            => 'Inactive',
                    120:             );
                    121:     
                    122:     unless ($oneline) {
                    123:         my $now = time();
1.20      bisitz    124:         print '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n".
                    125:               '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">'."\n"."\n".
                    126:               '<head>'."\n".
                    127:               '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'."\n".
                    128:               '<title>LON-CAPA '.$lt{'usrs'}.'</title>'."\n".
                    129:               '</head>'."\n".
                    130:               '<body style="background-color:#FFFFFF">'."\n".
1.17      raeburn   131:               "<h1>$lt{'usrs'} ".&Apache::lonlocal::locallocaltime($now).'</h1>';
                    132:     }
1.5       albertel  133: 
                    134:     opendir(DIR,$$perlvar{'lonIDsDir'});
                    135:     my @allfiles=(sort(readdir(DIR)));
1.14      albertel  136:     my %users;
1.5       albertel  137:     foreach my $filename (@allfiles) {
                    138: 	if ($filename=~/^\./) { next; }
1.12      albertel  139: 	if ($filename=~/^publicuser_/) { next; }
1.21    ! raeburn   140:         if ($filename=~/^[a-f0-9]+_(linked|lti_\d+)\.id$/) { next; }
1.5       albertel  141: 	my ($dev,$ino,$mode,$nlink,
                    142: 	    $uid,$gid,$rdev,$size,
                    143: 	    $atime,$mtime,$ctime,
                    144: 	    $blksize,$blocks)=stat($$perlvar{'lonIDsDir'}.'/'.$filename);
                    145: 	my $now=time;
                    146: 	my $since=$now-$mtime;
                    147: 	my $sinceacc=$now-$atime;
1.14      albertel  148: 	#unless ($oneline || $justsummary) { print ("\n\n<hr />"); }
1.5       albertel  149: 	my %userinfo;
1.11      albertel  150: 	($userinfo{'user.name'},undef,$userinfo{'user.domain'})=
                    151: 	    split('_',$filename);
1.5       albertel  152: 	my ($color,$userclass)=&analyze_time($since);
                    153: 	&add_count('Overall','all',$userclass);
                    154: 	&add_count('Domain',$userinfo{'user.domain'},$userclass);
                    155: 	
                    156: 	unless ($oneline) {
1.15      albertel  157: 	    if (!tie(%userinfo,'GDBM_File',
                    158: 		     $$perlvar{'lonIDsDir'}.'/'.$filename,
                    159: 		     &GDBM_READER(),0640)) {
                    160: 		next;
1.11      albertel  161: 	    }
1.5       albertel  162: 	    if (!$justsummary) {
1.14      albertel  163: 		$users{$userclass}{$filename} .=
1.20      bisitz    164: 		    '<div style="color:'.$color.'">'.
1.14      albertel  165: 		    '<h3>'.$userinfo{'environment.lastname'}.', '.
1.5       albertel  166: 		    $userinfo{'environment.firstname'}.' '.
                    167: 		    $userinfo{'environment.middlename'}.' '.
                    168: 		    $userinfo{'environment.generation'}." (".
1.20      bisitz    169: 		    $userinfo{'user.name'}.":".$userinfo{'user.domain'}.
1.16      albertel  170: 		    ")</h3>\n".
                    171: 		    "<p><tt>$filename</tt></p>".
1.17      raeburn   172: 		    "<b>$lt{'login'}:</b> ".
                    173: 		    &Apache::lonlocal::locallocaltime($userinfo{'user.login.time'}).
                    174: 		    " <b>$lt{'Browser'}</b>: ".$userinfo{'browser.type'}.
1.20      bisitz    175: 		    " $lt{'on'} ".$userinfo{'browser.os'}." <b>$lt{'Client'}:</b>".
1.17      raeburn   176: 		    $userinfo{'request.host'}."<br />\n<b>$lt{'role'}: </b>".
1.5       albertel  177: 		    $userinfo{'request.role'}." ";
                    178: 	    }
                    179: 	    &add_count('Browser',$userinfo{'browser.type'},$userinfo{'browser.version'});
1.10      albertel  180: 	    &add_count('OS',$userinfo{'browser.os'},$userinfo{'browser.type'});
1.5       albertel  181: 	    if ($userinfo{'request.course.id'}) {
                    182: 		my $cid=$userinfo{'request.course.id'};
                    183: 		my $coursename= $userinfo{'course.'.$cid.'.description'}.
                    184: 		    ' ('.$cid.')';
1.14      albertel  185: 		if (!$justsummary) { 
                    186: 		    $users{$userclass}{$filename} .= 
1.17      raeburn   187: 			"<b>$lt{'Course'}:</b> ".$coursename; 
1.14      albertel  188: 		}
1.5       albertel  189: 		&add_count('Course',$coursename,$userclass);
                    190: 	    } else {
1.14      albertel  191: 		if (!$justsummary) {
1.17      raeburn   192: 		    $users{$userclass}{$filename} .= $lt{'notc'}; 
1.14      albertel  193: 		}
1.5       albertel  194: 		&add_count('Course','No Course',$userclass);
                    195: 	    }
                    196: 	    if (!$justsummary) {
1.14      albertel  197: 		$users{$userclass}{$filename} .=
1.17      raeburn   198: 		    "<br /><b>$lt{'ltra'}:</b> ".&Apache::lonlocal::locallocaltime($mtime).
                    199: 		    " (".$since." $lt{'secs'}) <br /><b>$lt{'lacc'}:</b> ".
                    200: 		    &Apache::lonlocal::locallocaltime($atime)." (".$sinceacc." $lt{'secs'})".
1.20      bisitz    201: 		    "</div>";
1.14      albertel  202: 	    }
                    203: 	}
1.15      albertel  204: 	untie(%userinfo);
1.14      albertel  205:     }
                    206:     if (!$oneline && !$justsummary) {
                    207:        	foreach my $class (@actl) {
1.17      raeburn   208: 	    print("\n\n<hr /><h1>$lt{$class}</h1>");    
1.14      albertel  209: 	    foreach my $filename (sort(keys(%{$users{$class}}))) {
                    210: 		print("\n\n".$users{$class}{$filename}."\n\n<hr />");    
1.5       albertel  211: 	    }
                    212: 	}
                    213:     }
1.14      albertel  214: 
1.5       albertel  215:     closedir(DIR);
                    216:     open (LOADAVGH,"/proc/loadavg");
                    217:     my $loadavg=<LOADAVGH>;
                    218:     close(LOADAVGH);
                    219:     unless ($oneline) { 
1.17      raeburn   220: 	print "<hr /><h2>$lt{'usrc'}</h2>";
1.5       albertel  221: #	print "<pre>\n";
1.17      raeburn   222: 	&showact('Overall',\%lt,%usercount);
                    223: 	&showact('Domain',\%lt,%usercount);
                    224: 	&showact('Course',\%lt,%usercount);
                    225: 	&show('Browser',\%lt,%usercount);
                    226: 	&show('OS',\%lt,%usercount);
1.5       albertel  227: 
                    228: #	print "\n</pre>";
1.20      bisitz    229: 	print "<b>$lt{'load'}:</b> ".$loadavg;
1.5       albertel  230: 	print "</body></html>";
                    231:     } else {
1.6       albertel  232: 	foreach my $l1 (sort keys %usercount) {
                    233: 	    foreach my $l2 (sort keys %{$usercount{$l1}}) {
                    234: 		foreach my $l3 (sort keys %{$usercount{$l1}{$l2}}) {
                    235: 		    print $l1.'_'.$l2.'_'.$l3.'='.$usercount{$l1}{$l2}{$l3}.'&';
                    236: 		}
                    237: 	    }
                    238: 	}
                    239: 	#clusterstatus values
                    240: 	foreach my $act (@actl) {
                    241: 	    print "$act=".$usercount{'Overall'}{'all'}{$act}.'&';
1.5       albertel  242: 	}
                    243: 	print 'loadavg='.$loadavg;
                    244:     }
1.1       www       245: }
1.5       albertel  246: 
                    247: sub show {
1.17      raeburn   248:     my ($cat,$ltref,%usercount)=@_;
                    249:     print("<h3>$ltref->{$cat}</h3>\n");
1.5       albertel  250:     foreach my $type (sort(keys(%{$usercount{$cat}}))) {
                    251: 	print("<table border='1'><tr><th>$type</th><th>");
                    252: 	print(join("</th><th>",sort(keys(%{$usercount{$cat}{$type}}))));
                    253: 	my $temp;
                    254: 	my $count=0;
                    255: 	foreach my $version (sort(keys(%{$usercount{$cat}{$type}}))) {
                    256: 	    $temp.="<td>".$usercount{$cat}{$type}{$version}.
                    257: 		"</td>";
                    258: 	    $count+=$usercount{$cat}{$type}{$version};
                    259: 	}
                    260: 	print("</th></tr><tr><td>$count</td>");
                    261: 	print($temp."</tr></table>\n");
                    262:     }    
1.3       www       263: }
1.5       albertel  264: 
                    265: sub showact {
1.17      raeburn   266:     my ($cat,$ltref,%usercount)=@_;
                    267:     print("<h3>$ltref->{$cat}</h3>\n");
1.5       albertel  268:     
1.20      bisitz    269:     print("<table border='1'><tr><th>&nbsp;</th><th>");
1.5       albertel  270:     print(join("</th><th>",('Any',@actl)));
                    271:     print("</th></tr>");
                    272:     foreach my $type (sort(keys(%{$usercount{$cat}}))) {
                    273: 	print("<tr><td>$type</td>");
                    274: 	my $temp;
                    275: 	my $count=0;
                    276: 	foreach my $activity (@actl) {
                    277: 	    $temp.="<td>&nbsp;".$usercount{$cat}{$type}{$activity}."</td>";
                    278: 	    $count+=$usercount{$cat}{$type}{$activity};
                    279: 	}
                    280: 	print("<td>$count</td>");
                    281: 	print($temp);
1.20      bisitz    282: 	print('</tr>');
1.5       albertel  283:     }    
1.20      bisitz    284:     print("</table>\n");
1.3       www       285: }
1.5       albertel  286: 

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