Diff for /loncom/publisher/lonrights.pm between versions 1.3 and 1.5

version 1.3, 2003/03/20 16:17:37 version 1.5, 2003/03/20 20:58:40
Line 47  sub handler { Line 47  sub handler {
      '<html><head><title>LON-CAPA Custom Distribution Rights</title></head>');       '<html><head><title>LON-CAPA Custom Distribution Rights</title></head>');
   
   $r->print(&Apache::loncommon::bodytag('Custom Distribution Rights'));    $r->print(&Apache::loncommon::bodytag('Custom Distribution Rights'));
     $r->rflush();
   
   my $uri=$r->uri;    my $uri=$r->uri;
   my $fn=&Apache::lonnet::filelocation('',$uri);    my $fn=&Apache::lonnet::filelocation('',$uri);
   my $contents='';    my $contents='';
   my $constructmode=($uri=~/^\/\~/);    my $constructmode=($uri=~/^\/\~/);
   
   # ============================================================ Modify and store
     if ($constructmode) {
         if ($ENV{'form.store'}) {
     my @newrules=();
             undef @newrules;
   # read rules from form
             foreach (keys %ENV) {
         if ($_=~/^form\.effect\_(\d+)$/) {
     my $number=$1;
                     my %rulehash=();
                     foreach ('effect','domain','course','section','role') {
         $rulehash{$_}=$ENV{'form.'.$_.'_'.$number};
                     }
                     if ($rulehash{'role'} eq 'au') {
         $rulehash{'course'}='';
                         $rulehash{'section'}='';
                     }
                     if ($rulehash{'role'} eq 'cc') {
                         $rulehash{'section'}='';
                     }
                     unless (($rulehash{'effect'} eq 'deny') ||
             ($rulehash{'effect'} eq 'allow')) {
         $rulehash{'effect'}='deny';
                     }
                     $rulehash{'domain'}=~s/\W//g;
                     $rulehash{'course'}=~s/\W//g;
                     $rulehash{'section'}=~s/\W//g;
                     unless ($rulehash{'domain'}) { 
                        $rulehash{'domain'}=$ENV{'user.domain'}; 
                     }
                     my $realm='';
                     if ($number) {
                        $realm=$rulehash{'domain'};
                        if ($rulehash{'course'}) {
    $realm.='_'.$rulehash{'course'};
                        }
                        if ($rulehash{'section'}) {
    $realm.='_'.$rulehash{'section'};
                        }
    }
     $newrules[$number]=$rulehash{'effect'}.':'.
                        $realm.':'.$rulehash{'role'};
                 }
             }
   # edit actions?
   
   # store file
             my $fh=Apache::File->new('>'.$fn);
             foreach (my $i=0;$i<=$#newrules;$i++) {
                 if ($newrules[$i]) {
            my ($effect,$realm,$role)=split(/\:/,$newrules[$i]);
                    print $fh
          "<accessrule effect='$effect' realm='$realm' role='$role' />\n";
        }
             }
             $fh->close;
         }
     }
   # ============================================================ Read and display
   unless ($constructmode) {     unless ($constructmode) { 
 # =========================================== This is not in construction space  # =========================================== This is not in construction space
       $contents=&Apache::lonnet::getfile($fn);        $contents=&Apache::lonnet::getfile($fn);
Line 65  sub handler { Line 126  sub handler {
       }        }
       $r->print('<form method="post">');        $r->print('<form method="post">');
   }    }
     unless ($contents=~/\<accessrule/s) {
         $contents='<accessrule effect="deny" />';
     }
   my $parser=HTML::LCParser->new(\$contents);    my $parser=HTML::LCParser->new(\$contents);
   my $token;    my $token;
   my $rulecounter=0;    my $rulecounter=0;
     my $colzero=($constructmode?'Edit action':'Rule');
 # ---------------------------------------------------------- Start table output  # ---------------------------------------------------------- Start table output
   $r->print('<table border="2">');    $r->print(<<ENDSTARTTABLE);
   <table border="2">
       <tr><th>$colzero</th><th>Effect</th><th>Domain</th><th>Course</th>
   <th>Section</th><th>Role</th></tr>
   ENDSTARTTABLE
 # --------------------------------------------------------------------- Default  # --------------------------------------------------------------------- Default
 # Fast forward to first rule  # Fast forward to first rule
   $token=$parser->get_token;    $token=$parser->get_token;
