Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/core/utils/bot.py

90 lines
3 KiB
Python

import os
import traceback
import uuid
from os.path import abspath
import aiohttp
import filetype as ft
import ujson as json
from aiohttp_retry import ExponentialRetry, RetryClient
from core.elements import FetchTarget, PrivateAssets
from core.logger import Logger
from core.loader import load_modules
def init():
load_modules()
version = os.path.abspath(PrivateAssets.path + '/version')
write_version = open(version, 'w')
try:
write_version.write(os.popen('git rev-parse HEAD', 'r').read()[0:6])
except ValueError:
write_version.write('Not a git repo')
write_version.close()
tag = os.path.abspath(PrivateAssets.path + '/version_tag')
write_tag = open(tag, 'w')
try:
write_tag.write(os.popen('git tag -l', 'r').read().split('\n')[-2])
except ValueError:
write_tag.write('v4.?.?')
write_tag.close()
async def get_url(url: str, status_code: int = False, headers: dict = None, fmt=None):
async with RetryClient(headers=headers, retry_options=ExponentialRetry(attempts=3)) as session:
async with session.get(url, timeout=aiohttp.ClientTimeout(total=20), headers=headers) as req:
if status_code and req.status != status_code:
raise ValueError(req.status)
if fmt is not None:
if hasattr(req, fmt):
return await getattr(req, fmt)()
else:
raise ValueError(f"NoSuchMethod: {fmt}")
else:
text = await req.text()
return text
async def download_to_cache(link):
try:
async with RetryClient(retry_options=ExponentialRetry(attempts=3)) as session:
async with session.get(link) as resp:
res = await resp.read()
ftt = ft.match(res).extension
path = abspath(f'./cache/{str(uuid.uuid4())}.{ftt}')
with open(path, 'wb+') as file:
file.write(res)
return path
except:
traceback.print_exc()
return False
def cache_name():
return abspath(f'./cache/{str(uuid.uuid4())}')
async def slk_converter(filepath):
filepath2 = filepath + '.silk'
Logger.info('Start encoding voice...')
os.system('python slk_coder.py ' + filepath)
Logger.info('Voice encoded.')
return filepath2
async def load_prompt(bot: FetchTarget):
author_cache = os.path.abspath(PrivateAssets.path + '/cache_restart_author')
loader_cache = os.path.abspath(PrivateAssets.path + '/.cache_loader')
if os.path.exists(author_cache):
open_author_cache = open(author_cache, 'r')
author = json.loads(open_author_cache.read())['ID']
open_loader_cache = open(loader_cache, 'r')
m = await bot.fetch_target(author)
if m:
await m.sendMessage(open_loader_cache.read())
open_loader_cache.close()
open_author_cache.close()
os.remove(author_cache)
os.remove(loader_cache)