# =================================================================
#
# Authors: Tom Kralidis <tomkralidis@gmail.com>
#
# Copyright (c) 2022 Tom Kralidis
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# =================================================================
import logging
from pygeoapi.process.base import BaseProcessor, ProcessorExecuteError
LOGGER = logging.getLogger(__name__)
#: Process metadata and description
PROCESS_METADATA = {
'version': '0.2.0',
'id': 'hello-world',
'title': {
'en': 'Hello World',
'fr': 'Bonjour le Monde'
},
'description': {
'en': 'An example process that takes a name as input, and echoes '
'it back as output. Intended to demonstrate a simple '
'process with a single literal input.',
'fr': 'Un exemple de processus qui prend un nom en entrée et le '
'renvoie en sortie. Destiné à démontrer un processus '
'simple avec une seule entrée littérale.',
},
'keywords': ['hello world', 'example', 'echo'],
'links': [{
'type': 'text/html',
'rel': 'about',
'title': 'information',
'href': 'https://example.org/process',
'hreflang': 'en-US'
}],
'inputs': {
'name': {
'title': 'Name',
'description': 'The name of the person or entity that you wish to'
'be echoed back as an output',
'schema': {
'type': 'string'
},
'minOccurs': 1,
'maxOccurs': 1,
'metadata': None, # TODO how to use?
'keywords': ['full name', 'personal']
},
'message': {
'title': 'Message',
'description': 'An optional message to echo as well',
'schema': {
'type': 'string'
},
'minOccurs': 0,
'maxOccurs': 1,
'metadata': None,
'keywords': ['message']
}
},
'outputs': {
'echo': {
'title': 'Hello, world',
'description': 'A "hello world" echo with the name and (optional)'
' message submitted for processing',
'schema': {
'type': 'object',
'contentMediaType': 'application/json'
}
}
},
'example': {
'inputs': {
'name': 'World',
'message': 'An optional message.',
}
}
}
[docs]class HelloWorldProcessor(BaseProcessor):
"""Hello World Processor example"""
[docs] def __init__(self, processor_def):
"""
Initialize object
:param processor_def: provider definition
:returns: pygeoapi.process.hello_world.HelloWorldProcessor
"""
super().__init__(processor_def, PROCESS_METADATA)
[docs] def execute(self, data):
mimetype = 'application/json'
name = data.get('name')
if name is None:
raise ProcessorExecuteError('Cannot process without a name')
message = data.get('message', '')
value = f'Hello {name}! {message}'.strip()
outputs = {
'id': 'echo',
'value': value
}
return mimetype, outputs
[docs] def __repr__(self):
return f'<HelloWorldProcessor> {self.name}'