-
Notifications
You must be signed in to change notification settings - Fork 5
/
provides.py
168 lines (147 loc) · 5.38 KB
/
provides.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
"""
This is the provides side of the interface layer, for use only by the
OpenStack integration charm itself.
The flags that are set by the provides side of this interface are:
* **`endpoint.{endpoint_name}.requested`** This flag is set when there is
a new or updated request by a remote unit for OpenStack integration
features. The OpenStack integration charm should then iterate over each
request, perform whatever actions are necessary to satisfy those requests,
and then mark them as complete.
"""
from operator import attrgetter
from charms.reactive import Endpoint
from charms.reactive import when
from charms.reactive import toggle_flag, clear_flag
class OpenStackIntegrationProvides(Endpoint):
"""
Example usage:
```python
from charms.reactive import when, endpoint_from_flag
from charms import layer
@when('endpoint.openstack.requests-pending')
def handle_requests():
openstack = endpoint_from_flag('endpoint.openstack.requests-pending')
for request in openstack.requests:
request.set_credentials(layer.openstack.get_user_credentials())
openstack.mark_completed()
```
"""
@when('endpoint.{endpoint_name}.changed')
def check_requests(self):
toggle_flag(self.expand_name('requests-pending'),
len(self.all_requests) > 0)
clear_flag(self.expand_name('changed'))
@property
def all_requests(self):
"""
A list of all of the #IntegrationRequests that have been made.
"""
if not hasattr(self, '_all_requests'):
self._all_requests = [IntegrationRequest(unit)
for unit in self.all_joined_units]
return self._all_requests
@property
def new_requests(self):
"""
A list of the new or updated #IntegrationRequests that have been made.
"""
is_changed = attrgetter('is_changed')
return list(filter(is_changed, self.all_requests))
def mark_completed(self):
"""
Mark all requests as completed and remove the `requests-pending` flag.
"""
clear_flag(self.expand_name('requests-pending'))
class IntegrationRequest:
"""
A request for integration from a single remote unit.
"""
def __init__(self, unit):
self._unit = unit
@property
def _to_publish(self):
return self._unit.relation.to_publish
@property
def is_changed(self):
"""
Whether this request has changed since the last time it was
marked completed (if ever).
"""
return not self.has_credentials
@property
def unit_name(self):
return self._unit.unit_name
def set_credentials(self,
auth_url,
region,
username,
password,
user_domain_name,
project_domain_name,
project_name,
endpoint_tls_ca,
*_,
domain_id=None,
domain_name=None,
project_id=None,
project_domain_id=None,
user_domain_id=None,
version=None,
):
"""
Set the credentials for this request.
"""
self._unit.relation.to_publish.update({
'auth_url': auth_url,
'region': region,
'username': username,
'password': password,
'domain_id': domain_id,
'domain_name': domain_name,
'endpoint_tls_ca': endpoint_tls_ca,
'project_domain_name': project_domain_name,
'project_domain_id': project_domain_id,
'project_id': project_id,
'project_name': project_name,
'user_domain_id': user_domain_id,
'user_domain_name': user_domain_name,
'version': version,
})
def set_lbaas_config(self,
subnet_id,
floating_network_id,
lb_method,
manage_security_groups,
has_octavia=None,
lb_enabled=None,
internal_lb=False):
"""
Set the load-balancer-as-a-service config for this request.
"""
self._unit.relation.to_publish.update({
'subnet_id': subnet_id,
'floating_network_id': floating_network_id,
'lb_method': lb_method,
'internal_lb': internal_lb,
'manage_security_groups': manage_security_groups,
'has_octavia': has_octavia,
'lb_enabled': lb_enabled,
})
def set_block_storage_config(self,
bs_version,
trust_device_path,
ignore_volume_az):
"""
Set the block storage config for this request.
"""
self._unit.relation.to_publish.update({
'bs_version': bs_version,
'trust_device_path': trust_device_path,
'ignore_volume_az': ignore_volume_az,
})
@property
def has_credentials(self):
"""
Whether or not credentials have been set via `set_credentials`.
"""
return 'credentials' in self._unit.relation.to_publish