Annotation of loncom/auth/migrateuser.pm, revision 1.12
1.1 albertel 1: # The LearningOnline Network
2: # Starts a user off based of an existing token.
3: #
1.12 ! albertel 4: # $Id: migrateuser.pm,v 1.11 2007/09/29 02:09:50 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;
1.6 albertel 32: use LONCAPA;
1.1 albertel 33: use Apache::Constants qw(:common :http :methods);
34: use Apache::lonauth;
35: use Apache::lonnet;
1.6 albertel 36: use Apache::lonlocal;
1.1 albertel 37:
38: sub goto_login {
1.2 albertel 39: my ($r) = @_;
40: &Apache::loncommon::content_type($r,'text/html');
41: $r->send_http_header;
1.5 albertel 42: $r->print(&Apache::loncommon::start_page('Going to login',undef,
43: {'redirect' =>
44: [0,'/adm/login'],}).
45: '<h1>'.&mt('One moment please...').'</h1>'.
46: '<p>'.&mt('Transferring to login page.').'</p>'.
47: &Apache::loncommon::end_page());
1.2 albertel 48: return OK;
1.1 albertel 49: }
50:
1.2 albertel 51:
1.7 albertel 52: sub sso_check {
53: my ($data) = @_;
1.8 albertel 54: my %extra_env;
1.7 albertel 55: if ($data->{'sso.login'}) {
1.8 albertel 56: $extra_env{'request.sso.login'} = $data->{'sso.login'};
1.7 albertel 57: }
1.10 raeburn 58: if ($data->{'sso.reloginserver'}) {
59: $extra_env{'request.sso.reloginserver'} =
60: $data->{'sso.reloginserver'};
61: }
1.8 albertel 62: return \%extra_env;
1.7 albertel 63: }
64:
1.1 albertel 65: sub handler {
66: my ($r) = @_;
67:
68: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['token']);
1.4 albertel 69: my %data = &Apache::lonnet::tmpget($env{'form.token'});
70: my $delete = &Apache::lonnet::tmpdel($env{'form.token'});
71:
1.6 albertel 72: &Apache::lonlocal::get_language_handle($r);
73:
1.4 albertel 74: if ($delete ne 'ok') {
75: return &goto_login($r);
76: }
1.2 albertel 77:
78: if ($data{'ip'} ne $ENV{'REMOTE_ADDR'} || !defined($data{'username'}) ||
79: !defined($data{'domain'}) ) {
80: return &goto_login($r);
81: }
82:
83: &Apache::lonnet::logthis("Allowing access for $data{'username'}\@$data{'domain'} to $data{'role'}");
84: my $home=&Apache::lonnet::homeserver($data{'username'},$data{'domain'});
85: if ($home =~ /(con_lost|no_such_host)/) { return &goto_login($r); }
86:
1.8 albertel 87: my $extra_env = &sso_check(\%data);
88:
1.3 albertel 89: if (!$data{'role'}) {
1.12 ! albertel 90: my $handle = &Apache::lonnet::check_for_valid_session($r);
! 91: if ($handle) {
1.11 albertel 92: &Apache::lonnet::transfer_profile_to_env($r->dir_config('lonIDsDir'),
93: $handle);
94: if ($env{'request.course.id'}) {
95: $r->internal_redirect('/adm/navmaps');
96: } else {
97: $r->internal_redirect('/adm/roles');
98: }
99: } else {
100: &Apache::lonauth::success($r,$data{'username'},$data{'domain'},
101: $home,'/adm/roles',$extra_env);
102:
103: }
1.1 albertel 104: return OK;
1.11 albertel 105:
1.1 albertel 106: }
1.6 albertel 107:
108: my $next_url='/adm/roles?selectrole=1&'.&escape($data{'role'}).'=1';
109:
1.3 albertel 110:
1.6 albertel 111: &Apache::lonauth::success($r,$data{'username'},$data{'domain'},$home,
1.9 albertel 112: $next_url,$extra_env);
1.6 albertel 113: return OK;
1.1 albertel 114: }
115:
116: 1;
117: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>