feat: SSO 쿠키 인증 통합 + 서브도메인 라우팅 아키텍처

- Path-based 라우팅을 서브도메인 기반으로 전환
  (tkfb/tkreport/tkqc.technicalkorea.net)
- 3개 시스템 프론트엔드에 SSO 쿠키 인증 통합
  (domain=.technicalkorea.net, localStorage 폴백)
- Gateway: 포털+로그인+System1 프록시, 쿠키 SSO 설정
- System 1: 토큰키 통일, nginx.conf 생성, 신고페이지 리다이렉트
- System 2: api-base.js/app-init.js 생성, getSSOToken() 통합
- System 3: TokenManager 쿠키 지원, 중앙 로그인 리다이렉트
- docker-compose.yml에 cloudflared 서비스 추가
- DEPLOY-GUIDE.md 배포 가이드 작성

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-02-09 18:41:44 +09:00
parent 550633b89d
commit 6495b8af32
114 changed files with 1729 additions and 4335 deletions

View File

@@ -15,7 +15,7 @@ let currentWorkerBalances = [];
*/
document.addEventListener('DOMContentLoaded', async () => {
// 관리자 권한 체크
const user = JSON.parse(localStorage.getItem('user') || '{}');
const user = JSON.parse(localStorage.getItem('sso_user') || '{}');
console.log('Current user:', user);
console.log('Role ID:', user.role_id, 'Role:', user.role);
@@ -50,7 +50,7 @@ async function loadInitialData() {
*/
async function loadWorkers() {
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
console.log('Loading workers... Token:', token ? 'exists' : 'missing');
const response = await fetch(`${API_BASE_URL}/api/workers`, {
@@ -97,7 +97,7 @@ async function loadWorkers() {
*/
async function loadVacationTypes() {
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const response = await fetch(`${API_BASE_URL}/api/vacation-types`, {
headers: {
'Authorization': `Bearer ${token}`
@@ -223,7 +223,7 @@ async function loadWorkerBalances() {
}
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const response = await fetch(`${API_BASE_URL}/api/vacation-balances/worker/${workerId}/year/${year}`, {
headers: {
'Authorization': `Bearer ${token}`
@@ -300,7 +300,7 @@ async function autoCalculateAnnualLeave() {
}
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const response = await fetch(`${API_BASE_URL}/api/vacation-balances/auto-calculate`, {
method: 'POST',
headers: {
@@ -361,7 +361,7 @@ async function submitIndividualVacation() {
}
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const response = await fetch(`${API_BASE_URL}/api/vacation-balances`, {
method: 'POST',
headers: {
@@ -426,7 +426,7 @@ window.deleteBalance = async function(balanceId) {
if (!confirm('정말 삭제하시겠습니까?')) return;
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const response = await fetch(`${API_BASE_URL}/api/vacation-balances/${balanceId}`, {
method: 'DELETE',
headers: {
@@ -460,7 +460,7 @@ async function submitEditBalance(e) {
const notes = document.getElementById('editNotes').value;
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const response = await fetch(`${API_BASE_URL}/api/vacation-balances/${balanceId}`, {
method: 'PUT',
headers: {
@@ -648,7 +648,7 @@ async function submitBulkAllocation() {
for (const item of validItems) {
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const response = await fetch(`${API_BASE_URL}/api/vacation-balances/auto-calculate`, {
method: 'POST',
headers: {
@@ -754,7 +754,7 @@ window.deleteVacationType = async function(typeId) {
if (!confirm('정말 삭제하시겠습니까?')) return;
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const response = await fetch(`${API_BASE_URL}/api/vacation-types/${typeId}`, {
method: 'DELETE',
headers: {
@@ -798,7 +798,7 @@ async function submitVacationType(e) {
};
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('sso_token');
const url = typeId
? `${API_BASE_URL}/api/vacation-types/${typeId}`
: `${API_BASE_URL}/api/vacation-types`;