-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathsettings.py
180 lines (162 loc) · 5.7 KB
/
settings.py
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
from yaml import load
from yaml import YAMLError
try:
from yaml import CLoader as Loader
except ImportError:
from yaml import Loader
SETTINGS_FILE = "settings.yaml"
SETTINGS_STRUCT = {
"client_config_backend": {
"type": str,
"required": True,
"default": "file",
"dependency": [
{"value": "file", "attribute": ["client_config_file"]},
{"value": "settings", "attribute": ["client_config"]},
{"value": "service", "attribute": ["service_config"]},
],
},
"save_credentials": {
"type": bool,
"required": True,
"default": False,
"dependency": [
{"value": True, "attribute": ["save_credentials_backend"]}
],
},
"get_refresh_token": {"type": bool, "required": False, "default": False},
"client_config_file": {
"type": str,
"required": False,
"default": "client_secrets.json",
},
"save_credentials_backend": {
"type": str,
"required": False,
"dependency": [
{"value": "file", "attribute": ["save_credentials_file"]}
],
},
"client_config": {
"type": dict,
"required": False,
"struct": {
"client_id": {"type": str, "required": True},
"client_secret": {"type": str, "required": True},
"auth_uri": {
"type": str,
"required": True,
"default": "https://accounts.google.com/o/oauth2/auth",
},
"token_uri": {
"type": str,
"required": True,
"default": "https://accounts.google.com/o/oauth2/token",
},
"redirect_uri": {
"type": str,
"required": True,
"default": "urn:ietf:wg:oauth:2.0:oob",
},
"revoke_uri": {"type": str, "required": True, "default": None},
},
},
"service_config": {
"type": dict,
"required": False,
"struct": {
"client_user_email": {
"type": str,
"required": True,
"default": None,
},
"client_service_email": {"type": str, "required": False},
"client_pkcs12_file_path": {"type": str, "required": False},
"client_json_file_path": {"type": str, "required": False},
"use_default": {"type": bool, "required": False},
},
},
"oauth_scope": {
"type": list,
"required": True,
"struct": str,
"default": ["https://www.googleapis.com/auth/drive"],
},
"save_credentials_file": {"type": str, "required": False},
}
class SettingsError(IOError):
"""Error while loading/saving settings"""
class InvalidConfigError(IOError):
"""Error trying to read client configuration."""
def LoadSettingsFile(filename=SETTINGS_FILE):
"""Loads settings file in yaml format given file name.
:param filename: path for settings file. 'settings.yaml' by default.
:type filename: str.
:raises: SettingsError
"""
try:
with open(filename) as stream:
data = load(stream, Loader=Loader)
except (YAMLError, OSError) as e:
raise SettingsError(e)
return data
def ValidateSettings(data):
"""Validates if current settings is valid.
:param data: dictionary containing all settings.
:type data: dict.
:raises: InvalidConfigError
"""
_ValidateSettingsStruct(data, SETTINGS_STRUCT)
def _ValidateSettingsStruct(data, struct):
"""Validates if provided data fits provided structure.
:param data: dictionary containing settings.
:type data: dict.
:param struct: dictionary containing structure information of settings.
:type struct: dict.
:raises: InvalidConfigError
"""
# Validate required elements of the setting.
for key in struct:
if struct[key]["required"]:
_ValidateSettingsElement(data, struct, key)
def _ValidateSettingsElement(data, struct, key):
"""Validates if provided element of settings data fits provided structure.
:param data: dictionary containing settings.
:type data: dict.
:param struct: dictionary containing structure information of settings.
:type struct: dict.
:param key: key of the settings element to validate.
:type key: str.
:raises: InvalidConfigError
"""
# Check if data exists. If not, check if default value exists.
value = data.get(key)
data_type = struct[key]["type"]
if value is None:
try:
default = struct[key]["default"]
except KeyError:
raise InvalidConfigError("Missing required setting %s" % key)
else:
data[key] = default
# If data exists, Check type of the data
elif type(value) is not data_type:
raise InvalidConfigError(f"Setting {key} should be type {data_type}")
# If type of this data is dict, check if structure of the data is valid.
if data_type is dict:
_ValidateSettingsStruct(data[key], struct[key]["struct"])
# If type of this data is list, check if all values in the list is valid.
elif data_type is list:
for element in data[key]:
if type(element) is not struct[key]["struct"]:
raise InvalidConfigError(
"Setting %s should be list of %s"
% (key, struct[key]["struct"])
)
# Check dependency of this attribute.
dependencies = struct[key].get("dependency")
if dependencies:
for dependency in dependencies:
if value == dependency["value"]:
for reqkey in dependency["attribute"]:
_ValidateSettingsElement(data, struct, reqkey)