Grab links from the sign

This commit is contained in:
Tanner Collin 2022-03-30 04:11:47 +00:00
parent f25fa9f025
commit 4b5d0181b5
2 changed files with 13 additions and 8 deletions

View File

@ -30,6 +30,7 @@ DEFAULTS = {
'track': {}, 'track': {},
'alarm': {}, 'alarm': {},
'sign': '', 'sign': '',
'link': '',
'autoscan': '', 'autoscan': '',
} }

View File

@ -576,6 +576,10 @@ class StatsViewSet(viewsets.ViewSet, List):
def sign(self, request): def sign(self, request):
try: try:
sign = request.data['sign'][:500] sign = request.data['sign'][:500]
if sign.startswith('https://') or sign.startswith('http://'):
cache.set('link', sign)
else:
cache.set('sign', sign) cache.set('sign', sign)
if secrets.SIGN_TOKEN: if secrets.SIGN_TOKEN: