wulf-pulse/app/api/openclaw/sync/datto-rmm/route.ts
lorentz 5be7b22953 feat: OpenClaw external agent sync API at /api/openclaw/*
- API key auth via x-openclaw-key header (OPENCLAW_API_KEY env var)
- GET  /api/openclaw/sync/status
- POST /api/openclaw/sync/autotask/incremental
- POST /api/openclaw/sync/autotask/full
- POST /api/openclaw/sync/autotask/entity   { entities: [...] }
- POST /api/openclaw/sync/datto-rmm          { syncType: full|incremental }
- POST /api/openclaw/sync/sentinelone
- POST /api/openclaw/sync/veeam              { syncType: full|incremental }
- POST /api/openclaw/sync/zoom
- POST /api/openclaw/sync/engagement
- POST /api/openclaw/sync/qbo                { syncType: full|incremental }
- POST /api/openclaw/sync/zabbix
- POST /api/openclaw/sync/itglue
All routes bypass Better Auth middleware, delegate to existing sync services
2026-03-17 23:26:44 -04:00

39 lines
1.4 KiB
TypeScript

import { NextRequest, NextResponse } from 'next/server';
import { validateOpenClawKey } from '@/lib/utils/openclaw-auth';
import { DattoRMMSyncService } from '@/lib/services/datto-rmm-sync-service';
let syncServiceInstance: DattoRMMSyncService | null = null;
function getSyncService(): DattoRMMSyncService {
if (!syncServiceInstance) syncServiceInstance = new DattoRMMSyncService();
return syncServiceInstance;
}
export async function POST(request: NextRequest) {
const authError = validateOpenClawKey(request);
if (authError) return authError;
try {
const syncService = getSyncService();
if (syncService.isSyncInProgress()) {
return NextResponse.json({ error: 'A Datto RMM sync is already in progress' }, { status: 409 });
}
const body = await request.json().catch(() => ({}));
const syncType = body.syncType === 'full' ? 'full' : 'incremental';
(syncType === 'full'
? syncService.fullSync('openclaw')
: syncService.incrementalSync('openclaw')
).catch((err) => console.error('[OpenClaw] Datto RMM sync failed:', err));
return NextResponse.json({
message: `Datto RMM ${syncType} sync started`,
syncType,
triggeredBy: 'openclaw',
});
} catch (error) {
const msg = error instanceof Error ? error.message : String(error);
return NextResponse.json({ error: msg }, { status: 500 });
}
}