From dd31f9fa4e18a31a5b5e4713825e1840c74a1cbe Mon Sep 17 00:00:00 2001 From: Till Tomczak Date: Tue, 1 Apr 2025 15:49:20 +0200 Subject: [PATCH] Fix redirectURI type error in createAuthorizationURL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove redirectURI param from createAuthorizationURL options - Update login route to use USED_CALLBACK_URL from oauth.ts - Enhance update-package.js to fix login route issues 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .../src/app/auth/login/route.ts | 7 +-- .../reservation-platform/update-package.js | 59 ++++++++++++++++++- 2 files changed, 61 insertions(+), 5 deletions(-) diff --git a/packages/reservation-platform/src/app/auth/login/route.ts b/packages/reservation-platform/src/app/auth/login/route.ts index 642335f..5822408 100644 --- a/packages/reservation-platform/src/app/auth/login/route.ts +++ b/packages/reservation-platform/src/app/auth/login/route.ts @@ -1,5 +1,4 @@ -import { github } from "@/server/auth/oauth"; -import { OAUTH_CALLBACK_URL } from "@/utils/api-config"; +import { github, USED_CALLBACK_URL } from "@/server/auth/oauth"; import { generateState } from "arctic"; import { cookies } from "next/headers"; @@ -9,9 +8,9 @@ export async function GET(): Promise { const state = generateState(); // Verwende die zentral definierte Callback-URL + // Die redirectURI ist bereits im GitHub-Client konfiguriert const url = await github.createAuthorizationURL(state, { scopes: ["user"], - redirectURI: OAUTH_CALLBACK_URL, }); const ONE_HOUR = 60 * 60; @@ -25,7 +24,7 @@ export async function GET(): Promise { // Log zur Fehlersuche console.log(`GitHub OAuth redirect zu: ${url.toString()}`); - console.log(`Verwendete Callback-URL: ${OAUTH_CALLBACK_URL}`); + console.log(`Verwendete Callback-URL: ${USED_CALLBACK_URL}`); return Response.redirect(url); } diff --git a/packages/reservation-platform/update-package.js b/packages/reservation-platform/update-package.js index 71c00cd..0f34d66 100755 --- a/packages/reservation-platform/update-package.js +++ b/packages/reservation-platform/update-package.js @@ -10,8 +10,9 @@ const fs = require('fs'); const path = require('path'); -// Pfad zur OAuth-Callback-Route und OAuth-Konfiguration +// Pfad zur OAuth-Konfiguration und Routes const callbackRoutePath = path.join(__dirname, 'src/app/auth/login/callback/route.ts'); +const loginRoutePath = path.join(__dirname, 'src/app/auth/login/route.ts'); const oauthConfigPath = path.join(__dirname, 'src/server/auth/oauth.ts'); // Aktualisiere die OAuth-Konfiguration @@ -119,4 +120,60 @@ try { console.error('❌ Fehler beim Aktualisieren der package.json:', error); } +// Aktualisiere die Login-Route +try { + let loginContent = fs.readFileSync(loginRoutePath, 'utf8'); + + // Prüfe, ob Änderungen nötig sind + const loginNeedsUpdate = + loginContent.includes('redirectURI: OAUTH_CALLBACK_URL') || + !loginContent.includes('USED_CALLBACK_URL'); + + if (loginNeedsUpdate) { + console.log('✅ Aktualisiere OAuth-Login-Route...'); + + // 1. Aktualisiere den Import + if (!loginContent.includes('USED_CALLBACK_URL')) { + if (loginContent.includes('import { github } from "@/server/auth/oauth";')) { + loginContent = loginContent.replace( + 'import { github } from "@/server/auth/oauth";', + 'import { github, USED_CALLBACK_URL } from "@/server/auth/oauth";' + ); + } + + // Entferne den OAUTH_CALLBACK_URL-Import + if (loginContent.includes('import { OAUTH_CALLBACK_URL } from "@/utils/api-config";')) { + loginContent = loginContent.replace( + 'import { OAUTH_CALLBACK_URL } from "@/utils/api-config";', + '' + ); + } + } + + // 2. Korrigiere die createAuthorizationURL-Funktion + if (loginContent.includes('redirectURI: OAUTH_CALLBACK_URL')) { + loginContent = loginContent.replace( + /const url = await github\.createAuthorizationURL\(state, \{\s*scopes: \["user"\],\s*redirectURI: OAUTH_CALLBACK_URL,\s*\}\);/s, + 'const url = await github.createAuthorizationURL(state, {\n\t\tscopes: ["user"],\n\t});' + ); + } + + // 3. Aktualisiere die Logging-Nachricht + if (loginContent.includes('console.log(`Verwendete Callback-URL: ${OAUTH_CALLBACK_URL}`')) { + loginContent = loginContent.replace( + 'console.log(`Verwendete Callback-URL: ${OAUTH_CALLBACK_URL}`', + 'console.log(`Verwendete Callback-URL: ${USED_CALLBACK_URL}`' + ); + } + + // Schreibe die aktualisierte Datei + fs.writeFileSync(loginRoutePath, loginContent, 'utf8'); + console.log('✅ OAuth-Login-Route erfolgreich aktualisiert.'); + } else { + console.log('ℹ️ OAuth-Login-Route ist bereits aktuell.'); + } +} catch (error) { + console.error('❌ Fehler beim Aktualisieren der OAuth-Login-Route:', error); +} + console.log('✅ OAuth-Konfiguration wurde erfolgreich vorbereitet.'); \ No newline at end of file