- Task 1: Mark imported blocklist IP addresses
- Add BanOrigin type and _derive_origin() to ban.py model
- Populate origin field in ban_service list_bans() and bans_by_country()
- BanTable and MapPage companion table show origin badge column
- Tests: origin derivation in test_ban_service.py and test_dashboard.py
- Task 2: Add origin filter to dashboard and world map
- ban_service: _origin_sql_filter() helper; origin param on list_bans()
and bans_by_country()
- dashboard router: optional origin query param forwarded to service
- Frontend: BanOriginFilter type + BAN_ORIGIN_FILTER_LABELS in ban.ts
- fetchBans / fetchBansByCountry forward origin to API
- useBans / useMapData accept and pass origin; page resets on change
- BanTable accepts origin prop; DashboardPage adds segmented filter
- MapPage adds origin Select next to time-range picker
- Tests: origin filter assertions in test_ban_service and test_dashboard
27 lines
875 B
TypeScript
27 lines
875 B
TypeScript
/**
|
|
* API functions for the world map / bans-by-country endpoint.
|
|
*/
|
|
|
|
import { get } from "./client";
|
|
import { ENDPOINTS } from "./endpoints";
|
|
import type { BansByCountryResponse, TimeRange } from "../types/map";
|
|
import type { BanOriginFilter } from "../types/ban";
|
|
|
|
/**
|
|
* Fetch ban counts aggregated by country for the given time window.
|
|
*
|
|
* @param range - Time-range preset.
|
|
* @param origin - Origin filter: `"blocklist"`, `"selfblock"`, or `"all"`
|
|
* (default `"all"`, which omits the parameter entirely).
|
|
*/
|
|
export async function fetchBansByCountry(
|
|
range: TimeRange = "24h",
|
|
origin: BanOriginFilter = "all",
|
|
): Promise<BansByCountryResponse> {
|
|
const params = new URLSearchParams({ range });
|
|
if (origin !== "all") {
|
|
params.set("origin", origin);
|
|
}
|
|
return get<BansByCountryResponse>(`${ENDPOINTS.dashboardBansByCountry}?${params.toString()}`);
|
|
}
|