Annotation of loncom/auth/switchserver.pm, revision 1.28.2.1

1.1       albertel    1: # The LearningOnline Network
                      2: # Switch Servers Handler
                      3: #
1.28.2.1! raeburn     4: # $Id: switchserver.pm,v 1.28 2010/07/22 21:44:25 raeburn Exp $
1.1       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: 
                     29: package Apache::switchserver;
                     30: 
                     31: use strict;
                     32: use Apache::Constants qw(:common);
                     33: use Apache::lonnet;
                     34: use Apache::lonmenu;
                     35: use CGI::Cookie();
                     36: use Apache::lonlocal;
1.28      raeburn    37: use LONCAPA qw(:DEFAULT :match);
1.1       albertel   38: 
                     39: sub init_env {
                     40:     my ($r) = @_;
1.5       albertel   41:     
                     42:     if (-e $env{'user.environment'}) {
                     43: 	return  $env{'user.environment'};
                     44:     }
1.1       albertel   45:     my $requrl=$r->uri;
1.18      albertel   46:     my $handle= &Apache::lonnet::check_for_valid_session($r);
                     47:     if ($handle ne '') {
1.1       albertel   48: 	return undef;
                     49:     }
1.18      albertel   50:     my $lonidsdir=$r->dir_config('lonIDsDir');
1.1       albertel   51:     &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
                     52:     
1.5       albertel   53:     return $r->dir_config('lonIDsDir')."/$handle.id";
1.1       albertel   54: }
                     55: 
1.14      albertel   56: sub do_redirect {
                     57:     my ($r,$url,$only_body,$extra_text) = @_;
                     58:     $r->send_http_header;
                     59:     my $start_page = 
1.16      raeburn    60: 	&Apache::loncommon::start_page('Switching Server ...',undef,
                     61: 				       {'redirect'       => [0.5,$url],
1.28.2.1! raeburn    62:                                         'no_inline_link' => 1,
1.14      albertel   63: 					'only_body'      => $only_body,});
                     64:     my $end_page   = &Apache::loncommon::end_page();
                     65:     $r->print($start_page.$extra_text.$end_page);
                     66:     return OK;
                     67: 
                     68: }
                     69: 
1.1       albertel   70: sub handler {
1.5       albertel   71:     my ($r) = @_;
1.1       albertel   72:     
                     73:     my $handle=&init_env($r);
                     74:     if (!defined($handle)) { return FORBIDDEN; }
                     75: 
                     76:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.22      raeburn    77: 				['otherserver','role','origurl','symb']);
1.5       albertel   78: 
1.13      albertel   79:     my $switch_to=&Apache::lonnet::hostname($env{'form.otherserver'});
1.17      albertel   80:     if (! $env{'form.otherserver'}) {
                     81: 	$env{'form.otherserver'} =	
                     82: 	    &Apache::lonnet::find_existing_session($env{'user.domain'},
                     83: 						   $env{'user.name'});
                     84: 	if (! $env{'form.otherserver'}) {
                     85: 	    $env{'form.otherserver'} = 
                     86: 		&Apache::lonnet::spareserver(30000,undef,1);
                     87: 	}
1.13      albertel   88: 	$switch_to=&Apache::lonnet::hostname($env{'form.otherserver'});
1.4       albertel   89:     }
1.5       albertel   90: 
1.1       albertel   91:     if (!defined($switch_to)) { return FORBIDDEN; }
1.4       albertel   92: 
1.14      albertel   93:     if ($env{'user.name'} eq 'public'
                     94: 	&& $env{'user.domain'} eq 'public') {
1.19      albertel   95: 	my $url = 'http://'.$switch_to.$r->uri;
1.14      albertel   96: 	return &do_redirect($r,$url,1)
                     97:     }
                     98: 
