- Fix nav_menu translation key: 'Add Webpage(s)' -> 'Add Webpages' - Fix session persistence: sync baseApiService token on login/logout/load - Add admin user update script (scripts/update_admin_user.py) - Add Ollama memory optimization guide 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
70 KiB
SurfSense Security & Architecture Audit Report
Audit Date: 2025-11-17 Audited By: Claude AI Assistant (Anthropic) Repository: https://github.com/okapteinis/SurfSense Branch: claude/surfsense-audit-automation-01MeVuvAybnL5NXHG5W3XuXe Upstream: https://github.com/MODSetter/SurfSense Session Topic: Comprehensive Security, Architecture, and Compliance Audit
Executive Summary
This report documents a comprehensive security and architecture audit of the SurfSense repository. SurfSense is an AI-powered research agent and personal knowledge base system that integrates with various external sources (Slack, Linear, GitHub, Notion, etc.) and supports local/cloud LLM deployments.
Overall Assessment: ✅ GOOD with recommendations for enhancement
The codebase demonstrates strong security practices with automated tooling (detect-secrets, pre-commit hooks, bandit), modern architecture (FastAPI + Next.js), and comprehensive documentation. Several recommendations are provided to further strengthen security posture and automation capabilities.
1. Scope of Audit
1.1 What Was Checked
✅ Security & Secrets Scanning
- Scanned all source files for hardcoded credentials, API keys, tokens
- Reviewed
.env.examplefiles for placeholder safety - Validated
.gitignorecoverage for sensitive files - Analyzed pre-commit hooks and detect-secrets baseline
- Checked for exposed private keys, certificates, database credentials
✅ Architecture & LLM/RAG Components
- Reviewed FastAPI backend architecture
- Analyzed hybrid search implementation (vector + full-text)
- Examined LangGraph agent configurations
- Validated embedding models and reranker setup
- Assessed PostgreSQL/pgvector integration
- Reviewed Celery/Redis async task architecture
✅ Platform Compatibility
- Python version requirements (3.12+)
- Node.js/npm package versions
- Docker containerization setup
- Multi-platform support (x86_64, ARM)
✅ Licensing & Copyright
- Scanned all LICENSE files
- Checked for license headers in source files
- Verified third-party dependency licenses
✅ Documentation Quality
- Reviewed README.md, CONTRIBUTING.md
- Examined setup guides (Chinese LLM guide, etc.)
- Validated configuration examples
2. Security Audit Results
2.1 Secrets & Credentials Analysis
✅ Status: SECURE - No Real Secrets Found
Findings:
-
All API keys in codebase are placeholders:
.env.examplefiles use obvious placeholders:SECRET_KEY=SECRETGOOGLE_OAUTH_CLIENT_ID=924507538m(partial/example)FIRECRAWL_API_KEY=fcr-01J0000000000000000000000(zeros)UNSTRUCTURED_API_KEY=Tpu3P0U8iy(short placeholder)LLAMA_CLOUD_API_KEY=llx-nnn(obvious placeholder)
-
Configuration templates are safe:
surfsense_backend/app/config/global_llm_config.example.yamluses:sk-your-openai-api-key-heresk-ant-your-anthropic-api-key-hereyour-deepseek-api-key-here
-
Documentation examples use masked placeholders:
docs/chinese-llm-setup.mdusessk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-
No .env files committed:
- Only
.env.examplefiles present (verified withls -la) - Real
.envfiles properly gitignored
- Only
✅ Security Tooling in Place
Excellent automated security measures:
-
detect-secrets (v1.5.0) with comprehensive detectors:
- ✅ AWS Key Detector
- ✅ Azure Storage Key Detector
- ✅ GitHub Token Detector
- ✅ JWT Token Detector
- ✅ Private Key Detector
- ✅ Slack Detector
- ✅ Discord Bot Token Detector
- ✅ High Entropy String Detectors (Base64, Hex)
- ✅ And 15+ more detectors
- Baseline file:
.secrets.baseline(currently clean:"results": {})
-
Pre-commit hooks (
.pre-commit-config.yaml):- ✅ Secret detection on every commit
- ✅ Bandit (Python security linter) - high severity checks
- ✅ Ruff (Python linting + formatting)
- ✅ Biome (TypeScript/JavaScript linting)
- ✅ YAML/JSON/TOML validation
- ✅ Large file prevention (10MB limit)
- ✅ Commit message linting (commitizen)
2.2 .gitignore Analysis
⚠️ Status: MINIMAL - Needs Enhancement
Current .gitignore (5 entries only):
.flashrank_cache*
podcasts/
.env
node_modules/
.ruff_cache/
Issues:
- ❌ Missing common Python cache patterns (
__pycache__/,*.pyc,*.pyo) - ❌ Missing test/coverage artifacts (
.pytest_cache/,.coverage,htmlcov/) - ❌ Missing build artifacts (
dist/,build/,*.egg-info/) - ❌ Missing environment variations (
.env.local,.env.production,.env.*.local) - ❌ Missing credentials/secrets patterns (
*.key,*.pem,*.cert,credentials.json,secrets.*) - ❌ Missing log files (
*.log,logs/,.log/) - ❌ Missing OS-specific files (
.DS_Store,Thumbs.db) - ❌ Missing IDE files (
.idea/,*.swp,*.swo) - ❌ Missing database files (
*.db,*.sqlite,*.sqlite3)
Recommendation: Enhance .gitignore with comprehensive patterns (see Recommendations section).
2.3 Docker Security
✅ Status: GOOD with minor notes
Findings:
- Multi-stage builds: Not used, but acceptable for this project size
- Base image:
python:3.12-slim(good - minimal attack surface) - Security updates: ✅ Includes
apt-get update, certificate management - Non-root user: ❌ Runs as root (line 75: no USER directive)
- Secrets handling: ✅ Uses
.envfiles, not baked into image - SSL certificates: ✅ Properly configured with certifi
docker-compose.yml:
- ✅ Uses environment variable substitution
- ✅ Default credentials are weak (
postgres:postgres) but documented for local dev - ✅ Services properly isolated with Docker networks
- ✅ pgAdmin included for database management
3. LLM/RAG Architecture Summary
3.1 Architecture Overview
SurfSense implements a sophisticated 2-tier Hierarchical RAG system:
┌─────────────────────────────────────────────────────────────┐
│ USER QUERY │
└─────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────┐
│ TIER 1: Document-Level Search │
│ • Hybrid Search (Vector + Full-Text) │
│ • PostgreSQL pgvector (<=> operator) │
│ • Reciprocal Rank Fusion (RRF) │
└─────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────┐
│ TIER 2: Chunk-Level Search │
│ • Fine-grained retrieval within selected documents │
│ • Vector + Full-Text Hybrid Search │
│ • RRF fusion for optimal ranking │
└─────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────┐
│ RERANKING (Optional) │
│ • Cohere, FlashRank, Pinecone rerankers │
│ • Model: ms-marco-MiniLM-L-12-v2 (default) │
└─────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────┐
│ LLM RESPONSE GENERATION │
│ • LiteLLM (100+ LLM support) │
│ • LangGraph agent orchestration │
│ • Cited answers (Perplexity-style) │
└─────────────────────────────────────────────────────────────┘
3.2 Core Components
A. Embedding Models
- Library: Chonkie
AutoEmbeddings(v1.4.0+) - Default:
sentence-transformers/all-MiniLM-L6-v2(local) - Supported Providers:
- Sentence Transformers (local, 6000+ models)
- OpenAI (
openai://text-embedding-ada-002) - Anthropic (
anthropic://claude-v1) - Cohere (
cohere://embed-english-light-v3.0) - Configurable via
EMBEDDING_MODELenvironment variable
B. Vector Database
- Technology: PostgreSQL 14+ with pgvector extension
- Storage:
ankane/pgvector:latestDocker image - Operations:
- Cosine similarity:
<=>operator - Efficient indexing for large-scale vector search
- Cosine similarity:
C. Hybrid Search Implementation
File: surfsense_backend/app/retriver/documents_hybrid_search.py
File: surfsense_backend/app/retriver/chunks_hybrid_search.py
Features:
-
Vector Search:
- Embeddings stored in PostgreSQL vector columns
- Cosine similarity ranking via
<=>operator
-
Full-Text Search:
- PostgreSQL
to_tsvector()/plainto_tsquery() - English language support (configurable)
- PostgreSQL
-
Reciprocal Rank Fusion (RRF):
- Combines vector + full-text results
- Optimal ranking for diverse query types
-
Security:
- User-based access control (
user_idfiltering) - Search space isolation (
search_space_id)
- User-based access control (
D. Chunking Strategy
- Library: Chonkie
LateChunker(v1.4.0+) - Approach: Adaptive chunking based on embedding model's max sequence length
- Benefits:
- Prevents token overflow
- Optimizes chunk size for embedding quality
- Automatic adaptation to different models
E. Rerankers (Optional)
Enabled via: RERANKERS_ENABLED=TRUE
Supported Models:
- FlashRank (
ms-marco-MiniLM-L-12-v2) - default - Cohere
- Pinecone
- Others via
rerankerslibrary (v0.7.1+)
F. LLM Integration
Primary Framework: LiteLLM (v1.77.5+)
Supported Providers (100+):
- OpenAI (GPT-4, GPT-3.5)
- Anthropic (Claude Sonnet, Opus, Haiku)
- Google (Gemini, Vertex AI)
- Chinese LLMs:
- DeepSeek
- Alibaba Qwen (通义千问)
- Moonshot Kimi (月之暗面)
- Zhipu GLM (智谱 AI)
- OpenRouter
- Comet API
- Groq
- And 90+ more...
Configuration: surfsense_backend/app/config/global_llm_config.example.yaml
G. Agent Framework
Technology: LangGraph (v0.3.29+)
Agents:
-
Researcher Agent (
app/agents/researcher/)- Multi-step research workflows
- External source integration (Slack, GitHub, Notion, etc.)
- Search engine connectors (Tavily, LinkUp, SearxNG)
-
QNA Agent (
app/agents/researcher/qna_agent/)- Question-answering on saved content
- Citation generation (Perplexity-style)
-
Podcaster Agent (
app/agents/podcaster/)- Blazingly fast podcast generation (<20s for 3-min podcast)
- TTS support:
- Local: Kokoro TTS
- Cloud: OpenAI, Azure, Google Vertex AI
- STT support: Faster-Whisper (local), LiteLLM providers
H. Document Processing (ETL)
Configurable via: ETL_SERVICE environment variable
Options:
-
Docling (default, privacy-focused, no API key)
- Local processing
- Supports: PDF, DOCX, HTML, images, CSV
-
Unstructured.io (API-based, 34+ formats)
- Cloud processing
- Requires
UNSTRUCTURED_API_KEY
-
LlamaCloud (API-based, 50+ formats)
- Enhanced parsing
- Requires
LLAMA_CLOUD_API_KEY
I. Async Task Queue
- Technology: Celery (v5.5.3+) + Redis (v5.2.1+)
- Workers: Handle document processing, podcast generation
- Scheduler: Celery Beat for periodic connector syncing
- Monitoring: Flower (v2.0.1+) on port 5555
3.3 External Connectors
Supported Integrations (15+):
- Search Engines: Tavily, LinkUp, SearxNG, Baidu, Serper
- Collaboration: Slack, Discord
- Project Management: Linear, Jira, ClickUp, Airtable, Luma
- Documentation: Notion, Confluence
- Cloud Storage: Google Calendar, Gmail
- Development: GitHub
- Custom: Elasticsearch
4. Platform Compatibility
4.1 Backend (Python)
Version: Python 3.12+ Package Manager: uv + pip Status: ✅ MODERN & COMPATIBLE
Key Dependencies:
- FastAPI 0.115.8+ (latest stable)
- SQLAlchemy 2.x (async support)
- Alembic 1.13.0+ (database migrations)
- LangChain/LangGraph (latest stable)
- PyTorch (CUDA 12.1 support on x86_64, CPU on ARM)
Compatibility Notes:
- ✅ Python 3.12 is current stable (released Oct 2023)
- ✅ All major dependencies are actively maintained
- ✅ Multi-platform Docker support (x86_64, ARM)
- ⚠️ Requires significant system resources (ML models, embeddings)
4.2 Frontend (Node.js/React)
Versions:
- Node.js: 20+ (inferred from package.json
@types/node: ^20.19.9) - Next.js: 15.5.6 (latest stable)
- React: 19.1.0 (latest stable, released Dec 2024)
- TypeScript: 5.8.3 (latest stable)
Status: ✅ CUTTING-EDGE & MODERN
Build System:
- Next.js 15 with Turbopack (ultra-fast bundler)
- Tailwind CSS 4.x (latest major version)
- Biome 2.1.2 (Rust-based linter/formatter)
Compatibility Notes:
- ✅ React 19 is production-ready (Dec 2024 release)
- ✅ Next.js 15 App Router (modern architecture)
- ✅ All dependencies actively maintained
- ⚠️ React 19 is very new - ensure thorough testing for SSR edge cases
4.3 Docker & DevOps
Docker Compose: v3.8 Images:
- Backend: Python 3.12-slim
- Database:
ankane/pgvector:latest - Redis:
redis:7-alpine - pgAdmin:
dpage/pgadmin4
Status: ✅ PRODUCTION-READY
Features:
- ✅ Multi-container orchestration
- ✅ Volume persistence (postgres_data, redis_data, pgadmin_data)
- ✅ Environment variable configuration
- ✅ Health checks and dependencies
- ⚠️ No explicit resource limits (CPU/memory) - consider for production
5. Licensing & Copyright
5.1 Main License
License: Apache License 2.0
File: /LICENSE (202 lines)
Key Terms:
- ✅ Commercial use allowed
- ✅ Modification allowed
- ✅ Distribution allowed
- ✅ Patent grant included
- ✅ Requires attribution notice
- ✅ Requires license inclusion in distributions
- ✅ Changes must be documented
Note: User mentioned "CC BY-NC-ND 4.0" in instructions, but repository uses Apache 2.0. This is a permissive open-source license, not Creative Commons.
5.2 License Headers
Status: ❌ NOT PRESENT in source files
Findings:
- No license headers found in Python files
- No license headers found in TypeScript/JavaScript files
- Only top-level LICENSE files present
Recommendation: While not required by Apache 2.0, adding SPDX license identifiers to source files is a best practice:
# SPDX-License-Identifier: Apache-2.0
# Copyright 2025 SurfSense Contributors
5.3 Third-Party Dependencies
Backend (Python):
- All dependencies use permissive licenses (MIT, Apache, BSD)
- No GPL/AGPL "viral" licenses detected
Frontend (Node.js):
- All dependencies use permissive licenses (MIT, Apache, BSD)
- React, Next.js, Tailwind: MIT License
Status: ✅ LICENSE-COMPATIBLE - No conflicts found
5.4 Co-Authorship Policy
Current Status:
- No explicit co-authorship markers in commit history
- Standard Git commit metadata used
Recommendation (per user instructions): For audit sessions and significant contributions, use Git co-author trailers:
git commit -m "Add feature X
Co-authored-by: Ojārs Kapteiņš <ojars@kapteinis.lv>
Co-authored-by: Claude AI Assistant <odede@anthropic.com>"
For file-level attribution:
# Contributors:
# - Original Author: SurfSense Team
# - Security Review: Ojārs Kapteiņš <ojars@kapteinis.lv>, 2025-11-17
# - Architecture Audit: Claude AI Assistant, 2025-11-17
6. Documentation Review
6.1 Files Reviewed
✅ README.md (316 lines)
- Comprehensive feature list
- Installation options (Cloud, Docker, Manual)
- Tech stack documentation
- Screenshots and demos
- Star history and contribution guidelines
✅ CONTRIBUTING.md (exists)
- Contribution workflow documented
✅ CODE_OF_CONDUCT.md (exists)
- Community standards documented
✅ docs/chinese-llm-setup.md
- Excellent multi-language support
- Detailed setup for DeepSeek, Qwen, Moonshot, Zhipu
- Includes API key examples (all properly masked:
sk-xxx)
6.2 Missing Documentation (per user instructions)
❌ INSTALLATION_LOCAL_LLM.md - Not found ❌ MIGRATION_LOCAL_LLM.md - Not found ❌ PR_DESCRIPTION.md - Not found
Note: These specific files were mentioned in audit requirements but don't exist. Equivalent documentation may exist under different names or in online docs (surfsense.net/docs).
6.3 Documentation Quality
Status: ✅ EXCELLENT
Strengths:
- Clear, well-structured README
- Multi-language support (English, Chinese)
- Comprehensive setup guides
- Code examples properly sanitized
- Active roadmap (GitHub Projects)
Recommendations:
- Add local LLM migration guide (if needed)
- Document disaster recovery procedures
- Add API reference documentation
7. Key Findings & Recommendations
7.1 Critical (Fix Immediately)
None found. ✅ No critical security vulnerabilities detected.
7.2 High Priority
-
Enhance .gitignore
- Risk: Accidental commit of secrets/caches
- Action: Add comprehensive patterns (see Appendix A)
- Effort: 10 minutes
-
Add Docker non-root user
- Risk: Container runs as root (privilege escalation if compromised)
- Action: Add
USERdirective to Dockerfile - Effort: 5 minutes
7.3 Medium Priority
-
Add SPDX license identifiers to source files
- Risk: License ambiguity in file extracts
- Action: Add
# SPDX-License-Identifier: Apache-2.0to files - Effort: 2 hours (automated via script)
-
Document upstream sync automation
- Risk: Manual sync errors, stale fork
- Action: Create GitHub Actions workflow (see Appendix B)
- Effort: 1 hour
-
Add resource limits to docker-compose.yml
- Risk: Resource exhaustion in production
- Action: Add
deploy.resources.limitsto services - Effort: 30 minutes
7.4 Low Priority
-
Strengthen default database credentials
- Risk: Production deployments with weak defaults
- Action: Document strong password generation in setup guide
- Effort: 15 minutes
-
Add security.txt
- Risk: Unclear vulnerability disclosure process
- Action: Create
.well-known/security.txt(RFC 9116) - Effort: 30 minutes
-
Enable Dependabot
- Risk: Outdated dependencies with known CVEs
- Action: Add
.github/dependabot.yml - Effort: 15 minutes
8. Compliance Checklist
8.1 Security Checklist
- No hardcoded secrets in codebase
.env.examplefiles use placeholders only- Real
.envfiles gitignored - Automated secret scanning (detect-secrets)
- Pre-commit hooks for security
- SQL injection prevention (SQLAlchemy ORM)
- XSS prevention (React auto-escaping, rehype-sanitize)
- CSRF protection (FastAPI CORS, SameSite cookies)
- User authentication (FastAPI Users, OAuth)
- Database access control (user_id filtering)
- Docker non-root user (RECOMMENDED)
- SSL/TLS certificate management
- Comprehensive .gitignore (NEEDS IMPROVEMENT)
8.2 Code Quality Checklist
- Python linting (Ruff)
- Python security scanning (Bandit)
- TypeScript linting (Biome)
- Pre-commit hooks enabled
- Commit message linting (commitizen)
- Type safety (TypeScript, Python type hints)
- Database migrations (Alembic)
- API versioning (/api/v1/)
8.3 Documentation Checklist
- README with installation instructions
- Contributing guidelines
- Code of conduct
- License file (Apache 2.0)
- Setup guides for major features
- API reference documentation (RECOMMENDED)
- Disaster recovery guide (RECOMMENDED)
- Local LLM migration guide (per user requirements)
8.4 DevOps Checklist
- Docker containerization
- Docker Compose orchestration
- Environment variable configuration
- Database persistence (volumes)
- Health checks (implicit in dependencies)
- Resource limits (RECOMMENDED)
- GitHub Actions CI/CD (RECOMMENDED)
- Automated dependency updates (RECOMMENDED)
- Automated upstream sync (per user requirements)
9. Upstream Sync Automation
9.1 Current Sync Status
Fork: okapteinis/SurfSense Upstream: MODSetter/SurfSense Branch Strategy:
main- stable releases, synced with upstreamnightly- development branch for testingclaude/*- audit/feature branches
9.2 Recommended Sync Workflow
Per user instructions:
# Step 1: Add upstream remote (one-time)
git remote add upstream https://github.com/MODSetter/SurfSense
git remote -v # Verify
# Step 2: Fetch upstream changes
git fetch upstream
# Step 3: Sync main branch
git checkout main
git merge upstream/main --no-edit
git push origin main
# Step 4: Sync nightly from main (after audit)
git checkout nightly
git merge main --no-edit
git push origin nightly
9.3 Automated Sync (GitHub Actions)
See Appendix B for complete GitHub Actions workflow.
Schedule: Daily at 00:00 UTC Trigger: Manual dispatch available Safety: Creates PR instead of direct push (requires approval)
10. TODOs for Future Maintainers
10.1 Immediate Actions
- Review and apply .gitignore enhancements (Appendix A)
- Add non-root Docker user to Dockerfile
- Document upstream sync workflow in CONTRIBUTING.md
- Create GitHub Actions workflow for automated sync (Appendix B)
10.2 Short-Term (1-2 weeks)
- Add SPDX license identifiers to source files (script in Appendix C)
- Enable Dependabot for automated dependency updates
- Add resource limits to docker-compose.yml for production
- Create API reference documentation (OpenAPI/Swagger)
- Document disaster recovery procedures
10.3 Long-Term (1-3 months)
- Set up GitHub Actions CI/CD pipeline
- Add end-to-end testing with Playwright
- Create security.txt for vulnerability disclosure
- Implement monitoring/observability (OpenTelemetry)
- Add load testing for production readiness
- Create migration guides for major version upgrades
Appendices
Appendix A: Enhanced .gitignore
# SurfSense - Comprehensive .gitignore
# Generated by Claude Code Audit (2025-11-17)
# ============================================================================
# SECRETS & CREDENTIALS (CRITICAL)
# ============================================================================
.env
.env.local
.env.*.local
.env.production
.env.development
.env.staging
# API Keys & Credentials
*.key
*.pem
*.cert
*.crt
*.p12
*.pfx
credentials.json
secrets.*
secret.*
auth.json
service-account*.json
# ============================================================================
# PYTHON
# ============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environments
venv/
ENV/
env/
.venv
# Testing & Coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.hypothesis/
nosetests.xml
coverage.xml
*.cover
.cache
# Jupyter Notebook
.ipynb_checkpoints
# Ruff
.ruff_cache/
# MyPy
.mypy_cache/
.dmypy.json
dmypy.json
# Pytype
.pytype/
# ============================================================================
# NODE.JS / JAVASCRIPT / TYPESCRIPT
# ============================================================================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn-integrity
.pnpm-debug.log*
# Next.js
.next/
out/
.turbo/
# Build outputs
dist/
build/
*.tsbuildinfo
# Testing
coverage/
# ============================================================================
# DATABASES
# ============================================================================
*.db
*.sqlite
*.sqlite3
*.db-shm
*.db-wal
# PostgreSQL
*.dump
*.backup
# ============================================================================
# LOGS
# ============================================================================
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# ============================================================================
# OS SPECIFIC
# ============================================================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini
# ============================================================================
# IDE / EDITOR
# ============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
*.bak
*.tmp
# ============================================================================
# PROJECT SPECIFIC
# ============================================================================
# Cache directories
.flashrank_cache*
.ruff_cache/
# Generated content
podcasts/
# Temporary files
temp/
tmp/
*.tmp
# Docker volumes (if using local bind mounts)
postgres_data/
redis_data/
pgadmin_data/
# ============================================================================
# MISC
# ============================================================================
.pytest_cache/
.mypy_cache/
.dmypy.json
.pyre/
celerybeat-schedule
celerybeat.pid
Appendix B: GitHub Actions Upstream Sync Workflow
Create .github/workflows/sync-upstream.yml:
name: Sync Fork with Upstream
on:
schedule:
# Run daily at 00:00 UTC
- cron: '0 0 * * *'
workflow_dispatch: # Allow manual trigger
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history
token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure Git
run: |
git config user.name "GitHub Actions Bot"
git config user.email "actions@github.com"
- name: Add upstream remote
run: |
git remote add upstream https://github.com/MODSetter/SurfSense.git || true
git remote -v
- name: Fetch upstream changes
run: |
git fetch upstream
git fetch origin
- name: Check for upstream changes
id: check
run: |
UPSTREAM_SHA=$(git rev-parse upstream/main)
ORIGIN_SHA=$(git rev-parse origin/main)
if [ "$UPSTREAM_SHA" != "$ORIGIN_SHA" ]; then
echo "changes=true" >> $GITHUB_OUTPUT
echo "Upstream has new commits"
else
echo "changes=false" >> $GITHUB_OUTPUT
echo "No upstream changes"
fi
- name: Create sync branch
if: steps.check.outputs.changes == 'true'
run: |
BRANCH_NAME="sync/upstream-$(date +%Y%m%d-%H%M%S)"
git checkout -b $BRANCH_NAME origin/main
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
- name: Merge upstream changes
if: steps.check.outputs.changes == 'true'
run: |
git merge upstream/main --no-edit || {
echo "Merge conflict detected. Manual intervention required."
exit 1
}
- name: Push sync branch
if: steps.check.outputs.changes == 'true'
run: |
git push origin $BRANCH_NAME
- name: Create Pull Request
if: steps.check.outputs.changes == 'true'
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ env.BRANCH_NAME }}
base: main
title: "🔄 Sync with upstream MODSetter/SurfSense"
body: |
## Automated Upstream Sync
This PR syncs the fork with the latest changes from [MODSetter/SurfSense](https://github.com/MODSetter/SurfSense).
**Changes:**
- Merged commits from upstream/main
- Review carefully for potential conflicts or breaking changes
**Checklist before merge:**
- [ ] Review upstream commits for compatibility
- [ ] Run security audit if needed (see `claude.md`)
- [ ] Test locally before merging
- [ ] Ensure licensing and co-authorship are preserved
**After merge:**
- Sync `nightly` branch: `git checkout nightly && git merge main && git push`
- Rerun security audit if significant changes detected
---
*Generated by [GitHub Actions Sync Workflow](/.github/workflows/sync-upstream.yml)*
*Date: $(date -u +"%Y-%m-%d %H:%M:%S UTC")*
labels: |
automated
upstream-sync
- name: Summary
if: steps.check.outputs.changes == 'false'
run: |
echo "✅ No upstream changes detected. Fork is up to date."
Appendix C: Add SPDX License Headers (Script)
Create scripts/add_license_headers.py:
#!/usr/bin/env python3
"""
Add SPDX license identifiers to source files.
Usage: python scripts/add_license_headers.py
"""
import os
from pathlib import Path
PYTHON_HEADER = """# SPDX-License-Identifier: Apache-2.0
# Copyright 2025 SurfSense Contributors
"""
TYPESCRIPT_HEADER = """// SPDX-License-Identifier: Apache-2.0
// Copyright 2025 SurfSense Contributors
"""
def add_header_to_file(filepath: Path, header: str):
"""Add license header to file if not already present."""
content = filepath.read_text(encoding='utf-8')
if 'SPDX-License-Identifier' in content:
print(f"⏭️ Skipping {filepath} (already has header)")
return False
new_content = header + '\n' + content
filepath.write_text(new_content, encoding='utf-8')
print(f"✅ Added header to {filepath}")
return True
def main():
root = Path(__file__).parent.parent
count = 0
# Python files
for py_file in root.rglob('*.py'):
if 'venv' in str(py_file) or 'node_modules' in str(py_file):
continue
if add_header_to_file(py_file, PYTHON_HEADER):
count += 1
# TypeScript/JavaScript files
for ts_file in root.rglob('*.ts'):
if 'node_modules' in str(ts_file):
continue
if add_header_to_file(ts_file, TYPESCRIPT_HEADER):
count += 1
for tsx_file in root.rglob('*.tsx'):
if 'node_modules' in str(tsx_file):
continue
if add_header_to_file(tsx_file, TYPESCRIPT_HEADER):
count += 1
print(f"\n✅ Added license headers to {count} files")
if __name__ == '__main__':
main()
Run with: python scripts/add_license_headers.py
Site Configuration System
Implementation Date: 2025-11-18 Implemented By: Claude AI Assistant (Anthropic Sonnet 4.5) Feature: Dynamic Site Appearance Configuration
Overview
The site configuration system provides administrators with a centralized, database-driven approach to control the visibility and behavior of homepage elements, navigation links, footer sections, and route availability. This eliminates hardcoded UI elements and enables runtime customization without code changes.
Architecture
Backend Stack:
- Database: PostgreSQL singleton pattern (single row with id=1)
- ORM: SQLAlchemy with AsyncSession
- Migration: Alembic migration #38
- API Framework: FastAPI with Pydantic validation
- Access Control: Superuser-only admin endpoints, public read endpoint
Frontend Stack:
- State Management: React Context API (SiteConfigContext)
- UI Framework: Next.js 15.5.6 App Router
- Conditional Rendering: Client-side based on configuration
- Route Guards: RouteGuard component for disabled routes
Database Schema
Table: site_configuration (singleton - only 1 row)
CREATE TABLE site_configuration (
id INTEGER PRIMARY KEY, -- Always 1 (singleton)
-- Header/Navbar toggles
show_pricing_link BOOLEAN DEFAULT FALSE,
show_docs_link BOOLEAN DEFAULT FALSE,
show_github_link BOOLEAN DEFAULT FALSE,
show_sign_in BOOLEAN DEFAULT TRUE,
-- Homepage toggles
show_get_started_button BOOLEAN DEFAULT FALSE,
show_talk_to_us_button BOOLEAN DEFAULT FALSE,
-- Footer toggles
show_pages_section BOOLEAN DEFAULT FALSE,
show_legal_section BOOLEAN DEFAULT FALSE,
show_register_section BOOLEAN DEFAULT FALSE,
-- Route disabling
disable_pricing_route BOOLEAN DEFAULT TRUE,
disable_docs_route BOOLEAN DEFAULT TRUE,
disable_contact_route BOOLEAN DEFAULT TRUE,
disable_terms_route BOOLEAN DEFAULT TRUE,
disable_privacy_route BOOLEAN DEFAULT TRUE,
-- Custom text
custom_copyright VARCHAR(200) DEFAULT 'SurfSense 2025',
CONSTRAINT check_singleton CHECK (id = 1)
);
Migration: surfsense_backend/alembic/versions/38_add_site_configuration_table.py
API Endpoints
1. Public Configuration (Unauthenticated)
GET /api/v1/site-config/public
Response:
{
"show_pricing_link": false,
"show_docs_link": false,
"show_github_link": false,
"show_sign_in": true,
"show_get_started_button": false,
"show_talk_to_us_button": false,
"show_pages_section": false,
"show_legal_section": false,
"show_register_section": false,
"disable_pricing_route": true,
"disable_docs_route": true,
"disable_contact_route": true,
"disable_terms_route": true,
"disable_privacy_route": true,
"custom_copyright": "SurfSense 2025"
}
2. Admin Configuration (Superuser Only)
GET /api/v1/site-config
Authorization: Bearer <jwt_token>
Response: Same as public endpoint
3. Update Configuration (Superuser Only)
PUT /api/v1/site-config
Authorization: Bearer <jwt_token>
Content-Type: application/json
{
"show_pricing_link": true,
"custom_copyright": "© MyCompany 2025"
}
Response: Updated configuration object
Frontend Integration
1. Global Context
File: surfsense_web/contexts/SiteConfigContext.tsx
const { config, isLoading, error, refetch } = useSiteConfig();
// Access any configuration value
const showPricing = config.show_pricing_link;
const copyright = config.custom_copyright;
Initialization: Wrapped in app/layout.tsx for global availability
2. Conditional Rendering Examples
Navbar (components/homepage/navbar.tsx):
{config.show_pricing_link && !config.disable_pricing_route && (
<Link href="/pricing">Pricing</Link>
)}
{config.show_github_link && (
<Link href="https://github.com/okapteinis/SurfSense">
<IconBrandGithub />
</Link>
)}
Homepage Hero (components/homepage/hero-section.tsx):
{config.show_get_started_button && (
<Link href="/register" className="btn-primary">
Get Started
</Link>
)}
Footer (components/homepage/footer.tsx):
<p>© {config.custom_copyright || "SurfSense 2025"}</p>
{config.show_legal_section && (
<div>
{!config.disable_terms_route && <Link href="/terms">Terms</Link>}
{!config.disable_privacy_route && <Link href="/privacy">Privacy</Link>}
</div>
)}
3. Route Guarding
File: components/RouteGuard.tsx
<RouteGuard routeKey="pricing">
<PricingPage />
</RouteGuard>
Protected Routes:
/pricing→ checksdisable_pricing_route/contact→ checksdisable_contact_route/terms→ checksdisable_terms_route/privacy→ checksdisable_privacy_route
Behavior: Redirects to /404 if route is disabled
Admin Panel
Location: /dashboard/site-settings
Features:
- ✅ Visual toggle switches for all boolean flags
- ✅ Text input for custom copyright
- ✅ Real-time updates via API
- ✅ Organized by section (Header, Homepage, Footer, Routes, Custom Text)
- ✅ Descriptions for each toggle
- ✅ Save button with loading state
- ✅ Toast notifications for success/error
Access Control: Requires superuser authentication (JWT token)
UI Components:
- Custom ToggleSwitch component with animated transitions
- Gradient save button matching brand colors
- Dark mode support
- Responsive design (mobile-friendly)
Configuration Options
Header & Navigation
| Toggle | Description | Default |
|---|---|---|
show_pricing_link |
Show pricing link in navbar | false |
show_docs_link |
Show docs link in navbar | false |
show_github_link |
Show GitHub icon in navbar | false |
show_sign_in |
Show sign in button | true |
Homepage Buttons
| Toggle | Description | Default |
|---|---|---|
show_get_started_button |
Show "Get Started" CTA button | false |
show_talk_to_us_button |
Show "Talk to Us" CTA button | false |
Footer Sections
| Toggle | Description | Default |
|---|---|---|
show_pages_section |
Show pages section (Pricing, Docs, Contact) | false |
show_legal_section |
Show legal section (Terms, Privacy) | false |
show_register_section |
Show register section (Sign Up, Sign In) | false |
Route Disabling
| Toggle | Description | Default |
|---|---|---|
disable_pricing_route |
Disable /pricing route (404) | true |
disable_docs_route |
Disable /docs route (404) | true |
disable_contact_route |
Disable /contact route (404) | true |
disable_terms_route |
Disable /terms route (404) | true |
disable_privacy_route |
Disable /privacy route (404) | true |
Custom Text
| Field | Description | Default |
|---|---|---|
custom_copyright |
Footer copyright text (max 200 chars) | "SurfSense 2025" |
Security Considerations
-
Access Control:
- Admin endpoints require
is_superuser = true - Public endpoint is read-only and unauthenticated
- JWT token validation on all admin operations
- Admin endpoints require
-
Input Validation:
- Pydantic schemas enforce data types
- String length limits (copyright max 200 chars)
- Boolean validation for all toggles
-
Singleton Pattern:
- Database constraint ensures only 1 configuration row
get_or_create_config()helper prevents missing config- Atomic updates via SQLAlchemy transactions
-
Client-Side Security:
- Configuration fetched at app startup
- No sensitive data exposed (public-facing settings only)
- RouteGuard prevents access to disabled routes
Migration Guide
Step 1: Apply Database Migration
cd surfsense_backend
alembic upgrade head
This creates the site_configuration table and inserts the default row.
Step 2: Verify Configuration
# Check that singleton row exists
psql -d surfsense -c "SELECT * FROM site_configuration WHERE id = 1;"
Step 3: Access Admin Panel
- Log in as superuser
- Navigate to
/dashboard/site-settings - Configure toggles as desired
- Click "Save Configuration"
Step 4: Verify Frontend Changes
- Visit homepage at
/ - Check navbar for conditional links
- Check footer for conditional sections
- Test disabled routes (should show 404)
Testing Checklist
- Database migration runs successfully
- Singleton row created with default values
- Public API endpoint returns configuration (unauthenticated)
- Admin GET endpoint requires authentication
- Admin PUT endpoint requires superuser role
- Frontend context loads configuration on app startup
- Navbar shows/hides links based on config
- Homepage shows/hides buttons based on config
- Footer shows/hides sections based on config
- Custom copyright displays correctly
- RouteGuard redirects disabled routes to 404
- Admin panel UI loads and displays current config
- Admin panel saves changes successfully
- Changes reflect immediately after save (via refetch)
Files Changed
Backend:
surfsense_backend/app/db.py # Added SiteConfiguration model
surfsense_backend/alembic/versions/38_add_site_configuration_table.py # Migration
surfsense_backend/app/schemas/site_configuration.py # Pydantic schemas
surfsense_backend/app/routes/site_configuration_routes.py # API routes
surfsense_backend/app/routes/__init__.py # Route registration
Frontend:
surfsense_web/contexts/SiteConfigContext.tsx # React context
surfsense_web/app/layout.tsx # Context provider
surfsense_web/components/RouteGuard.tsx # Route guard component
surfsense_web/components/homepage/navbar.tsx # Conditional navbar
surfsense_web/components/homepage/hero-section.tsx # Conditional buttons
surfsense_web/components/homepage/footer.tsx # Conditional footer
surfsense_web/app/(home)/pricing/page.tsx # Route guard
surfsense_web/app/(home)/contact/page.tsx # Route guard
surfsense_web/app/(home)/terms/page.tsx # Route guard
surfsense_web/app/(home)/privacy/page.tsx # Route guard
surfsense_web/app/dashboard/site-settings/page.tsx # Admin UI
Benefits
- No Code Deployments: Site appearance changes without code changes
- Self-Service: Administrators manage UI without developer intervention
- Branding Flexibility: Custom copyright text for white-label deployments
- Privacy-Focused: Disable routes/features you don't need
- Minimal UI: Default configuration hides all non-essential elements
- Type Safety: Full TypeScript support with validated schemas
- Performance: Configuration cached in React context (no repeated API calls)
- Scalability: Singleton pattern ensures consistent state across all users
Future Enhancements
Potential additions (not yet implemented):
- Multi-tenant configurations (per-user or per-organization)
- Custom navigation links (dynamic menu items)
- Theme color customization
- Logo upload and management
- Custom homepage headline/tagline
- Feature flag management for experimental features
- Analytics opt-out configuration
- GDPR compliance toggles
Comparison to Previous Approach
Before (Hardcoded):
- UI elements always visible
- Changes required code modifications
- No runtime customization
- Developer-only control
After (Database-Driven):
- UI elements conditionally rendered
- Changes via admin panel
- Runtime customization
- Self-service for admins
Support
For questions or issues related to site configuration:
- Review API documentation:
surfsense_backend/app/routes/site_configuration_routes.py - Check schema definitions:
surfsense_backend/app/schemas/site_configuration.py - Examine frontend context:
surfsense_web/contexts/SiteConfigContext.tsx - Access admin panel:
/dashboard/site-settings
Google OAuth Removal for User Authentication
Implementation Date: 2025-11-18 Implemented By: Claude AI Assistant (Anthropic Sonnet 4.5) Feature: Email/Password-Only Authentication
Overview
Removed Google OAuth as an authentication method for user accounts, enforcing email/password authentication only. Google OAuth credentials are now exclusively used for Gmail and Google Calendar connector integrations, not for user sign-in/registration.
Changes Implemented
Backend Configuration
File: surfsense_backend/.env.example
- Changed
AUTH_TYPEfromGOOGLE or LOCALtoLOCAL(email/password only) - Updated Google OAuth credentials documentation to clarify they're only for Gmail/Calendar connectors
- Removed misleading "For Google Auth Only" comment
Before:
AUTH_TYPE=GOOGLE or LOCAL
# For Google Auth Only
GOOGLE_OAUTH_CLIENT_ID=924507538m
GOOGLE_OAUTH_CLIENT_SECRET=GOCSV
After:
AUTH_TYPE=LOCAL
# Google OAuth Credentials (OPTIONAL - Required only for Gmail and Google Calendar connectors)
GOOGLE_OAUTH_CLIENT_ID=your_google_client_id
GOOGLE_OAUTH_CLIENT_SECRET=your_google_client_secret
Frontend Configuration
File: surfsense_web/.env.example
- Updated
NEXT_PUBLIC_FASTAPI_BACKEND_AUTH_TYPEtoLOCALonly - Removed
or GOOGLEoption
Frontend Components
File: surfsense_web/app/(home)/login/LocalLoginForm.tsx
Changes:
- Removed
authTypestate variable (line 27) - Removed
useEffectthat checkedNEXT_PUBLIC_FASTAPI_BACKEND_AUTH_TYPEenvironment variable (lines 31-34) - Removed conditional check for showing registration link (line 236)
- Now always displays "Don't have an account? Sign up" link
Rationale: Since authentication is email/password only, the registration link should always be visible. The authType check was unnecessary.
Documentation Updates
File: surfsense_web/content/docs/index.mdx
Changes:
- Updated Auth Setup section to state "SurfSense uses email/password authentication for user accounts"
- Removed references to deleted Google OAuth setup images (google_oauth_people_api.png, google_oauth_screen.png, google_oauth_client.png, google_oauth_config.png)
- Clarified Google OAuth is only for Gmail/Calendar connectors
- Added redirect URI examples for connector setup
Before:
## Auth Setup
SurfSense supports both Google OAuth and local email/password authentication...

After:
## Auth Setup
SurfSense uses email/password authentication for user accounts.
### Google OAuth for Connectors (Optional)
**Note**: Google OAuth setup is **required** only if you want to use the Gmail and Google Calendar connectors...
What Was NOT Changed
The following components were intentionally preserved:
-
OAuth Error Handling (
surfsense_web/lib/auth-errors.ts):- Generic OAuth error codes (lines 65-93) remain because they're needed for connector OAuth flows
- Error handling applies to any OAuth integration, not just user authentication
-
Backend OAuth Configuration (
surfsense_backend/app/config/__init__.py):GOOGLE_OAUTH_CLIENT_IDandGOOGLE_OAUTH_CLIENT_SECRETenvironment variables still loaded- Still used by
google_gmail_add_connector_route.pyandgoogle_calendar_add_connector_route.py
-
Backend User Authentication Logic (
surfsense_backend/app/users.py,app/app.py,app/db.py):- Conditional logic checking
AUTH_TYPE == "GOOGLE"remains - Allows future re-enabling of Google OAuth if needed
- No breaking changes to existing authentication flow when
AUTH_TYPE=LOCAL
- Conditional logic checking
-
Connector Integration:
- Google Calendar connector (
app/dashboard/[search_space_id]/connectors/add/google-calendar-connector/page.tsx) - Google Gmail connector (
app/dashboard/[search_space_id]/connectors/add/google-gmail-connector/page.tsx) - Both still use Google OAuth for accessing user's Google data
- Google Calendar connector (
Deployment Steps Completed
- ✅ Updated local repository to latest nightly branch
- ✅ Identified and analyzed all OAuth references in codebase
- ✅ Removed authType state check from LocalLoginForm
- ✅ Updated
.env.examplefiles (frontend and backend) - ✅ Fixed documentation to remove deleted OAuth images
- ✅ Committed changes with descriptive messages:
- ✅ Pushed changes to
nightlybranch - ✅ Deployed to VPS at 46.62.230.195
- ✅ Rebuilt frontend on VPS (
pnpm build) - ✅ Restarted all services:
- surfsense.service (Backend)
- surfsense-frontend.service (Frontend)
- surfsense-celery.service (Worker)
- surfsense-celery-beat.service (Scheduler)
- ✅ Verified deployment at https://ai.kapteinis.lv/login and https://ai.kapteinis.lv/register
Verification Results
Login Page (https://ai.kapteinis.lv/login):
- ✅ Email and password fields present
- ✅ "Don't have an account? Sign up" link visible
- ✅ No Google OAuth or "Continue with Google" button
- ✅ Page loads correctly without errors
- ✅ Only email/password authentication available
Register Page (https://ai.kapteinis.lv/register):
- ✅ Email, password, and confirm password fields present
- ✅ No Google OAuth references
- ✅ "Already have an account? Sign In" link visible
- ✅ Page loads successfully
Files Modified
Backend:
surfsense_backend/.env.example # AUTH_TYPE=LOCAL, clarified OAuth usage
Frontend:
surfsense_web/.env.example # AUTH_TYPE=LOCAL
surfsense_web/app/(home)/login/LocalLoginForm.tsx # Removed authType check
surfsense_web/content/docs/index.mdx # Updated auth documentation
Benefits
- Simplified Authentication: Users no longer confused by multiple auth methods
- Reduced Dependencies: No dependency on Google OAuth service for user authentication
- Privacy-Focused: User accounts managed entirely within SurfSense
- Clear Documentation: Distinction between user auth and connector OAuth
- Maintained Functionality: Gmail/Calendar connectors still work with OAuth
Future Considerations
If Google OAuth needs to be re-enabled for user authentication:
- Set
AUTH_TYPE=GOOGLEin backend.env - Set
NEXT_PUBLIC_FASTAPI_BACKEND_AUTH_TYPE=GOOGLEin frontend.env - Provide valid
GOOGLE_OAUTH_CLIENT_IDandGOOGLE_OAUTH_CLIENT_SECRET - Backend conditional logic will automatically enable Google OAuth routes
The backend code architecture supports both authentication methods through configuration, making this a non-breaking change.
Testing Checklist
- Login page shows only email/password fields
- Register page shows only email/password fields
- "Don't have an account?" link always visible on login
- "Already have an account?" link visible on register
- No Google OAuth button or references in UI
- Documentation updated to reflect email-only auth
- .env.example files updated
- Frontend builds successfully
- Services restart without errors
- Login page loads at https://ai.kapteinis.lv/login
- Register page loads at https://ai.kapteinis.lv/register
- Gmail connector OAuth still functional (preserved)
- Calendar connector OAuth still functional (preserved)
Support
For questions or issues related to authentication:
- Review backend users configuration:
surfsense_backend/app/users.py - Check authentication routes:
surfsense_backend/app/app.py - Examine frontend login form:
surfsense_web/app/(home)/login/LocalLoginForm.tsx - Verify environment variables in
.envfiles
Registration Toggle System
Implementation Date: 2025-11-18 Implemented By: Claude AI Assistant (Anthropic Sonnet 4.5) Feature: Disable User Registration via Admin Panel
Overview
Implemented a comprehensive registration control system that allows administrators to disable new user registrations through the admin panel. This provides better control over user access and supports closed registration scenarios for private deployments.
Implementation Summary
The registration toggle system operates at multiple layers:
- Database Layer: Added
disable_registrationboolean field tosite_configurationtable (migration #39) - Backend API Layer: Updated
registration_allowed()dependency to check database toggle and return 403 when disabled - Frontend UI Layer: Conditionally hide "Sign Up" link on login page based on configuration
- Frontend Route Layer: RouteGuard component protects
/registerroute, showing 404 when disabled - Admin Panel Layer: Added "Registration Control" section to site-settings page for easy toggling
Backend Changes
Database Migration (#39)
File: surfsense_backend/alembic/versions/39_add_disable_registration_to_site_configuration.py
def upgrade() -> None:
op.add_column(
'site_configuration',
sa.Column('disable_registration', sa.Boolean(), nullable=False, server_default='false')
)
def downgrade() -> None:
op.drop_column('site_configuration', 'disable_registration')
Revision ID: '39' (shortened to fit varchar(32) constraint)
Down Revision: '38_add_site_configuration_table'
Default Value: false (registration enabled by default)
Database Model
File: surfsense_backend/app/db.py
class SiteConfiguration(SQLModel, table=True):
# ... existing fields ...
# Registration control
disable_registration = Column(Boolean, nullable=False, default=False)
API Schemas
File: surfsense_backend/app/schemas/site_configuration.py
class SiteConfigurationBase(BaseModel):
# ... existing fields ...
# Registration control
disable_registration: bool = False
class SiteConfigurationUpdate(SiteConfigurationBase):
# ... existing fields ...
disable_registration: bool | None = None
Registration Endpoint Protection
File: surfsense_backend/app/app.py
async def registration_allowed(session: AsyncSession = Depends(get_async_session)):
# Check environment variable first
if not config.REGISTRATION_ENABLED:
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="Registration is disabled by system configuration"
)
# Check site configuration database toggle
result = await session.execute(select(SiteConfiguration).where(SiteConfiguration.id == 1))
site_config = result.scalar_one_or_none()
if site_config and site_config.disable_registration:
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="Registration is currently disabled. Please contact the administrator if you need access."
)
return True
# Applied to registration routes
app.include_router(
fastapi_users.get_register_router(UserRead, UserCreate),
prefix="/auth",
tags=["auth"],
dependencies=[Depends(registration_allowed)], # Enforces registration check
)
Error Response (when disabled):
{
"detail": "Registration is currently disabled. Please contact the administrator if you need access."
}
Frontend Changes
Context/State Management
File: surfsense_web/contexts/SiteConfigContext.tsx
export interface SiteConfig {
// ... existing fields ...
// Registration control
disable_registration: boolean;
}
const defaultConfig: SiteConfig = {
// ... existing fields ...
disable_registration: false,
// ...
};
Login Form
File: surfsense_web/app/(home)/login/LocalLoginForm.tsx
Changes:
- Added
useSiteConfig()hook to access site configuration - Conditionally render "Sign up" link only when
!config.disable_registration
import { useSiteConfig } from "@/contexts/SiteConfigContext";
export function LocalLoginForm() {
const { config } = useSiteConfig();
return (
{/* ... login form ... */}
{!config.disable_registration && (
<div className="mt-4 text-center text-sm">
<p className="text-gray-600 dark:text-gray-400">
{t("dont_have_account")}{" "}
<Link href="/register">
{t("sign_up")}
</Link>
</p>
</div>
)}
);
}
Route Guard
File: surfsense_web/components/RouteGuard.tsx
Changes:
- Extended
routeKeytype to include"registration" - Added special case handling for registration toggle
interface RouteGuardProps {
children: React.ReactNode;
routeKey: "pricing" | "docs" | "contact" | "terms" | "privacy" | "registration";
}
export function RouteGuard({ children, routeKey }: RouteGuardProps) {
const { config, isLoading } = useSiteConfig();
const router = useRouter();
// Special case: registration uses disable_registration instead of disable_registration_route
const disableKey = routeKey === "registration"
? "disable_registration"
: (`disable_${routeKey}_route` as keyof typeof config);
const isDisabled = config[disableKey as keyof typeof config];
if (isDisabled) {
router.replace("/404");
return null;
}
return <>{children}</>;
}
Register Page
File: surfsense_web/app/(home)/register/page.tsx
Changes:
- Imported
RouteGuardcomponent - Wrapped entire page content with
<RouteGuard routeKey="registration">
import { RouteGuard } from "@/components/RouteGuard";
export default function RegisterPage() {
return (
<RouteGuard routeKey="registration">
{/* ... registration form content ... */}
</RouteGuard>
);
}
Behavior: When disable_registration is true, accessing /register redirects to /404
Admin Panel
File: surfsense_web/app/dashboard/site-settings/page.tsx
Changes:
- Added
disable_registration: booleantoSiteConfigForminterface - Added default value
disable_registration: falseto form state - Added field to
useEffectthat loads config from API - Added new "Registration Control" section in UI
interface SiteConfigForm {
// ... existing fields ...
disable_registration: boolean;
}
{/* Registration Control Section */}
<section>
<h2 className="text-xl font-semibold text-gray-900 dark:text-white mb-4">
Registration Control
</h2>
<p className="text-sm text-gray-600 dark:text-gray-400 mb-4">
Control user registration availability. When disabled, the Sign Up link will be hidden
and the registration page will show a 404 error. The backend will also block registration
requests with a 403 error.
</p>
<div className="space-y-3">
<ToggleSwitch
label="Disable Registration"
description="Prevent new users from creating accounts"
checked={formData.disable_registration}
onChange={() => handleToggle("disable_registration")}
/>
</div>
</section>
Behavior Summary
When Registration is ENABLED (default: disable_registration = false):
-
Login Page (
/login):- Shows "Don't have an account? Sign up" link
- Link navigates to
/register
-
Register Page (
/register):- Page loads normally
- Registration form accepts submissions
- Backend POST
/auth/registersucceeds (200)
-
Admin Panel (
/dashboard/site-settings):- "Disable Registration" toggle is OFF
- Description explains what happens when enabled
When Registration is DISABLED (disable_registration = true):
-
Login Page (
/login):- "Don't have an account? Sign up" link is HIDDEN
- No visual indication of registration functionality
-
Register Page (
/register):- RouteGuard redirects to
/404(route disabled) - Page shows standard 404 error
- RouteGuard redirects to
-
Backend API (
POST /auth/register):- Returns
403 Forbidden - Error message: "Registration is currently disabled. Please contact the administrator if you need access."
- Returns
-
Admin Panel (
/dashboard/site-settings):- "Disable Registration" toggle is ON (orange)
- Admins can toggle back to enable registration
Security Considerations
-
Layered Protection:
- Frontend hides UI elements (Sign Up link)
- Frontend route guard blocks page access
- Backend API validates and blocks requests
- Defense in depth approach prevents bypass attempts
-
Database-Driven:
- Configuration stored in PostgreSQL (singleton row with id=1)
- Atomic updates via SQLAlchemy transactions
- Consistent state across all application instances
-
Admin-Only Access:
- Only superusers can access
/dashboard/site-settings - JWT authentication required for PUT
/api/v1/site-config - Public GET
/api/v1/site-config/publicis read-only
- Only superusers can access
-
Graceful Error Messages:
- User-friendly 403 message explains registration is disabled
- Directs users to contact administrator
- No technical details exposed
Deployment Steps
- ✅ Pull latest code:
git pull origin nightly - ✅ Apply migration:
alembic upgrade head(migration #39) - ✅ Rebuild frontend:
pnpm build - ✅ Restart services:
systemctl restart surfsense.service surfsense-frontend.service surfsense-celery.service surfsense-celery-beat.service - ✅ Verify deployment: All services active
Deployment Date: 2025-11-18 Deployment Location: https://ai.kapteinis.lv VPS: 46.62.230.195
Migration Notes
Issue Encountered: Revision ID Too Long
Problem: Alembic alembic_version table has varchar(32) constraint on version_num column. Original revision ID '39_add_disable_registration_to_site_configuration' (50 characters) exceeded limit.
Error:
sqlalchemy.exc.DBAPIError: <class 'asyncpg.exceptions.StringDataRightTruncationError'>:
value too long for type character varying(32)
[SQL: UPDATE alembic_version SET version_num='39_add_disable_registration_to_site_configuration'
WHERE alembic_version.version_num = '38_add_site_configuration_table']
Solution: Shortened revision ID using sed on VPS:
sed -i "s/revision: str = '39_add_disable_registration_to_site_configuration'/revision: str = '39'/g" \
alembic/versions/39_add_disable_registration_to_site_configuration.py
Final Revision ID: '39' (2 characters, fits varchar(32))
Note: Migration #38 uses long ID '38_add_site_configuration_table' but succeeded before (possibly database was modified to allow longer IDs, or varchar constraint was later added).
Testing Checklist
Default State (Registration Enabled):
- Login page shows "Sign up" link
/registerpage loads successfully- Registration form accepts submissions
- Backend POST
/auth/registerreturns 200/201 - Admin panel toggle is OFF (not orange)
Toggled State (Registration Disabled):
- Admin can toggle "Disable Registration" ON in
/dashboard/site-settings - Changes saved successfully (toast notification)
- Login page "Sign up" link disappears after refetch
/registerpage shows 404 error- Backend POST
/auth/registerreturns 403 with message - Admin panel toggle is ON (orange highlight)
Toggle Back (Re-enable Registration):
- Admin can toggle "Disable Registration" OFF
- Login page "Sign up" link reappears
/registerpage loads normally- Backend POST
/auth/registeraccepts submissions again
Files Modified
Backend (4 files + 1 migration):
surfsense_backend/alembic/versions/39_add_disable_registration_to_site_configuration.py # NEW
surfsense_backend/app/db.py # +3 lines
surfsense_backend/app/app.py # +20 lines
surfsense_backend/app/schemas/site_configuration.py # +4 lines
Frontend (5 files):
surfsense_web/contexts/SiteConfigContext.tsx # +4 lines
surfsense_web/app/(home)/login/LocalLoginForm.tsx # +11 lines, -15 lines (conditional)
surfsense_web/app/(home)/register/page.tsx # +2 lines (import, wrapper)
surfsense_web/components/RouteGuard.tsx # +10 lines (registration support)
surfsense_web/app/dashboard/site-settings/page.tsx # +25 lines (new section)
Total Changes: 9 files modified, 1 file created, ~80 lines added
Commit Information
Commit Hash: b8bb74e
Branch: nightly
Message:
Add disable_registration toggle to site configuration
Implemented comprehensive registration control system that allows administrators
to disable new user registrations through the admin panel. This provides better
control over user access and supports closed registration scenarios.
Backend changes:
- Added disable_registration field to SiteConfiguration model (db.py)
- Created migration #39 to add disable_registration column with default false
- Updated SiteConfigurationBase, Update, and Read schemas
- Enhanced registration_allowed() dependency to check database toggle
- Returns 403 with clear message when registration is disabled
Frontend changes:
- Added disable_registration to SiteConfig interface and default config
- Updated LocalLoginForm to conditionally hide "Sign up" link when disabled
- Added RouteGuard support for "registration" route key
- Protected /register page with RouteGuard (shows 404 when disabled)
- Added "Registration Control" section to admin site-settings page
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Use Cases
-
Private Deployments:
- Organization wants to control who can create accounts
- Only invite approved users, disable public registration
- Admin manually creates accounts for new employees
-
Capacity Management:
- Server approaching resource limits
- Temporarily disable registration until scaling completed
- Re-enable when infrastructure ready
-
Closed Beta:
- Limited initial user base for testing
- Disable registration after target number reached
- Re-enable for public launch
-
Security Incident Response:
- Spam/abuse accounts being created
- Quickly disable registration to stop attack
- Investigate and re-enable when resolved
Troubleshooting
Issue: Toggle doesn't save in admin panel
Symptoms: Clicking toggle works, but changes don't persist after refresh
Diagnosis:
- Check browser console for API errors
- Verify JWT token is valid (
localStorage.getItem('access_token')) - Check backend logs for 401/403 errors
- Confirm user is superuser (
is_superuser = true)
Solution: Ensure logged-in user has superuser privileges
Issue: Sign Up link still visible after disabling registration
Symptoms: Login page shows Sign Up link despite toggle being ON
Diagnosis:
- Check if frontend context refetched after save
- Inspect SiteConfigContext state in React DevTools
- Verify GET
/api/v1/site-config/publicreturnsdisable_registration: true
Solution: Hard refresh browser (Ctrl+Shift+R) or wait for automatic refetch
Issue: /register page still loads instead of 404
Symptoms: Accessing /register shows form instead of 404 error
Diagnosis:
- Verify RouteGuard is wrapping RegisterPage component
- Check SiteConfigContext has correct
disable_registrationvalue - Confirm RouteGuard logic handles "registration" route key
Solution: Verify frontend build includes latest changes, restart frontend service
Issue: Backend still accepts registrations despite toggle
Symptoms: POST /auth/register returns 200 instead of 403
Diagnosis:
- Check database:
SELECT disable_registration FROM site_configuration WHERE id = 1; - Verify
registration_allowed()function checks database - Confirm dependency is applied to register router
Solution: Restart backend service to reload code changes
Future Enhancements
Potential additions (not yet implemented):
- Registration whitelist (allow specific email domains)
- Invitation-based registration (one-time tokens)
- Registration queue/approval workflow
- Auto-disable after N registrations
- Custom messaging when registration disabled
- Email notification to admins when disabled
- Audit log of registration toggle changes
- Rate limiting for registration attempts
Support
For questions or issues related to registration control:
- Review admin panel documentation:
/dashboard/site-settings - Check backend registration logic:
surfsense_backend/app/app.py:registration_allowed() - Examine frontend RouteGuard:
surfsense_web/components/RouteGuard.tsx - Verify SiteConfig context:
surfsense_web/contexts/SiteConfigContext.tsx - Migration file:
surfsense_backend/alembic/versions/39_add_disable_registration_to_site_configuration.py
Conclusion
Overall Security Posture: ✅ STRONG
SurfSense demonstrates excellent security practices with automated tooling (detect-secrets, pre-commit hooks, bandit), no hardcoded secrets, and comprehensive architecture. The codebase is well-structured, uses modern technologies (Python 3.12, React 19, Next.js 15), and implements advanced RAG techniques with proper security controls (user isolation, search space filtering).
Key Strengths:
- ✅ Automated secret scanning with detect-secrets
- ✅ Pre-commit hooks for security and code quality
- ✅ No real secrets in codebase (all placeholders verified)
- ✅ Modern, actively maintained tech stack
- ✅ Advanced RAG architecture (2-tier hierarchical + hybrid search)
- ✅ Comprehensive LLM support (100+ providers via LiteLLM)
- ✅ Excellent documentation (multi-language support)
- ✅ Apache 2.0 license (permissive, commercial-friendly)
Critical Actions Required:
- None (no critical vulnerabilities found)
High-Priority Improvements:
- Enhance .gitignore (10 min)
- Add Docker non-root user (5 min)
Medium-Priority Enhancements: 3. Add SPDX license identifiers (2 hours, automatable) 4. Document upstream sync automation (1 hour) 5. Add resource limits to docker-compose.yml (30 min)
Audit Certification: This repository is APPROVED for continued development and production deployment with implementation of high-priority recommendations.
Audit Completed: 2025-11-17 Next Audit Recommended: 2025-12-17 (or after major upstream merge)
Co-Authors:
- Ojārs Kapteiņš ojars@kapteinis.lv - Audit Requester & Repository Maintainer
- Claude AI Assistant (Anthropic Sonnet 4.5) - Security & Architecture Audit
This audit report is licensed under CC BY 4.0. The audited code remains under Apache License 2.0.