mirror of
https://github.com/exchanges-lab/view.git
synced 2026-08-05 05:36:06 +08:00
Remove hardcode of email restriction.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
backend:
|
backend:
|
||||||
image: ghcr.io/exchanges-lab/statistic/backend:v1.2
|
image: ghcr.io/exchanges-lab/view/backend:latest
|
||||||
container_name: backend
|
container_name: backend
|
||||||
networks:
|
networks:
|
||||||
- cycle
|
- cycle
|
||||||
|
|||||||
@@ -5,12 +5,9 @@
|
|||||||
# Set these in Cloudflare Pages > Settings > Environment Variables:
|
# Set these in Cloudflare Pages > Settings > Environment Variables:
|
||||||
# API_BASE_URL - Backend API URL (e.g. https://api.yourdomain.com)
|
# API_BASE_URL - Backend API URL (e.g. https://api.yourdomain.com)
|
||||||
# GOOGLE_CLIENT_ID - Google OAuth Client ID
|
# 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}"
|
API_BASE_URL="${API_BASE_URL:-https://xxx.xxx.com}"
|
||||||
GOOGLE_CLIENT_ID="${GOOGLE_CLIENT_ID:-xxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.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
|
cat > frontend/auth-config.js << JSEOF
|
||||||
window.API_CONFIG = { baseUrl: '${API_BASE_URL}' };
|
window.API_CONFIG = { baseUrl: '${API_BASE_URL}' };
|
||||||
|
|
||||||
@@ -25,7 +22,6 @@ const AUTH_CONFIG = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
window.AUTH_CONFIG = AUTH_CONFIG;
|
window.AUTH_CONFIG = AUTH_CONFIG;
|
||||||
window.ALLOWED_EMAILS = '${ALLOWED_EMAILS}'.split(',').map(e => e.trim());
|
|
||||||
JSEOF
|
JSEOF
|
||||||
|
|
||||||
echo "Generated auth-config.js with API_BASE_URL=${API_BASE_URL}"
|
echo "Generated auth-config.js with API_BASE_URL=${API_BASE_URL}"
|
||||||
|
|||||||
@@ -11,4 +11,3 @@ const AUTH_CONFIG = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
window.AUTH_CONFIG = AUTH_CONFIG;
|
window.AUTH_CONFIG = AUTH_CONFIG;
|
||||||
window.ALLOWED_EMAILS = ['xiannvweideta@gmail.com'];
|
|
||||||
|
|||||||
@@ -126,14 +126,6 @@
|
|||||||
const credential = response.credential;
|
const credential = response.credential;
|
||||||
const userData = parseJwt(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 = {
|
const user = {
|
||||||
email: userData.email,
|
email: userData.email,
|
||||||
name: userData.name,
|
name: userData.name,
|
||||||
|
|||||||
Reference in New Issue
Block a user