--- loncom/interface/lonexttool.pm 2017/12/18 16:11:18 1.11
+++ loncom/interface/lonexttool.pm 2021/12/31 15:12:52 1.22.2.1
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Launch External Tool Provider (LTI)
#
-# $Id: lonexttool.pm,v 1.11 2017/12/18 16:11:18 raeburn Exp $
+# $Id: lonexttool.pm,v 1.22.2.1 2021/12/31 15:12:52 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -49,6 +49,8 @@ use HTML::Entities;
use Apache::lonlocal;
use Apache::lonnet;
use Apache::loncommon;
+use Apache::londatecheck;
+use Apache::lonipcheck;
use LONCAPA::ltiutils;
sub handler {
@@ -62,6 +64,8 @@ sub handler {
# ------------------------------------------------------------ Print the screen
if ($target eq 'tex') {
$r->print(&Apache::lonprintout::print_latex_header($env{'form.latex_type'}));
+ } else {
+ $target = 'web';
}
# Is this even in a course?
@@ -90,57 +94,24 @@ sub handler {
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
my $chome = $env{'course.'.$env{'request.course.id'}.'.home'};
- my $is_tool;
+ my ($idx,$is_tool,%toolhash,%toolsettings);
if ($r->uri eq "/adm/$cdom/$cnum/$marker/$exttool") {
- my %toolsettings=&Apache::lonnet::dump('exttool_'.$marker,$cdom,$cnum);
+ %toolsettings=&Apache::lonnet::dump('exttool_'.$marker,$cdom,$cnum);
if ($toolsettings{'id'}) {
- my $idx = $toolsettings{'id'};
+ $idx = $toolsettings{'id'};
my %ltitools = &Apache::lonnet::get_domain_lti($cdom,'consumer');
if (ref($ltitools{$idx}) eq 'HASH') {
- my %toolhash = %{$ltitools{$idx}};
+ %toolhash = %{$ltitools{$idx}};
$toolhash{'display'} = {
target => $toolsettings{'target'},
width => $toolsettings{'width'},
height => $toolsettings{'height'},
};
- $toolhash{'crslabel'} = $toolsettings{'crslabel'};
- $toolhash{'crstitle'} = $toolsettings{'crstitle'};
- $toolhash{'crsappend'} = $toolsettings{'crsappend'};
- $is_tool = 1;
- my $launchok = 1;
- if ($target eq 'tex') {
- $r->print(&mt('External Tool'));
- } else {
- my $now = time;
- if ($toolhash{'passback'}) {
- if (&LONCAPA::ltiutils::set_service_secret($cdom,$cnum,$marker,'grade',$now,
- \%toolsettings,\%toolhash) eq 'ok') {
- $toolhash{'gradesecret'} = $toolsettings{'gradesecret'};
- } else {
- undef($launchok);
- }
- }
- if ($toolhash{'roster'}) {
- if (&LONCAPA::ltiutils::set_service_secret($cdom,$cnum,$marker,'roster',$now,
- \%toolsettings,\%toolhash) eq 'ok') {
- $toolhash{'rostersecret'} = $toolsettings{'rostersecret'};
- }
- }
- my $submittext = &mt('Launch [_1]',$toolhash{'title'});
- if (($toolhash{'key'} ne '') && ($toolhash{'secret'} ne '') &&
- ($toolhash{'url'} ne '') && ($launchok)) {
- my %lti = <i_params($r,$cnum,$cdom,$idx,$submittext,\%toolhash);
- my $url = $toolhash{'url'};
- if ($toolhash{'crsappend'} ne '') {
- $url .= $toolhash{'crsappend'};
- }
- $r->print(&launch_html($url,$toolhash{'key'},$toolhash{'secret'},
- $submittext,\%lti));
- } else {
- $r->print('
'.&mt('External Tool Unavailable').'
');
- }
+ foreach my $item (qw(crslabel crstitle crsappend)) {
+ $toolhash{$item} = $toolsettings{$item};
}
+ $is_tool = 1;
}
}
}
@@ -150,6 +121,54 @@ sub handler {
} else {
$r->print('\textbf{'.&mt(Invalid Call).'}\end{document}');
}
+ return OK;
+ }
+
+ my ($symb,$status,$open,$close,$msg,$donebuttonresult,$donemsg);
+ if (($target eq 'tex') || ($toolhash{'gradable'})) {
+ ($symb) = &Apache::lonnet::whichuser();
+ }
+ if ($target eq 'tex') {
+ my $title = &Apache::lonnet::gettitle($symb);
+ $r->print(&mt('External Tool: [_1]','\textit{'.$title.'}').'\\\\');
+ }
+ my ($status,$open,$close,$msg)=&Apache::londatecheck::content_date_check();
+ if ($status ne 'OPEN') {
+ if ($target eq 'tex') {
+ $r->print(&mt('Not open to be viewed').'\end{document}');
+ } else {
+ $r->print($msg);
+ }
+ return OK;
+ } else {
+ ($status,$msg)=&Apache::lonipcheck::ip_access_check();
+ if ($status ne 'OPEN') {
+ if ($target eq 'tex') {
+ $r->print(&mt('Not open to be viewed').'\end{document}');
+ } else {
+ $r->print($msg);
+ }
+ return OK;
+ }
+ }
+ my $launchok = 1;
+ if ($target eq 'tex') {
+ $r->print('\end{document}');
+ } else {
+ my $now = time;
+ my $submittext = &mt('Launch [_1]',$toolhash{'title'});
+ if (($toolhash{'key'} ne '') && ($toolhash{'secret'} ne '') &&
+ ($toolhash{'url'} ne '') && ($launchok)) {
+ my %lti = <i_params($r,$cnum,$cdom,$idx,$submittext,\%toolhash);
+ my $url = $toolhash{'url'};
+ if ($toolhash{'crsappend'} ne '') {
+ $url .= $toolhash{'crsappend'};
+ }
+ $r->print(&launch_html($url,$toolhash{'key'},$toolhash{'secret'},
+ $toolhash{'sigmethod'},$submittext,\%lti));
+ } else {
+ $r->print(''.&mt('External Tool Unavailable').'
');
+ }
}
return OK;
}
@@ -157,16 +176,12 @@ sub handler {
sub lti_params {
my ($r,$cnum,$cdom,$idx,$submittext,$toolsref) = @_;
my ($version,$context_type,$msgtype,$toolname,$passback,$roster,$locale,
- $crslabel,$crstitle,$gradesecret,$rostersecret,%fields,%rolesmap,
- %display,%custom,@userlangs);
+ $crslabel,$crstitle,%fields,%rolesmap,%display,%custom,@userlangs,$incdom);
if (ref($toolsref) eq 'HASH') {
$version = $toolsref->{'version'};
$toolname = $toolsref->{'title'};
- $passback = $toolsref->{'passback'};
- $gradesecret = $toolsref->{'gradesecret'};
- $roster = $toolsref->{'roster'};
- $rostersecret = $toolsref->{'rostersecret'};
$msgtype = $toolsref->{'messagetype'};
+ $incdom = $toolsref->{'incdom'};
if (ref($toolsref->{'fields'}) eq 'HASH') {
%fields = %{$toolsref->{'fields'}};
}
@@ -192,10 +207,10 @@ sub lti_params {
$msgtype = 'basic-lti-launch-request';
}
if ($crslabel eq '') {
- $crslabel = $env{'course.'.$env{'request.course.id'}.'.internal.coursecode'},
+ $crslabel = $env{'course.'.$env{'request.course.id'}.'.internal.coursecode'};
}
if ($crstitle eq '') {
- $crstitle = $env{'course.'.$env{'request.course.id'}.'.description'},;
+ $crstitle = $env{'course.'.$env{'request.course.id'}.'.description'};
}
my $lonhost = $r->dir_config('lonHostID');
my $loncaparev = $r->dir_config('lonVersion');
@@ -207,8 +222,10 @@ sub lti_params {
unless (grep(/^\Q$ltirole\E$/,@possroles)) {
$ltirole = 'Learner';
}
+ my @possdigest;
my $digest_user = &Encode::decode_utf8($uname.':'.$udom);
$digest_user = &Digest::SHA::sha1_hex($digest_user);
+ push(@possdigest,$digest_user);
if ($env{'course.'.$env{'request.course.id'}.'.languages'} ne '') {
@userlangs=(@userlangs,split(/\s*(\,|\;|\:)\s*/,
$env{'course.'.$env{'request.course.id'}.'.languages'}));
@@ -231,6 +248,7 @@ sub lti_params {
if ($symb) {
$digest_symb = &Encode::decode_utf8($symb);
$digest_symb = &Digest::SHA::sha1_hex($digest_symb);
+ push(@possdigest,$digest_symb);
my $navmap = Apache::lonnavmaps::navmap->new();
if (ref($navmap)) {
my $res = $navmap->getBySymb($symb);
@@ -242,7 +260,7 @@ sub lti_params {
my $domdesc = &Apache::lonnet::domain($cdom);
my $primary_id = &Apache::lonnet::domain($cdom,'primary');
my $int_dom = &Apache::lonnet::internet_dom($primary_id);
- my $portal_url = &Apache::lonnet::course_portal_url($cnum,$cdom);
+ my $portal_url = &Apache::lonnet::course_portal_url($cnum,$cdom,$r);
my %ltiparams = (
lti_version => $version,
@@ -252,7 +270,7 @@ sub lti_params {
tool_consumer_instance_guid => $lonhost,
tool_consumer_instance_description => $domdesc,
tool_consumer_info_product_family_code => 'loncapa',
- tool_consumer_instance_name => $int_dom,
+ tool_consumer_instance_name => $int_dom,
tool_consumer_instance_url => $portal_url,
tool_consumer_info_version => $loncaparev,
user_id => $digest_user,
@@ -270,41 +288,6 @@ sub lti_params {
unless ($crsprotocol eq 'https') {
$crsprotocol = 'http';
}
- if (($passback) || ($roster)) {
- if ($passback) {
- $ltiparams{'lis_outcome_service_url'} = $crsprotocol.'://'.$crshostname.'/adm/service/passback';
- $ltiparams{'ext_ims_lis_basic_outcome_url'} = $ltiparams{'lis_outcome_service_url'};
- if ($gradesecret) {
- my $uniqid = $digest_symb.':::'.$digest_user.':::'.$env{'request.course.id'};
- $ltiparams{'lis_result_sourcedid'} = &LONCAPA::ltiutils::get_service_id($gradesecret,$uniqid);
- }
- }
- if ($roster) {
- if (&Apache::lonnet::allowed('opa',$env{'request.course.id'})) {
- $ltiparams{'ext_ims_lis_memberships_url'} = $crsprotocol.'://'.$crshostname.'/adm/service/roster';
- if ($rostersecret) {
- my $uniqid = $digest_symb.':::'.$env{'request.course.id'};
- $ltiparams{'ext_ims_lis_memberships_id'} = &LONCAPA::ltiutils::get_service_id($rostersecret,$uniqid);
- }
- }
- }
- my %digesthash;
- if ($ltiparams{'lis_result_sourcedid'}) {
- $digesthash{$ltiparams{'lis_result_sourcedid'}} = "$idx\0".time;
- }
- if ($ltiparams{'ext_ims_lis_memberships_id'}) {
- $digesthash{$ltiparams{'ext_ims_lis_memberships_id'}} = "$idx\0".time;
- }
- if (($digest_symb) && ($gradesecret || $rostersecret)) {
- $digesthash{$digest_symb} = $symb;
- }
- if (($passback) && ($gradesecret)) {
- $digesthash{$digest_user} = $uname.':'.$udom;
- }
- if (keys(%digesthash)) {
- &Apache::lonnet::put('exttools',\%digesthash,$cdom,$cnum);
- }
- }
}
if ($display{'target'}) {
$ltiparams{'launch_presentation_document_target'} = $display{'target'};
@@ -336,7 +319,11 @@ sub lti_params {
$ltiparams{'lis_person_contact_email_primary'} = $contact_email;
}
if ($fields{'user'}) {
- $ltiparams{'lis_person_sourcedid'} = $uname.':'.$udom;
+ if ($incdom) {
+ $ltiparams{'lis_person_sourcedid'} = $uname.':'.$udom;
+ } else {
+ $ltiparams{'lis_person_sourcedid'} = $uname;
+ }
}
if (keys(%custom)) {
foreach my $key (keys(%custom)) {
@@ -358,8 +345,8 @@ sub lti_params {
}
sub launch_html {
- my ($url,$key,$secret,$submittext,$paramsref) = @_;
- my $hashref = &LONCAPA::ltiutils::sign_params($url,$key,$secret,$paramsref);
+ my ($url,$key,$secret,$sigmethod,$submittext,$paramsref) = @_;
+ my $hashref = &LONCAPA::ltiutils::sign_params($url,$key,$secret,$paramsref,$sigmethod);
my $action = &HTML::Entities::encode($url,'<>&"');
my $form = <<"END";