-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth0-config-new.js
More file actions
222 lines (188 loc) · 8.09 KB
/
auth0-config-new.js
File metadata and controls
222 lines (188 loc) · 8.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
// Auth0 Configuration and Authentication Logic
document.addEventListener('DOMContentLoaded', async () => {
try {
// Initialize Auth0 using our manager
await authManager.initialize();
console.log("🚀 Auth0 client initialized successfully");
console.log("📍 Redirect URI:", authManager.redirectUri);
// Handle authentication state on page load
if (location.search.includes("state=") &&
(location.search.includes("code=") ||
location.search.includes("error="))) {
try {
await authManager.handleRedirectCallback();
console.log("✅ Authentication callback handled");
} catch (error) {
console.error("❌ Auth callback error:", error);
}
}
// Check authentication status and update UI
await updateAuthUI();
// Authentication UI update function
async function updateAuthUI() {
try {
const isAuthenticated = await authManager.isAuthenticated();
const user = await authManager.getUser();
// Get UI elements
const loginButton = document.getElementById("login-btn");
const logoutButton = document.getElementById("logout-btn");
const userProfileElement = document.getElementById("user-profile");
if (isAuthenticated && user) {
// User is logged in
console.log("👤 User authenticated:", user.name);
if (loginButton) loginButton.style.display = "none";
if (logoutButton) logoutButton.style.display = "inline-block";
if (userProfileElement) {
userProfileElement.style.display = "flex";
userProfileElement.innerHTML = `
<div class="user-info">
<img src="${user.picture}" alt="Profile" class="user-avatar">
<div class="user-details">
<span class="user-name">${user.name}</span>
<span class="user-email">${user.email || ''}</span>
</div>
</div>
`;
}
// Show authenticated content
showAuthenticatedContent();
// Update CTA buttons for authenticated user
updateCTAButtons(true);
} else {
// User is not logged in
console.log("🔒 User not authenticated");
if (loginButton) loginButton.style.display = "inline-block";
if (logoutButton) logoutButton.style.display = "none";
if (userProfileElement) userProfileElement.style.display = "none";
// Hide authenticated content
hideAuthenticatedContent();
// Update CTA buttons for unauthenticated user
updateCTAButtons(false);
}
} catch (error) {
console.error("❌ Error updating auth UI:", error);
}
}
// Login event handler for fingerprint button
const loginButton = document.getElementById("login-btn");
if (loginButton) {
console.log("✅ Fingerprint login button found and initializing...");
loginButton.addEventListener("click", async (e) => {
e.preventDefault();
console.log("🖐️ Fingerprint button clicked!");
// Trigger fingerprint animation
loginButton.classList.add('active');
console.log("🎬 Animation started...");
// Wait for animation to complete before redirecting
setTimeout(async () => {
console.log("🔑 Initiating Auth0 login...");
await authManager.login();
}, 4100); // Wait for fingerprint scan animation to complete (4.1 seconds)
});
// Reset animation when it ends
loginButton.addEventListener('animationend', () => {
console.log("🎬 Animation ended, resetting...");
loginButton.classList.remove('active');
});
} else {
console.error("❌ Fingerprint login button not found!");
}
// Logout event handler
const logoutButton = document.getElementById("logout-btn");
if (logoutButton) {
console.log("✅ Fingerprint logout button found and initializing...");
logoutButton.addEventListener("click", async (e) => {
e.preventDefault();
console.log("👋 Fingerprint logout button clicked!");
console.log("👋 Initiating Auth0 logout...");
await authManager.logout();
});
} else {
console.error("❌ Fingerprint logout button not found!");
}
// Show/hide content based on authentication
function showAuthenticatedContent() {
const protectedElements = document.querySelectorAll('.auth-protected');
protectedElements.forEach(el => el.style.display = 'block');
const publicElements = document.querySelectorAll('.auth-public');
publicElements.forEach(el => el.style.display = 'none');
}
function hideAuthenticatedContent() {
const protectedElements = document.querySelectorAll('.auth-protected');
protectedElements.forEach(el => el.style.display = 'none');
const publicElements = document.querySelectorAll('.auth-public');
publicElements.forEach(el => el.style.display = 'block');
}
// Update CTA buttons based on authentication status
function updateCTAButtons(isAuthenticated) {
const mainCTA = document.getElementById("main-cta");
const finalCTA = document.getElementById("final-cta-button");
if (isAuthenticated) {
// User is logged in - show "Enter Solar System" text and link to Vercel
if (mainCTA) {
mainCTA.innerHTML = '> ENTER SOLAR SYSTEM <';
mainCTA.title = 'Launch the 3D Solar System Explorer';
}
} else {
// User is not logged in - show "Login to Explore" text
if (mainCTA) {
mainCTA.innerHTML = '> LOGIN TO EXPLORE <';
mainCTA.title = 'Sign in to access the Solar System';
}
}
if (finalCTA) {
finalCTA.textContent = 'Take An AstroQuiz';
finalCTA.title = 'Launch the amAstroQuiz challenge';
finalCTA.setAttribute('href', 'https://cosmicquizzer.vercel.app/');
finalCTA.setAttribute('target', '_blank');
finalCTA.setAttribute('rel', 'noopener');
}
}
// Make functions globally available
window.authManager = authManager;
window.updateAuthUI = updateAuthUI;
window.updateCTAButtons = updateCTAButtons;
} catch (error) {
console.error("❌ Failed to initialize Auth0:", error);
// Fallback behavior when Auth0 fails
const mainCTA = document.getElementById("main-cta");
const finalCTA = document.getElementById("final-cta-button");
if (mainCTA) {
mainCTA.innerHTML = '> ENTER SOLAR SYSTEM <';
mainCTA.onclick = () => window.location.assign("https://3d-solar-system-three-js.vercel.app/");
}
if (finalCTA) {
finalCTA.textContent = 'Take An AstroQuiz';
finalCTA.setAttribute('href', 'https://cosmicquizzer.vercel.app/');
finalCTA.setAttribute('target', '_blank');
finalCTA.setAttribute('rel', 'noopener');
}
}
});
// Global function to handle main CTA button clicks
async function handleMainCTA() {
try {
if (window.authManager && window.authManager.isInitialized) {
const isAuthenticated = await window.authManager.isAuthenticated();
if (isAuthenticated) {
// User is logged in - redirect to Vercel page
console.log("🚀 Redirecting authenticated user to Solar System");
window.location.assign("https://3d-solar-system-three-js.vercel.app/");
} else {
// User is not logged in - trigger login
console.log("🔑 Redirecting to login for authentication");
await window.authManager.login();
}
} else {
// Auth0 not initialized yet - fallback to direct link
console.log("⚠️ Auth0 not ready, opening direct link");
window.location.assign("https://3d-solar-system-three-js.vercel.app/");
}
} catch (error) {
console.error("❌ CTA handler error:", error);
// Fallback to direct link on error
window.location.assign("https://3d-solar-system-three-js.vercel.app/");
}
}
// Make function globally available
window.handleMainCTA = handleMainCTA;