normogen/backend
goose 7ba78a31fb fix(backend): P0 security hardening pass
Address the four P0 security items from the project review:

* token_version validation (#1): the JWT middleware now rejects access tokens
  whose token_version claim is stale (e.g. issued before a password change).
  A short-TTL (30s) in-memory cache (TokenVersionCache) avoids a Mongo lookup
  per request; credential changes invalidate the cache immediately on the
  handling instance.

* Fail-fast config (#2): add APP_ENVIRONMENT (development|production). In
  production the server refuses to boot unless JWT_SECRET and ENCRYPTION_KEY
  are set to non-default values; development keeps the insecure defaults with
  a warning.

* Real client IP in audit logs (#4): new client_ip middleware resolves the
  originating IP (X-Forwarded-For > X-Real-IP > ConnectInfo socket) and
  exposes it via a ClientIp extractor. All five hardcoded "0.0.0.0" audit
  calls are replaced, and the missing PasswordChanged audit event is added to
  change_password. axum::serve now uses into_make_service_with_connect_info.

* Refresh token persistence (#5): refresh tokens are now stored hashed in
  MongoDB (RefreshTokenRepository) instead of an in-memory map lost on restart.
  Added /api/auth/refresh (with rotation + token_version check) and
  /api/auth/logout routes; register/login return a refresh_token; password
  change/recovery revoke all of a user's refresh tokens. JwtService now honors
  JwtConfig expiries instead of hardcoding 15min/30d, and the dead in-memory
  refresh store is removed.

Also: wire up DatabaseInitializer (was never called), fix the refresh_tokens
index to tokenHash + add an expiresAt TTL index, add sha2 dep.

Rate limiting (#3) is deferred per scope; the stub remains.

Verified: cargo fmt --check clean, cargo build/clippy --all-targets clean,
18 unit tests pass (9 new). Integration tests (tests/*) still need a live
server — fixing them is tracked as P1.

BREAKING CHANGE: AuthResponse now includes a refresh_token field.
2026-06-27 13:12:19 -03:00
..
config Phase 2.1: Backend project initialized with Docker configuration 2026-02-14 15:30:06 -03:00
docker feat(backend): Implement Phase 2.7 Task 1 - Medication Management System 2026-03-07 14:07:52 -03:00
docs docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
scripts chore: Clean up temporary docs and start Phase 2.4 2026-02-15 16:33:36 -03:00
src fix(backend): P0 security hardening pass 2026-06-27 13:12:19 -03:00
tests fix(clippy): resolve all clippy warnings 2026-03-12 09:03:38 -03:00
.dockerignore Config: Change server port to 6800 and remove Cargo.lock dependency 2026-02-15 09:48:11 -03:00
.env.example fix(backend): P0 security hardening pass 2026-06-27 13:12:19 -03:00
ADHERENCE_STATS_FIX.txt docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
API-TEST-GUIDE.md feat(api): Add API testing script and quick test guide 2026-02-15 15:28:04 -03:00
API-TEST-RESULTS.md docs(phase-2.5): Complete access control implementation 2026-02-15 21:15:17 -03:00
API_TESTING_REPORT.md Add database initialization module and compilation fixes 2026-02-25 11:42:39 -03:00
BUILD-STATUS.md feat(backend): Complete Phase 2.5 - Access Control Implementation 2026-02-18 10:05:34 -03:00
Cargo.lock fix(backend): P0 security hardening pass 2026-06-27 13:12:19 -03:00
Cargo.toml fix(backend): P0 security hardening pass 2026-06-27 13:12:19 -03:00
clippy.toml fix(clippy): resolve all clippy warnings 2026-03-12 09:03:38 -03:00
COMPILATION-FIXES.md docs: Add compilation fixes documentation 2026-02-15 19:02:44 -03:00
comprehensive-test-8001.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
comprehensive-test.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
core-test.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
defaults.env Phase 2.1: Backend project initialized with Docker configuration 2026-02-14 15:30:06 -03:00
deploy-and-test.sh feat: implement health statistics tracking (Phase 2.7 Task 2) 2026-03-07 16:24:18 -03:00
deploy-to-solaria-improved.sh feat(backend): Implement Phase 2.7 Task 1 - Medication Management System 2026-03-07 14:07:52 -03:00
diagnose-server.sh Add DNS error logging and server diagnostic script 2026-02-24 10:57:01 -03:00
docker-compose.dev.yml fix: correct docker environment variable name and remove unnecessary runtime deps 2026-02-28 16:55:36 -03:00
docker-compose.yml docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
Dockerfile docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
Dockerfile.improved feat(backend): Implement Phase 2.7 Task 1 - Medication Management System 2026-03-07 14:07:52 -03:00
ERROR-ANALYSIS.md docs(phase-2.5): Complete access control implementation 2026-02-15 21:15:17 -03:00
final-test.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
fixed-test.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
health-stats-test.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
MEDICATION_UPDATE_FIX.txt docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
PASSWORD-RECOVERY-COMPLETE.md docs: Add password recovery completion summary 2026-02-15 18:12:31 -03:00
PASSWORD-RECOVERY-IMPLEMENTED.md feat(backend): Implement password recovery with zero-knowledge phrases 2026-02-15 18:12:10 -03:00
PASSWORD-RECOVERY-TEST-RESULTS.md docs(phase-2.5): Complete access control implementation 2026-02-15 21:15:17 -03:00
PHASE-2-4-COMPLETE.md feat(backend): Complete Phase 2.4 - User Management Enhancement 2026-02-15 20:48:39 -03:00
PHASE-2-5-CREATED.txt docs(phase-2.5): Complete access control implementation 2026-02-15 21:15:17 -03:00
PHASE-2.4-SPEC.md docs(phase-2.5): Complete access control implementation 2026-02-15 21:15:17 -03:00
PHASE-2.4-TODO.md docs: Add Phase 2.4 TODO list with implementation plan 2026-02-15 16:33:36 -03:00
PHASE-2.5-SUMMARY.md feat(backend): Complete Phase 2.5 - Access Control Implementation 2026-02-18 10:05:34 -03:00
phase27-final-test.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
phase27-fixed-test.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
phase27-test.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
PHASE28_MAIN_CHANGES.md docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
PROFILE-MANAGEMENT-IMPLEMENTED.md feat(backend): Implement enhanced profile management 2026-02-15 19:33:43 -03:00
quick-test.sh docs(phase-2.5): Complete access control implementation 2026-02-15 21:15:17 -03:00
rustfmt.toml feat(ci): Add Forgejo CI/CD pipeline for linting and building 2026-02-15 19:57:03 -03:00
start-dev.sh Fix Docker networking and add graceful MongoDB error handling 2026-02-23 07:58:57 -03:00
stop-dev.sh Fix Docker networking and add graceful MongoDB error handling 2026-02-23 07:58:57 -03:00
test-med-v2.sh feat: implement health statistics tracking (Phase 2.7 Task 2) 2026-03-07 16:24:18 -03:00
test-medication-endpoints.sh feat: implement health statistics tracking (Phase 2.7 Task 2) 2026-03-07 16:24:18 -03:00
test-password-recovery.sh docs(phase-2.5): Complete access control implementation 2026-02-15 21:15:17 -03:00
test-phase-2-4-complete.sh feat(backend): Complete Phase 2.4 - User Management Enhancement 2026-02-15 20:48:39 -03:00
test-phase28.sh docs(ai): reorganize documentation and update product docs 2026-03-09 11:04:44 -03:00
test-profile-management.sh feat(backend): Implement enhanced profile management 2026-02-15 19:33:43 -03:00
test-solaria-v2.sh feat: implement health statistics tracking (Phase 2.7 Task 2) 2026-03-07 16:24:18 -03:00