2022-08-10 15:12:43 +00:00
|
|
|
|
import asyncio
|
|
|
|
|
from typing import Coroutine, Optional
|
|
|
|
|
from httpx import AsyncClient, Cookies
|
|
|
|
|
|
|
|
|
|
from cqwu.methods import Methods
|
|
|
|
|
from cqwu.types import User
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Client(Methods):
|
|
|
|
|
"""CQWU main client."""
|
|
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
|
self,
|
|
|
|
|
username: int = None,
|
|
|
|
|
password: str = None,
|
|
|
|
|
cookie: str = None,
|
|
|
|
|
cookie_file_path: str = "cookie.txt",
|
|
|
|
|
client_vpn: bool = False,
|
|
|
|
|
):
|
|
|
|
|
self.username = username
|
|
|
|
|
self.password = password
|
|
|
|
|
self.cookie = cookie
|
|
|
|
|
self.cookie_file_path = cookie_file_path
|
|
|
|
|
if client_vpn:
|
|
|
|
|
self.host = "https://clientvpn.cqwu.edu.cn:10443/http/webvpn507e990968de07079b0f10d16c49bdb1cb8d3ca3a4d14f557999e92cbdf19fcd"
|
|
|
|
|
self.auth_host = self.host
|
|
|
|
|
else:
|
|
|
|
|
self.host = "http://ehall.cqwu.edu.cn"
|
|
|
|
|
self.auth_host = "http://authserver.cqwu.edu.cn"
|
|
|
|
|
self.cookies = Cookies()
|
2023-03-08 12:48:12 +00:00
|
|
|
|
self.request = AsyncClient()
|
2022-08-10 15:12:43 +00:00
|
|
|
|
self.loop = asyncio.get_event_loop()
|
|
|
|
|
self.me: Optional[User] = None
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def get_input(word: str = "", is_int: bool = False):
|
|
|
|
|
while True:
|
|
|
|
|
value = input(f"请输入{word}:")
|
|
|
|
|
if not value:
|
|
|
|
|
continue
|
|
|
|
|
if is_int:
|
|
|
|
|
try:
|
|
|
|
|
value = int(value)
|
|
|
|
|
except ValueError:
|
|
|
|
|
continue
|
|
|
|
|
confirm = (input(f'确认是 "{value}" 吗?(y/N): ')).lower()
|
|
|
|
|
if confirm == "y":
|
|
|
|
|
break
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
def sync(self, coroutine: Coroutine):
|
|
|
|
|
"""
|
|
|
|
|
同步执行异步函数
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
coroutine (Coroutine): 异步函数
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
该异步函数的返回值
|
|
|
|
|
"""
|
|
|
|
|
return self.loop.run_until_complete(coroutine)
|