Skip to content

Commit

Permalink
ipaservice: Use 'service' datatype
Browse files Browse the repository at this point in the history
Adapt plugin to use the 'service' datatype, instead of reimplementing
the required operations.
  • Loading branch information
rjeffman committed Dec 15, 2023
1 parent 373cacb commit bb4a15f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
31 changes: 15 additions & 16 deletions plugins/modules/ipaservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@
from ansible.module_utils.ansible_freeipa_module import \
IPAAnsibleModule, compare_args_ipa, encode_certificate, \
gen_add_del_lists, gen_add_list, gen_intersection_list, ipalib_errors, \
api_get_realm, to_text
to_text, ListOf, Service
from ansible.module_utils import six
if six.PY3:
unicode = str
Expand Down Expand Up @@ -599,7 +599,6 @@ def main():
services = ansible_module.params_get("services")

# service attributes
principal = ansible_module.params_get("principal")
certificate = ansible_module.params_get("certificate")
# Any leading or trailing whitespace is removed while adding the
# certificate with serive_add_cert. To be able to compare the results
Expand Down Expand Up @@ -656,6 +655,11 @@ def main():
msg="Skipping host check is not supported by your IPA version")
check_authind(ansible_module, auth_ind)

# We need API to be available to ensure valid pricipals.
service_cast = Service(ansible_module.ipa_get_realm())
principal = ansible_module.params_get_with_type(
"principal", ListOf(service_cast))

commands = []
keytab_members = ["user", "group", "host", "hostgroup"]
service_set = set()
Expand All @@ -668,6 +672,8 @@ def main():
msg="service '%s' is used more than once" % name)
service_set.add(name)
principal = service.get("principal")
if principal:
principal = [service_cast(item) for item in principal]
certificate = service.get("certificate")
# Any leading or trailing whitespace is removed while adding
# the certificate with serive_add_cert. To be able to compare
Expand Down Expand Up @@ -716,27 +722,18 @@ def main():
principal_add, principal_del = [], []

if principal and res_find:
# When comparing principals to the existing ones,
# the REALM is needded, and are added here for those
# that do not have it.
principal = [
p if "@" in p
else "%s@%s" % (p, api_get_realm())
for p in principal
]
principal = list(set(principal))

# Create list of existing principal aliases as strings
# to compare with provided ones.
canonicalname = {
to_text(p)
for p in res_find.get("krbcanonicalname", [])
service_cast(elem)
for elem in res_find.get("krbcanonicalname")

}
res_principals = [
to_text(elem)
service_cast(elem)
for elem in res_find.get("krbprincipalname", [])
if service_cast(elem) not in canonicalname
]
res_principals = list(set(res_principals) - canonicalname)

if state == "present":
if action == "service":
Expand Down Expand Up @@ -891,9 +888,11 @@ def main():

# Manage members
if principal_add:
principal_add = [to_text(item) for item in principal_add]
commands.append([name, "service_add_principal",
{"krbprincipalname": principal_add}])
if principal_del:
principal_del = [to_text(item) for item in principal_del]
commands.append([name, "service_remove_principal",
{"krbprincipalname": principal_del}])

Expand Down
1 change: 1 addition & 0 deletions tests/service/test_service_disable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
ipaservice:
ipaadmin_password: SomeADMINpassword
name: "mysvc1/{{ ansible_facts['fqdn'] }}"
continue: true
state: absent

- name: Ensure service is present
Expand Down

0 comments on commit bb4a15f

Please sign in to comment.