fix secrets no longer needed
Build and Deploy Spring Boot Server / build (push) Successful in 1m13s

This commit is contained in:
2026-05-14 23:46:40 +02:00
parent f7f2bf5768
commit 7ad72119a8
5 changed files with 45 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
{
"permissions": {
"allow": [
"Bash(git add *)",
"Bash(git commit *)"
]
}
}
-3
View File
@@ -4,9 +4,6 @@ services:
pull_policy: always pull_policy: always
restart: always restart: always
environment: environment:
GOOGLE_CLIENT_ID: ${GOOGLE_CLIENT_ID}
GOOGLE_CLIENT_SECRET: ${GOOGLE_CLIENT_SECRET}
DB_PORT: 5432 DB_PORT: 5432
DB_P_NAME: ${POSTGRES_DB} DB_P_NAME: ${POSTGRES_DB}
DB_USERNAME: ${POSTGRES_USER} DB_USERNAME: ${POSTGRES_USER}
+37 -9
View File
@@ -1,6 +1,6 @@
# Xpensely Server — API Reference # Xpensely Server — API Reference
> Last updated: 2026-05-09 · Branch: `feature/security-hardening` > Last updated: 2026-05-14 · Branch: `dev`
## Table of Contents ## Table of Contents
1. [Overview](#1-overview) 1. [Overview](#1-overview)
@@ -28,6 +28,7 @@ Xpensely Server is a Spring Boot REST API that manages shared expense lists for
| Method | Path | Description | | Method | Path | Description |
|--------|------|-------------| |--------|------|-------------|
| GET | `/` | Health check — returns `"Welcome"` | | GET | `/` | Health check — returns `"Welcome"` |
| GET | `/api/version` | Returns build version and timestamp |
| POST | `/api/users/createUser` | Register a new user | | POST | `/api/users/createUser` | Register a new user |
| GET | `/api/users/byName` | Look up a user by username | | GET | `/api/users/byName` | Look up a user by username |
@@ -98,6 +99,25 @@ Welcome
--- ---
#### `GET /api/version`
Returns the application version and build timestamp. No authentication required.
**Response:** `200 OK`
```json
{
"version": "0.0.1-SNAPSHOT",
"builtAt": "2026-05-09T10:00:00Z"
}
```
| Field | Type | Notes |
|-------|------|-------|
| `version` | String | Maven project version |
| `builtAt` | String (ISO-8601) | UTC timestamp of the build |
---
### 4.2 Users ### 4.2 Users
Base path: `/api/users` Base path: `/api/users`
@@ -121,7 +141,7 @@ Base path: `/api/users`
| `username` | String | Required. 330 chars. Pattern: `^[a-zA-Z0-9_.\-]+$` | | `username` | String | Required. 330 chars. Pattern: `^[a-zA-Z0-9_.\-]+$` |
| `googleId` | String | Required. Non-blank. Must match the JWT `sub` from Google. | | `googleId` | String | Required. Non-blank. Must match the JWT `sub` from Google. |
**Success response:** `200 OK` — returns the created [AppUser](#appuser) object. **Success response:** `201 Created` — returns the created [AppUser](#appuser) object.
**Error responses:** **Error responses:**
| Status | Condition | | Status | Condition |
@@ -145,6 +165,7 @@ Base path: `/api/users`
**Error responses:** **Error responses:**
| Status | Condition | | Status | Condition |
|--------|-----------| |--------|-----------|
| 403 | Authenticated user's ID does not match the requested `id` |
| 404 | No user found for `id` | | 404 | No user found for `id` |
--- ---
@@ -181,6 +202,7 @@ Base path: `/api/users`
**Error responses:** **Error responses:**
| Status | Condition | | Status | Condition |
|--------|-----------| |--------|-----------|
| 403 | Requested Google ID does not match the authenticated user's Google ID |
| 404 | No user found for that Google ID | | 404 | No user found for that Google ID |
--- ---
@@ -194,11 +216,12 @@ Base path: `/api/users`
|-------|------|----------|-------------| |-------|------|----------|-------------|
| `id` | Long | Yes | Database ID of the user to delete | | `id` | Long | Yes | Database ID of the user to delete |
**Success response:** `200 OK` — returns the deleted [AppUser](#appuser). **Success response:** `200 OK` — returns a plain string: `"User deleted: <username>"`.
**Error responses:** **Error responses:**
| Status | Condition | | Status | Condition |
|--------|-----------| |--------|-----------|
| 403 | Authenticated user's ID does not match the requested `id` |
| 404 | No user found for `id` | | 404 | No user found for `id` |
--- ---
@@ -219,7 +242,11 @@ Returns all expense lists where the caller is the owner **or** has been shared t
**Request body:** None **Request body:** None
**Success response:** `200 OK` — array of [ExpenseList](#expenselist). **Success responses:**
| Status | Condition |
|--------|-----------|
| 200 OK | Returns array of [ExpenseList](#expenselist) |
| 204 No Content | Caller has no expense lists |
```json ```json
[ [
@@ -337,7 +364,7 @@ Only the **owner** may delete a list. Deleting a list cascades to all its expens
| `date` | String (ISO-8601) | Required. Format: `YYYY-MM-DD`. | | `date` | String (ISO-8601) | Required. Format: `YYYY-MM-DD`. |
| `category` | String | Required. Non-blank category name. | | `category` | String | Required. Non-blank category name. |
**Success response:** `200 OK` — returns the created [Expense](#expense). **Success response:** `201 Created` — returns the created [Expense](#expense).
**Error responses:** **Error responses:**
| Status | Condition | | Status | Condition |
@@ -411,7 +438,7 @@ Caller must be a member of the list. Expense must belong to the specified list.
Caller must be a member of the list. Caller must be a member of the list.
**Success response:** `200 OK` — returns the deleted [Expense](#expense). **Success response:** `204 No Content`
**Error responses:** **Error responses:**
| Status | Condition | | Status | Condition |
@@ -465,13 +492,14 @@ Joins the caller to a shared expense list using an invite code.
|-------|------|-------------| |-------|------|-------------|
| `inviteCode` | String | Required. Exactly 6 characters. | | `inviteCode` | String | Required. Exactly 6 characters. |
**Success response:** `200 OK` — returns the [ExpenseList](#expenselist) the caller joined. **Success response:** `200 OK` — returns a plain string: `"User added to the list"`.
**Error responses:** **Error responses:**
| Status | Condition | | Status | Condition |
|--------|-----------| |--------|-----------|
| 400 | Validation failure or invite code not found / expired | | 400 | Validation failure or caller is already the owner of the list |
| 403 | Caller is already the owner of this list | | 404 | Invite code not found or expired |
| 226 IM Used | List already has a second member (`sharedWith` is not null) |
--- ---
@@ -32,7 +32,6 @@ public class SecurityConfig {
.anyRequest().authenticated()) .anyRequest().authenticated())
.oauth2ResourceServer(oauth2 -> oauth2 .oauth2ResourceServer(oauth2 -> oauth2
.jwt(Customizer.withDefaults())) .jwt(Customizer.withDefaults()))
.oauth2Login(Customizer.withDefaults())
.addFilterAfter(new RateLimitFilter(), BearerTokenAuthenticationFilter.class) .addFilterAfter(new RateLimitFilter(), BearerTokenAuthenticationFilter.class)
.csrf(csrf -> csrf.disable()); .csrf(csrf -> csrf.disable());
@@ -3,8 +3,6 @@ spring.application.name=XpenselyServer
#Security #Security
spring.security.enabled=false spring.security.enabled=false
spring.security.oauth2.client.registration.google.client-id=${GOOGLE_CLIENT_ID}
spring.security.oauth2.client.registration.google.client-secret=${GOOGLE_CLIENT_SECRET}
spring.security.oauth2.resourceserver.jwt.issuer-uri=https://accounts.google.com spring.security.oauth2.resourceserver.jwt.issuer-uri=https://accounts.google.com
# PostgreSQL Configuration # PostgreSQL Configuration