Line 84  sub handler { Line 153  sub handler {
   } else {    } else {
       $r->print($token->[2]->{'effect'});        $r->print($token->[2]->{'effect'});
   }    }
   $r->print('</td><td colspan="2">Default');    $r->print('</td><td colspan="4">Default');
   if (($token->[2]->{'realm'}) || ($token->[2]->{'role'})) {    if (($token->[2]->{'realm'}) || ($token->[2]->{'role'})) {
       $r->print(' - <font color="red">Error! No default set.</font>');        $r->print(' - <font color="red">Error! No default set.</font>');
   }    }
Line 94  sub handler { Line 163  sub handler {
       if (($token->[0] eq 'S') && ($token->[1] eq 'accessrule')) {        if (($token->[0] eq 'S') && ($token->[1] eq 'accessrule')) {
           $rulecounter++;            $rulecounter++;
   $r->print('<tr><td>');    $r->print('<tr><td>');
 # inset, delete, etc  # insert, delete, etc
     $r->print($rulecounter.'.&nbsp;');
             if ($constructmode) {
                $r->print(&Apache::loncommon::select_form(
                       '','action_'.$rulecounter,
                       ('' => '', 
                        'delete' => 'Delete this rule',
                        'insertabove' => 'Insert rule above',
                        'insertbelow' => 'Insert rule below',
                        'moveup'      => 'Move rule up',
                        'movedown'    => 'Move rule down')));
     }
           $r->print('</td><td>');            $r->print('</td><td>');
 # effect  # effect
           if ($constructmode) {            if ($constructmode) {
Line 107  sub handler { Line 187  sub handler {
              $r->print($token->[2]->{'effect'});               $r->print($token->[2]->{'effect'});
           }            }
   $r->print('</td><td>');    $r->print('</td><td>');
 # realm  # ---- realm
           my $realm=$token->[2]->{'realm'};            my $realm=$token->[2]->{'realm'};
           $realm=~s/^\W//;            $realm=~s/^\W//;
           my ($rdom,$rcourse,$rsec)=split(/(\/|\_)/,$realm);            my ($rdom,$rcourse,$rsec)=split(/[\/\_]/,$realm);
   # realm role
           if ($constructmode) {            if ($constructmode) {
               $r->print(&Apache::loncommon::select_dom_form($rdom,                $r->print(&Apache::loncommon::select_dom_form($rdom,
                                                       'domain_'.$rulecounter));                                                        'domain_'.$rulecounter));
           } else {            } else {
               $r->print($token->[2]->{'realm'});                $r->print($rdom);
           }            }
           $r->print('</td><td>');            $r->print('</td><td>');
   # realm course
             if ($constructmode) {
                $r->print('<input input type="text" size="25" name="course_'.
                          $rulecounter.'" value="'.$rcourse.'" />');
             } else {
                 $r->print($rcourse);
             }
   
             $r->print('</td><td>');
   # realm section
             if ($constructmode) {
                $r->print('<input input type="text" size="5" name="section_'.
                          $rulecounter.'" value="'.$rsec.'" />');
             } else {
                 $r->print($rsec);
             }
   
             $r->print('</td><td>');
 # role  # role
           if ($constructmode) {            if ($constructmode) {
         my %hash=('' => '');
                 foreach ('au','cc','in','ta','st') { 
                    $hash{$_}=&Apache::lonnet::plaintext($_); 
                 }
                 my $role=$token->[2]->{'role'};
                 unless ($role) { $role=''; }
                 $r->print(&Apache::loncommon::select_form(
                   $role,'role_'.$rulecounter,%hash));
           } else {            } else {
               $r->print($token->[2]->{'role'});                $r->print(&Apache::lonnet::plaintext($token->[2]->{'role'}));
           }            }
 # close row  # close row
           $r->print('</td></tr>');            $r->print('</td></tr>');
Line 130  sub handler { Line 237  sub handler {
   $r->print('</table>');    $r->print('</table>');
 # ------------------------------------------------------------ End table output  # ------------------------------------------------------------ End table output
   if ($constructmode) {     if ($constructmode) { 
      $r->print('<input type="submit" value="Store" /></form>');        $r->print('<input type="submit" name="store" value="Store" /></form>'); 
   }    }
   $r->print('</body></html>');    $r->print('</body></html>');
   return OK;      return OK;  

Removed from v.1.3  
changed lines
  Added in v.1.5


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