1.28      raeburn    99:     my $skip_canhost_check = '';
                    100:     if ($env{'form.role'}) {
                    101:         if (!exists($env{'user.role.'.$env{'form.role'}})) {
                    102:             return FORBIDDEN;
                    103:         } else {
                    104:             my $now = time;
                    105:             my ($start,$end) = split(/\./,$env{'user.role.'.$env{'form.role'}});
                    106:             if (($start && $start > $now) || ($end && $end < $now)) {
                    107:                 return FORBIDDEN;
                    108:             } elsif ($env{'form.role'} eq 'au./'.$env{'user.domain'}.'/') {
                    109:                 if (&Apache::lonnet::homeserver($env{'user.name'},$env{'user.domain'}) eq $env{'form.otherserver'}) {
                    110:                     $skip_canhost_check = 1;
                    111:                 }
                    112:             } elsif ($env{'form.role'} =~ m{^[ac]a\./($match_domain)/($match_username)/$}) {
                    113:                 if (&Apache::lonnet::homeserver($2,$1) eq $env{'form.otherserver'}) {
                    114:                     $skip_canhost_check = 1; 
                    115:                 }
                    116:             }
                    117:         }
                    118:     }
                    119: 
                    120:     unless ($skip_canhost_check) {
                    121:         my $canhost = 1;
                    122:         my $uprimary_id = &Apache::lonnet::domain($env{'user.domain'},'primary');
                    123:         my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
                    124:         my @intdoms = &Apache::lonnet::get_internet_names($env{'form.otherserver'});
                    125:         unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
                    126:             my $serverhomeID = &Apache::lonnet::get_server_homeID($switch_to);
                    127:             my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
                    128:             my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
                    129:             my %udomdefaults = &Apache::lonnet::get_domain_defaults($env{'user.domain'});
                    130:             my $remoterev = &Apache::lonnet::get_server_loncaparev($env{'user.domain'},$env{'form.otherserver'});
                    131:             $canhost = 
                    132:                 &Apache::lonnet::can_host_session($env{'user.domain'},
                    133:                                                   $env{'form.otherserver'},
                    134:                                                   $remoterev,
                    135:                                                   $udomdefaults{'remotesessions'},
                    136:                                                   $defdomdefaults{'hostedsessions'});
                    137:         }
                    138:         unless ($canhost) { return FORBIDDEN; }
1.26      raeburn   139:     }
                    140: 
1.1       albertel  141:     #remove session env, and log event
1.5       albertel  142:     unlink($handle);
1.1       albertel  143:     my %temp=('switchserver' => time.':'.$env{'form.otherserver'},
                    144: 	      $env{'form.role'});
                    145:     &Apache::lonnet::put('email_status',\%temp);
                    146:     &Apache::lonnet::log($env{'user.domain'},$env{'user.name'},
                    147: 			 $env{'user.home'},
                    148: 			 "Switch Server to $env{'form.otherserver'} with role $env{'form.role'} $ENV{'REMOTE_ADDR'}");
                    149: 
                    150:     &Apache::loncommon::content_type($r,'text/html');
1.12      albertel  151: 
                    152:     #expire the cookie
                    153:     my $c = new CGI::Cookie(-name    => 'lonID',
                    154: 			    -value   => '',
                    155: 			    -expires => '-10y',);
                    156:     $r->header_out('Set-cookie' => $c);
1.20      albertel  157: 
                    158:     if ($r->header_only) {
                    159: 	$r->send_http_header;
                    160: 	return OK;
                    161:     }
1.1       albertel  162: # -------------------------------------------------------- Menu script and info
1.28.2.1! raeburn   163: 
        !           164:     my $windowinfo=
        !           165:         &Apache::lonmenu::close().
        !           166:         &Apache::lonnavmaps::close();
1.1       albertel  167: # ---------------------------------------------------------------- Get handover
                    168: 
1.3       albertel  169:     my %info=('ip'       => $ENV{'REMOTE_ADDR'},
                    170: 	      'domain'   => $env{'user.domain'},
                    171: 	      'username' => $env{'user.name'},
                    172: 	      'role'     => $env{'form.role'},
                    173: 	      'server'   => $r->dir_config('lonHostID'));
1.22      raeburn   174:     if ($env{'form.origurl'}) {
                    175:         $info{'origurl'} = $env{'form.origurl'};
                    176:     }
                    177:     if ($env{'form.symb'}) {
                    178:         $info{'symb'} = $env{'form.symb'};
                    179:     }
1.8       albertel  180:     if ($env{'request.sso.login'}) {
                    181: 	$info{'sso.login'} = $env{'request.sso.login'};
                    182:     }
1.11      raeburn   183:     if ($env{'request.sso.reloginserver'}) {
                    184:         $info{'sso.reloginserver'} = $env{'request.sso.reloginserver'};
                    185:     }
1.3       albertel  186:     my $token = &Apache::lonnet::tmpput(\%info,$env{'form.otherserver'});
1.14      albertel  187:     my $url ='http://'.$switch_to.'/adm/login?'.
                    188: 	'domain='.$env{'user.domain'}.
1.21      albertel  189: 	'&amp;username='.$env{'user.name'}.
                    190: 	'&amp;token='.$token;
1.1       albertel  191: # --------------------------------------------------------------- Screen Output
                    192:     &Apache::lonnet::flushcourselogs();
1.28.2.1! raeburn   193:     return &do_redirect($r,$url,0,$windowinfo);
1.1       albertel  194: }
                    195: 
                    196: 1;
                    197: __END__
                    198: 
                    199: 
                    200: 
                    201: 
                    202: 
                    203: 
                    204: 
                    205: 

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