|
|
|
@ -8,7 +8,7 @@ from api.models import AppStorage, UserInfo |
|
|
|
|
from .aliyunApi import AliYunOss |
|
|
|
|
from .qiniuApi import QiNiuOss |
|
|
|
|
from .localApi import LocalStorage |
|
|
|
|
import json,time |
|
|
|
|
import json, time, base64 |
|
|
|
|
from fir_ser.settings import THIRD_PART_CONFIG, CACHE_KEY_TEMPLATE |
|
|
|
|
from django.core.cache import cache |
|
|
|
|
|
|
|
|
@ -47,14 +47,22 @@ class Storage(object): |
|
|
|
|
self.storage_obj = user.storage |
|
|
|
|
if self.storage_obj: |
|
|
|
|
auth = self.get_storage_auth(self.storage_obj) |
|
|
|
|
storage_key = "_".join([CACHE_KEY_TEMPLATE.get('user_storage_key'), |
|
|
|
|
base64.b64encode(json.dumps(auth).encode("utf-8")).decode("utf-8")[0:64]]) |
|
|
|
|
storage_type = self.storage_obj.storage_type |
|
|
|
|
new_storage_obj = cache.get(storage_key) |
|
|
|
|
if new_storage_obj: |
|
|
|
|
return new_storage_obj |
|
|
|
|
else: |
|
|
|
|
if storage_type == 1: |
|
|
|
|
new_storage_obj = QiNiuOss(**auth) |
|
|
|
|
elif storage_type == 2: |
|
|
|
|
new_storage_obj = AliYunOss(**auth) |
|
|
|
|
else: |
|
|
|
|
new_storage_obj = LocalStorage(**auth) |
|
|
|
|
|
|
|
|
|
new_storage_obj.storage_type = storage_type |
|
|
|
|
cache.set(storage_key, new_storage_obj, 600) |
|
|
|
|
return new_storage_obj |
|
|
|
|
else: |
|
|
|
|
return self.get_default_storage() |
|
|
|
@ -69,6 +77,12 @@ class Storage(object): |
|
|
|
|
if storage.get("active", None): |
|
|
|
|
storage_type = storage.get('type', None) |
|
|
|
|
auth = storage.get('auth', {}) |
|
|
|
|
storage_key = "_".join([CACHE_KEY_TEMPLATE.get('user_storage_key'), |
|
|
|
|
base64.b64encode(json.dumps(auth).encode("utf-8")).decode("utf-8")[0:64]]) |
|
|
|
|
new_storage_obj = cache.get(storage_key) |
|
|
|
|
if new_storage_obj: |
|
|
|
|
return new_storage_obj |
|
|
|
|
else: |
|
|
|
|
if storage_type == 1: |
|
|
|
|
new_storage_obj = QiNiuOss(**auth) |
|
|
|
|
new_storage_obj.storage_type = 1 |
|
|
|
@ -78,13 +92,10 @@ class Storage(object): |
|
|
|
|
else: |
|
|
|
|
new_storage_obj = LocalStorage(**auth) |
|
|
|
|
new_storage_obj.storage_type = 3 |
|
|
|
|
|
|
|
|
|
cache.set(storage_key, new_storage_obj, 600) |
|
|
|
|
return new_storage_obj |
|
|
|
|
return None |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_storage_type(self): |
|
|
|
|
if self.storage: |
|
|
|
|
return self.storage.storage_type |
|
|
|
@ -103,5 +114,3 @@ class Storage(object): |
|
|
|
|
print(e) |
|
|
|
|
additionalparameters = {} |
|
|
|
|
return {**auth_dict, **additionalparameters} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|