feat: add room management functionality

This commit is contained in:
Tran Anh Tuan
2026-05-08 14:58:59 +07:00
parent 6a4a96e0ca
commit 459ff6b384
15 changed files with 1289 additions and 14 deletions

View File

@@ -105,6 +105,279 @@ const docTemplate = `{
}
}
},
"/v1/rooms": {
"get": {
"description": "Retrieve a list of all rooms ordered by creation date",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "List all rooms",
"responses": {
"200": {
"description": "OK",
"schema": {
"allOf": [
{
"$ref": "#/definitions/response.SuccessResponse"
},
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/definitions/models.Room"
}
}
}
}
]
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
},
"post": {
"description": "Create a new room with the provided details",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "Create a new room",
"parameters": [
{
"description": "Room request body",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/requests.CreateRoomRequest"
}
}
],
"responses": {
"201": {
"description": "Created",
"schema": {
"allOf": [
{
"$ref": "#/definitions/response.SuccessResponse"
},
{
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/responses.CreateRoomResponse"
}
}
}
]
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
}
},
"/v1/rooms/{id}": {
"get": {
"description": "Retrieve a single room using its unique identifier",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "Get room by ID",
"parameters": [
{
"type": "integer",
"description": "Room ID",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"allOf": [
{
"$ref": "#/definitions/response.SuccessResponse"
},
{
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/models.Room"
}
}
}
]
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"404": {
"description": "Not Found",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
},
"put": {
"description": "Update an existing room by its ID. Only non-empty fields will be updated.",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "Update room",
"parameters": [
{
"type": "integer",
"description": "Room ID",
"name": "id",
"in": "path",
"required": true
},
{
"description": "Room request body",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/requests.UpdateRoomRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"allOf": [
{
"$ref": "#/definitions/response.SuccessResponse"
},
{
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/responses.UpdateRoomResponse"
}
}
}
]
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"404": {
"description": "Not Found",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
},
"delete": {
"description": "Delete a room by its unique identifier",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "Delete room",
"parameters": [
{
"type": "integer",
"description": "Room ID",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.SuccessResponse"
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
}
},
"/v1/warehouses": {
"get": {
"description": "Retrieve a list of all warehouses ordered by creation date",
@@ -167,7 +440,7 @@ const docTemplate = `{
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/requests.CUWarehouseRequest"
"$ref": "#/definitions/requests.CreateWarehouseRequest"
}
}
],
@@ -292,7 +565,7 @@ const docTemplate = `{
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/requests.CUWarehouseRequest"
"$ref": "#/definitions/requests.UpdateWarehouseRequest"
}
}
],
@@ -374,6 +647,29 @@ const docTemplate = `{
}
},
"definitions": {
"models.Room": {
"type": "object",
"properties": {
"createdAt": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"warehouseId": {
"type": "integer"
}
}
},
"models.Warehouse": {
"type": "object",
"properties": {
@@ -420,7 +716,25 @@ const docTemplate = `{
}
}
},
"requests.CUWarehouseRequest": {
"requests.CreateRoomRequest": {
"type": "object",
"required": [
"name",
"warehouseId"
],
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"warehouseId": {
"type": "integer"
}
}
},
"requests.CreateWarehouseRequest": {
"type": "object",
"required": [
"address",
@@ -438,6 +752,31 @@ const docTemplate = `{
}
}
},
"requests.UpdateRoomRequest": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"requests.UpdateWarehouseRequest": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"description": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"response.ErrorResponse": {
"type": "object",
"properties": {
@@ -479,6 +818,14 @@ const docTemplate = `{
}
}
},
"responses.CreateRoomResponse": {
"type": "object",
"properties": {
"id": {
"type": "integer"
}
}
},
"responses.CreateWarehouseResponse": {
"type": "object",
"properties": {
@@ -487,6 +834,23 @@ const docTemplate = `{
}
}
},
"responses.UpdateRoomResponse": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"warehouseId": {
"type": "integer"
}
}
},
"responses.UpdateWarehouseResponse": {
"type": "object",
"properties": {

View File

@@ -99,6 +99,279 @@
}
}
},
"/v1/rooms": {
"get": {
"description": "Retrieve a list of all rooms ordered by creation date",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "List all rooms",
"responses": {
"200": {
"description": "OK",
"schema": {
"allOf": [
{
"$ref": "#/definitions/response.SuccessResponse"
},
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/definitions/models.Room"
}
}
}
}
]
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
},
"post": {
"description": "Create a new room with the provided details",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "Create a new room",
"parameters": [
{
"description": "Room request body",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/requests.CreateRoomRequest"
}
}
],
"responses": {
"201": {
"description": "Created",
"schema": {
"allOf": [
{
"$ref": "#/definitions/response.SuccessResponse"
},
{
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/responses.CreateRoomResponse"
}
}
}
]
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
}
},
"/v1/rooms/{id}": {
"get": {
"description": "Retrieve a single room using its unique identifier",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "Get room by ID",
"parameters": [
{
"type": "integer",
"description": "Room ID",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"allOf": [
{
"$ref": "#/definitions/response.SuccessResponse"
},
{
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/models.Room"
}
}
}
]
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"404": {
"description": "Not Found",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
},
"put": {
"description": "Update an existing room by its ID. Only non-empty fields will be updated.",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "Update room",
"parameters": [
{
"type": "integer",
"description": "Room ID",
"name": "id",
"in": "path",
"required": true
},
{
"description": "Room request body",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/requests.UpdateRoomRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"allOf": [
{
"$ref": "#/definitions/response.SuccessResponse"
},
{
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/responses.UpdateRoomResponse"
}
}
}
]
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"404": {
"description": "Not Found",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
},
"delete": {
"description": "Delete a room by its unique identifier",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"room"
],
"summary": "Delete room",
"parameters": [
{
"type": "integer",
"description": "Room ID",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.SuccessResponse"
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/response.ErrorResponse"
}
}
}
}
},
"/v1/warehouses": {
"get": {
"description": "Retrieve a list of all warehouses ordered by creation date",
@@ -161,7 +434,7 @@
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/requests.CUWarehouseRequest"
"$ref": "#/definitions/requests.CreateWarehouseRequest"
}
}
],
@@ -286,7 +559,7 @@
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/requests.CUWarehouseRequest"
"$ref": "#/definitions/requests.UpdateWarehouseRequest"
}
}
],
@@ -368,6 +641,29 @@
}
},
"definitions": {
"models.Room": {
"type": "object",
"properties": {
"createdAt": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"warehouseId": {
"type": "integer"
}
}
},
"models.Warehouse": {
"type": "object",
"properties": {
@@ -414,7 +710,25 @@
}
}
},
"requests.CUWarehouseRequest": {
"requests.CreateRoomRequest": {
"type": "object",
"required": [
"name",
"warehouseId"
],
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"warehouseId": {
"type": "integer"
}
}
},
"requests.CreateWarehouseRequest": {
"type": "object",
"required": [
"address",
@@ -432,6 +746,31 @@
}
}
},
"requests.UpdateRoomRequest": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"requests.UpdateWarehouseRequest": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"description": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"response.ErrorResponse": {
"type": "object",
"properties": {
@@ -473,6 +812,14 @@
}
}
},
"responses.CreateRoomResponse": {
"type": "object",
"properties": {
"id": {
"type": "integer"
}
}
},
"responses.CreateWarehouseResponse": {
"type": "object",
"properties": {
@@ -481,6 +828,23 @@
}
}
},
"responses.UpdateRoomResponse": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"warehouseId": {
"type": "integer"
}
}
},
"responses.UpdateWarehouseResponse": {
"type": "object",
"properties": {

View File

@@ -1,5 +1,20 @@
basePath: /api/v1
definitions:
models.Room:
properties:
createdAt:
type: string
description:
type: string
id:
type: integer
name:
type: string
updatedAt:
type: string
warehouseId:
type: integer
type: object
models.Warehouse:
properties:
address:
@@ -31,7 +46,19 @@ definitions:
- password
- username
type: object
requests.CUWarehouseRequest:
requests.CreateRoomRequest:
properties:
description:
type: string
name:
type: string
warehouseId:
type: integer
required:
- name
- warehouseId
type: object
requests.CreateWarehouseRequest:
properties:
address:
type: string
@@ -43,6 +70,22 @@ definitions:
- address
- name
type: object
requests.UpdateRoomRequest:
properties:
description:
type: string
name:
type: string
type: object
requests.UpdateWarehouseRequest:
properties:
address:
type: string
description:
type: string
name:
type: string
type: object
response.ErrorResponse:
properties:
code:
@@ -70,11 +113,27 @@ definitions:
id:
type: string
type: object
responses.CreateRoomResponse:
properties:
id:
type: integer
type: object
responses.CreateWarehouseResponse:
properties:
id:
type: integer
type: object
responses.UpdateRoomResponse:
properties:
description:
type: string
id:
type: integer
name:
type: string
warehouseId:
type: integer
type: object
responses.UpdateWarehouseResponse:
properties:
address:
@@ -149,6 +208,176 @@ paths:
summary: Health check
tags:
- health
/v1/rooms:
get:
consumes:
- application/json
description: Retrieve a list of all rooms ordered by creation date
produces:
- application/json
responses:
"200":
description: OK
schema:
allOf:
- $ref: '#/definitions/response.SuccessResponse'
- properties:
data:
items:
$ref: '#/definitions/models.Room'
type: array
type: object
"500":
description: Internal Server Error
schema:
$ref: '#/definitions/response.ErrorResponse'
summary: List all rooms
tags:
- room
post:
consumes:
- application/json
description: Create a new room with the provided details
parameters:
- description: Room request body
in: body
name: body
required: true
schema:
$ref: '#/definitions/requests.CreateRoomRequest'
produces:
- application/json
responses:
"201":
description: Created
schema:
allOf:
- $ref: '#/definitions/response.SuccessResponse'
- properties:
data:
$ref: '#/definitions/responses.CreateRoomResponse'
type: object
"400":
description: Bad Request
schema:
$ref: '#/definitions/response.ErrorResponse'
"500":
description: Internal Server Error
schema:
$ref: '#/definitions/response.ErrorResponse'
summary: Create a new room
tags:
- room
/v1/rooms/{id}:
delete:
consumes:
- application/json
description: Delete a room by its unique identifier
parameters:
- description: Room ID
in: path
name: id
required: true
type: integer
produces:
- application/json
responses:
"200":
description: OK
schema:
$ref: '#/definitions/response.SuccessResponse'
"400":
description: Bad Request
schema:
$ref: '#/definitions/response.ErrorResponse'
"500":
description: Internal Server Error
schema:
$ref: '#/definitions/response.ErrorResponse'
summary: Delete room
tags:
- room
get:
consumes:
- application/json
description: Retrieve a single room using its unique identifier
parameters:
- description: Room ID
in: path
name: id
required: true
type: integer
produces:
- application/json
responses:
"200":
description: OK
schema:
allOf:
- $ref: '#/definitions/response.SuccessResponse'
- properties:
data:
$ref: '#/definitions/models.Room'
type: object
"400":
description: Bad Request
schema:
$ref: '#/definitions/response.ErrorResponse'
"404":
description: Not Found
schema:
$ref: '#/definitions/response.ErrorResponse'
"500":
description: Internal Server Error
schema:
$ref: '#/definitions/response.ErrorResponse'
summary: Get room by ID
tags:
- room
put:
consumes:
- application/json
description: Update an existing room by its ID. Only non-empty fields will be
updated.
parameters:
- description: Room ID
in: path
name: id
required: true
type: integer
- description: Room request body
in: body
name: body
required: true
schema:
$ref: '#/definitions/requests.UpdateRoomRequest'
produces:
- application/json
responses:
"200":
description: OK
schema:
allOf:
- $ref: '#/definitions/response.SuccessResponse'
- properties:
data:
$ref: '#/definitions/responses.UpdateRoomResponse'
type: object
"400":
description: Bad Request
schema:
$ref: '#/definitions/response.ErrorResponse'
"404":
description: Not Found
schema:
$ref: '#/definitions/response.ErrorResponse'
"500":
description: Internal Server Error
schema:
$ref: '#/definitions/response.ErrorResponse'
summary: Update room
tags:
- room
/v1/warehouses:
get:
consumes:
@@ -185,7 +414,7 @@ paths:
name: body
required: true
schema:
$ref: '#/definitions/requests.CUWarehouseRequest'
$ref: '#/definitions/requests.CreateWarehouseRequest'
produces:
- application/json
responses:
@@ -290,7 +519,7 @@ paths:
name: body
required: true
schema:
$ref: '#/definitions/requests.CUWarehouseRequest'
$ref: '#/definitions/requests.UpdateWarehouseRequest'
produces:
- application/json
responses: