--- loncom/lonnet/perl/lonnet.pm 2025/03/19 14:44:04 1.1537 +++ loncom/lonnet/perl/lonnet.pm 2025/04/02 23:44:03 1.1538 @@ -1,7 +1,7 @@ # The LearningOnline Network # TCP networking package # -# $Id: lonnet.pm,v 1.1537 2025/03/19 14:44:04 raeburn Exp $ +# $Id: lonnet.pm,v 1.1538 2025/04/02 23:44:03 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -13216,6 +13216,15 @@ my %cachedmaps=(); # When this was last done my $cachedmaptime=''; +# Cache (5 seconds) of mapsymb hierarchy for speedup of reservations display +# +# The course for which we cache +my $cachedmapsymbkey=''; +# The cached recursive map symbs for this course +my %cachedmapsymbs=(); +# When this was last done +my $cachedmapsymbtime=''; + sub clear_EXT_cache_status { &delenv('cache.EXT.'); } @@ -13407,6 +13416,43 @@ sub EXT { #print '
'.$space.' - '.$qualifier.' - '.$spacequalifierrest; +# --------------------------------------------- Special handling for encrypturl + + if ($spacequalifierrest eq '0.encrypturl') { + unless ($recursed) { + my ($map_from_symb,@mapsymbs); + if ($symbparm =~ /\.(page|sequence)$/) { + push(@mapsymbs,$symbparm); + $map_from_symb = &deversion((&decode_symb($symbparm))[2]); + } else { + $map_from_symb = &deversion((&decode_symb($symbparm))[0]); + } + if (($map_from_symb ne '') && ($map_from_symb !~ /default\.sequence$/)) { + my @parents = &get_mapsymb_hierarchy($map_from_symb,$courseid); + if (@parents) { + push(@mapsymbs,@parents); + } + } + if (@mapsymbs) { + my $earlyout; + my %parmhash=(); + if (tie(%parmhash,'GDBM_File', + $env{'request.course.fn'}.'_parms.db', + &GDBM_READER(),0640)) { + foreach my $mapsymb (@mapsymbs) { + if ((exists($parmhash{$mapsymb.'.'.$spacequalifierrest})) && + (lc($parmhash{$mapsymb.'.'.$spacequalifierrest}) eq 'yes')) { + $earlyout = $parmhash{$mapsymb.'.'.$spacequalifierrest}; + last; + } + } + untie(%parmhash); + } + if ($earlyout) { return &get_reply([$earlyout,'map']); } + } + } + } + # ----------------------------------------------------- Cascading lookup scheme my $symbp=$symbparm; $mapp=&deversion((&decode_symb($symbp))[0]); @@ -13608,6 +13654,30 @@ sub get_map_hierarchy { } } return @recurseup; +} + +sub get_mapsymb_hierarchy { + my ($mapname,$courseid) = @_; + my @recurseup; + if ($mapname) { + if (($cachedmapsymbkey eq $courseid) && + (abs($cachedmapsymbtime-time)<5)) { + if (ref($cachedmapsymbs{$mapname}) eq 'ARRAY') { + return @{$cachedmapsymbs{$mapname}}; + } + } + my $navmap = Apache::lonnavmaps::navmap->new(); + if (ref($navmap)) { + my $getsymb = 1; + my $inclusive = 1; + @recurseup = $navmap->recurseup_maps($mapname,$getsymb,$inclusive); + undef($navmap); + $cachedmapsymbs{$mapname} = \@recurseup; + $cachedmapsymbtime=time; + $cachedmapsymbkey=$courseid; + } + } + return @recurseup; } }