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/http.py

72 lines
2.7 KiB
Python
Raw Normal View History

2022-06-12 07:07:53 +00:00
import traceback
from typing import Union
import aiohttp
import filetype as ft
from tenacity import retry, wait_fixed, stop_after_attempt
from core.logger import Logger
from .cache import random_cache_path
@retry(stop=stop_after_attempt(3), wait=wait_fixed(3), reraise=True)
async def get_url(url: str, status_code: int = False, headers: dict = None, fmt=None, log=False):
"""利用AioHttp获取指定url的内容。
:param url: 需要获取的url
:param status_code: 指定请求到的状态码若不符则抛出ValueError
:param headers: 请求时使用的http头
:param fmt: 指定返回的格式
:param log: 是否输出日志
:returns: 指定url的内容字符串
"""
async with aiohttp.ClientSession(headers=headers) as session:
async with session.get(url, timeout=aiohttp.ClientTimeout(total=20), headers=headers) as req:
if log:
Logger.info(await req.read())
if status_code and req.status != status_code:
raise ValueError(f'{str(req.status)}[Ke:Image,path=https://http.cat/{str(req.status)}.jpg]')
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
@retry(stop=stop_after_attempt(3), wait=wait_fixed(3), reraise=True)
async def post_url(url: str, data: any, headers: dict = None):
'''发送POST请求。
:param url: 需要发送的url
:param data: 需要发送的数据
:param headers: 请求时使用的http头
:returns: 发送请求后的响应'''
async with aiohttp.ClientSession(headers=headers) as session:
async with session.post(url, data=data, headers=headers) as req:
return await req.text()
@retry(stop=stop_after_attempt(3), wait=wait_fixed(3), reraise=True)
async def download_to_cache(link: str) -> Union[str, bool]:
'''利用AioHttp下载指定url的内容并保存到缓存./cache目录
:param link: 需要获取的link
:returns: 文件的相对路径若获取失败则返回False'''
try:
async with aiohttp.ClientSession() as session:
async with session.get(link) as resp:
res = await resp.read()
ftt = ft.match(res).extension
path = f'{random_cache_path()}.{ftt}'
with open(path, 'wb+') as file:
file.write(res)
return path
except:
Logger.error(traceback.format_exc())
return False
__all__ = ['get_url', 'post_url', 'download_to_cache']