Annotation of loncom/auth/migrateuser.pm, revision 1.25
1.1 albertel 1: # The LearningOnline Network
2: # Starts a user off based of an existing token.
3: #
1.25 ! raeburn 4: # $Id: migrateuser.pm,v 1.24 2014/10/07 03:13:34 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:
1.2 albertel 29: package Apache::migrateuser;
1.1 albertel 30:
31: use strict;
1.19 raeburn 32: use LONCAPA qw(:DEFAULT :match);
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.18 raeburn 37: use Apache::lonlogin();
1.1 albertel 38:
39: sub goto_login {
1.24 raeburn 40: my ($r,$domain) = @_;
1.2 albertel 41: &Apache::loncommon::content_type($r,'text/html');
42: $r->send_http_header;
1.24 raeburn 43: my $url = '/adm/login';
44: if ($domain) {
45: $url .= '?domain='.$domain;
46: }
1.5 albertel 47: $r->print(&Apache::loncommon::start_page('Going to login',undef,
1.24 raeburn 48: {'redirect' => [0,$url],}).
1.5 albertel 49: '<h1>'.&mt('One moment please...').'</h1>'.
50: '<p>'.&mt('Transferring to login page.').'</p>'.
51: &Apache::loncommon::end_page());
1.2 albertel 52: return OK;
1.1 albertel 53: }
54:
1.2 albertel 55:
1.7 albertel 56: sub sso_check {
57: my ($data) = @_;
1.8 albertel 58: my %extra_env;
1.18 raeburn 59: if (ref($data) eq 'HASH') {
60: if ($data->{'sso.login'}) {
61: $extra_env{'request.sso.login'} = $data->{'sso.login'};
62: }
63: if ($data->{'sso.reloginserver'}) {
64: $extra_env{'request.sso.reloginserver'} =
65: $data->{'sso.reloginserver'};
66: }
1.7 albertel 67: }
1.18 raeburn 68: return \%extra_env;
69: }
70:
71: sub ip_changed {
72: my ($r,$udom,$camefrom,$dataref) = @_;
73: &Apache::loncommon::content_type($r,'text/html');
74: $r->send_http_header;
75: if (ref($dataref) eq 'HASH') {
76: my $title = 'LON-CAPA Session redirected';
77: my $message = &mt('Your internet address has changed since you logged in.');
78: my $rule_in_effect;
1.22 raeburn 79: if ($dataref->{'balancer'}) {
80: my $baldom = &Apache::lonnet::host_domain($camefrom);
81: my $balprimaryid = &Apache::lonnet::domain($baldom,'primary');
82: my $balintdom = &Apache::lonnet::internet_dom($balprimaryid);
83: my $uprimaryid = &Apache::lonnet::domain($udom,'primary');
84: my $uintdom = &Apache::lonnet::internet_dom($uprimaryid);
85: my $dom_in_use;
86: if (($uintdom ne '') && ($uintdom eq $balintdom)) {
87: $dom_in_use = $udom;
88: } else {
89: $dom_in_use = $baldom;
1.21 raeburn 90: }
1.22 raeburn 91: my ($result,$cached)=&Apache::lonnet::is_cached_new('loadbalancing',$dom_in_use);
1.18 raeburn 92: unless (defined($cached)) {
93: my $cachetime = 60*60*24;
94: my %domconfig =
1.22 raeburn 95: &Apache::lonnet::get_dom('configuration',['loadbalancing'],$dom_in_use);
1.18 raeburn 96: if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
1.22 raeburn 97: $result = &Apache::lonnet::do_cache_new('loadbalancing',$dom_in_use,
1.18 raeburn 98: $domconfig{'loadbalancing'},$cachetime);
99: }
100: }
101: if (ref($result) eq 'HASH') {
102: (undef,my $currtargets,my $currrules) =
103: &Apache::lonnet::check_balancer_result($result,$dataref->{'server'});
104: if (ref($currrules) eq 'HASH') {
105: if ($dataref->{'sso.login'}) {
106: if ($currrules->{'_LC_ipchangesso'} ne '') {
107: $rule_in_effect = $currrules->{'_LC_ipchangesso'};
108: }
109: } else {
110: if ($currrules->{'_LC_ipchange'} ne '') {
111: $rule_in_effect = $currrules->{'_LC_ipchange'};
112: }
113: }
114: }
115: }
116: }
117: my $url;
118: my $lonhost= $r->dir_config('lonHostID');
119: my $switchto = $lonhost;
1.23 raeburn 120: if ($rule_in_effect ne 'offloadedto') {
1.18 raeburn 121: my $hosthere;
1.23 raeburn 122: my @ids=&Apache::lonnet::current_machine_ids();
123: unless ($rule_in_effect eq 'balancer') {
124: if (grep(/^\Q$rule_in_effect\E$/,@ids)) {
125: $hosthere = 1;
126: }
127: }
128: unless ($hosthere) {
129: if ($dataref->{'role'}) {
130: my ($adom,$aname);
131: if ($dataref->{'role'} =~ m{^au\./($match_domain)/$}) {
132: $adom = $1;
133: $aname = $dataref->{'username'};
134: } elsif ($dataref->{'role'} =~ m{^(?:ca|aa)\./($match_domain)/($match_username)$}) {
135: $adom = $1;
136: $aname = $2;
137: }
138: if ($adom ne '' && $aname ne '') {
139: my $ahome = &Apache::lonnet::homeserver($aname,$adom);
140: unless ($ahome eq 'no_host') {
141: if ($ahome && grep(/^\Q$ahome\E$/,@ids)) {
142: $hosthere = 1;
143: }
1.18 raeburn 144: }
145: }
146: }
147: }
1.23 raeburn 148: unless ($hosthere) {
149: my $hostname;
150: if ($rule_in_effect eq 'balancer') {
151: $hostname = &Apache::lonnet::hostname($dataref->{'server'});
152: if ($hostname) {
153: $switchto = $dataref->{'server'};
154: }
155: } else {
156: $hostname = &Apache::lonnet::hostname($rule_in_effect);
157: if ($hostname) {
158: $switchto = $rule_in_effect;
159: }
160: }
1.18 raeburn 161: if ($hostname) {
162: my $protocol = $Apache::lonnet::protocol{$switchto};
163: $protocol = 'http' if ($protocol ne 'https');
164: $url = $protocol.'://'.$hostname;
1.23 raeburn 165: if ($rule_in_effect eq 'balancer') {
166: $message .= '<br />'.
167: &mt('As a result, your LON-CAPA session is being redirected to the server where you originally logged in.');
168: } else {
169: $message .= '<br />'.
170: &mt('As a result, your LON-CAPA session is being redirected.');
171: }
1.18 raeburn 172: }
173: }
174: }
175: if ($dataref->{'sso.login'}) {
1.21 raeburn 176: $url .= '/adm/roles';
1.18 raeburn 177: } else {
1.21 raeburn 178: $url .= '/adm/login';
1.24 raeburn 179: if ($udom) {
180: $url .= '?domain='.$udom;
181: }
1.20 raeburn 182: $message .= '<br />'.&mt('You will need to provide your password one more time.');
1.18 raeburn 183: }
184: my %info= (
1.24 raeburn 185: 'domain' => $udom,
1.18 raeburn 186: 'username' => $dataref->{'username'},
187: 'role' => $dataref->{'role'},
188: 'sessionserver' => $lonhost,
189: );
190: if ($dataref->{'origurl'}) {
191: $info{'origurl'} = $dataref->{'origurl'};
192: }
193: if ($dataref->{'symb'}) {
194: $info{'symb'} = $dataref->{'symb'};
195: }
196: my $iptoken = &Apache::lonnet::tmpput(\%info,$switchto);
197: unless ($iptoken eq 'conlost') {
1.24 raeburn 198: $url .= ($url =~ /\?/) ? '&' : '?';
199: $url .= 'iptoken='.$iptoken;
1.18 raeburn 200: }
201: $r->print(&Apache::loncommon::start_page($title,undef,
202: {'redirect' =>
203: [2,$url],}).
204: '<h1>'.&mt('One moment please...').'</h1>'.
205: '<p class="LC_warning">'.$message.'</p>'.
206: &Apache::loncommon::end_page());
207: } else {
208: return &goto_login($r);
1.10 raeburn 209: }
1.18 raeburn 210: return OK;
1.7 albertel 211: }
212:
1.1 albertel 213: sub handler {
214: my ($r) = @_;
215:
216: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['token']);
1.4 albertel 217: my %data = &Apache::lonnet::tmpget($env{'form.token'});
1.13 raeburn 218: if (keys(%data) == 0) {
219: return &goto_login($r);
220: }
1.4 albertel 221: my $delete = &Apache::lonnet::tmpdel($env{'form.token'});
222:
1.6 albertel 223: &Apache::lonlocal::get_language_handle($r);
224:
1.4 albertel 225: if ($delete ne 'ok') {
226: return &goto_login($r);
227: }
1.2 albertel 228:
1.18 raeburn 229: if (!defined($data{'username'}) || !defined($data{'domain'})) {
230: return &goto_login($r);
231: }
232: if ($data{'ip'} ne $ENV{'REMOTE_ADDR'}) {
1.24 raeburn 233: &Apache::lonnet::logthis('IP change when session migration requested -- was: '.
234: $data{'ip'}.'; now: '.$ENV{'REMOTE_ADDR'}.' for '.$data{'username'}.':'.$data{'domain'});
1.18 raeburn 235: return &ip_changed($r,$data{'domain'},$data{'server'},\%data);
1.2 albertel 236: }
237:
1.17 raeburn 238: &Apache::lonnet::logthis("Allowing access for $data{'username'}:$data{'domain'} to $data{'role'}");
1.2 albertel 239: my $home=&Apache::lonnet::homeserver($data{'username'},$data{'domain'});
1.24 raeburn 240: my $udom;
241: if (&Apache::lonnet::domain($data{'domain'})) {
242: $udom=$data{'domain'};
243: }
244: if ($home =~ /(con_lost|no_such_host)/) { return &goto_login($r,$udom); }
1.2 albertel 245:
1.8 albertel 246: my $extra_env = &sso_check(\%data);
247:
1.16 raeburn 248: my %form;
249: if ($data{'symb'} ne '') {
250: $form{'symb'} = $data{'symb'};
251: }
1.21 raeburn 252: if ($data{'iptoken'} ne '') {
253: $form{'iptoken'} = $data{'iptoken'};
254: }
1.25 ! raeburn 255: if ($data{'noloadbalance'} ne '') {
! 256: $form{'noloadbalance'} = $data{'noloadbalance'};
! 257: }
1.16 raeburn 258:
1.3 albertel 259: if (!$data{'role'}) {
1.12 albertel 260: my $handle = &Apache::lonnet::check_for_valid_session($r);
261: if ($handle) {
1.11 albertel 262: &Apache::lonnet::transfer_profile_to_env($r->dir_config('lonIDsDir'),
263: $handle);
1.14 raeburn 264: if ($data{'origurl'} ne '') {
265: $r->internal_redirect($data{'origurl'});
266: } elsif ($env{'request.course.id'}) {
267: $r->internal_redirect('/adm/navmaps');
1.11 albertel 268: } else {
269: $r->internal_redirect('/adm/roles');
270: }
271: } else {
1.14 raeburn 272: my $desturl = '/adm/roles';
273: if ($data{'origurl'} ne '') {
274: $desturl = $data{'origurl'};
275: }
1.11 albertel 276: &Apache::lonauth::success($r,$data{'username'},$data{'domain'},
1.16 raeburn 277: $home,$desturl,$extra_env,\%form);
1.11 albertel 278:
279: }
1.1 albertel 280: return OK;
1.11 albertel 281:
1.1 albertel 282: }
1.6 albertel 283:
284: my $next_url='/adm/roles?selectrole=1&'.&escape($data{'role'}).'=1';
1.15 raeburn 285: if ($data{'origurl'} ne '') {
286: $next_url .= '&orgurl='.&escape($data{'origurl'});
287: }
1.6 albertel 288: &Apache::lonauth::success($r,$data{'username'},$data{'domain'},$home,
1.16 raeburn 289: $next_url,$extra_env,\%form);
1.6 albertel 290: return OK;
1.1 albertel 291: }
292:
293: 1;
294: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>