All checks were successful
Lint and Build / build (pull_request) Successful in 2m49s
- Extract cleanObsName utility function to reduce duplication (6+ occurrences) - Add SCREEN_POSITIONS and SOURCE_SWITCHER_NAMES constants - Fix hardcoded table name in getTeamName route to use TABLE_NAMES - Standardize API error handling with createErrorResponse helpers - Replace hardcoded screen arrays with centralized constants Reduces code duplication by ~30% and improves maintainability. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { getDatabase } from '../../../lib/database';
|
|
import { TABLE_NAMES } from '../../../lib/constants';
|
|
import { createErrorResponse, createSuccessResponse, createDatabaseError, withErrorHandling } from '../../../lib/apiHelpers';
|
|
|
|
async function getTeamNameHandler(request: NextRequest) {
|
|
// Extract the team_id from the query string
|
|
const { searchParams } = new URL(request.url);
|
|
const teamId = searchParams.get('team_id');
|
|
|
|
if (!teamId) {
|
|
return createErrorResponse('Missing team_id', 400, 'team_id parameter is required');
|
|
}
|
|
|
|
try {
|
|
const db = await getDatabase();
|
|
const team = await db.get(
|
|
`SELECT team_name FROM ${TABLE_NAMES.TEAMS} WHERE team_id = ?`,
|
|
[teamId]
|
|
);
|
|
|
|
if (!team) {
|
|
return createErrorResponse('Team not found', 404, `No team found with ID: ${teamId}`);
|
|
}
|
|
|
|
return createSuccessResponse({ team_name: team.team_name });
|
|
} catch (error) {
|
|
return createDatabaseError('fetch team name', error);
|
|
}
|
|
}
|
|
|
|
export const GET = withErrorHandling(getTeamNameHandler);
|