--- loncom/interface/lonnavdisplay.pm 2024/07/02 02:17:56 1.22.4.11
+++ loncom/interface/lonnavdisplay.pm 2025/05/27 23:35:38 1.48
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Navigate Maps Display Handler
#
-# $Id: lonnavdisplay.pm,v 1.22.4.11 2024/07/02 02:17:56 raeburn Exp $
+# $Id: lonnavdisplay.pm,v 1.48 2025/05/27 23:35:38 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -39,6 +39,8 @@ use Apache::lonnet;
use Apache::lonlocal;
use Apache::londocs();
use Apache::lonuserstate;
+use LONCAPA::ltiutils;
+use LONCAPA;
sub handler {
my $r = shift;
@@ -54,8 +56,8 @@ sub real_handler {
return OK;
}
- # Check for critical messages and redirect if present.
- my ($redirect,$url) = &Apache::loncommon::critical_redirect(300);
+ # Check for critical messages and redirect if present.
+ my ($redirect,$url) = &Apache::loncommon::critical_redirect(300,'contents');
if ($redirect) {
&Apache::loncommon::content_type($r,'text/html');
$r->header_out(Location => $url);
@@ -77,10 +79,14 @@ sub real_handler {
$r->send_http_header;
$r->print(&Apache::loncommon::check_release_result(@reinit));
return OK;
- } elsif ($result eq 'update') {
- my $cid = $env{'request.course.id'};
- my $cnum = $env{'course.'.$cid.'.num'};
- my $cdom = $env{'course.'.$cid.'.domain'};
+ }
+ my ($cid,$cnum,$cdom);
+ if ($result) {
+ $cid = $env{'request.course.id'};
+ $cnum = $env{'course.'.$cid.'.num'};
+ $cdom = $env{'course.'.$cid.'.domain'};
+ }
+ if (($result eq 'main') || ($result eq 'both')) {
&Apache::loncommon::content_type($r,'text/html');
$r->send_http_header;
&startpage($r);
@@ -110,12 +116,52 @@ ENDCLOSE
return HTTP_NOT_ACCEPTABLE;
}
}
+ if (($result eq 'both') || ($result eq 'supp')) {
+ my $possdel;
+ if ($result eq 'supp') {
+ $possdel = 1;
+ }
+ my ($supplemental,$refs_updated) = &Apache::loncommon::get_supplemental($cnum,$cdom,'',$possdel);
+ unless ($refs_updated) {
+ &Apache::loncommon::set_supp_httprefs($cnum,$cdom,$supplemental,$possdel);
+ }
+ }
+
+ my $course_type = &Apache::loncommon::course_type();
+ if (($course_type eq 'Placement') && (!$env{'request.role.adv'})) {
+ my $furl = &Apache::lonpageflip::first_accessible_resource();
+ if (($result eq 'main') || ($result eq 'both')) {
+ &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
+ $r->print($closure.&Apache::loncommon::end_page());
+ return OK;
+ } else {
+ unless ($furl eq '/adm/navmaps') {
+ &Apache::loncommon::content_type($r,'text/html');
+ $r->header_out(Location => $furl);
+ return REDIRECT;
+ }
+ }
+ }
+
+ if ($env{'request.lti.login'}) {
+ if ($env{'request.lti.uri'} ne '') {
+ my $cid = $env{'request.course.id'};
+ my $cnum = $env{'course.'.$cid.'.num'};
+ my $cdom = $env{'course.'.$cid.'.domain'};
+ my ($scope,$url) = &LONCAPA::ltiutils::lti_provider_scope($env{'request.lti.uri'},$cdom,$cnum);
+ if (($scope eq 'map') || ($scope eq 'resource')) {
+ &Apache::loncommon::content_type($r,'text/html');
+ $r->header_out(Location => $url);
+ return REDIRECT;
+ }
+ }
+ }
# Create the nav map
my $navmap = Apache::lonnavmaps::navmap->new();
if (!defined($navmap)) {
- if ($result eq 'update') {
+ if (($result eq 'main') || ($result eq 'both')) {
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
$r->print($closure.&Apache::loncommon::end_page());
}
@@ -125,7 +171,7 @@ ENDCLOSE
return HTTP_NOT_ACCEPTABLE;
}
- if ($result eq 'update') {
+ if (($result eq 'main') || ($result eq 'both')) {
$r->rflush();
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
$r->print($closure);
@@ -137,8 +183,8 @@ ENDCLOSE
&startpage($r);
}
- &startContentScreen($r,'navmaps');
- unless ($result eq 'update') {
+ &startContentScreen($r,'navmaps',$course_type);
+ unless (($result eq 'main') || ($result eq 'both')) {
$r->rflush();
}
@@ -272,13 +318,14 @@ ENDCLOSE
'
');
}
@@ -302,11 +349,88 @@ ENDCLOSE
# If no resources were printed, print a reassuring message so the
# user knows there was no error.
if ($renderArgs->{'counter'} == 0) {
+ my $noresmsg;
if ($showOnlyHomework) {
- $r->print("".&mt("All homework is currently completed.")."
");
+ $noresmsg = &mt('All homework is currently completed.');
} else { # both jumpToFirstHomework and normal use the same: course must be empty
- $r->print("".&mt("This course is empty.")."
");
+ $noresmsg = &mt('This course is empty.');
+ if (($renderArgs->{'deeplinknolist'}) &&
+ ($env{'request.course.deeponlyprot'})) {
+ my ($linkprot,$currmatch,$othermatches,@names);
+ if ($env{'request.linkprot'}) {
+ ($linkprot) = split(/:/,$env{'request.linkprot'});
+ }
+ foreach my $launcher (split(/&/,$env{'request.course.deeponlyprot'})) {
+ my ($name,$itemnums) = split(/:/,$launcher);
+ my @nums = split(/,/,$itemnums);
+ if (($linkprot) &&
+ (grep(/^\Q$linkprot\E$/,@nums))) {
+ $currmatch = &LONCAPA::unescape($name);
+ if (@nums > 1) {
+ $othermatches = 1;
+ }
+ } else {
+ push(@names,&LONCAPA::unescape($name));
+ }
+ }
+ my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
+ my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
+ my $has_supp = &Apache::lonnet::has_unhidden_suppfiles($cnum,$cdom);
+ if ($linkprot) {
+ if ($currmatch) {
+ if ($has_supp) {
+ $noresmsg = &mt('No main content available when accessed using the link you followed from [_1].',
+ $currmatch);
+ } else {
+ $noresmsg = &mt('No content available when accessed using the link you followed from [_1].',
+ $currmatch);
+ }
+ if ($othermatches) {
+ $noresmsg = '
';
+ if ($has_supp) {
+ $noresmsg .= &mt('Main content may be available by following a different link from [_1].',
+ $currmatch);
+ } else {
+ $noresmsg .= &mt('Content may be available by following a different link from [_1].',
+ $currmatch);
+ }
+ }
+ } else {
+ if ($has_supp) {
+ $noresmsg = &mt('No main content available using the link you followed.');
+ } else {
+ $noresmsg = &mt('No content available using the link you followed.');
+ }
+ }
+ } elsif (@names > 0) {
+ if ($has_supp) {
+ $noresmsg = &mt('No main content available from direct login to this course.');
+ } else {
+ $noresmsg = &mt('No content available from direct login to this course.');
+ }
+ }
+ if (@names == 1) {
+ $noresmsg .= '
';
+ if ($has_supp) {
+ $noresmsg .= &mt('Main content is likely available by following links from [_1]',
+ $names[0]);
+ } else {
+ $noresmsg .= &mt('Content is likely available by following links from [_1]',
+ $names[0]);
+ }
+ } elsif (@names > 1) {
+ $noresmsg .= '
';
+ if ($has_supp) {
+ $noresmsg .= &mt('Main content is likely available by following links from the following: [_1]',
+ join(', ',@names));
+ } else {
+ $noresmsg .= &mt('Content is likely available by following links from the following: [_1]',
+ join(', ',@names));
+ }
+ }
+ }
}
+ $r->print(''.$noresmsg.'
');
}
&endContentScreen($r);
$r->print(&Apache::loncommon::end_page());
@@ -336,28 +460,33 @@ sub startpage {
}
sub startContentScreen {
- my ($r,$mode)=@_;
+ my ($r,$mode,$course_type)=@_;
- $r->print("\n".''."\n");
+ $r->print("\n".''.
+ '
'."\n");
$r->print('- '.&mt('Main Content').'
'."\n");
- my $allowed = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
- my ($suppcount,$errors);
- unless ($allowed) {
+ my $supptab;
+ if ($env{'request.role.adv'}) {
+ $supptab = 1;
+ } else {
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
- ($suppcount,$errors) = &Apache::lonnet::get_numsuppfiles($cnum,$cdom);
+ $supptab = &Apache::lonnet::has_unhidden_suppfiles($cnum,$cdom);
}
- if ($allowed || $suppcount) {
+ if ($supptab) {
$r->print('- '.&mt('Supplemental Content').'
');
}
- $r->print('- '.&mt('Content Search').'
'."\n");
+ unless ($course_type eq 'Placement') {
+ $r->print('- '.&mt('Content Search').'
'."\n");
+ $r->print('- '.&mt('Content Index').'
'."\n");
+ }
$r->print("\n".'
'."\n");
$r->print('
');
}
sub endContentScreen {
my ($r)=@_;
- $r->print('
');
+ $r->print('
');
}
1;