-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-authomatic
- Loading branch information
Showing
11 changed files
with
438 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/usr/bin/env python3 | ||
""" | ||
Magpie helper to create or delete a set of permissions. | ||
When parsing permissions to create, any underlying user, group, or intermediate resource | ||
that are missing, but that can be resolved with reasonable defaults or with an explicit | ||
definition in the configuration file, will be dynamically created prior to setting the | ||
corresponding permission on it. All referenced services should exist beforehand. Consider | ||
using the 'register_providers' utility to register services beforehand as needed. | ||
See https://pavics-magpie.readthedocs.io/en/latest/configuration.html#file-permissions-cfg for more details. | ||
""" | ||
import argparse | ||
from typing import TYPE_CHECKING | ||
|
||
from magpie.cli.utils import make_logging_options, setup_logger_from_options | ||
from magpie.register import magpie_register_permissions_from_config | ||
from magpie.utils import get_logger | ||
|
||
if TYPE_CHECKING: | ||
from typing import Any, Optional, Sequence | ||
|
||
LOGGER = get_logger(__name__, | ||
message_format="%(asctime)s - %(levelname)s - %(message)s", | ||
datetime_format="%d-%b-%y %H:%M:%S", force_stdout=False) | ||
|
||
ERROR_PARAMS = 2 | ||
ERROR_EXEC = 1 | ||
|
||
|
||
def make_parser(): | ||
# type: () -> argparse.ArgumentParser | ||
parser = argparse.ArgumentParser(description=__doc__) | ||
parser.add_argument("-u", "--url", "--magpie-url", help=( | ||
"URL used to access the magpie service (if omitted, will try using 'MAGPIE_URL' environment variable)." | ||
)) | ||
parser.add_argument("-U", "--username", "--magpie-admin-user", help=( | ||
"Admin username for magpie login (if omitted, will try using 'MAGPIE_ADMIN_USER' environment variable)." | ||
)) | ||
parser.add_argument("-P", "--password", "--magpie-admin-password", help=( | ||
"Admin password for magpie login (if omitted, will try using 'MAGPIE_ADMIN_PASSWORD' environment variable)." | ||
)) | ||
parser.add_argument("-c", "--config", required=True, nargs="+", action="append", help=( | ||
"Path to a single configuration file or a directory containing configuration file that contains permissions. " | ||
"The option can be specified multiple times to provide multiple lookup directories or specific files to load. " | ||
"Configuration files must be in JSON or YAML format, with their respective extensions, or the '.cfg' extension." | ||
)) | ||
make_logging_options(parser) | ||
return parser | ||
|
||
|
||
def main(args=None, parser=None, namespace=None): | ||
# type: (Optional[Sequence[str]], Optional[argparse.ArgumentParser], Optional[argparse.Namespace]) -> Any | ||
if not parser: | ||
parser = make_parser() | ||
ns = parser.parse_args(args=args, namespace=namespace) | ||
setup_logger_from_options(LOGGER, ns) | ||
|
||
all_configs = [cfg for cfg_args in ns.config for cfg in cfg_args] | ||
try: | ||
for config in all_configs: | ||
LOGGER.info("Processing: [%s]", config) | ||
magpie_register_permissions_from_config(config) | ||
except Exception as exc: | ||
LOGGER.error("Failed permissions parsing and update from specified configurations [%s].", str(exc)) | ||
return ERROR_EXEC | ||
return 0 | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,6 +95,8 @@ exclude_lines = | |
LOGGER.error | ||
LOGGER.exception | ||
LOGGER.log | ||
@overload | ||
... | ||
|
||
[tool:pytest] | ||
addopts = | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.