1
1
import json
2
2
from dataclasses import dataclass
3
3
from pathlib import Path
4
- from typing import Any , Optional
4
+ from typing import Optional
5
5
6
6
from requests .auth import AuthBase
7
7
@@ -22,17 +22,14 @@ def __init__(
22
22
STACKIT_SERVICE_ACCOUNT_TOKEN : str = None ,
23
23
STACKIT_SERVICE_ACCOUNT_KEY_PATH : str = None ,
24
24
STACKIT_PRIVATE_KEY_PATH : str = None ,
25
+ ** kwargs ,
25
26
):
26
27
self .service_account_mail = STACKIT_SERVICE_ACCOUNT_EMAIL
27
28
self .service_account_token = STACKIT_SERVICE_ACCOUNT_TOKEN
28
29
self .service_account_key_path = STACKIT_SERVICE_ACCOUNT_KEY_PATH
29
30
self .private_key_path = STACKIT_PRIVATE_KEY_PATH
30
31
31
32
32
- def either_this_or_that (this : Any , that : Any ) -> Optional [Any ]:
33
- return this if this else that
34
-
35
-
36
33
class Authorization :
37
34
DEFAULT_CREDENTIALS_FILE_PATH = ".stackit/credentials.json"
38
35
service_account_mail : Optional [str ] = None
@@ -45,16 +42,26 @@ class Authorization:
45
42
46
43
def __init__ (self , configuration : Configuration ):
47
44
credentials = self .__read_credentials_file (configuration .credentials_file_path )
48
- self .service_account_mail = either_this_or_that (
49
- configuration .service_account_mail , credentials .service_account_mail
45
+ self .service_account_mail = (
46
+ configuration .service_account_mail
47
+ if configuration .service_account_mail is not None
48
+ else credentials .service_account_mail
49
+ )
50
+ self .service_account_token = (
51
+ configuration .service_account_token
52
+ if configuration .service_account_token is not None
53
+ else credentials .service_account_token
50
54
)
51
- self .service_account_token = either_this_or_that (
52
- configuration .service_account_token , credentials .service_account_token
55
+ self .service_account_key_path = (
56
+ configuration .service_account_key_path
57
+ if configuration .service_account_key_path is not None
58
+ else credentials .service_account_key_path
53
59
)
54
- self .service_account_key_path = either_this_or_that (
55
- configuration .service_account_key_path , credentials .service_account_key_path
60
+ self .private_key_path = (
61
+ configuration .private_key_path
62
+ if configuration .private_key_path is not None
63
+ else credentials .private_key_path
56
64
)
57
- self .private_key_path = either_this_or_that (configuration .private_key_path , credentials .private_key_path )
58
65
self .auth_method = configuration .custom_auth
59
66
self .token_endpoint = configuration .token_endpoint
60
67
self .__read_keys ()
0 commit comments