-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.js
More file actions
276 lines (228 loc) · 8.75 KB
/
auth.js
File metadata and controls
276 lines (228 loc) · 8.75 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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
// auth.js
class AuthManager {
constructor(apiBaseUrl) {
this.apiBaseUrl = apiBaseUrl;
this.sessionToken = null;
this.tempToken = null;
this.email = null;
}
async requestOTP(voterId, dob, email) {
try {
const response = await fetch(`${this.apiBaseUrl}/api/auth/login`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
voter_id: voterId,
dob: dob,
email: email
})
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.error || 'Authentication failed');
}
this.tempToken = data.temp_token;
this.email = email;
return {
success: true,
message: data.message,
testOtp: data.test_otp // For development/testing
};
} catch (error) {
return {
success: false,
error: error.message
};
}
}
async verifyOTP(otp) {
try {
const response = await fetch(`${this.apiBaseUrl}/api/auth/verify-otp`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: this.email,
otp: otp,
temp_token: this.tempToken
})
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.error || 'OTP verification failed');
}
this.sessionToken = data.session_token;
sessionStorage.setItem('voting_session', this.sessionToken);
return {
success: true,
voterInfo: data.voter_info
};
} catch (error) {
return {
success: false,
error: error.message
};
}
}
async resendOTP() {
try {
const response = await fetch(`${this.apiBaseUrl}/api/auth/resend-otp`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: this.email,
temp_token: this.tempToken
})
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.error || 'Failed to resend OTP');
}
return {
success: true,
message: data.message,
testOtp: data.test_otp
};
} catch (error) {
return {
success: false,
error: error.message
};
}
}
getSessionToken() {
return this.sessionToken || sessionStorage.getItem('voting_session');
}
logout() {
this.sessionToken = null;
this.tempToken = null;
this.email = null;
sessionStorage.removeItem('voting_session');
}
}
// Form handling
document.addEventListener('DOMContentLoaded', () => {
const authManager = new AuthManager('http://localhost:5000');
const loginForm = document.getElementById('loginForm');
const otpForm = document.getElementById('otpForm');
const otpSection = document.getElementById('otpSection');
const errorDiv = document.getElementById('error-message');
const resendBtn = document.getElementById('resendOtpBtn');
const resendTimer = document.getElementById('resendTimer');
let resendCooldown = 60;
let timerInterval = null;
// Step 1: Request OTP
loginForm.addEventListener('submit', async (e) => {
e.preventDefault();
const voterId = document.getElementById('voterId').value;
const dob = document.getElementById('dob').value;
const email = document.getElementById('email').value;
errorDiv.classList.add('hidden');
// Disable submit button
const submitBtn = loginForm.querySelector('button[type="submit"]');
submitBtn.disabled = true;
submitBtn.textContent = 'Sending OTP...';
const result = await authManager.requestOTP(voterId, dob, email);
submitBtn.disabled = false;
submitBtn.textContent = 'Request OTP';
if (result.success) {
// Hide login form, show OTP section
loginForm.style.display = 'none';
otpSection.classList.remove('hidden');
// Update message
document.getElementById('otpMessage').innerHTML =
`✉️ ${result.message}<br><small>Please check your email for the OTP code</small>`;
// Show test OTP if available
if (result.testOtp) {
document.getElementById('otpMessage').innerHTML +=
`<br><br><strong style="color: #667eea;">Test OTP: ${result.testOtp}</strong>`;
}
// Start resend cooldown
startResendCooldown();
// Focus on OTP input
document.getElementById('otpInput').focus();
} else {
errorDiv.textContent = result.error;
errorDiv.classList.remove('hidden');
}
});
// Step 2: Verify OTP
otpForm.addEventListener('submit', async (e) => {
e.preventDefault();
const otp = document.getElementById('otpInput').value;
errorDiv.classList.add('hidden');
const submitBtn = otpForm.querySelector('button[type="submit"]');
submitBtn.disabled = true;
submitBtn.textContent = 'Verifying...';
const result = await authManager.verifyOTP(otp);
submitBtn.disabled = false;
submitBtn.textContent = 'Verify OTP';
if (result.success) {
// Redirect to voting page
window.location.href = 'voting.html';
} else {
errorDiv.textContent = result.error;
errorDiv.classList.remove('hidden');
document.getElementById('otpInput').value = '';
document.getElementById('otpInput').focus();
}
});
// Resend OTP
resendBtn.addEventListener('click', async () => {
if (resendBtn.disabled) return;
resendBtn.disabled = true;
resendBtn.textContent = 'Sending...';
const result = await authManager.resendOTP();
if (result.success) {
errorDiv.classList.remove('error');
errorDiv.classList.add('success');
errorDiv.textContent = result.message;
errorDiv.classList.remove('hidden');
// Show test OTP if available
if (result.testOtp) {
errorDiv.textContent += ` | Test OTP: ${result.testOtp}`;
}
// Hide success message after 3 seconds
setTimeout(() => {
errorDiv.classList.add('hidden');
errorDiv.classList.remove('success');
errorDiv.classList.add('error');
}, 3000);
// Restart cooldown
resendCooldown = 60;
startResendCooldown();
} else {
errorDiv.textContent = result.error;
errorDiv.classList.remove('hidden');
resendBtn.disabled = false;
resendBtn.textContent = 'Resend OTP';
}
});
function startResendCooldown() {
resendBtn.disabled = true;
resendCooldown = 60;
if (timerInterval) clearInterval(timerInterval);
timerInterval = setInterval(() => {
resendCooldown--;
resendTimer.textContent = resendCooldown;
if (resendCooldown <= 0) {
clearInterval(timerInterval);
resendBtn.disabled = false;
resendBtn.innerHTML = 'Resend OTP';
} else {
resendBtn.innerHTML = `Resend OTP (<span id="resendTimer">${resendCooldown}</span>s)`;
}
}, 1000);
}
// Auto-submit when 6 digits entered
document.getElementById('otpInput').addEventListener('input', (e) => {
if (e.target.value.length === 6) {
otpForm.dispatchEvent(new Event('submit'));
}
});
});