
Introduce a per-charm configuration file `.sunbeam-build.yaml`, containing information about needed external libraries, internal libraries, and configuration templates. Introduce new management script `repository.py`, responsible for preparing, cleaning and updating libs. Move all internal libraries back to their original charms. Each charm is responsible of its own libraries. Change-Id: I9edabed1c252cae60fcd945b931952aeaef12481 Signed-off-by: Guillaume Boutry <guillaume.boutry@canonical.com>
468 lines
15 KiB
Python
468 lines
15 KiB
Python
"""IdentityCredentialsProvides and Requires module.
|
|
|
|
|
|
This library contains the Requires and Provides classes for handling
|
|
the identity_credentials interface.
|
|
|
|
Import `IdentityCredentialsRequires` in your charm, with the charm object and the
|
|
relation name:
|
|
- self
|
|
- "identity_credentials"
|
|
|
|
Also provide additional parameters to the charm object:
|
|
- service
|
|
- internal_url
|
|
- public_url
|
|
- admin_url
|
|
- region
|
|
- username
|
|
- vhost
|
|
|
|
Two events are also available to respond to:
|
|
- connected
|
|
- ready
|
|
- goneaway
|
|
|
|
A basic example showing the usage of this relation follows:
|
|
|
|
```
|
|
from charms.keystone_k8s.v0.identity_credentials import IdentityCredentialsRequires
|
|
|
|
class IdentityCredentialsClientCharm(CharmBase):
|
|
def __init__(self, *args):
|
|
super().__init__(*args)
|
|
# IdentityCredentials Requires
|
|
self.identity_credentials = IdentityCredentialsRequires(
|
|
self, "identity_credentials",
|
|
service = "my-service"
|
|
internal_url = "http://internal-url"
|
|
public_url = "http://public-url"
|
|
admin_url = "http://admin-url"
|
|
region = "region"
|
|
)
|
|
self.framework.observe(
|
|
self.identity_credentials.on.connected, self._on_identity_credentials_connected)
|
|
self.framework.observe(
|
|
self.identity_credentials.on.ready, self._on_identity_credentials_ready)
|
|
self.framework.observe(
|
|
self.identity_credentials.on.goneaway, self._on_identity_credentials_goneaway)
|
|
|
|
def _on_identity_credentials_connected(self, event):
|
|
'''React to the IdentityCredentials connected event.
|
|
|
|
This event happens when IdentityCredentials relation is added to the
|
|
model before credentials etc have been provided.
|
|
'''
|
|
# Do something before the relation is complete
|
|
pass
|
|
|
|
def _on_identity_credentials_ready(self, event):
|
|
'''React to the IdentityCredentials ready event.
|
|
|
|
The IdentityCredentials interface will use the provided config for the
|
|
request to the identity server.
|
|
'''
|
|
# IdentityCredentials Relation is ready. Do something with the completed relation.
|
|
pass
|
|
|
|
def _on_identity_credentials_goneaway(self, event):
|
|
'''React to the IdentityCredentials goneaway event.
|
|
|
|
This event happens when an IdentityCredentials relation is removed.
|
|
'''
|
|
# IdentityCredentials Relation has goneaway. shutdown services or suchlike
|
|
pass
|
|
```
|
|
"""
|
|
|
|
import logging
|
|
|
|
from ops.framework import (
|
|
StoredState,
|
|
EventBase,
|
|
ObjectEvents,
|
|
EventSource,
|
|
Object,
|
|
)
|
|
from ops.model import (
|
|
Relation,
|
|
SecretNotFoundError,
|
|
)
|
|
|
|
# The unique Charmhub library identifier, never change it
|
|
LIBID = "b5fa18d4427c4ab9a269c3a2fbed545c"
|
|
|
|
# Increment this major API version when introducing breaking changes
|
|
LIBAPI = 0
|
|
|
|
# Increment this PATCH version before using `charmcraft publish-lib` or reset
|
|
# to 0 if you are raising the major API version
|
|
LIBPATCH = 5
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class IdentityCredentialsConnectedEvent(EventBase):
|
|
"""IdentityCredentials connected Event."""
|
|
|
|
pass
|
|
|
|
|
|
class IdentityCredentialsReadyEvent(EventBase):
|
|
"""IdentityCredentials ready for use Event."""
|
|
|
|
pass
|
|
|
|
|
|
class IdentityCredentialsGoneAwayEvent(EventBase):
|
|
"""IdentityCredentials relation has gone-away Event"""
|
|
|
|
pass
|
|
|
|
|
|
class IdentityCredentialsServerEvents(ObjectEvents):
|
|
"""Events class for `on`"""
|
|
|
|
connected = EventSource(IdentityCredentialsConnectedEvent)
|
|
ready = EventSource(IdentityCredentialsReadyEvent)
|
|
goneaway = EventSource(IdentityCredentialsGoneAwayEvent)
|
|
|
|
|
|
class IdentityCredentialsRequires(Object):
|
|
"""
|
|
IdentityCredentialsRequires class
|
|
"""
|
|
|
|
on = IdentityCredentialsServerEvents()
|
|
_stored = StoredState()
|
|
|
|
def __init__(self, charm, relation_name: str):
|
|
super().__init__(charm, relation_name)
|
|
self.charm = charm
|
|
self.relation_name = relation_name
|
|
self.framework.observe(
|
|
self.charm.on[relation_name].relation_joined,
|
|
self._on_identity_credentials_relation_joined,
|
|
)
|
|
self.framework.observe(
|
|
self.charm.on[relation_name].relation_changed,
|
|
self._on_identity_credentials_relation_changed,
|
|
)
|
|
self.framework.observe(
|
|
self.charm.on[relation_name].relation_departed,
|
|
self._on_identity_credentials_relation_changed,
|
|
)
|
|
self.framework.observe(
|
|
self.charm.on[relation_name].relation_broken,
|
|
self._on_identity_credentials_relation_broken,
|
|
)
|
|
self._credentials = None
|
|
|
|
def _on_identity_credentials_relation_joined(self, event):
|
|
"""IdentityCredentials relation joined."""
|
|
logging.debug("IdentityCredentials on_joined")
|
|
self.on.connected.emit()
|
|
self.request_credentials()
|
|
|
|
def _on_identity_credentials_relation_changed(self, event):
|
|
"""IdentityCredentials relation changed."""
|
|
logging.debug("IdentityCredentials on_changed")
|
|
try:
|
|
self.on.ready.emit()
|
|
except (AttributeError, KeyError):
|
|
logger.exception("Error when emitting event")
|
|
|
|
def _on_identity_credentials_relation_broken(self, event):
|
|
"""IdentityCredentials relation broken."""
|
|
logging.debug("IdentityCredentials on_broken")
|
|
self.on.goneaway.emit()
|
|
|
|
@property
|
|
def _identity_credentials_rel(self) -> Relation:
|
|
"""The IdentityCredentials relation."""
|
|
return self.framework.model.get_relation(self.relation_name)
|
|
|
|
def get_remote_app_data(self, key: str) -> str:
|
|
"""Return the value for the given key from remote app data."""
|
|
data = self._identity_credentials_rel.data[
|
|
self._identity_credentials_rel.app
|
|
]
|
|
return data.get(key)
|
|
|
|
@property
|
|
def api_version(self) -> str:
|
|
"""Return the api_version."""
|
|
return self.get_remote_app_data("api-version")
|
|
|
|
@property
|
|
def auth_host(self) -> str:
|
|
"""Return the auth_host."""
|
|
return self.get_remote_app_data("auth-host")
|
|
|
|
@property
|
|
def auth_port(self) -> str:
|
|
"""Return the auth_port."""
|
|
return self.get_remote_app_data("auth-port")
|
|
|
|
@property
|
|
def auth_protocol(self) -> str:
|
|
"""Return the auth_protocol."""
|
|
return self.get_remote_app_data("auth-protocol")
|
|
|
|
@property
|
|
def internal_host(self) -> str:
|
|
"""Return the internal_host."""
|
|
return self.get_remote_app_data("internal-host")
|
|
|
|
@property
|
|
def internal_port(self) -> str:
|
|
"""Return the internal_port."""
|
|
return self.get_remote_app_data("internal-port")
|
|
|
|
@property
|
|
def internal_protocol(self) -> str:
|
|
"""Return the internal_protocol."""
|
|
return self.get_remote_app_data("internal-protocol")
|
|
|
|
@property
|
|
def credentials(self) -> str:
|
|
return self.get_remote_app_data("credentials")
|
|
|
|
def _retrieve_credentials(self) -> dict[str, str] | None:
|
|
if credentials := self._credentials:
|
|
return credentials
|
|
credentials_id = self.get_remote_app_data("credentials")
|
|
if not credentials_id:
|
|
return None
|
|
|
|
try:
|
|
credentials = self.charm.model.get_secret(
|
|
id=credentials_id
|
|
).get_content(refresh=True)
|
|
except SecretNotFoundError:
|
|
logger.warning(f"Secret {credentials_id} not found")
|
|
return None
|
|
self._credentials = credentials
|
|
return credentials
|
|
|
|
@property
|
|
def username(self) -> str | None:
|
|
if credentials := self._retrieve_credentials():
|
|
return credentials.get("username")
|
|
return None
|
|
|
|
@property
|
|
def password(self) -> str | None:
|
|
if credentials := self._retrieve_credentials():
|
|
return credentials.get("password")
|
|
return None
|
|
|
|
@property
|
|
def project_name(self) -> str:
|
|
"""Return the project name."""
|
|
return self.get_remote_app_data("project-name")
|
|
|
|
@property
|
|
def project_id(self) -> str:
|
|
"""Return the project id."""
|
|
return self.get_remote_app_data("project-id")
|
|
|
|
@property
|
|
def user_domain_name(self) -> str:
|
|
"""Return the name of the user domain."""
|
|
return self.get_remote_app_data("user-domain-name")
|
|
|
|
@property
|
|
def user_domain_id(self) -> str:
|
|
"""Return the id of the user domain."""
|
|
return self.get_remote_app_data("user-domain-id")
|
|
|
|
@property
|
|
def project_domain_name(self) -> str:
|
|
"""Return the name of the project domain."""
|
|
return self.get_remote_app_data("project-domain-name")
|
|
|
|
@property
|
|
def project_domain_id(self) -> str:
|
|
"""Return the id of the project domain."""
|
|
return self.get_remote_app_data("project-domain-id")
|
|
|
|
@property
|
|
def region(self) -> str:
|
|
"""Return the region for the auth urls."""
|
|
return self.get_remote_app_data("region")
|
|
|
|
@property
|
|
def internal_endpoint(self) -> str:
|
|
"""Return the region for the internal auth url."""
|
|
return self.get_remote_app_data("internal-endpoint")
|
|
|
|
@property
|
|
def public_endpoint(self) -> str:
|
|
"""Return the region for the public auth url."""
|
|
return self.get_remote_app_data("public-endpoint")
|
|
|
|
@property
|
|
def admin_role(self) -> str:
|
|
"""Return the admin_role."""
|
|
return self.get_remote_app_data("admin-role")
|
|
|
|
def request_credentials(self) -> None:
|
|
"""Request credentials from the IdentityCredentials server."""
|
|
if self.model.unit.is_leader():
|
|
logging.debug(f"Requesting credentials for {self.charm.app.name}")
|
|
app_data = self._identity_credentials_rel.data[self.charm.app]
|
|
app_data["username"] = self.charm.app.name
|
|
|
|
|
|
class HasIdentityCredentialsClientsEvent(EventBase):
|
|
"""Has IdentityCredentialsClients Event."""
|
|
|
|
pass
|
|
|
|
|
|
class ReadyIdentityCredentialsClientsEvent(EventBase):
|
|
"""IdentityCredentialsClients Ready Event."""
|
|
|
|
def __init__(self, handle, relation_id, relation_name, username):
|
|
super().__init__(handle)
|
|
self.relation_id = relation_id
|
|
self.relation_name = relation_name
|
|
self.username = username
|
|
|
|
def snapshot(self):
|
|
return {
|
|
"relation_id": self.relation_id,
|
|
"relation_name": self.relation_name,
|
|
"username": self.username,
|
|
}
|
|
|
|
def restore(self, snapshot):
|
|
super().restore(snapshot)
|
|
self.relation_id = snapshot["relation_id"]
|
|
self.relation_name = snapshot["relation_name"]
|
|
self.username = snapshot["username"]
|
|
|
|
|
|
class IdentityCredentialsClientsGoneAwayEvent(EventBase):
|
|
"""Has IdentityCredentialsClientsGoneAwayEvent Event."""
|
|
|
|
pass
|
|
|
|
|
|
class IdentityCredentialsClientEvents(ObjectEvents):
|
|
"""Events class for `on`"""
|
|
|
|
has_identity_credentials_clients = EventSource(
|
|
HasIdentityCredentialsClientsEvent
|
|
)
|
|
ready_identity_credentials_clients = EventSource(
|
|
ReadyIdentityCredentialsClientsEvent
|
|
)
|
|
identity_credentials_clients_gone = EventSource(
|
|
IdentityCredentialsClientsGoneAwayEvent
|
|
)
|
|
|
|
|
|
class IdentityCredentialsProvides(Object):
|
|
"""
|
|
IdentityCredentialsProvides class
|
|
"""
|
|
|
|
on = IdentityCredentialsClientEvents()
|
|
_stored = StoredState()
|
|
|
|
def __init__(self, charm, relation_name):
|
|
super().__init__(charm, relation_name)
|
|
self.charm = charm
|
|
self.relation_name = relation_name
|
|
self.framework.observe(
|
|
self.charm.on[relation_name].relation_joined,
|
|
self._on_identity_credentials_relation_joined,
|
|
)
|
|
self.framework.observe(
|
|
self.charm.on[relation_name].relation_changed,
|
|
self._on_identity_credentials_relation_changed,
|
|
)
|
|
self.framework.observe(
|
|
self.charm.on[relation_name].relation_broken,
|
|
self._on_identity_credentials_relation_broken,
|
|
)
|
|
|
|
def _on_identity_credentials_relation_joined(self, event):
|
|
"""Handle IdentityCredentials joined."""
|
|
logging.debug("IdentityCredentialsProvides on_joined")
|
|
self.on.has_identity_credentials_clients.emit()
|
|
|
|
def _on_identity_credentials_relation_changed(self, event):
|
|
"""Handle IdentityCredentials changed."""
|
|
logging.debug("IdentityCredentials on_changed")
|
|
REQUIRED_KEYS = ["username"]
|
|
|
|
values = [
|
|
event.relation.data[event.relation.app].get(k)
|
|
for k in REQUIRED_KEYS
|
|
]
|
|
# Validate data on the relation
|
|
if all(values):
|
|
username = event.relation.data[event.relation.app]["username"]
|
|
self.on.ready_identity_credentials_clients.emit(
|
|
event.relation.id,
|
|
event.relation.name,
|
|
username,
|
|
)
|
|
|
|
def _on_identity_credentials_relation_broken(self, event):
|
|
"""Handle IdentityCredentials broken."""
|
|
logging.debug("IdentityCredentialsProvides on_departed")
|
|
self.on.identity_credentials_clients_gone.emit()
|
|
|
|
def set_identity_credentials(
|
|
self,
|
|
relation_name: int,
|
|
relation_id: str,
|
|
api_version: str,
|
|
auth_host: str,
|
|
auth_port: str,
|
|
auth_protocol: str,
|
|
internal_host: str,
|
|
internal_port: str,
|
|
internal_protocol: str,
|
|
credentials: str,
|
|
project_name: str,
|
|
project_id: str,
|
|
user_domain_name: str,
|
|
user_domain_id: str,
|
|
project_domain_name: str,
|
|
project_domain_id: str,
|
|
region: str,
|
|
admin_role: str,
|
|
):
|
|
logging.debug("Setting identity_credentials connection information.")
|
|
_identity_credentials_rel = None
|
|
for relation in self.framework.model.relations[relation_name]:
|
|
if relation.id == relation_id:
|
|
_identity_credentials_rel = relation
|
|
if not _identity_credentials_rel:
|
|
# Relation has disappeared so don't send the data
|
|
return
|
|
app_data = _identity_credentials_rel.data[self.charm.app]
|
|
app_data["api-version"] = api_version
|
|
app_data["auth-host"] = auth_host
|
|
app_data["auth-port"] = str(auth_port)
|
|
app_data["auth-protocol"] = auth_protocol
|
|
app_data["internal-host"] = internal_host
|
|
app_data["internal-port"] = str(internal_port)
|
|
app_data["internal-protocol"] = internal_protocol
|
|
app_data["credentials"] = credentials
|
|
app_data["project-name"] = project_name
|
|
app_data["project-id"] = project_id
|
|
app_data["user-domain-name"] = user_domain_name
|
|
app_data["user-domain-id"] = user_domain_id
|
|
app_data["project-domain-name"] = project_domain_name
|
|
app_data["project-domain-id"] = project_domain_id
|
|
app_data["region"] = region
|
|
app_data["internal-endpoint"] = self.charm.internal_endpoint
|
|
app_data["public-endpoint"] = self.charm.public_endpoint
|
|
app_data["admin-role"] = admin_role
|