|
| 1 | +from functools import partial |
| 2 | +from datetime import timedelta |
| 3 | +from types import MappingProxyType |
| 4 | +from collections.abc import Callable |
| 5 | + |
| 6 | +from expiringdictx import ExpiringDict |
| 7 | +from httpx import AsyncClient, AsyncHTTPTransport |
| 8 | +from hishel import Controller, AsyncCacheTransport, AsyncInMemoryStorage |
| 9 | + |
| 10 | +from .const import DATASOURCE_URL |
| 11 | +from .utils import process_response |
| 12 | +from .models import CeobeSource, CeobeTarget, DataSourceResponse |
| 13 | + |
| 14 | +cache_transport = AsyncCacheTransport( |
| 15 | + AsyncHTTPTransport(), |
| 16 | + storage=AsyncInMemoryStorage(), |
| 17 | + controller=Controller( |
| 18 | + always_revalidate=True, |
| 19 | + ), |
| 20 | +) |
| 21 | + |
| 22 | +CeobeClient = partial( |
| 23 | + AsyncClient, |
| 24 | + transport=cache_transport, |
| 25 | +) |
| 26 | + |
| 27 | + |
| 28 | +class CeobeDataSourceCache: |
| 29 | + """数据源缓存""" |
| 30 | + |
| 31 | + def __init__(self): |
| 32 | + self._cache = ExpiringDict[str, CeobeTarget](capacity=100, default_age=timedelta(days=7)) |
| 33 | + self.client = CeobeClient() |
| 34 | + self.url = DATASOURCE_URL |
| 35 | + self.init_requested = False |
| 36 | + |
| 37 | + @property |
| 38 | + def cache(self) -> MappingProxyType[str, CeobeTarget]: |
| 39 | + return MappingProxyType(self._cache) |
| 40 | + |
| 41 | + async def refresh_data_sources(self): |
| 42 | + """请求数据源API刷新缓存""" |
| 43 | + data_sources_resp = await self.client.get(self.url) |
| 44 | + data_sources = process_response(data_sources_resp, DataSourceResponse).data |
| 45 | + for ds in data_sources: |
| 46 | + self._cache[ds.unique_id] = ds |
| 47 | + return self.cache |
| 48 | + |
| 49 | + async def get_all(self): |
| 50 | + if not self.init_requested: |
| 51 | + await self.refresh_data_sources() |
| 52 | + self.init_requested = True |
| 53 | + return self.cache |
| 54 | + |
| 55 | + def select_one(self, cond_func: Callable[[CeobeTarget], bool]) -> CeobeTarget | None: |
| 56 | + """根据条件获取数据源 |
| 57 | +
|
| 58 | + 不会刷新缓存 |
| 59 | + """ |
| 60 | + cache = self._cache.values() |
| 61 | + return next(filter(cond_func, cache), None) |
| 62 | + |
| 63 | + async def get_by_unique_id(self, unique_id: str) -> CeobeTarget | None: |
| 64 | + """根据unique_id获取数据源 |
| 65 | +
|
| 66 | + 如果在缓存中找不到,会刷新缓存 |
| 67 | + """ |
| 68 | + if target := self._cache.get(unique_id): |
| 69 | + return target |
| 70 | + await self.refresh_data_sources() |
| 71 | + return self._cache.get(unique_id) |
| 72 | + |
| 73 | + async def get_by_nickname(self, nickname: str) -> CeobeTarget | None: |
| 74 | + """根据nickname获取数据源 |
| 75 | +
|
| 76 | + 如果在缓存中找不到,会刷新缓存 |
| 77 | + """ |
| 78 | + |
| 79 | + def cond_func(target: CeobeTarget): |
| 80 | + return target.nickname == nickname |
| 81 | + |
| 82 | + if target := self.select_one(cond_func): |
| 83 | + return target |
| 84 | + await self.refresh_data_sources() |
| 85 | + return self.select_one(cond_func) |
| 86 | + |
| 87 | + async def get_by_source(self, source: CeobeSource) -> CeobeTarget | None: |
| 88 | + """根据source获取数据源 |
| 89 | +
|
| 90 | + 如果在缓存中找不到,会刷新缓存 |
| 91 | + """ |
| 92 | + |
| 93 | + def cond_func(target: CeobeTarget): |
| 94 | + return target.db_unique_key == source.data and target.datasource == source.type |
| 95 | + |
| 96 | + if target := self.select_one(cond_func): |
| 97 | + return target |
| 98 | + await self.refresh_data_sources() |
| 99 | + return self.select_one(cond_func) |
0 commit comments