From 7e3999beab76301d18fe9da0af8ed7b96c050a40 Mon Sep 17 00:00:00 2001 From: Ben Steffen Date: Fri, 20 Dec 2019 20:29:20 -0500 Subject: [PATCH] Refactor authz --- python/invirt/authz.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/python/invirt/authz.py b/python/invirt/authz.py index 7471ac1..60bcf67 100644 --- a/python/invirt/authz.py +++ b/python/invirt/authz.py @@ -4,7 +4,7 @@ Invirt authorization. This module acts as a loader for the pluggable authorization system. Any Python module which wishes to provide an authorization scheme for -Invirt should advertise an entry point in the invirt.authz group with +Invirt should advertise an entry point in the invirt.authz namespace with a unique name. That name can then be configured in /etc/invirt/master.yaml as the authz mechanism. """ @@ -14,12 +14,12 @@ import pkg_resources from invirt.config import config +authz_module = next(pkg_resources.iter_entry_points('invirt.authz', config['authz.name'])).load() + def expand_owner(name): - """Expand an "owner" to a list of authorized users.""" - for ep in pkg_resources.iter_entry_points('invirt.authz', config['authz.name']): - return ep.load().expandOwner(name) + """Expand an 'owner' to a list of authorized users.""" + return authz_module.expandOwner(name) def expand_admin(name): - """Expand an "administrator" to a list of authorized users.""" - for ep in pkg_resources.iter_entry_points('invirt.authz', config['authz.name']): - return ep.load().expandAdmin(name) + """Expand an 'administrator' to a list of authorized users.""" + return authz_module.expandAdmin(name) -- 1.7.9.5