File:  [LON-CAPA] / loncom / automation / Autocreate.pl
Revision 1.13: download - view: text, annotated - select for diffs
Tue Mar 30 15:24:52 2010 UTC (14 years, 3 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_9_0, version_2_8_99_1, PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD
&process_official_reqs() moved to interface/loncoursequeueadmin.pm to facilitate reuse.

    1: #!/usr/bin/perl
    2: #
    3: # Automated Course Creation script
    4: #
    5: # $Id: Autocreate.pl,v 1.13 2010/03/30 15:24:52 raeburn Exp $
    6: #
    7: # Copyright Michigan State University Board of Trustees
    8: #
    9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   10: #
   11: # LON-CAPA is free software; you can redistribute it and/or modify
   12: # it under the terms of the GNU General Public License as published by
   13: # the Free Software Foundation; either version 2 of the License, or
   14: # (at your option) any later version.
   15: #
   16: # LON-CAPA is distributed in the hope that it will be useful,
   17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   19: # GNU General Public License for more details.
   20: #
   21: # You should have received a copy of the GNU General Public License
   22: # along with LON-CAPA; if not, write to the Free Software
   23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   24: #
   25: # /home/httpd/html/adm/gpl.txt
   26: #
   27: # http://www.lon-capa.org/
   28: #
   29: # Run as www. Called from an entry in /etc/cron.d/loncapa
   30: # either with command line args:
   31: #
   32: # www /home/httpd/perl/Autocreate.pl $dom $uname:$udom
   33: #
   34: # where $dom is the name of the course domain, $uname and $udom are the
   35: # username and domain of a Domain Coordinator in the domain.
   36: #
   37: # or without args (default) controlled by domain configuration settings:
   38: #
   39: # www /home/httpd/perl/Autocreate.pl  
   40: #
   41:     use strict;
   42:     use lib '/home/httpd/lib/perl';
   43:     use Apache::lonnet;
   44:     use Apache::lonlocal;
   45:     use Apache::loncoursequeueadmin;
   46:     use LONCAPA::batchcreatecourse;
   47:     use LONCAPA::Configuration;
   48:     use LONCAPA();
   49: 
   50:     my $perlvarref = &LONCAPA::Configuration::read_conf('loncapa.conf');
   51:     my $logfile = $$perlvarref{'lonDaemons'}.'/logs/autocreate.log';
   52:     my @machinedoms = sort(&Apache::lonnet::current_machine_domains());
   53:     my @ids=&Apache::lonnet::current_machine_ids();
   54:     my (@libids,@domains);
   55:     foreach my $id (@ids) {
   56:         if (&Apache::lonnet::is_library($id)) {
   57:             push(@libids,$id);
   58:         }
   59:     }
   60:     exit if (!@libids); 
   61:     foreach my $dom (@machinedoms) {
   62:         my $primary = &Apache::lonnet::domain($dom,'primary');
   63:         if (grep(/^\Q$primary\E$/,@libids)) {
   64:             unless (grep(/^\Q$dom\E$/,@domains)) {
   65:                 push(@domains,$dom);
   66:             }
   67:         }
   68:     }
   69:     exit if (!@domains);
   70:     open (my $fh,">>$logfile");
   71:     print $fh "********************\n".localtime(time)." Autocreation messages start --\n";
   72:     my $wwwid=getpwnam('www');
   73:     if ($wwwid!=$<) {
   74:         my $emailto=$$perlvarref{'lonAdmEMail'};
   75:         my $subj="LON: $$perlvarref{'lonHostID'} User ID mismatch";
   76:         my $requestmail = "To: $emailto\n";
   77:         $requestmail .=
   78:         "Subject: LON: $$perlvarref{'lonHostID'} User ID mismatch\n".
   79:         "User ID mismatch. Autocreate.pl must be run as user www\n";
   80:         if ($emailto =~ /^[^\@]+\@[^\@]+$/) {
   81:             if (open(MAIL, "|/usr/lib/sendmail -oi -t -odb")) {
   82:                 print MAIL $requestmail;
   83:                 close(MAIL);
   84:                 print $fh "Autocreate.pl must be run as user www\n\n";
   85:             } else {
   86:                 print $fh "Could not send notification e-mail to $emailto\n\n";
   87:             }
   88:         } else {
   89:             print $fh "Notification e-mail address for Administrator is not a valid e-mail address\n\n";
   90:         }
   91:         close($fh);
   92:         exit;
   93:     }
   94:     if (@ARGV) {
   95: # check if specified course domain is a domain hosted on this library server.
   96:         if (!grep(/^\Q$ARGV[0]\E$/,@domains)) {
   97:             print $fh "The domain you supplied is not a valid domain for this server\n";
   98:             close($fh);
   99:             exit;
  100:         } elsif (@ARGV < 2) {
  101:             print $fh "usage: ./Autocreate <coursedomain  username:domain>.\nPlease provide the username and domain of a Domain Coordinator, if you provide a coursedomain.\nThe script can also be called without any arguments, in which case domain configuration data for domains hosted on this server will be used.\n";
  102:             close($fh);
  103:             exit;
  104:         } else {
  105:             my $defdom = $ARGV[0];
  106:             my ($dcname,$dcdom) = ($ARGV[1] =~ /^([^:]+):([^:]+)$/);
  107: # check if user is an active domain coordinator.
  108:             if (!&check_activedc($dcdom,$dcname,$defdom)) {
  109:                 print $fh "The username you supplied for domain $defdom does not have an active domain coordinator role in the domain\n\n";
  110:                 close($fh);
  111:                 exit;
  112:             }
  113:             my $output = &process_xml($fh,$defdom,$dcname,$dcdom);
  114:             print $output;
  115:         }
  116:     } else {
  117:         my @permissions = ('mau','ccc','cin','cta','cep','ccr','cst');
  118:         my %permissionflags = ();
  119:         &set_permissions(\%permissionflags,\@permissions);
  120:         foreach my $dom (@domains) {
  121:             my %domconfig = &Apache::lonnet::get_dom('configuration',
  122:                                                      ['autocreate'],$dom);
  123:             #only run if configured to
  124:             my $xml_update = 0;
  125:             my $settings;
  126:             if (ref($domconfig{'autocreate'}) eq 'HASH') {
  127:                 $settings = $domconfig{'autocreate'};
  128:                 if ($settings->{'xml'}) {
  129:                     if ($settings->{'xmldc'}) {
  130:                         my ($dcname,$dcdom) = split(':',$settings->{'xmldc'});
  131:                         $env{'user.name'} = $dcname;
  132:                         $env{'user.domain'} = $dcdom;
  133:                         $env{'request.role.domain'} = $dom;
  134:                         if (!&check_activedc($dcdom,$dcname,$dom)) {
  135:                             print $fh "Autocreate.pl in domain $dom configured to run under the auspices of a user without an active domain coordinator role in the domain - course creation will be skipped.\n\n";
  136:                             next;
  137:                         } else {
  138:                             &process_xml($fh,$dom,$dcname,$dcdom);
  139:                         }
  140:                     } else {
  141:                         print $fh "Autocreate.pl in domain $dom - no specified DC under whose identity course creation will occur - domain skipped.\n\n";
  142:                     }
  143:                 }
  144:                 if ($settings->{'req'}) {
  145:                     my $output = &Apache::process_official_reqs('auto',$dom);
  146:                     if ($output) {
  147:                         print $fh $output;
  148:                     }
  149:                 }
  150:             }
  151:         }
  152:         &unset_permissions(\%permissionflags);
  153:     }
  154:     print $fh "-- ".localtime(time)." Autocreation messages end\n*******************\n\n";
  155:     close($fh);
  156: 
  157: 
  158: sub process_xml {
  159:     my ($fh,$dom,$dcname,$dcdom) = @_;
  160:     $env{'user.name'} = $dcname;
  161:     $env{'user.domain'} = $dcdom;
  162:     $env{'request.role.domain'} = $dom;
  163: 
  164:     # Initialize language handler
  165:     &Apache::lonlocal::get_language_handle();
  166: 
  167:     my $batchdir = $$perlvarref{'lonDaemons'}.'/tmp/addcourse/'.$dom.'/auto';
  168:     opendir(DIR,"$batchdir/pending");
  169:     my @requests = grep(!/^\.\.?$/,readdir(DIR));
  170:     closedir(DIR);
  171:     my %courseids = ();
  172:     print $fh "Sending to batch - auto,$dom,$dcname,$dcdom ".join(":",@requests)."\n";
  173:     my ($result,$logmsg) = &LONCAPA::batchcreatecourse::create_courses(\@requests,\%courseids,'auto',$dom,$dcname,$dcdom);
  174:     my $outcome;
  175:     if ($result ne '') {
  176:         $outcome = $result."\n";
  177:     }
  178:     if ($logmsg ne '') {
  179:         $outcome .= $logmsg."\n";    
  180:     }
  181:     print $fh $outcome;
  182: 
  183:     my $output;
  184: # Copy requests from pending directory to processed directory and unlink.
  185:     foreach my $request (@requests) {  
  186:         if ((-e "$batchdir/pending/$request") && $request !~ /\.\./ && $request ne '' &&$request ne './') {
  187:             open(FILE,"<$batchdir/pending/$request");
  188:             my @buffer = <FILE>;
  189:             close(FILE);
  190:             if (!-e "$batchdir/processed") {
  191:                 mkdir("$batchdir/processed", 0755);
  192:             }
  193:             open(FILE,">$batchdir/processed/$request");
  194:             print FILE @buffer;
  195:             close(FILE);
  196:             if (-e "$batchdir/processed/$request") {
  197:                 unlink("$batchdir/pending/$request");
  198:             }
  199:         }
  200:     }
  201:     foreach my $key (sort(keys(%courseids))) {
  202:         print $fh "created course: $key - $courseids{$key}\n";
  203:         my $newcourse = &LONCAPA::escape($key.':'.$courseids{$key});
  204:         $output .= $newcourse.':';
  205:     }
  206:     $output =~ s/:$//;
  207:     delete($env{'user.name'});
  208:     delete($env{'user.domain'});
  209:     delete($env{'request.role.domain'});
  210:     return $output;
  211: }
  212: 
  213: sub check_activedc {
  214:     my ($dcdom,$dcname,$defdom) = @_;
  215:     my %dumphash=
  216:             &Apache::lonnet::dump('roles',$dcdom,$dcname);
  217:     my $now=time;
  218:     my $activedc = 0;
  219:     foreach my $item (keys %dumphash) {
  220:         my ($domain,$role) = ($item =~ m-^/([^/]+)/[^_]*_(\w+)$-);
  221:         if ($role eq 'dc' && $domain eq $defdom) {
  222:             my ($trole,$tend,$tstart)=split(/_/,$dumphash{$item});
  223:             if (($tend) && ($tend<$now)) { next; }
  224:             if (($tstart) && ($now<$tstart)) { next; }
  225:             $activedc = 1;
  226:             last;
  227:         }
  228:     }
  229:     return $activedc;
  230: }
  231: 
  232: sub set_permissions {
  233:     my ($permissionflags,$permissions) = @_;
  234:     foreach my $allowtype (@{$permissions}) {
  235:         unless($env{"allowed.$allowtype"}) {
  236:             $env{"allowed.$allowtype"} = 'F';
  237:             $permissionflags->{$allowtype} = 1;
  238:         }
  239:     }
  240: }
  241: 
  242: sub unset_permissions {
  243:     my ($permissionflags) = @_;
  244:     foreach my $allowtype (keys(%{$permissionflags})) {
  245:         delete($env{"allowed.$allowtype"});
  246:     }
  247: }

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