2023-11-23 15:13:54 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import asyncio
|
|
|
|
import json
|
2023-11-23 16:04:33 +00:00
|
|
|
from urllib.parse import urlencode
|
2023-11-23 15:13:54 +00:00
|
|
|
from typing import Dict, Optional
|
|
|
|
|
|
|
|
import httpx
|
|
|
|
from playwright.async_api import BrowserContext, Page
|
|
|
|
|
|
|
|
from tools import utils
|
|
|
|
|
2023-11-24 16:02:33 +00:00
|
|
|
from .graphql import KuaiShouGraphQL
|
2023-11-23 15:13:54 +00:00
|
|
|
from .exception import DataFetchError, IPBlockError
|
|
|
|
|
|
|
|
|
2023-11-24 16:02:33 +00:00
|
|
|
class KuaiShouClient:
|
2023-11-23 15:13:54 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
timeout=10,
|
|
|
|
proxies=None,
|
|
|
|
*,
|
|
|
|
headers: Dict[str, str],
|
|
|
|
playwright_page: Page,
|
|
|
|
cookie_dict: Dict[str, str],
|
|
|
|
):
|
|
|
|
self.proxies = proxies
|
|
|
|
self.timeout = timeout
|
|
|
|
self.headers = headers
|
2023-11-24 16:02:33 +00:00
|
|
|
self._host = "https://www.kuaishou.com/graphql"
|
2023-11-23 15:13:54 +00:00
|
|
|
self.playwright_page = playwright_page
|
|
|
|
self.cookie_dict = cookie_dict
|
2023-11-24 16:02:33 +00:00
|
|
|
self.graphql = KuaiShouGraphQL()
|
2023-11-23 15:13:54 +00:00
|
|
|
|
|
|
|
async def _pre_headers(self, url: str, data=None):
|
2023-11-24 16:02:33 +00:00
|
|
|
self.headers = {
|
|
|
|
"cookie":"kpf=PC_WEB; clientid=3; did=web_6e79b79fdeac627f5cf52f08cab4e6bd; kpn=KUAISHOU_VISION",
|
|
|
|
"content-type":"application/json"
|
|
|
|
}
|
|
|
|
return self.headers
|
2023-11-23 15:13:54 +00:00
|
|
|
|
|
|
|
async def request(self, method, url, **kwargs) -> Dict:
|
|
|
|
async with httpx.AsyncClient(proxies=self.proxies) as client:
|
|
|
|
response = await client.request(
|
|
|
|
method, url, timeout=self.timeout,
|
|
|
|
**kwargs
|
|
|
|
)
|
|
|
|
data: Dict = response.json()
|
2023-11-24 16:02:33 +00:00
|
|
|
if data.get("errors"):
|
|
|
|
raise DataFetchError(data.get("errors", "unkonw error"))
|
2023-11-23 15:13:54 +00:00
|
|
|
else:
|
2023-11-24 16:02:33 +00:00
|
|
|
return data.get("data", {})
|
2023-11-23 15:13:54 +00:00
|
|
|
|
|
|
|
async def get(self, uri: str, params=None) -> Dict:
|
|
|
|
final_uri = uri
|
|
|
|
if isinstance(params, dict):
|
|
|
|
final_uri = (f"{uri}?"
|
2023-11-23 16:04:33 +00:00
|
|
|
f"{urlencode(params)}")
|
2023-11-23 15:13:54 +00:00
|
|
|
headers = await self._pre_headers(final_uri)
|
|
|
|
return await self.request(method="GET", url=f"{self._host}{final_uri}", headers=headers)
|
|
|
|
|
|
|
|
async def post(self, uri: str, data: dict) -> Dict:
|
|
|
|
json_str = json.dumps(data, separators=(',', ':'), ensure_ascii=False)
|
|
|
|
return await self.request(method="POST", url=f"{self._host}{uri}",
|
2023-11-24 16:02:33 +00:00
|
|
|
data=json_str, headers=self.headers)
|
2023-11-23 15:13:54 +00:00
|
|
|
|
2023-11-23 16:04:33 +00:00
|
|
|
async def pong(self) -> bool:
|
2023-11-23 15:13:54 +00:00
|
|
|
"""get a note to check if login state is ok"""
|
2023-11-23 16:04:33 +00:00
|
|
|
utils.logger.info("Begin pong kuaishou...")
|
2023-11-23 15:13:54 +00:00
|
|
|
ping_flag = False
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception as e:
|
2023-11-23 16:04:33 +00:00
|
|
|
utils.logger.error(f"Pong kuaishou failed: {e}, and try to login again...")
|
2023-11-23 15:13:54 +00:00
|
|
|
ping_flag = False
|
|
|
|
return ping_flag
|
2023-11-23 16:04:33 +00:00
|
|
|
|
|
|
|
async def update_cookies(self, browser_context: BrowserContext):
|
|
|
|
cookie_str, cookie_dict = utils.convert_cookies(await browser_context.cookies())
|
|
|
|
self.headers["Cookie"] = cookie_str
|
2023-11-24 16:02:33 +00:00
|
|
|
self.cookie_dict = cookie_dict
|
|
|
|
|
|
|
|
async def search_info_by_keyword(self, keyword: str, pcursor: str):
|
|
|
|
"""
|
|
|
|
KuaiShou Web Search API
|
|
|
|
:param keyword: search keyword
|
|
|
|
:param pcursor: limite page curson
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
params = {
|
|
|
|
"operationName": "visionSearchPhoto",
|
|
|
|
"variables": {
|
|
|
|
"keyword": keyword,
|
|
|
|
"pcursor": pcursor,
|
|
|
|
"page": "search"
|
|
|
|
},
|
|
|
|
"query": self.graphql.get("search_query")
|
|
|
|
}
|
|
|
|
return await self.post("", params)
|
|
|
|
|
|
|
|
|
|
|
|
async def get_video_info(self, video_id: str) -> Dict:
|
|
|
|
pass
|