Spaces:
Runtime error
Runtime error
File size: 5,718 Bytes
0a1b571 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
import hashlib
import hmac
from datetime import timedelta
from enum import Enum
from time import time
from typing import Any, Optional, cast
from httpx import URL
from hibiapi.api.bika.constants import BikaConstants
from hibiapi.api.bika.net import NetRequest
from hibiapi.utils.cache import cache_config
from hibiapi.utils.decorators import enum_auto_doc
from hibiapi.utils.net import catch_network_error
from hibiapi.utils.routing import BaseEndpoint, dont_route, request_headers
@enum_auto_doc
class ImageQuality(str, Enum):
"""ๅๅAPI่ฟๅ็ๅพ็่ดจ้"""
low = "low"
"""ไฝ่ดจ้"""
medium = "medium"
"""ไธญ็ญ่ดจ้"""
high = "high"
"""้ซ่ดจ้"""
original = "original"
"""ๅๅพ"""
@enum_auto_doc
class ResultSort(str, Enum):
"""ๅๅAPI่ฟๅ็ๆ็ดข็ปๆๆๅบๆนๅผ"""
date_descending = "dd"
"""ๆๆฐๅๅธ"""
date_ascending = "da"
"""ๆๆฉๅๅธ"""
like_descending = "ld"
"""ๆๅคๅๆฌข"""
views_descending = "vd"
"""ๆๅคๆต่ง"""
class BikaEndpoints(BaseEndpoint):
@staticmethod
def _sign(url: URL, timestamp_bytes: bytes, nonce: bytes, method: bytes):
return hmac.new(
BikaConstants.DIGEST_KEY,
(
url.raw_path.lstrip(b"/")
+ timestamp_bytes
+ nonce
+ method
+ BikaConstants.API_KEY
).lower(),
hashlib.sha256,
).hexdigest()
@dont_route
@catch_network_error
async def request(
self,
endpoint: str,
*,
params: Optional[dict[str, Any]] = None,
body: Optional[dict[str, Any]] = None,
no_token: bool = False,
):
net_client = cast(NetRequest, self.client.net_client)
if not no_token:
async with net_client.auth_lock:
if net_client.token is None:
await net_client.login(self)
headers = {
"Authorization": net_client.token or "",
"Time": (current_time := f"{time():.0f}".encode()),
"Image-Quality": request_headers.get().get(
"X-Image-Quality", ImageQuality.medium
),
"Nonce": (nonce := hashlib.md5(current_time).hexdigest().encode()),
"Signature": self._sign(
request_url := self._join(
base=BikaConstants.API_HOST,
endpoint=endpoint,
params=params or {},
),
current_time,
nonce,
b"GET" if body is None else b"POST",
),
}
response = await (
self.client.get(request_url, headers=headers)
if body is None
else self.client.post(request_url, headers=headers, json=body)
)
return response.json()
@cache_config(ttl=timedelta(days=1))
async def collections(self):
return await self.request("collections")
@cache_config(ttl=timedelta(days=3))
async def categories(self):
return await self.request("categories")
@cache_config(ttl=timedelta(days=3))
async def keywords(self):
return await self.request("keywords")
async def advanced_search(
self,
*,
keyword: str,
page: int = 1,
sort: ResultSort = ResultSort.date_descending,
):
return await self.request(
"comics/advanced-search",
body={
"keyword": keyword,
"sort": sort,
},
params={
"page": page,
"s": sort,
},
)
async def category_list(
self,
*,
category: str,
page: int = 1,
sort: ResultSort = ResultSort.date_descending,
):
return await self.request(
"comics",
params={
"page": page,
"c": category,
"s": sort,
},
)
async def author_list(
self,
*,
author: str,
page: int = 1,
sort: ResultSort = ResultSort.date_descending,
):
return await self.request(
"comics",
params={
"page": page,
"a": author,
"s": sort,
},
)
@cache_config(ttl=timedelta(days=3))
async def comic_detail(self, *, id: str):
return await self.request("comics/{id}", params={"id": id})
async def comic_recommendation(self, *, id: str):
return await self.request("comics/{id}/recommendation", params={"id": id})
async def comic_episodes(self, *, id: str, page: int = 1):
return await self.request(
"comics/{id}/eps",
params={
"id": id,
"page": page,
},
)
async def comic_page(self, *, id: str, order: int = 1, page: int = 1):
return await self.request(
"comics/{id}/order/{order}/pages",
params={
"id": id,
"order": order,
"page": page,
},
)
async def comic_comments(self, *, id: str, page: int = 1):
return await self.request(
"comics/{id}/comments",
params={
"id": id,
"page": page,
},
)
async def games(self, *, page: int = 1):
return await self.request("games", params={"page": page})
@cache_config(ttl=timedelta(days=3))
async def game_detail(self, *, id: str):
return await self.request("games/{id}", params={"id": id})
|