--- loncom/enrollment/Autoupdate.pl 2007/03/01 19:20:45 1.3 +++ loncom/enrollment/Autoupdate.pl 2023/12/06 23:38:45 1.26 @@ -1,7 +1,7 @@ #!/usr/bin/perl # # Automated Userinfo update script -# $Id: Autoupdate.pl,v 1.3 2007/03/01 19:20:45 raeburn Exp $ +# $Id: Autoupdate.pl,v 1.26 2023/12/06 23:38:45 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -28,11 +28,24 @@ use strict; use lib '/home/httpd/lib/perl'; use localenroll; + use GDBM_File; use Apache::lonnet; use Apache::loncommon; + use Apache::lonlocal; + use Apache::lonuserutils(); + use LONCAPA::Configuration; use LONCAPA; - my @info = ('inststatus','lockedname','lastname','firstname','id'); + my $perlvarref = LONCAPA::Configuration::read_conf('loncapa.conf'); + exit if (ref($perlvarref) ne 'HASH'); + my $logfile = $perlvarref->{'lonDaemons'}.'/logs/autoupdate.log'; + exit if ($perlvarref->{'lonRole'} ne 'library'); + my $hostid = $perlvarref->{'lonHostID'}; + + my @info = ('inststatus','lockedname','internalname','lastname', + 'firstname','middlename','generation','id','permanentemail'); + # Initialize language handler + &Apache::lonlocal::get_language_handle(); # find out which users we need to examine my @domains = sort(&Apache::lonnet::current_machine_domains()); foreach my $dom (@domains) { @@ -41,31 +54,59 @@ #only run if configured to my $run_update = 0; my $settings; + my $allowed_inactivity; + my $check_unexpired; if (ref($domconfig{'autoupdate'}) eq 'HASH') { $settings = $domconfig{'autoupdate'}; if ($settings->{'run'} eq '1') { $run_update = 1; } + if ($settings->{'lastactive'} =~/^\d+$/) { + $allowed_inactivity = 86400 * $settings->{'lastactive'}; + } + if ($settings->{'unexpired'}) { + $check_unexpired = 1; + } } next if (!$run_update); + open(my $fh,">>$logfile"); + print $fh ("********************\n".&Apache::lonlocal::locallocaltime(time).' '.&mt('Autoupdate messages start for domain: [_1]',$dom).' --'."\n"); + # get courseIDs for domain + my %courses=&Apache::lonnet::courseiddump($dom,'.',1,'.','.','.',1,[$hostid],'.'); # get user information - my (%instusers,%instids); - next if (&localenroll::allusers_info($dom,\%instusers,\%instids) ne 'ok'); - my (%users,%unamechg,%possnames); + my (%users,%instusers,%instids,%counts); + my $dir = $Apache::lonnet::perlvar{lonUsersDir}.'/'.$dom; + &descend_tree($dom,$dir,0,\%users,\%courses,$allowed_inactivity,$check_unexpired); + my $resp = &localenroll::allusers_info($dom,\%instusers,\%instids,\%users,\%counts); + if ($resp ne 'ok') { + print $fh &mt('Problem retrieving institutional data for users in domain: [_1].',$dom)."\n". + &mt('Error: [_1].',$resp)."\n". + "-- \n".&Apache::lonlocal::locallocaltime(time).' '. + &mt('Autoupdate messages end')."\n*******************\n\n"; + close($fh); + next; + } else { + if (keys(%counts)) { + foreach my $key (sort(keys(%counts))) { + if ($counts{$key} ne '') { + print $fh "Count for $key = $counts{$key}\n"; + } + } + } + } + my (%unamechg,%possnames); my @types = ('active','future'); my @roles = ('st'); my @cdoms = ($dom); - my $dir = $Apache::lonnet::perlvar{lonUsersDir}.'/'.$dom; - &descend_tree($dir,0,\%users); - foreach my $uname (keys(%users)) { + foreach my $uname (sort(keys(%users))) { my %userhash = &Apache::lonnet::userenvironment($dom,$uname,@info); my (@inststatuses); if (!$userhash{'internalname'}) { if (defined($instusers{$uname})) { - (my $insttypechg,@inststatuses) = + (my $insttypechg,@inststatuses) = &affiliations_check(\%userhash,$instusers{$uname}); if ($insttypechg) { - my $inststatusstr = join(':',&escape(@inststatuses)); + my $inststatusstr = join(':',map { &escape($_) } (@inststatuses)); my %statushash = ( inststatus => $inststatusstr ); my $statusres = &Apache::lonnet::put('environment',\%statushash,$dom,$uname); } @@ -82,47 +123,60 @@ push(@fields,$field); } } - } + } } } else { if (ref($settings->{fields}{'default'}) eq 'ARRAY') { @fields = @{$settings->{fields}{'default'}}; } } - foreach my $field (@fields) { + foreach my $field (@fields) { if ($userhash{$field} ne $instusers{$uname}{$field}) { $changed = 1; - if ($settings->{'classlists'} eq 'yes') { + if ($settings->{'classlists'} == 1) { if ($field eq 'id') { $changes{'id'} = 1; - } elsif ($field eq 'lastname' || $field eq 'firstname' || $field eq 'middlename' || $field eq 'gen') { + } elsif ($field eq 'lastname' || $field eq 'firstname' || $field eq 'middlename' || $field eq 'generation') { $changes{'fullname'} = 1; } } - } + } } # Make the change if ($changed) { my %userupdate; + foreach my $item ('lastname','firstname','middlename','generation','id', + 'permanentemail') { + $userupdate{$item} = $userhash{$item}; + } foreach my $field (@fields) { $userupdate{$field} = $instusers{$uname}{$field}; } - my $modresult = &Apache::lonnet::modifyuser($dom,$uname,$userupdate{'id'},undef,undef,$userupdate{'firstname'},$userupdate{'middlename'},$userupdate{'lastname'},$userupdate{'generation'},1); + my $modresult = &Apache::lonnet::modifyuser($dom,$uname,$userupdate{'id'},undef,undef,$userupdate{'firstname'},$userupdate{'middlename'},$userupdate{'lastname'},$userupdate{'generation'},1,$hostid,$userupdate{'permanentemail'},undef,\@fields); if ($modresult eq 'ok') { - if ($settings->{'classlists'} eq 'yes') { + print $fh "User change: $uname:$dom; New values: 1.Name: $userupdate{'firstname'} $userupdate{'middlename'} $userupdate{'lastname'} $userupdate{'generation'}; 2. StuID: $userupdate{'id'}; 3. Email: $userupdate{'permanentemail'}.\n"; + if ($settings->{'classlists'} == 1) { if ($changes{'id'} || $changes{'fullname'}) { - my %roleshash = + my %roleshash = &Apache::lonnet::get_my_roles($uname, - $dom,\@types,\@roles,\@cdoms); - foreach my $item (%roleshash) { + $dom,'userroles',\@types,\@roles,\@cdoms); + foreach my $item (keys(%roleshash)) { my ($cnum,$cdom,$role) = split(/:/,$item); my ($start,$end) = split(/:/,$roleshash{$item}); - if (&Apache::loncommon::is_course($cdom,$cnum)) { - my $result = &update_classlist($cdom,$cnum,$dom,$uname,\%userupdate); + if (&Apache::lonnet::is_course($cdom,$cnum)) { + my $result = + &Apache::lonuserutils::update_classlist($cdom,$cnum,$dom,$uname,\%userupdate); + if ($result eq 'ok') { + print $fh "Classlist change: $uname:$dom - class -> $cnum:$cdom\n"; + } else { + print $fh "Error - $result -during classlist update for $uname:$dom in $cnum:$cdom\n"; + } } } } } + } else { + print $fh "User change detected for $uname:$dom. Error during update: $modresult\n"; } } } else { @@ -137,79 +191,99 @@ } else { if (!exists($users{$instids{$userhash{'id'}}})) { $unamechg{$uname} = $instids{$userhash{'id'}}; + print $fh (&mt('Username change to [_1] detected for [_2] in domain [_3].',$unamechg{$uname},$uname,$dom)."\n"); } } } } } } + if (keys(%possnames) > 0) { + foreach my $uname (keys(%possnames)) { + my $altnames = join(' or ',@{$possnames{$uname}}); + print $fh (&mt('Possible username change to [_1] detected for [_2] in domain [_3].',$altnames,$uname,$dom)."\n"); + } + } + print $fh ("-- \n".&Apache::lonlocal::locallocaltime(time).' '.&mt('Autoupdate messages end')."\n*******************\n\n"); + close($fh); } - sub descend_tree { - my ($dir,$depth,$alldomusers) = @_; + my ($dom,$dir,$depth,$alldomusers,$coursesref,$allowed_inactivity,$check_unexpired) = @_; if (-d $dir) { opendir(DIR,$dir); my @contents = grep(!/^\./,readdir(DIR)); closedir(DIR); $depth ++; foreach my $item (@contents) { - if ($depth < 4) { - &descend_tree($dir.'/'.$item,$depth,$alldomusers); - } else { - if (-e $dir.'/'.$item.'/environment.db') { - - $$alldomusers{$item} = ''; + if (($depth < 4) && (length($item) == 1)) { + &descend_tree($dom,$dir.'/'.$item,$depth,$alldomusers,$coursesref, + $allowed_inactivity,$check_unexpired); + } elsif (-e $dir.'/'.$item.'/passwd') { + if (ref($coursesref) eq 'HASH') { + next if (exists($coursesref->{$dom.'_'.$item})); } + if ($allowed_inactivity) { + my $now = time; + my $aclog = $dir.'/'.$item.'/activity.log'; + my $roledb = $dir.'/'.$item.'/roles.db'; + if (-e $aclog) { + my $lastac=(stat($aclog))[9]; + if (($now - $lastac) > $allowed_inactivity) { + if (-e $roledb) { + my $lastrolechg=(stat($roledb))[9]; + next if (($now - $lastrolechg) > $allowed_inactivity); + } else { + next; + } + } + } elsif (-e $roledb) { + my $lastrolechg=(stat($roledb))[9]; + next if (($now - $lastrolechg) > $allowed_inactivity); + } else { + next; + } + } + if ($check_unexpired) { + my $roledb = $dir.'/'.$item.'/roles.db'; + my $unexpired = 0; + my $now = time; + if (-e $roledb) { + my $roleshash = &LONCAPA::tie_user_hash($dom,$item,'roles',&GDBM_READER()) or next; + if (ref($roleshash)) { + while (my ($key,$value) = each(%$roleshash)) { + next if ($key =~ /^rolesdef/); + my ($role,$roleend,$rolestart) = split(/\_/,$value); + next if ($role =~ /^gr\//); + if (!$roleend || $roleend > $now) { + $unexpired = 1; + last; + } + } + &LONCAPA::untie_user_hash($roleshash); + next unless ($unexpired); + } else { + next; + } + } else { + next; + } + } + $$alldomusers{$item} = ''; } } } } -sub update_classlist { - my ($cdom,$cnum,$udom,$uname,$user) = @_; - my ($uid,$fullname,$classlistentry); - my $fullname = - &Apache::lonnet::format_name($user->{'first'},$user->{'middle'}, - $user->{'last'},$user->{'gene'},'lastname'); - my %classhash = &Apache::lonnet::get('classlist',[$uname.':'.$udom], - $cdom,$cnum); - my @classinfo = split(/:/,$classhash{$uname.':'.$udom}); - my $ididx=&Apache::loncoursedata::CL_ID() - 2; - my $nameidx=&Apache::loncoursedata::CL_FULLNAME() - 2; - for (my $i=0; $i<@classinfo; $i++) { - if ($i == $ididx) { - if (defined($user->{'id'})) { - $classlistentry .= $user->{'id'}.':'; - } else { - $classlistentry .= $classinfo[$i].':'; - } - } elsif ($i == $nameidx) { - $classlistentry .= $fullname.':'; - } else { - $classlistentry .= $classinfo[$i].':'; - } - } - $classlistentry =~ s/:$//; - my $reply=&Apache::lonnet::cput('classlist', - {"$uname:$udom" => $classlistentry}, - $cdom,$cnum); - if (($reply eq 'ok') || ($reply eq 'delayed')) { - return 'ok'; - } else { - return 'error: '.$reply; - } -} - sub affiliations_check { my ($userhash,$insthashref) = @_; my (@inststatuses,$insttypechg);; if (ref($insthashref) eq 'HASH') { - if (ref($insthashref->{type}) eq 'ARRAY') { - @inststatuses = @{$insthashref->{type}}; + if (ref($insthashref->{'inststatus'}) eq 'ARRAY') { + @inststatuses = @{$insthashref->{'inststatus'}}; } } - my @currstatuses = &unescape(split(/:/,$userhash->{'inststatus'})); + my @currstatuses = map { &unescape($_); } (split(/:/,$userhash->{'inststatus'})); foreach my $status (@inststatuses) { if (!grep/^\Q$status\E/,@currstatuses) { $insttypechg = 1;