Source code for weaver.wps_restapi.utils

import logging
from distutils.version import LooseVersion
from typing import TYPE_CHECKING

from lxml import etree
from pyramid.httpexceptions import HTTPSuccessful

from weaver.formats import CONTENT_TYPE_APP_JSON, CONTENT_TYPE_APP_XML
from weaver.utils import get_settings, get_weaver_url, parse_request_query, request_extra

if TYPE_CHECKING:
    from pyramid.request import Request                 # noqa: F401
    from typing import AnyStr, Optional                 # noqa: F401
    from weaver.typedefs import AnySettingsContainer    # noqa: F401

[docs]LOGGER = logging.getLogger(__name__)
[docs]WPS_VERSION_100 = "1.0.0"
[docs]WPS_VERSION_200 = "2.0.0"
[docs]OUTPUT_FORMAT_JSON = "json"
[docs]OUTPUT_FORMAT_XML = "xml"
[docs]OUTPUT_FORMATS = { WPS_VERSION_100: OUTPUT_FORMAT_XML, WPS_VERSION_200: OUTPUT_FORMAT_JSON, CONTENT_TYPE_APP_XML: OUTPUT_FORMAT_XML, CONTENT_TYPE_APP_JSON: OUTPUT_FORMAT_JSON,
}
[docs]def wps_restapi_base_path(container): # type: (AnySettingsContainer) -> AnyStr settings = get_settings(container) restapi_path = settings.get("weaver.wps_restapi_path", "").rstrip("/").strip() return restapi_path
[docs]def get_wps_restapi_base_url(container): # type: (AnySettingsContainer) -> AnyStr settings = get_settings(container) weaver_rest_url = settings.get("weaver.wps_restapi_url") if not weaver_rest_url: weaver_url = get_weaver_url(settings) restapi_path = wps_restapi_base_path(settings) weaver_rest_url = weaver_url + restapi_path return weaver_rest_url
# FIXME: deprecated? unused?
[docs]def get_wps_output_format(request, service_url=None): # type: (Request, AnyStr) -> AnyStr """ Get the preferred output format from WPS after checking various hints: - 'version' in query string - Content-Type in accept headers - GetCapabilities of the service :param request: request for which a response of WPS version-specific format must be generated. :param service_url: endpoint URL of the service to request 'GetCapabilities' if version not found by previous hints. :return: one of ``OUTPUT_FORMAT`` (default: 1.0.0 => 'xml' if no direct hint matched) """ # return specific type if requested by 'version' query queries = parse_request_query(request) if "version" in queries and len(queries["version"]) > 0: out_version = min([LooseVersion(v) for v in queries["version"]]) out_format = OUTPUT_FORMATS.pop(out_version.version, None) return out_format or OUTPUT_FORMATS[WPS_VERSION_100] # version not specified as query, check accept headers for specific and unique case accepts = [accept[0] for accept in request.accept.parsed] matched_accepts = list(set(OUTPUT_FORMATS) & set(accepts)) if len(matched_accepts) == 1: return OUTPUT_FORMATS[matched_accepts[0]] # version still ambiguous, verify service's GetCapabilities if service_url: getcap_url_100 = "{}?service=WPS&request=GetCapabilities" getcap_url_200 = "{}/processes".format(service_url) getcap_resp_100 = request_extra("get", getcap_url_100, settings=request) getcap_resp_200 = request_extra("get", getcap_url_200, settings=request) # analyse JSON response if isinstance(getcap_resp_200, HTTPSuccessful): try: # TODO: update get version if it is ever added to 'GetCapabilities' from WPS REST response # for now, suppose that a valid list in json body means that the service is WPS 2.0.0 if isinstance(getcap_resp_200.json()["processes"], list): return OUTPUT_FORMATS[WPS_VERSION_200] except Exception as ex: LOGGER.exception("Got exception in 'get_wps_output_format' JSON parsing: %r", ex) # analyse XML response if isinstance(getcap_resp_100, HTTPSuccessful): try: # TODO XML implementation etree.fromstring(getcap_resp_100.content) return OUTPUT_FORMATS[WPS_VERSION_100] except Exception as ex: LOGGER.exception("Got exception in 'get_wps_output_format' XML parsing: %r", ex) # still not found, default to older version # for most probable format supported by services return OUTPUT_FORMATS[WPS_VERSION_100]