Restructure repository and implement secure search feature

Phase 1: Consolidate shared infrastructure
- Create shared/ directory for common code
- Consolidate Database.php from front-backend and formulaire into unified shared/Database.php
  - Smart path detection for test.db vs posterg.db
  - Secure search with wildcard escaping and input validation
  - Support both singleton and direct instantiation patterns
  - Full CRUD methods for admin functionality
- Move RateLimit.php to shared/ (30 requests/min)
- Update all require paths across apps to use shared/

Phase 2: Reorganize directory structure
- Rename front-backend/ → apps/public/
- Rename formulaire/ → apps/admin/
- Rename db/ → database/
- Update all file paths for new structure
- Create root .gitignore excluding databases, cache, logs

Implement secure search feature
- Add apps/public/search.php with full-text search across theses
- Search filters: query, year, orientation, AP program, keywords
- Security features:
  - SQL injection prevention (prepared statements)
  - Wildcard injection prevention (escape % and _)
  - Input validation (max 200 chars, year range 1900-2100)
  - Rate limiting (30 req/min per IP)
  - Pagination limited to 100 results/page
  - XSS protection (htmlspecialchars on output)

Add comprehensive test suite
- Create apps/public/tests/ with proper structure
  - tests/Integration/SearchTest.php - 12 search scenarios
  - tests/Security/SecurityTest.php - vulnerability testing
  - tests/Unit/RateLimitTest.php - rate limit behavior
- Create database/fixtures/CreateTestDatabase.php
- Add apps/public/run-tests.php test runner
- All tests passing (4/4 suites)

Update deployment configuration
- Rename justfile 'sync' recipe to 'deploy'
- Create deploy group with separate deploy-public and deploy-admin
- Add test-deploy recipe for test database
- Exclude *.db, tests/, cache/, *.md from production deploy
- Deploy shared/ to both public and admin locations

Stats: +4482 insertions, -654 deletions across 72 files
This commit is contained in:
Théophile Gervreau-Mercier
2026-01-28 10:24:36 +01:00
parent 95f52d549e
commit 467aced734
81 changed files with 6304 additions and 785 deletions

113
apps/public/error.log Normal file
View File

@@ -0,0 +1,113 @@
[02-May-2023 18:18:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function yaml_parse_file() in /home/lockpick/Projects/posterg-website/index.php:17
Stack trace:
#0 {main}
thrown in /home/lockpick/Projects/posterg-website/index.php on line 17
[02-May-2023 18:19:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function yaml_parse_file() in /home/lockpick/Projects/posterg-website/index.php:17
Stack trace:
#0 {main}
thrown in /home/lockpick/Projects/posterg-website/index.php on line 17
[02-May-2023 18:19:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function yaml_parse_file() in /home/lockpick/Projects/posterg-website/index.php:17
Stack trace:
#0 {main}
thrown in /home/lockpick/Projects/posterg-website/index.php on line 17
[02-May-2023 18:52:59 UTC] PHP Warning: include(header.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:52:59 UTC] PHP Warning: include(): Failed opening 'header.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:52:59 UTC] PHP Warning: include(footer.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:52:59 UTC] PHP Warning: include(): Failed opening 'footer.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:53:19 UTC] PHP Warning: include(header.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:53:19 UTC] PHP Warning: include(): Failed opening 'header.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:53:19 UTC] PHP Warning: include(footer.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:53:19 UTC] PHP Warning: include(): Failed opening 'footer.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:53:20 UTC] PHP Warning: include(header.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:53:20 UTC] PHP Warning: include(): Failed opening 'header.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:53:20 UTC] PHP Warning: include(footer.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:53:20 UTC] PHP Warning: include(): Failed opening 'footer.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:53:38 UTC] PHP Warning: include(header.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:53:38 UTC] PHP Warning: include(): Failed opening 'header.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:53:38 UTC] PHP Warning: include(footer.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:53:38 UTC] PHP Warning: include(): Failed opening 'footer.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:53:39 UTC] PHP Warning: include(header.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:53:39 UTC] PHP Warning: include(): Failed opening 'header.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 20
[02-May-2023 18:53:39 UTC] PHP Warning: include(footer.php): Failed to open stream: No such file or directory in /home/lockpick/Projects/posterg-website/index.php on line 38
[02-May-2023 18:53:39 UTC] PHP Warning: include(): Failed opening 'footer.php' for inclusion (include_path='.:') in /home/lockpick/Projects/posterg-website/index.php on line 38
[04-May-2023 19:41:18 UTC] PHP Warning: Undefined array key "title" in /home/lockpick/Projects/posterg-website/memoire.php on line 21
[04-May-2023 19:41:18 UTC] PHP Warning: Undefined array key "author" in /home/lockpick/Projects/posterg-website/memoire.php on line 24
[04-May-2023 19:41:32 UTC] PHP Warning: Undefined array key "title" in /home/lockpick/Projects/posterg-website/memoire.php on line 21
[04-May-2023 19:41:32 UTC] PHP Warning: Undefined array key "author" in /home/lockpick/Projects/posterg-website/memoire.php on line 24
[04-May-2023 20:09:45 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 42
[04-May-2023 20:12:06 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 46
[04-May-2023 20:12:49 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 46
[04-May-2023 20:13:06 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 46
[04-May-2023 20:13:20 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 46
[04-May-2023 20:15:28 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 50
[04-May-2023 20:16:10 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[04-May-2023 20:16:30 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[04-May-2023 20:16:47 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[04-May-2023 20:17:04 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[04-May-2023 20:17:41 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[04-May-2023 20:18:58 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 71
[04-May-2023 20:48:21 UTC] PHP Warning: foreach() argument must be of type array|object, string given in /home/lockpick/Projects/posterg-website/memoire.php on line 74
[04-May-2023 20:54:30 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[04-May-2023 20:55:03 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[04-May-2023 20:55:11 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[04-May-2023 20:55:14 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[04-May-2023 20:56:41 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[04-May-2023 21:02:29 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[04-May-2023 21:02:54 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[04-May-2023 21:25:39 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:44:42 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:46:07 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:47:02 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:47:15 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:47:19 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:47:22 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:47:25 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:47:31 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:47:34 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:48:11 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:57:31 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:57:40 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:57:43 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:57:48 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:57:51 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 08:58:15 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 09:00:33 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 09:02:53 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 09:17:40 UTC] PHP Warning: Undefined variable $key in /home/lockpick/Projects/posterg-website/memoire.php on line 68
[05-May-2023 09:43:22 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[05-May-2023 09:45:04 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[05-May-2023 09:49:04 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 09:49:04 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 09:49:04 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 09:49:04 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 09:49:04 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:01 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[05-May-2023 10:06:23 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[05-May-2023 10:06:36 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:36 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:36 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:36 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:36 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:42 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[05-May-2023 10:06:44 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:44 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:44 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:44 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:44 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:45 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[05-May-2023 10:06:47 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:47 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:47 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:47 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:06:47 UTC] PHP Warning: Undefined array key "resume" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:07:02 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/memoire.php on line 70
[05-May-2023 10:07:16 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:07:16 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:07:16 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:07:16 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:07:16 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:08:03 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:08:03 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:08:03 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:08:03 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58
[05-May-2023 10:08:03 UTC] PHP Warning: Undefined array key "description" in /home/lockpick/Projects/posterg-website/index.php on line 58