39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
|
|
/**
|
||
|
|
* Sync Status API Endpoint
|
||
|
|
* GET /api/sync/status - Check if a sync is currently in progress
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { NextResponse } from 'next/server';
|
||
|
|
import { AutotaskClient } from '@/lib/services/autotask-client';
|
||
|
|
import { createSyncService } from '@/lib/services/sync-service';
|
||
|
|
|
||
|
|
export async function GET() {
|
||
|
|
try {
|
||
|
|
// Initialize Autotask client (needed to create sync service)
|
||
|
|
const autotaskClient = new AutotaskClient({
|
||
|
|
apiUrl: process.env.AUTOTASK_API_URL || '',
|
||
|
|
username: process.env.AUTOTASK_USERNAME || '',
|
||
|
|
password: process.env.AUTOTASK_SECRET || '',
|
||
|
|
apiIntegrationCode: process.env.AUTOTASK_API_INTEGRATION_CODE || '',
|
||
|
|
});
|
||
|
|
|
||
|
|
// Create sync service
|
||
|
|
const syncService = createSyncService(autotaskClient);
|
||
|
|
|
||
|
|
// Check if sync is in progress
|
||
|
|
const inProgress = syncService.isSyncInProgress();
|
||
|
|
const currentSyncId = syncService.getCurrentSyncId();
|
||
|
|
|
||
|
|
return NextResponse.json({
|
||
|
|
inProgress,
|
||
|
|
syncId: currentSyncId,
|
||
|
|
});
|
||
|
|
} catch (error) {
|
||
|
|
console.error('Failed to check sync status:', error);
|
||
|
|
return NextResponse.json(
|
||
|
|
{ error: 'Failed to check sync status' },
|
||
|
|
{ status: 500 }
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|