Skip to content

Commit 62ffcb0

Browse files
committed
refactor(api): ✨ Centralize services, middleware, and schemas
- Restructure API services into domain-specific folders (auth, agencies, documents, requests, security, operations, templates). - Centralize shared utilities (lib, utils, validators) and barrel export them using `@/` aliases. - Migrate legacy `api/src/routes/` structure to use OpenAPI pattern exclusively, removing legacy route files. - Introduce `middleware/shared.middleware.ts` for centralized cache control and error handling utilities. - Update all imports across the API to use the new `@/` alias structure. - Add `middleware.ts` to Astro app for setting standard security headers (CSP, X-Frame-Options, etc.). - Add mock for `bun:sqlite` to enable Vitest (Node.js) testing environment.
1 parent 5ed0dc6 commit 62ffcb0

106 files changed

Lines changed: 5488 additions & 7253 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
<!--
2+
Copyright (c) 2025 Foia Stream
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to deal
6+
in the Software without restriction, including without limitation the rights
7+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in all
12+
copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20+
SOFTWARE.
21+
-->
22+
123
<!--
224
Generated by AI-Powered README Generator
325
Repository: https://github.com/WomB0ComB0/foia-stream

apps/api/data/foia-stream.db-shm

0 Bytes
Binary file not shown.

apps/api/drizzle/0003_fearless_violations.sql

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
-- Copyright (c) 2025 Foia Stream
2+
--
3+
-- Permission is hereby granted, free of charge, to any person obtaining a copy
4+
-- of this software and associated documentation files (the "Software"), to deal
5+
-- in the Software without restriction, including without limitation the rights
6+
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
-- copies of the Software, and to permit persons to whom the Software is
8+
-- furnished to do so, subject to the following conditions:
9+
--
10+
-- The above copyright notice and this permission notice shall be included in all
11+
-- copies or substantial portions of the Software.
12+
--
13+
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
-- SOFTWARE.
20+
121
CREATE TABLE `custom_redaction_templates` (
222
`id` text PRIMARY KEY NOT NULL,
323
`user_id` text NOT NULL,

0 commit comments

Comments
 (0)