Files
harheimertc/server/api/mannschaften.get.js
Torsten Schulz (local) 2d42ef3ecd
Some checks failed
Code Analysis and Production Deploy / analyze (push) Failing after 2m40s
Code Analysis and Production Deploy / deploy-production (push) Has been skipped
Code Analysis and Production Deploy / deploy-test (push) Has been skipped
feat(mannschaften): split SUN columns and prepare seasonal team CSVs
2026-05-20 17:45:14 +02:00

86 lines
2.4 KiB
JavaScript

import { promises as fs } from 'fs'
import path from 'path'
import { getCurrentSeasonSlug, validateSeasonSlug } from '../utils/spielplan-data.js'
function normalizeSeasonFilename(season) {
return `mannschaften_${season}.csv`
}
async function exists(p) {
try {
await fs.access(p)
return true
} catch {
return false
}
}
export default defineEventHandler(async (event) => {
try {
const cwd = process.cwd()
const query = getQuery(event)
const requestedSeason = query.season ? String(query.season).trim() : ''
if (requestedSeason && !validateSeasonSlug(requestedSeason)) {
throw createError({
statusCode: 400,
statusMessage: 'Ungueltiger Saison-Slug'
})
}
const defaultSeason = getCurrentSeasonSlug()
const candidateFileNames = requestedSeason
? [normalizeSeasonFilename(requestedSeason), 'mannschaften.csv']
: [normalizeSeasonFilename(defaultSeason), 'mannschaften.csv']
// Prefer CMS write target first (server/data/public-data),
// then legacy locations.
const candidates = []
for (const filename of candidateFileNames) {
candidates.push(
path.join(cwd, 'server/data/public-data', filename),
path.join(cwd, '../server/data/public-data', filename),
path.join(cwd, '.output/server/data', filename),
path.join(cwd, 'server/data', filename),
path.join(cwd, '.output/public/data', filename),
path.join(cwd, 'public/data', filename),
path.join(cwd, '../.output/public/data', filename),
path.join(cwd, '../public/data', filename)
)
}
let csvPath = null
for (const p of candidates) {
if (await exists(p)) {
csvPath = p
break
}
}
if (!csvPath) {
throw createError({
statusCode: 404,
statusMessage: 'Mannschaften-Datei nicht gefunden'
})
}
const csv = await fs.readFile(csvPath, 'utf-8')
setHeader(event, 'Content-Type', 'text/csv; charset=utf-8')
setHeader(event, 'Cache-Control', 'no-cache, no-store, must-revalidate')
setHeader(event, 'Pragma', 'no-cache')
setHeader(event, 'Expires', '0')
return csv
} catch (error) {
if (error?.statusCode) throw error
console.error('Fehler beim Laden der Mannschaften:', error)
throw createError({
statusCode: 500,
statusMessage: 'Fehler beim Laden der Mannschaften'
})
}
})