Annotation of loncom/auth/migrateuser.pm, revision 1.3

1.1       albertel    1: # The LearningOnline Network
                      2: # Starts a user off based of an existing token.
                      3: #
1.3     ! albertel    4: # $Id: migrateuser.pm,v 1.2 2005/10/25 19:14:32 albertel 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: 
1.2       albertel   29: package Apache::migrateuser;
1.1       albertel   30: 
                     31: use strict;
                     32: use Apache::Constants qw(:common :http :methods);
                     33: use Apache::lonauth;
                     34: use Apache::lonnet;
                     35: 
                     36: sub goto_login {
1.2       albertel   37:     my ($r) = @_;
                     38:     &Apache::loncommon::content_type($r,'text/html');
                     39:     $r->send_http_header;
                     40:     $r->print(<<TOLOGIN);
1.1       albertel   41: <html>
                     42:   <head>
1.2       albertel   43:     <meta http-equiv="refresh" content="0;url=/adm/login" />
1.1       albertel   44:     <title>Going to login</title>
                     45:   </head>
                     46:   <body>
                     47:     <h1>One moment please...</h1>
                     48:     <p>
                     49:       Transferring to login page.
                     50:       <a href="/adm/login">Continue</a>
                     51:     </p>
                     52:   </body>
                     53: </html>
                     54: TOLOGIN
1.2       albertel   55:     return OK;
1.1       albertel   56: }
                     57: 
1.2       albertel   58: 
1.1       albertel   59: sub handler {
                     60:     my ($r) = @_;
                     61:     
                     62:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['token']);
1.2       albertel   63:     my %data = &Apache::lonnet::tmpget($env{'form.token'});
                     64: 
                     65:     if ($data{'ip'} ne $ENV{'REMOTE_ADDR'} || !defined($data{'username'}) ||
                     66: 	!defined($data{'domain'}) ) {
                     67: 	return &goto_login($r);
                     68:     }
                     69: 
                     70:     &Apache::lonnet::logthis("Allowing access for $data{'username'}\@$data{'domain'} to $data{'role'}");
                     71:     my $home=&Apache::lonnet::homeserver($data{'username'},$data{'domain'});
                     72:     if ($home =~ /(con_lost|no_such_host)/) { return &goto_login($r); }
                     73: 
1.3     ! albertel   74:     if (!$data{'role'}) {
1.2       albertel   75: 	&Apache::lonauth::success($r,$data{'username'},$data{'domain'},
                     76: 				  $home,'/adm/roles');
1.1       albertel   77: 	return OK;
                     78:     }
1.3     ! albertel   79:     
1.2       albertel   80:     my $cookie=&Apache::lonauth::success($r,$data{'username'},$data{'domain'},
                     81: 					 $home,'noredirect');
1.1       albertel   82:     $r->header_out('Set-cookie',"lonID=$cookie; path=/");
                     83:     &Apache::lonnet::transfer_profile_to_env($r->dir_config('lonIDsDir'),
                     84: 					     $cookie);
                     85:     $env{'form.selectrole'}='1';
1.2       albertel   86:     $env{'form.'.$data{'role'}}='1';
1.1       albertel   87:     return &Apache::lonroles::handler($r);
                     88: }
                     89: 
                     90: 1;
                     91: __END__

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