18 lines
481 B
Python
18 lines
481 B
Python
from . import logger
|
|
|
|
|
|
class ToolUtil(object):
|
|
|
|
@classmethod
|
|
def make_apikey_url(cls, url):
|
|
from framework import F
|
|
if not url.startswith('http'):
|
|
url = F.SystemModelSetting.get('ddns') + url
|
|
if F.SystemModelSetting.get_bool('use_apikey'):
|
|
if url.find('?') == -1:
|
|
url += '?'
|
|
else:
|
|
url += '&'
|
|
url += f"apikey={F.SystemModelSetting.get('apikey')}"
|
|
return url
|
|
|