Remove hardcode of email restriction.

This commit is contained in:
0xcathiefish
2026-04-06 08:14:49 +00:00
parent 9bc9222be5
commit 59c65446f9
4 changed files with 1 additions and 14 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
services:
backend:
image: ghcr.io/exchanges-lab/statistic/backend:v1.2
image: ghcr.io/exchanges-lab/view/backend:latest
container_name: backend
networks:
- cycle
-4
View File
@@ -5,12 +5,9 @@
# Set these in Cloudflare Pages > Settings > Environment Variables:
# API_BASE_URL - Backend API URL (e.g. https://api.yourdomain.com)
# GOOGLE_CLIENT_ID - Google OAuth Client ID
# ALLOWED_EMAILS - Comma-separated email whitelist (e.g. alice@gmail.com,bob@gmail.com)
API_BASE_URL="${API_BASE_URL:-https://xxx.xxx.com}"
GOOGLE_CLIENT_ID="${GOOGLE_CLIENT_ID:-xxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com}"
ALLOWED_EMAILS="${ALLOWED_EMAILS:-your-email@gmail.com}"
cat > frontend/auth-config.js << JSEOF
window.API_CONFIG = { baseUrl: '${API_BASE_URL}' };
@@ -25,7 +22,6 @@ const AUTH_CONFIG = {
};
window.AUTH_CONFIG = AUTH_CONFIG;
window.ALLOWED_EMAILS = '${ALLOWED_EMAILS}'.split(',').map(e => e.trim());
JSEOF
echo "Generated auth-config.js with API_BASE_URL=${API_BASE_URL}"
-1
View File
@@ -11,4 +11,3 @@ const AUTH_CONFIG = {
};
window.AUTH_CONFIG = AUTH_CONFIG;
window.ALLOWED_EMAILS = ['xiannvweideta@gmail.com'];
-8
View File
@@ -126,14 +126,6 @@
const credential = response.credential;
const userData = parseJwt(credential);
// Email whitelist verification
const allowedEmails = window.ALLOWED_EMAILS || ['your-email@gmail.com'];
if (!allowedEmails.includes(userData.email)) {
document.getElementById('error-msg').textContent = 'Access denied: unauthorized email.';
document.getElementById('error-msg').style.display = 'block';
return;
}
const user = {
email: userData.email,
name: userData.name,