136 lines
4.5 KiB
Python
136 lines
4.5 KiB
Python
import time
|
|
from threading import Thread
|
|
import traceback
|
|
import uuid
|
|
import logging
|
|
|
|
import requests
|
|
from rest_framework.exceptions import APIException, ParseError
|
|
from django.conf import settings
|
|
|
|
from apps.third.errors import SP_REQUEST_ERROR
|
|
from apps.third.models import Tlog
|
|
from apps.utils.tools import print_roundtrip, ranstr
|
|
from apps.third.tapis import spapis
|
|
from django.utils.timezone import now
|
|
from apps.utils.tools import singleton
|
|
|
|
requests.packages.urllib3.disable_warnings()
|
|
myLogger = logging.getLogger('log')
|
|
|
|
|
|
@singleton
|
|
class SpClient:
|
|
"""
|
|
音响接口
|
|
"""
|
|
|
|
def __init__(self, username=settings.SP_USERNAME,
|
|
password=settings.SP_PASSWORD) -> None:
|
|
if not settings.SP_ENABLED:
|
|
return None
|
|
self.username = username
|
|
self.password = password
|
|
self.headers = {"Connection": "close"}
|
|
self.isGetingToken = False
|
|
self.log = {}
|
|
self._get_token()
|
|
|
|
def _get_token(self):
|
|
self.isGetingToken = True
|
|
json_data = {
|
|
"user": {
|
|
"email": self.username,
|
|
"password": self.password
|
|
}
|
|
}
|
|
is_ok, res = self.request(**spapis['user_login'], json=json_data, raise_exception=False)
|
|
if is_ok == 'success':
|
|
self.headers['Authorization'] = 'Bearer ' + res['user']['token']
|
|
self.isGetingToken = False
|
|
|
|
def request(self, url: str, method: str, params=dict(), json=dict(), timeout=120,
|
|
file_path_rela=None, raise_exception=True):
|
|
if not settings.SP_ENABLED:
|
|
raise ParseError('音响对接未启用')
|
|
self.log = {"requested_at": now(), "id": uuid.uuid4(), "path": url, "method": method,
|
|
"params": params, "body": json, "target": "speaker", "result": 10, "headers": self.headers}
|
|
files = None
|
|
if file_path_rela: # 相对路径
|
|
files = {'file': open(settings.BASE_DIR + file_path_rela, 'rb')}
|
|
if params:
|
|
url = url.format(**params)
|
|
r = getattr(requests, method)('{}{}'.format(settings.SP_BASE_URL, url),
|
|
headers=self.headers, params=params, json=json,
|
|
timeout=timeout, files=files, verify=False)
|
|
# if settings.DEBUG:
|
|
# print_roundtrip(r)
|
|
ret = r.text
|
|
if 300 > r.status_code >= 200:
|
|
ret = r.json()
|
|
if 'code' in ret and ret['code'] not in ['0', '100', '00000', '1000', 0, 100, 1000]:
|
|
detail = '音响错误:{}'.format(str(ret.get('msg', '')))
|
|
err_detail = dict(detail=detail, code='sp_'+str(ret['code']))
|
|
self.handle_log(result='fail', response=ret)
|
|
if raise_exception:
|
|
raise ParseError(**err_detail)
|
|
return 'fail', err_detail
|
|
# self.handle_log(result='success', response=ret)
|
|
return 'success', ret
|
|
self.handle_log(result='error', response=ret)
|
|
if raise_exception:
|
|
raise APIException(**SP_REQUEST_ERROR)
|
|
return 'error', SP_REQUEST_ERROR
|
|
|
|
def speak(self, path: str, sns: list, v_num: int):
|
|
"""播放报警声
|
|
|
|
Args:
|
|
path (str): 资源本地地址
|
|
sns (list): 喇叭sn队列
|
|
v_num (int): 播放次数
|
|
"""
|
|
uri = path
|
|
if not uri.startswith('http'):
|
|
uri = settings.BASE_URL_IN + path
|
|
urls = []
|
|
while v_num > 0:
|
|
urls.append({
|
|
"name": "alarm.mp3",
|
|
"uri": uri
|
|
})
|
|
v_num = v_num - 1
|
|
json = {
|
|
"sns": sns,
|
|
"type": "req",
|
|
"name": "songs_queue_append",
|
|
"params": {
|
|
"tid": ranstr(6),
|
|
"vol": 100,
|
|
"urls": urls
|
|
}
|
|
}
|
|
self.request(**spapis['send_to_device'], json=json)
|
|
return
|
|
|
|
def _get_response_ms(self):
|
|
"""
|
|
Get the duration of the request response cycle is milliseconds.
|
|
In case of negative duration 0 is returned.
|
|
"""
|
|
response_timedelta = now() - self.log["requested_at"]
|
|
response_ms = int(response_timedelta.total_seconds() * 1000)
|
|
return max(response_ms, 0)
|
|
|
|
def handle_log(self, result, response=None, errors=None):
|
|
self.log.update({
|
|
"result": result,
|
|
"response": response,
|
|
"response_ms": self._get_response_ms(),
|
|
"errors": errors
|
|
})
|
|
Tlog(**self.log).save()
|
|
|
|
|
|
spClient = SpClient()
|