PolicyRule.py 2.08 KB
Newer Older
# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
#
# 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.

import logging
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from typing import Dict, List, Optional
from common.proto.policy_condition_pb2 import BooleanOperator
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from common.proto.policy_pb2 import PolicyRuleStateEnum
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
LOGGER = logging.getLogger(__name__)
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
def json_policyrule_id(policyrule_uuid : str) -> Dict:
    return {'uuid': {'uuid': policyrule_uuid}}
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
def json_policyrule(
    policyrule_uuid : str, policy_priority : int = 1,
    policy_state : PolicyRuleStateEnum = PolicyRuleStateEnum.POLICY_UNDEFINED, policy_state_message : str = '',
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    boolean_operator : BooleanOperator = BooleanOperator.POLICYRULE_CONDITION_BOOLEAN_AND,
    condition_list : List[Dict] = [], action_list : List[Dict] = [],
    service_id : Optional[Dict] = None, device_id_list : List[Dict] = []
) -> Dict:
    basic = {
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        'policyRuleId': json_policyrule_id(policyrule_uuid),
        'policyRuleState': {
            'policyRuleState': policy_state,
            'policyRuleStateMessage': policy_state_message,
        },
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        'priority': policy_priority,
        'conditionList': condition_list,
        'booleanOperator': boolean_operator,
        'actionList': action_list,
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    result = {}
    if service_id is not None:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        policyrule_type = 'service'
        result[policyrule_type] = {'policyRuleBasic': basic}
        result[policyrule_type]['serviceId'] = service_id
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        policyrule_type = 'device'
        result[policyrule_type] = {'policyRuleBasic': basic}
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    result[policyrule_type]['deviceList'] = device_id_list
    return result