| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  | from collections.abc import Generator | 
					
						
							| 
									
										
										
										
											2024-11-24 13:28:46 +08:00
										 |  |  | from datetime import UTC, datetime, timedelta | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | from azure.storage.blob import AccountSasPermissions, BlobServiceClient, ResourceTypes, generate_account_sas | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-22 11:01:32 +08:00
										 |  |  | from configs import dify_config | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  | from extensions.ext_redis import redis_client | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  | from extensions.storage.base_storage import BaseStorage | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-09 14:15:27 +08:00
										 |  |  | class AzureBlobStorage(BaseStorage): | 
					
						
							|  |  |  |     """Implementation for Azure Blob storage.""" | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-22 11:01:32 +08:00
										 |  |  |     def __init__(self): | 
					
						
							|  |  |  |         super().__init__() | 
					
						
							|  |  |  |         self.bucket_name = dify_config.AZURE_BLOB_CONTAINER_NAME | 
					
						
							|  |  |  |         self.account_url = dify_config.AZURE_BLOB_ACCOUNT_URL | 
					
						
							|  |  |  |         self.account_name = dify_config.AZURE_BLOB_ACCOUNT_NAME | 
					
						
							|  |  |  |         self.account_key = dify_config.AZURE_BLOB_ACCOUNT_KEY | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  |     def save(self, filename, data): | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |         client = self._sync_client() | 
					
						
							|  |  |  |         blob_container = client.get_container_client(container=self.bucket_name) | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  |         blob_container.upload_blob(filename, data) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def load_once(self, filename: str) -> bytes: | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |         client = self._sync_client() | 
					
						
							|  |  |  |         blob = client.get_container_client(container=self.bucket_name) | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  |         blob = blob.get_blob_client(blob=filename) | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  |         data: bytes = blob.download_blob().readall() | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  |         return data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def load_stream(self, filename: str) -> Generator: | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |         client = self._sync_client() | 
					
						
							| 
									
										
										
										
											2024-10-25 10:11:25 +08:00
										 |  |  |         blob = client.get_blob_client(container=self.bucket_name, blob=filename) | 
					
						
							|  |  |  |         blob_data = blob.download_blob() | 
					
						
							|  |  |  |         yield from blob_data.chunks() | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def download(self, filename, target_filepath): | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |         client = self._sync_client() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         blob = client.get_blob_client(container=self.bucket_name, blob=filename) | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  |         with open(target_filepath, "wb") as my_blob: | 
					
						
							|  |  |  |             blob_data = blob.download_blob() | 
					
						
							|  |  |  |             blob_data.readinto(my_blob) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def exists(self, filename): | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |         client = self._sync_client() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         blob = client.get_blob_client(container=self.bucket_name, blob=filename) | 
					
						
							| 
									
										
										
										
											2024-04-29 18:22:03 +08:00
										 |  |  |         return blob.exists() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def delete(self, filename): | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |         client = self._sync_client() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         blob_container = client.get_container_client(container=self.bucket_name) | 
					
						
							|  |  |  |         blob_container.delete_blob(filename) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _sync_client(self): | 
					
						
							| 
									
										
										
										
											2024-08-15 12:54:05 +08:00
										 |  |  |         cache_key = "azure_blob_sas_token_{}_{}".format(self.account_name, self.account_key) | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |         cache_result = redis_client.get(cache_key) | 
					
						
							|  |  |  |         if cache_result is not None: | 
					
						
							| 
									
										
										
										
											2024-08-15 12:54:05 +08:00
										 |  |  |             sas_token = cache_result.decode("utf-8") | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |         else: | 
					
						
							|  |  |  |             sas_token = generate_account_sas( | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  |                 account_name=self.account_name or "", | 
					
						
							|  |  |  |                 account_key=self.account_key or "", | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |                 resource_types=ResourceTypes(service=True, container=True, object=True), | 
					
						
							|  |  |  |                 permission=AccountSasPermissions(read=True, write=True, delete=True, list=True, add=True, create=True), | 
					
						
							| 
									
										
										
										
											2024-11-24 13:28:46 +08:00
										 |  |  |                 expiry=datetime.now(UTC).replace(tzinfo=None) + timedelta(hours=1), | 
					
						
							| 
									
										
										
										
											2024-06-04 13:04:56 +08:00
										 |  |  |             ) | 
					
						
							| 
									
										
										
										
											2024-06-04 14:30:23 +08:00
										 |  |  |             redis_client.set(cache_key, sas_token, ex=3000) | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  |         return BlobServiceClient(account_url=self.account_url or "", credential=sas_token) |