-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcloud_providers.py
234 lines (200 loc) · 9.01 KB
/
cloud_providers.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
import os
import logging
import shutil
log = logging.getLogger(__name__)
class CloudProvider:
def __init__(self, provider: str, **kwargs):
"""
Initializes the CloudProvider class.
Args:
provider (str): The name of the cloud provider.
**kwargs: Arbitrary keyword arguments.
"""
self.provider = provider
self.kwargs = kwargs
def upload(self) -> tuple:
"""
Uploads a file to a cloud provider.
Returns:
tuple: A tuple containing a boolean value indicating success or failure, the release name, the provider, and any exception that occurred.
"""
raise NotImplementedError
class AwsCloudProvider(CloudProvider):
def __init__(self, provider: str, **kwargs):
"""
Initializes the AwsCloudProvider class.
Args:
provider (str): The name of the cloud provider.
**kwargs: Arbitrary keyword arguments.
"""
super().__init__(provider, **kwargs)
def upload(self, **kwargs) -> tuple:
"""
Uploads a file to an Amazon S3 bucket using the S3Hook class.
Returns:
tuple: A tuple containing a boolean value indicating success or failure, the release name, the provider, and any exception that occurred.
"""
try:
from airflow.providers.amazon.aws.hooks.s3 import S3Hook
logging.info(
"Connecting to aws s3 service to validate bucket connection........"
)
s3Class = S3Hook(aws_conn_id=kwargs["conn_id"])
s3Class.check_for_bucket(bucket_name=kwargs["bucket_name"])
with open(kwargs["file_path"], "rb") as f:
s3Class._upload_file_obj(
file_obj=f,
key=kwargs["file_name"],
bucket_name=kwargs["bucket_name"],
replace=True,
)
log.info("data sent to s3 bucket sucessfully")
return True, kwargs["release_name"], self.provider, None
except Exception as e:
return False, kwargs["release_name"], self.provider, e
class GcsCloudProvider(CloudProvider):
def __init__(self, provider: str, **kwargs):
"""
Initializes the GcsCloudProvider class.
Args:
provider (str): The name of the cloud provider.
**kwargs: Arbitrary keyword arguments.
"""
super().__init__(provider, **kwargs)
def upload(self, **kwargs) -> tuple:
"""
Uploads a file to a Google Cloud Storage (GCS) bucket using the GCSHook class.
Args:
provider (str): The name of the cloud provider. In this case, it should be "gcs".
conn_id (str): The connection ID for the Google Cloud Storage (GCS) account.
bucket_name (str): The name of the GCS bucket.
file_path (str): The path to the file to be uploaded.
file_name (str): The name of the file to be uploaded.
provider_secret_env_name (str): The name of the environment variable containing the credentials for the GCS account.
release_name (str): The name of the release.
Returns:
tuple: A tuple containing a boolean value indicating success or failure, the release name, the provider, and any exception that occurred.
"""
try:
from airflow.providers.google.cloud.operators.gcs import GCSHook
logging.info(
"Connecting to gcs service to validate bucket connection........"
)
if not kwargs["conn_id"] or kwargs["conn_id"] is None:
if (
os.getenv(kwargs["provider_secret_env_name"])
== "google-cloud-platform://"
):
logging.info(
"configuring workload identity for google connection flow"
)
os.environ[
"AIRFLOW_CONN_GOOGLE_CLOUD_DEFAULT"
] = "google-cloud-platform://"
else:
logging.info(
"fallback to google connection default connection flow"
)
os.environ["AIRFLOW_CONN_GOOGLE_CLOUD_DEFAULT"] = os.getenv(
kwargs["provider_secret_env_name"]
)
os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = os.getenv(
kwargs["provider_secret_env_name"]
)
gcsClass = GCSHook()
else:
logging.info(
"Connecting to google service using conn_id flow for workload identity"
)
if kwargs["conn_id"] == "google-cloud-platform://":
logging.info("configuring workload identity for conn_id flow")
os.environ[
"AIRFLOW_CONN_GOOGLE_CLOUD_DEFAULT"
] = "google-cloud-platform://"
gcsClass = GCSHook()
else:
logging.info("Connecting to google service using conn_id flow")
gcsClass = GCSHook(gcp_conn_id=kwargs["conn_id"])
gcsClass.upload(
bucket_name=kwargs["bucket_name"],
filename=kwargs["file_path"],
object_name=kwargs["file_name"],
)
return True, kwargs["release_name"], self.provider, None
except Exception as e:
return False, kwargs["release_name"], self.provider, e
class AzureCloudProvider(CloudProvider):
def __init__(self, provider: str, **kwargs):
"""
Initializes the AzureCloudProvider class.
Args:
provider (str): The name of the cloud provider.
**kwargs: Arbitrary keyword arguments.
"""
super().__init__(provider, **kwargs)
def upload(self, **kwargs) -> tuple:
"""
Uploads a file to an Azure Blob Storage (ABS) container using the WasbHook class.
Args:
provider (str): The name of the cloud provider. In this case, it should be "azure".
conn_id (str): The connection ID for the Azure Blob Storage (ABS) account.
bucket_name (str): The name of the ABS container.
file_path (str): The path to the file to be uploaded.
file_name (str): The name of the file to be uploaded.
provider_secret_env_name (str): The name of the environment variable containing the credentials for the ABS account.
release_name (str): The name of the release.
Returns:
tuple: A tuple containing a boolean value indicating success or failure, the release name, the provider, and any exception that occurred.
"""
try:
from airflow.providers.microsoft.azure.hooks.wasb import WasbHook
logging.info(
"Connecting to azure blob service to validate bucket connection........"
)
azureClass = WasbHook(wasb_conn_id=kwargs["conn_id"])
with open(kwargs["file_path"], "rb") as f:
azureClass.upload(
container_name=kwargs["bucket_name"],
data=f,
blob_name=kwargs["file_name"],
)
return True, kwargs["release_name"], self.provider, None
except Exception as e:
return False, kwargs["release_name"], self.provider, e
class LocalProvider(CloudProvider):
def __init__(self, provider: str, **kwargs):
"""
Initializes the LocalCloudProvider class.
Args:
provider (str): The name of the cloud provider.
**kwargs: Arbitrary keyword arguments.
"""
super().__init__(provider, **kwargs)
def upload(self, **kwargs) -> tuple:
"""
Uploads a file to a local directory.
Args:
provider (str): The name of the cloud provider. In this case, it should be "local".
file_path (str): The path to the file to be uploaded.
file_name (str): The name of the file to be uploaded.
release_name (str): The name of the release.
Returns:
tuple: A tuple containing a boolean value indicating success or failure, the release name, the provider, and any exception that occurred.
"""
try:
destinationPath = os.path.join(
"/tmp", kwargs["bucket_name"], kwargs["file_name"]
)
if not os.path.exists(destinationPath):
os.makedirs(os.path.dirname(destinationPath), exist_ok=True)
shutil.copy(kwargs["file_path"], destinationPath)
logging.debug(f"File copied to {destinationPath}")
return True, kwargs["release_name"], self.provider, None
except Exception as e:
return False, kwargs["release_name"], self.provider, e
ProviderFactory = {
"aws": AwsCloudProvider,
"gcp": GcsCloudProvider,
"azure": AzureCloudProvider,
"local": LocalProvider,
}