version 1.36, 2022/04/06 21:44:49
|
version 1.37, 2022/06/18 02:10:19
|
Line 31 package Apache::ltiauth;
|
Line 31 package Apache::ltiauth;
|
use strict; |
use strict; |
use LONCAPA qw(:DEFAULT :match); |
use LONCAPA qw(:DEFAULT :match); |
use Encode; |
use Encode; |
use Apache::Constants qw(:common :http); |
use Apache::Constants qw(:common :http :remotehost); |
use Apache::lonlocal; |
use Apache::lonlocal; |
use Apache::lonnet; |
use Apache::lonnet; |
use Apache::loncommon; |
use Apache::loncommon; |
Line 117 sub handler {
|
Line 117 sub handler {
|
# |
# |
if ($requri =~ m{^/adm/launch(|/.*)$}) { |
if ($requri =~ m{^/adm/launch(|/.*)$}) { |
my $tail = $1; |
my $tail = $1; |
if ($tail =~ m{^/tiny/($match_domain)/(\w+)$}) { |
if ($tail =~ m{^/tiny/$match_domain/\w+$}) { |
my ($urlcdom,$urlcnum) = &course_from_tinyurl($tail); |
my ($urlcdom,$urlcnum) = &course_from_tinyurl($tail); |
if (($urlcdom ne '') && ($urlcnum ne '')) { |
if (($urlcdom ne '') && ($urlcnum ne '')) { |
$cdom = $urlcdom; |
$cdom = $urlcdom; |
Line 143 sub handler {
|
Line 143 sub handler {
|
# where url was /adm/launch/tiny/$cdom/$uniqueid |
# where url was /adm/launch/tiny/$cdom/$uniqueid |
# |
# |
|
|
my ($itemid,$ltitype,%crslti,%lti_in_use); |
my ($itemid,$ltitype,%crslti,%lti_in_use,$ltiuser); |
$itemid = &get_lti_itemid($requri,$hostname,$params,$cdom,$cnum,'linkprot'); |
$itemid = &get_lti_itemid($requri,$hostname,$params,$cdom,$cnum,'linkprot'); |
if ($itemid) { |
if ($itemid) { |
%crslti = &Apache::lonnet::get_course_lti($cnum,$cdom); |
%crslti = &Apache::lonnet::get_course_lti($cnum,$cdom); |
Line 229 sub handler {
|
Line 229 sub handler {
|
return OK; |
return OK; |
} |
} |
} |
} |
|
$ltiuser = $uname.':'.$cdom; |
} |
} |
} |
} |
if ($lti_in_use{'notstudent'} eq 'reject') { |
if ($lti_in_use{'notstudent'} eq 'reject') { |
Line 241 sub handler {
|
Line 242 sub handler {
|
foreach my $key (%{$params}) { |
foreach my $key (%{$params}) { |
delete($env{'form.'.$key}); |
delete($env{'form.'.$key}); |
} |
} |
my $ltoken = &Apache::lonnet::tmpput({'linkprot' => $itemid.$ltitype.':'.$tail}, |
my %info = ( |
$lonhost,'link'); |
'linkprot' => $itemid.$ltitype.':'.$tail, |
if ($ltoken) { |
); |
|
if ($ltiuser ne '') { |
|
$info{'linkprotuser'} = $ltiuser; |
|
} |
|
my $ltoken = &Apache::lonnet::tmpput(\%info,$lonhost,'link'); |
|
if (($ltoken eq 'con_lost') || ($ltoken eq 'refused') || ($ltoken =~ /^error:/) || |
|
($ltoken eq 'unknown_cmd') || ($ltoken eq 'no_such_host') || |
|
($ltoken eq '')) { |
|
&invalid_request($r,'Failed to store information from launch request'); |
|
} else { |
$r->internal_redirect($tail.'?ltoken='.$ltoken); |
$r->internal_redirect($tail.'?ltoken='.$ltoken); |
$r->set_handlers('PerlHandler'=> undef); |
$r->set_handlers('PerlHandler'=> undef); |
} else { |
|
&invalid_request($r,'Failed to store information from launch request'); |
|
} |
} |
} else { |
} else { |
&invalid_request($r,'Launch request could not be validated'); |
&invalid_request($r,'Launch request could not be validated'); |
Line 986 sub lti_session {
|
Line 994 sub lti_session {
|
$r->dir_config('ltiIDsDir'), |
$r->dir_config('ltiIDsDir'), |
$protocol,$r->hostname); |
$protocol,$r->hostname); |
} |
} |
my $ip = $r->get_remote_host(); |
my $ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP); |
my %info=('ip' => $ip, |
my %info=('ip' => $ip, |
'domain' => $udom, |
'domain' => $udom, |
'username' => $uname, |
'username' => $uname, |
Line 1075 sub linkprot_session {
|
Line 1083 sub linkprot_session {
|
$r->set_handlers('PerlHandler'=> undef); |
$r->set_handlers('PerlHandler'=> undef); |
} else { |
} else { |
# need to login them in, so generate the data migrate expects to do login |
# need to login them in, so generate the data migrate expects to do login |
my $ip = $r->get_remote_host(); |
my $ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP); |
my %info=('ip' => $ip, |
my %info=('ip' => $ip, |
'domain' => $cdom, |
'domain' => $cdom, |
'username' => $uname, |
'username' => $uname, |