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
|
"""Main project class."""
"""
Copyright 2021 Deutsche Telekom AG
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import argparse
import logging
import logging.config
import os
import sys
from pathlib import Path
from onapsdk.onap_service import OnapService # type: ignore
from onap_data_provider.config_parser import ConfigParser
logging.config.dictConfig(
{
"version": 1,
"disable_existing_loggers": False,
"formatters": {
"odp": {
"class": "logging.Formatter",
"format": "%(asctime)s [%(levelname)s] %(module)s: %(message)s",
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"level": os.getenv("LOGGING_LEVEL", "INFO").upper(),
"formatter": "odp",
},
"file": {
"class": "logging.FileHandler",
"level": "DEBUG",
"filename": "odp.log",
"mode": "w",
"formatter": "odp",
},
},
"loggers": {
"": {"level": "DEBUG", "handlers": ["console", "file"]},
},
}
)
def create_parser() -> argparse.ArgumentParser:
"""Create argument parser."""
parser: argparse.ArgumentParser = argparse.ArgumentParser(
description="ONAP data provider"
)
parser.add_argument(
"-f",
"--filename",
type=Path,
action="append",
dest="infra_files",
required=True,
help="Path to the infra file which describes resources to create. Can be directory as well",
)
parser.add_argument(
"--validate-only",
action="store_true",
help="Doesn't create any resources - checks only if data in infra file has valid format",
)
parser.add_argument(
"--proxy",
nargs="*",
help="Setup proxy connection with given url. Provide full URL with protocol, eg. http://localhost:8080",
)
return parser
def run() -> None:
"""Project main function."""
parser: argparse.ArgumentParser = create_parser()
args: argparse.Namespace = parser.parse_args()
if args.proxy:
OnapService.set_proxy(
{url.split("://")[0]: url.split("://")[1] for url in args.proxy}
)
conf_parser = ConfigParser(args.infra_files)
conf_parser.validate()
if args.validate_only:
print("Input data is valid!")
sys.exit(0)
for x in conf_parser.parse():
x.create()
if __name__ == "__main__":
run()
|