Skip to content

Commit f4ee09a

Browse files
committed
review updates
1 parent 2c78cf5 commit f4ee09a

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

docs/services.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ by the below configuration.
324324
API entrypoint and `Tomcat` service running it. If this feature is not needed, it can be disabled by setting the
325325
parameter to ``null``.
326326

327-
.. versionchanged:: 4.1.2
327+
.. versionchanged:: 4.2.0
328328
``prefixes`` can now contain a ``/`` character. This allows `ServiceTHREDDS`_ to properly handle `THREDDS`_ services
329329
that have multiple path parts. For example, starting with `THREDDS`_ version 5, the ``ncss`` service contains two
330330
sub-services which are accessed using the path prefixes ``ncss/grid`` and ``ncss/point``.

magpie/services.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -1385,14 +1385,15 @@ def get_path_parts(self):
13851385
def _get_path_prefix_permission(self, path_parts):
13861386
# type: (List[str]) -> Tuple[Optional[Str], PermissionRequested]
13871387
cfg = self.get_config()
1388+
# first to favor BROWSE over READ prefix conflicts
13881389
for prefixes, permission in ((cfg["metadata_type"]["prefixes"], Permission.BROWSE),
13891390
(cfg["data_type"]["prefixes"], Permission.READ)):
1390-
for prefix in prefixes:
1391-
if not path_parts and prefix is None:
1392-
return prefix, permission
1393-
if prefix is not None:
1394-
path_prefix = "/".join(path_parts[:prefix.count("/") + 1])
1395-
if self.is_match(path_prefix, prefix) is not None:
1391+
for pattern_prefix in prefixes:
1392+
if not path_parts and pattern_prefix is None:
1393+
return pattern_prefix, permission
1394+
if pattern_prefix is not None:
1395+
path_prefix = "/".join(path_parts[:pattern_prefix.count("/") + 1])
1396+
if self.is_match(path_prefix, pattern_prefix) is not None:
13961397
return path_prefix, permission
13971398
return None, None
13981399

tests/test_services.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def test_ServiceTHREDDS_custom_config(self):
582582

583583
# using unknown prefixes, otherwise allowed file should always be denied
584584
# purposely take normally allowed THREDDS prefixes, validate active config
585-
unknown_prefixes = ["ncml", "dap4", "ncss/point"]
585+
unknown_prefixes = ["ncml", "dap4", "ncss/point", "ncss", "grid"]
586586
allowed_resources = [dir_name, "{}/{}".format(dir_name, file_name), "{}/{}".format(dir_name, file_html_name)]
587587
for prefix in unknown_prefixes:
588588
for target in allowed_resources:

0 commit comments

Comments
 (0)