Fix INF-371 and INF-372 notification post data does not comply to spec
[pti/o2.git] / o2ims / domain / subscription_obj.py
1 # Copyright (C) 2021 Wind River Systems, Inc.
2 #
3 #  Licensed under the Apache License, Version 2.0 (the "License");
4 #  you may not use this file except in compliance with the License.
5 #  You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #  Unless required by applicable law or agreed to in writing, software
10 #  distributed under the License is distributed on an "AS IS" BASIS,
11 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #  See the License for the specific language governing permissions and
13 #  limitations under the License.
14
15 from __future__ import annotations
16 from enum import Enum
17 from dataclasses import dataclass
18
19 from o2common.domain.base import AgRoot, Serializer
20
21
22 class Subscription(AgRoot, Serializer):
23     def __init__(self, id: str, callback: str, consumersubid: str = '',
24                  filter: str = '') -> None:
25         super().__init__()
26         self.subscriptionId = id
27         self.callback = callback
28         self.consumerSubscriptionId = consumersubid
29         self.filter = filter
30
31         self.version_number = 0
32
33
34 class NotificationEventEnum(str, Enum):
35     CREATE = 0
36     MODIFY = 1
37     DELETE = 2
38
39
40 class Message2SMO(Serializer):
41     def __init__(self, eventtype: NotificationEventEnum,
42                  id: str, ref: str, updatetime: str) -> None:
43         self.notificationEventType = eventtype
44         self.objectRef = ref
45         self.id = id
46         self.updatetime = updatetime
47
48
49 class RegistrationMessage(Serializer):
50     def __init__(self, eventtype: NotificationEventEnum, id: str = '') -> None:
51         self.notificationEventType = eventtype
52         self.id = id
53
54
55 @dataclass
56 class EventState():
57     Initial = 0
58     # NotInstalled = 1
59     Installing = 2
60     Installed = 3
61     Updating = 4
62     Uninstalling = 5
63     Abnormal = 6
64     Deleting = 7