- new Error() → cb(null, false): 500 에러 대신 CORS 헤더 미포함으로 거부 - *.technicalkorea.net 와일드카드 추가: 서브도메인 간 통신 보장 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
74 lines
2.3 KiB
JavaScript
74 lines
2.3 KiB
JavaScript
const express = require('express');
|
|
const cors = require('cors');
|
|
const cron = require('node-cron');
|
|
const partnerRoutes = require('./routes/partnerRoutes');
|
|
const dayLaborRoutes = require('./routes/dayLaborRoutes');
|
|
const scheduleRoutes = require('./routes/scheduleRoutes');
|
|
const checkinRoutes = require('./routes/checkinRoutes');
|
|
const workReportRoutes = require('./routes/workReportRoutes');
|
|
const partnerAccountRoutes = require('./routes/partnerAccountRoutes');
|
|
const projectRoutes = require('./routes/projectRoutes');
|
|
|
|
const app = express();
|
|
const PORT = process.env.PORT || 3000;
|
|
|
|
const allowedOrigins = [
|
|
'https://tkfb.technicalkorea.net',
|
|
'https://tkreport.technicalkorea.net',
|
|
'https://tkqc.technicalkorea.net',
|
|
'https://tkuser.technicalkorea.net',
|
|
'https://tkpurchase.technicalkorea.net',
|
|
'https://tksafety.technicalkorea.net',
|
|
];
|
|
if (process.env.NODE_ENV === 'development') {
|
|
allowedOrigins.push('http://localhost:30080', 'http://localhost:30480');
|
|
}
|
|
app.use(cors({
|
|
origin: function(origin, cb) {
|
|
if (!origin || allowedOrigins.includes(origin) || /^https?:\/\/[a-z0-9-]+\.technicalkorea\.net$/.test(origin) || /^http:\/\/192\.168\.\d+\.\d+(:\d+)?$/.test(origin)) return cb(null, true);
|
|
cb(null, false);
|
|
},
|
|
credentials: true
|
|
}));
|
|
app.use(express.json());
|
|
|
|
// Health check
|
|
app.get('/health', (req, res) => {
|
|
res.json({ status: 'ok', service: 'tkpurchase-api', timestamp: new Date().toISOString() });
|
|
});
|
|
|
|
// API 캐시 비활성화
|
|
app.use('/api', (req, res, next) => {
|
|
res.set('Cache-Control', 'no-store');
|
|
next();
|
|
});
|
|
|
|
// Routes
|
|
app.use('/api/partners', partnerRoutes);
|
|
app.use('/api/day-labor', dayLaborRoutes);
|
|
app.use('/api/schedules', scheduleRoutes);
|
|
app.use('/api/checkins', checkinRoutes);
|
|
app.use('/api/work-reports', workReportRoutes);
|
|
app.use('/api/partner-accounts', partnerAccountRoutes);
|
|
app.use('/api/projects', projectRoutes);
|
|
|
|
// 404
|
|
app.use((req, res) => {
|
|
res.status(404).json({ success: false, error: 'Not Found' });
|
|
});
|
|
|
|
// Error handler
|
|
app.use((err, req, res, next) => {
|
|
console.error('tkpurchase-api Error:', err.message);
|
|
res.status(err.status || 500).json({
|
|
success: false,
|
|
error: '서버 오류가 발생했습니다'
|
|
});
|
|
});
|
|
|
|
app.listen(PORT, () => {
|
|
console.log(`tkpurchase-api running on port ${PORT}`);
|
|
});
|
|
|
|
module.exports = app;
|