Diff for /loncom/auth/switchserver.pm between versions 1.15 and 1.19

version 1.15, 2007/08/25 01:24:05 version 1.19, 2007/11/14 02:55:07
Line 42  sub init_env { Line 42  sub init_env {
  return  $env{'user.environment'};   return  $env{'user.environment'};
     }      }
     my $requrl=$r->uri;      my $requrl=$r->uri;
     my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));      my $handle= &Apache::lonnet::check_for_valid_session($r);
     my $lonid=$cookies{'lonID'};      if ($handle ne '') {
     my $cookie;  
     if (!$lonid) { return undef; }  
   
     my $handle=&LONCAPA::clean_handle($lonid->value);  
     my $lonidsdir=$r->dir_config('lonIDsDir');  
     if ((!-e "$lonidsdir/$handle.id") || ($handle eq '')) {  
  $r->log_reason("Cookie $handle not valid", $r->filename);   
  return undef;   return undef;
     }      }
       my $lonidsdir=$r->dir_config('lonIDsDir');
     &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);      &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
           
     return $r->dir_config('lonIDsDir')."/$handle.id";      return $r->dir_config('lonIDsDir')."/$handle.id";
Line 62  sub init_env { Line 55  sub init_env {
 sub do_redirect {  sub do_redirect {
     my ($r,$url,$only_body,$extra_text) = @_;      my ($r,$url,$only_body,$extra_text) = @_;
     $r->send_http_header;      $r->send_http_header;
     my $switch='<meta HTTP-EQUIV="Refresh" CONTENT="0.5; url='.$url.'">';  
     my $start_page =       my $start_page = 
  &Apache::loncommon::start_page('Switching Server ...', $switch,   &Apache::loncommon::start_page('Switching Server ...',undef,
        {'no_inline_link' => 1,         {'redirect'       => [0.5,$url],
                                           'no_inline_link' => 1,
  'only_body'      => $only_body,});   'only_body'      => $only_body,});
     my $end_page   = &Apache::loncommon::end_page();      my $end_page   = &Apache::loncommon::end_page();
     $r->print($start_page.$extra_text.$end_page);      $r->print($start_page.$extra_text.$end_page);
Line 83  sub handler { Line 76  sub handler {
     ['otherserver','role']);      ['otherserver','role']);
   
     my $switch_to=&Apache::lonnet::hostname($env{'form.otherserver'});      my $switch_to=&Apache::lonnet::hostname($env{'form.otherserver'});
     if (!$env{'form.otherserver'}) {      if (! $env{'form.otherserver'}) {
  $env{'form.otherserver'}=&Apache::lonnet::spareserver(30000,undef,1);   $env{'form.otherserver'} =
       &Apache::lonnet::find_existing_session($env{'user.domain'},
      $env{'user.name'});
    if (! $env{'form.otherserver'}) {
       $env{'form.otherserver'} = 
    &Apache::lonnet::spareserver(30000,undef,1);
    }
   
  $switch_to=&Apache::lonnet::hostname($env{'form.otherserver'});   $switch_to=&Apache::lonnet::hostname($env{'form.otherserver'});
     }      }
   
Line 92  sub handler { Line 92  sub handler {
   
     if ($env{'user.name'} eq 'public'      if ($env{'user.name'} eq 'public'
  && $env{'user.domain'} eq 'public') {   && $env{'user.domain'} eq 'public') {
  my $url = 'http://'.$switch_to.'/'.$r->uri;   my $url = 'http://'.$switch_to.$r->uri;
  return &do_redirect($r,$url,1)   return &do_redirect($r,$url,1)
     }      }
   

Removed from v.1.15  
changed lines
  Added in v.1.19


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