96 lines
3.9 KiB
Python
96 lines
3.9 KiB
Python
import logging
|
|
import traceback
|
|
import uuid
|
|
import requests
|
|
from requests.exceptions import RequestException
|
|
from django.conf import settings
|
|
from rest_framework.exceptions import APIException, ParseError
|
|
|
|
from apps.third.errors import KING_REQUEST_ERROR
|
|
from apps.utils.tools import print_roundtrip
|
|
from django.utils.timezone import now
|
|
from apps.third.king.king_api import kapis
|
|
from apps.utils.tools import singleton
|
|
from django.core.cache import cache
|
|
from apps.third.mixins import HandleLogMixin
|
|
import time
|
|
requests.packages.urllib3.disable_warnings()
|
|
myLogger = logging.getLogger('log')
|
|
|
|
|
|
@singleton
|
|
class KingClient(HandleLogMixin):
|
|
"""
|
|
亚控数采
|
|
"""
|
|
|
|
def __init__(self) -> None:
|
|
self.king_enabled = getattr(settings, 'KING_ENABLED', False)
|
|
if self.king_enabled:
|
|
self.headers = {}
|
|
self.log = {}
|
|
# self._get_token()
|
|
|
|
def _get_token(self):
|
|
# is_ok, _ = self.request(**kapis['heartbeat'], raise_exception=False, timeout=10)
|
|
# if is_ok == 'success':
|
|
# return
|
|
if cache.get('king_token_request') != 'requesting':
|
|
json = {
|
|
'username': settings.KING_USERNAME,
|
|
'password': settings.KING_PASSWORD
|
|
}
|
|
cache.set('king_token_request', 'requesting', timeout=None)
|
|
_, res = self.request(
|
|
**kapis['login'], json=json, timeout=10, check_auth=False)
|
|
cache.set('king_token', res['Authorization'], timeout=None)
|
|
cache.set('king_token_request', 'done', timeout=None)
|
|
|
|
def request(self, url: str, method: str = 'post', params=dict(), json=dict(), timeout=20, raise_exception=True, check_auth=True):
|
|
if not self.king_enabled:
|
|
raise ParseError('亚控对接未启用')
|
|
if check_auth:
|
|
count = 6
|
|
while cache.get('king_token_request') == 'requesting':
|
|
time.sleep(0.5)
|
|
if cache.get('king_token_request') == 'done':
|
|
break
|
|
count = count - 1
|
|
if count < 0:
|
|
break
|
|
self.headers['Authorization'] = cache.get('king_token')
|
|
self.log = {"requested_at": now(), "id": uuid.uuid4(), "path": url, "method": method,
|
|
"params": params, "body": json, "target": "king", "result": 10, "headers": self.headers}
|
|
try:
|
|
r = getattr(requests, method)('{}{}'.format(settings.KING_BASE_URL, url),
|
|
headers=self.headers, params=params, json=json, timeout=timeout, verify=False)
|
|
# if settings.DEBUG:
|
|
# print_roundtrip(r)
|
|
ret = r.text
|
|
if 300 > r.status_code >= 200:
|
|
ret = r.json()
|
|
if 'code' in ret:
|
|
if ret['code'] != 0:
|
|
if ret['code'] in [-1, -2] and check_auth: # 认证失败
|
|
self._get_token()
|
|
self.request(url, method, params, json, timeout, raise_exception, check_auth=False)
|
|
return
|
|
err_detail = dict(detail=f"亚控错误: {ret['message']}",
|
|
code='king_' + str(ret['code']))
|
|
self.handle_log(result='fail', response=ret)
|
|
if raise_exception:
|
|
raise ParseError(**err_detail)
|
|
return 'fail', err_detail
|
|
return 'success', ret['data']
|
|
return 'success', ret
|
|
else:
|
|
self.handle_log(result='error', response=ret)
|
|
except RequestException:
|
|
self.handle_log(result='error', errors=traceback.format_exc())
|
|
if raise_exception:
|
|
raise APIException(**KING_REQUEST_ERROR)
|
|
return 'error', KING_REQUEST_ERROR
|
|
|
|
|
|
kingClient = KingClient()
|