123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- # SPDX-License-Identifier: Apache-2.0
- # Copyright 2020 Contributors to OpenLEADR
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- # http://www.apache.org/licenses/LICENSE-2.0
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- from . import service, handler, VTNService
- from datetime import timedelta
- from asyncio import iscoroutine
- # ╔══════════════════════════════════════════════════════════════════════════╗
- # ║ REGISTRATION SERVICE ║
- # ╚══════════════════════════════════════════════════════════════════════════╝
- # ┌──────────────────────────────────────────────────────────────────────────┐
- # │ The VEN can explore some information about the VTN: │
- # │ │
- # │ ┌────┐ ┌────┐ │
- # │ │VEN │ │VTN │ │
- # │ └─┬──┘ └─┬──┘ │
- # │ │─────────────────────oadrQueryRegistration()────────────────────▶│ │
- # │ │ │ │
- # │ │◀ ─ ─ ─ ─ ─ ─ oadrCreatedPartyRegistration(VTN Info)─ ─ ─ ─ ─ ─ ─│ │
- # │ │ │ │
- # │ │
- # └──────────────────────────────────────────────────────────────────────────┘
- # ┌──────────────────────────────────────────────────────────────────────────┐
- # │ The VEN can then go on and register with the VTN │
- # │ │
- # │ ┌────┐ ┌────┐ │
- # │ │VEN │ │VTN │ │
- # │ └─┬──┘ └─┬──┘ │
- # │ │───────────────oadrCreatePartyRegistration(VEN Info)────────────▶│ │
- # │ │ │ │
- # │ │◀ ─ ─ oadrCreatedPartyRegistration(VTN Info, registrationID)─ ─ ─│ │
- # │ │ │ │
- # │ │
- # └──────────────────────────────────────────────────────────────────────────┘
- # ┌──────────────────────────────────────────────────────────────────────────┐
- # │ The VEN can also choose to cancel the registration │
- # │ │
- # │ ┌────┐ ┌────┐ │
- # │ │VEN │ │VTN │ │
- # │ └─┬──┘ └─┬──┘ │
- # │ │──────────oadrCancelPartyRegistration(registrationID)───────────▶│ │
- # │ │ │ │
- # │ │◀ ─ ─ ─ ─ ─ ─ ─ ─oadrCanceledPartyRegistration()─ ─ ─ ─ ─ ─ ─ ─ ─│ │
- # │ │ │ │
- # │ │
- # └──────────────────────────────────────────────────────────────────────────┘
- @service('EiRegisterParty')
- class RegistrationService(VTNService):
- @handler('oadrQueryRegistration')
- async def query_registration(self, payload):
- """
- Return the profiles we support.
- """
- if hasattr(self, 'on_query_registration'):
- result = self.on_query_registration(payload)
- if iscoroutine(result):
- result = await result
- return result
- # If you don't provide a default handler, just give out the info
- response_payload = {'response': {'response_code': 200, 'response_description': 'OK', 'request_id': payload['request_id']},
- 'request_id': payload['request_id'],
- 'vtn_id': self.vtn_id,
- 'profiles': [{'profile_name': '2.0b',
- 'transports': {'transport_name': 'simpleHttp'}}],
- 'requested_oadr_poll_freq': timedelta(seconds=5)}
- return 'oadrCreatedPartyRegistration', response_payload
- @handler('oadrCreatePartyRegistration')
- async def create_party_registration(self, payload):
- """
- Handle the registration of a VEN party.
- """
- result = self.on_create_party_registration(payload)
- if iscoroutine(result):
- result = await result
- response_type, response_payload = result
- response_payload['response'] = {'response_code': 200,
- 'response_description': 'OK',
- 'request_id': payload['request_id']}
- response_payload['vtn_id'] = self.vtn_id
- return response_type, response_payload
- @handler('oadrCancelPartyRegistration')
- async def cancel_party_registration(self, payload):
- """
- Cancel the registration of a party.
- """
- result = self.on_cancel_party_registration(payload)
- if iscoroutine(result):
- result = await result
- return result
|