opengeospatial / ogcapi-records

An open standard for the discovery of geospatial resources on the Web.
https://ogcapi.ogc.org/records
Other
56 stars 26 forks source link

Update templated links to support both aware and unaware clients. #322

Closed pvretano closed 6 months ago

pvretano commented 6 months ago

Closes #275

The gist of the PR is that client who know nothing about templated links should still be able to resolve the link.

This is accomplished by converting the templated member from a boolean to a string that supplies the text of the parameterized URL. If it is present then the href member simply contains an example or representative URL created by picking valid substitution values from the dictionary of substitution variables.

Aware clients can ignore the href value and generate a new resolvable URL using the dictionary of substitution variables.

Unaware clients can ignore all the templated stuff and simply use the value of the href member.

pvretano commented 6 months ago

The merge conflicts in PR #290 were so convoluted that is was simpler to just create a new PR based on the latest master!