Implements the fit-parsing-hardening change. The shared converter now:
- splits output into <trkseg>s on timer stop/start events, falling back to
record gaps > 5 min, so downstream moving-time never bridges a pause;
- slices records into per-session windows (multisport → one activity, one
segment per session), single-session behavior unchanged;
- validates records: finite/in-range coordinates required, timestamp
required, non-finite altitude dropped (point kept), prefers
enhanced_altitude;
- returns { gpx, sport }, mapping FIT session sport/sub-sport to a Journal
SportType (first session wins), consumed by the Wahoo importer + webhook
and Garmin importer as a fallback when the provider sends no type.
Tests drive the converter via mocked fit-file-parser output (segmentation,
validation, sport mapping, no-GPS) per the chosen fixtures approach.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
71 lines
2.6 KiB
TypeScript
71 lines
2.6 KiB
TypeScript
// Wahoo WebhookReceiver capability adapter.
|
|
//
|
|
// Wahoo posts `workout_summary` events to /api/sync/webhook/wahoo when a
|
|
// workout completes. We route the event to the right local user via
|
|
// provider_user_id, deduplicate via sync_imports, then download + convert
|
|
// the FIT file (if present) and create an activity.
|
|
|
|
import { fitToGpx, type FitConversion } from "../../fit.ts";
|
|
import { fetchWithTimeout } from "../../../http.server.ts";
|
|
import { isAlreadyImported, importActivity } from "../../../sync/imports.server.ts";
|
|
import { getServiceByProviderUser, withFreshCredentials } from "../../manager.ts";
|
|
import type { WebhookEvent, WebhookReceiver } from "../../registry.ts";
|
|
|
|
interface WahooWebhookBody {
|
|
event_type?: string;
|
|
user?: { id?: number };
|
|
workout_summary?: {
|
|
id?: number;
|
|
workout?: { id?: number };
|
|
file?: { url?: string };
|
|
};
|
|
}
|
|
|
|
|
|
export const wahooWebhook: WebhookReceiver = {
|
|
parseWebhook(body: unknown): WebhookEvent[] {
|
|
const payload = body as WahooWebhookBody;
|
|
if (payload.event_type !== "workout_summary" || !payload.user?.id) return [];
|
|
|
|
return [
|
|
{
|
|
eventType: payload.event_type,
|
|
providerUserId: String(payload.user.id),
|
|
workoutId: String(
|
|
payload.workout_summary?.workout?.id ?? payload.workout_summary?.id ?? "",
|
|
),
|
|
fileUrl: payload.workout_summary?.file?.url,
|
|
},
|
|
];
|
|
},
|
|
|
|
async handle(event: WebhookEvent): Promise<void> {
|
|
// Match incoming webhooks to local users via provider_user_id.
|
|
// Unknown users return silently — no leak.
|
|
const service = await getServiceByProviderUser("wahoo", event.providerUserId);
|
|
if (!service) return;
|
|
|
|
if (await isAlreadyImported(service.userId, "wahoo", event.workoutId)) return;
|
|
|
|
let gpx: string | null = null;
|
|
let sport: FitConversion["sport"] = null;
|
|
if (event.fileUrl) {
|
|
// Wahoo CDN URLs are pre-signed; no auth header needed. We still go
|
|
// through withFreshCredentials so the manager has a chance to refresh
|
|
// a near-expired credential before any subsequent Wahoo call this
|
|
// handler might make.
|
|
const buffer = await withFreshCredentials(service.id, async () => {
|
|
const resp = await fetchWithTimeout(event.fileUrl!);
|
|
if (!resp.ok) throw new Error(`Wahoo file download failed: ${resp.status}`);
|
|
return Buffer.from(await resp.arrayBuffer());
|
|
});
|
|
({ gpx, sport } = await fitToGpx(buffer, "Wahoo workout"));
|
|
}
|
|
|
|
await importActivity(service.userId, "wahoo", event.workoutId, {
|
|
name: "Wahoo workout",
|
|
gpx: gpx ?? undefined,
|
|
sportType: sport ?? undefined,
|
|
});
|
|
},
|
|
};
|