- Add group_name column to teams table for mapping teams to OBS groups - Create API endpoints for group creation (/api/createGroup) and bulk sync (/api/syncGroups) - Update teams UI with group status display and creation buttons - Implement automatic group assignment when adding streams - Add comprehensive OBS setup documentation (docs/OBS_SETUP.md) - Fix team list spacing issue with explicit margins - Update OBS client with group management functions - Add database migration script for existing deployments 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
67 lines
No EOL
2.1 KiB
TypeScript
67 lines
No EOL
2.1 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { open } from 'sqlite';
|
|
import sqlite3 from 'sqlite3';
|
|
import path from 'path';
|
|
import { getTableName, BASE_TABLE_NAMES } from '@/lib/constants';
|
|
import { validateInteger } from '@/lib/security';
|
|
|
|
const { createGroupIfNotExists } = require('@/lib/obsClient');
|
|
|
|
const FILE_DIRECTORY = path.resolve(process.env.FILE_DIRECTORY || './files');
|
|
|
|
export async function POST(request: NextRequest) {
|
|
try {
|
|
const body = await request.json();
|
|
const { teamId, groupName } = body;
|
|
|
|
// Validate input
|
|
if (!teamId || !groupName) {
|
|
return NextResponse.json({ error: 'Team ID and group name are required' }, { status: 400 });
|
|
}
|
|
|
|
const validTeamId = validateInteger(teamId);
|
|
if (!validTeamId) {
|
|
return NextResponse.json({ error: 'Invalid team ID' }, { status: 400 });
|
|
}
|
|
|
|
// Sanitize group name (only allow alphanumeric, spaces, dashes, underscores)
|
|
const sanitizedGroupName = groupName.replace(/[^a-zA-Z0-9\s\-_]/g, '');
|
|
if (!sanitizedGroupName || sanitizedGroupName.length === 0) {
|
|
return NextResponse.json({ error: 'Invalid group name' }, { status: 400 });
|
|
}
|
|
|
|
// Open database connection
|
|
const dbPath = path.join(FILE_DIRECTORY, 'sources.db');
|
|
const db = await open({
|
|
filename: dbPath,
|
|
driver: sqlite3.Database,
|
|
});
|
|
|
|
const teamsTableName = getTableName(BASE_TABLE_NAMES.TEAMS, {
|
|
year: 2025,
|
|
season: 'summer',
|
|
suffix: 'sat'
|
|
});
|
|
|
|
// Update team with group name
|
|
await db.run(
|
|
`UPDATE ${teamsTableName} SET group_name = ? WHERE team_id = ?`,
|
|
[sanitizedGroupName, validTeamId]
|
|
);
|
|
|
|
// Create group in OBS
|
|
const result = await createGroupIfNotExists(sanitizedGroupName);
|
|
|
|
await db.close();
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
message: 'Group created/updated successfully',
|
|
groupName: sanitizedGroupName,
|
|
obsResult: result
|
|
});
|
|
} catch (error) {
|
|
console.error('Error creating group:', error);
|
|
return NextResponse.json({ error: 'Failed to create group' }, { status: 500 });
|
|
}
|
|
} |