fix: oapi shitty generation
This commit is contained in:
parent
cb9fba6fbc
commit
68294dd13c
16 changed files with 302 additions and 288 deletions
|
|
@ -11,52 +11,52 @@ paths:
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: '#/components/parameters/cursor'
|
- $ref: '#/components/parameters/cursor'
|
||||||
- $ref: '#/components/parameters/title_sort'
|
- $ref: '#/components/parameters/title_sort'
|
||||||
- in: query
|
- name: sort_forward
|
||||||
name: sort_forward
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
- in: query
|
- name: word
|
||||||
name: word
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
- in: query
|
- name: status
|
||||||
name: status
|
in: query
|
||||||
|
description: List of title statuses to filter
|
||||||
schema:
|
schema:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/TitleStatus'
|
$ref: '#/components/schemas/TitleStatus'
|
||||||
description: List of title statuses to filter
|
|
||||||
style: form
|
|
||||||
explode: false
|
explode: false
|
||||||
- in: query
|
style: form
|
||||||
name: rating
|
- name: rating
|
||||||
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: number
|
type: number
|
||||||
format: double
|
format: double
|
||||||
- in: query
|
- name: release_year
|
||||||
name: release_year
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
- in: query
|
- name: release_season
|
||||||
name: release_season
|
in: query
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/ReleaseSeason'
|
$ref: '#/components/schemas/ReleaseSeason'
|
||||||
- in: query
|
- name: limit
|
||||||
name: limit
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
default: 10
|
default: 10
|
||||||
- in: query
|
- name: offset
|
||||||
name: offset
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
default: 0
|
default: 0
|
||||||
- in: query
|
- name: fields
|
||||||
name: fields
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: all
|
default: all
|
||||||
|
|
@ -69,10 +69,10 @@ paths:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
data:
|
data:
|
||||||
|
description: List of titles
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/Title'
|
$ref: '#/components/schemas/Title'
|
||||||
description: List of titles
|
|
||||||
cursor:
|
cursor:
|
||||||
$ref: '#/components/schemas/CursorObj'
|
$ref: '#/components/schemas/CursorObj'
|
||||||
required:
|
required:
|
||||||
|
|
@ -86,16 +86,17 @@ paths:
|
||||||
description: Unknown server error
|
description: Unknown server error
|
||||||
'/titles/{title_id}':
|
'/titles/{title_id}':
|
||||||
get:
|
get:
|
||||||
|
operationId: getTitle
|
||||||
summary: Get title description
|
summary: Get title description
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- name: title_id
|
||||||
name: title_id
|
in: path
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
- in: query
|
- name: fields
|
||||||
name: fields
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: all
|
default: all
|
||||||
|
|
@ -116,15 +117,16 @@ paths:
|
||||||
description: Unknown server error
|
description: Unknown server error
|
||||||
'/users/{user_id}':
|
'/users/{user_id}':
|
||||||
get:
|
get:
|
||||||
|
operationId: getUsersId
|
||||||
summary: Get user info
|
summary: Get user info
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- name: user_id
|
||||||
name: user_id
|
in: path
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
- in: query
|
- name: fields
|
||||||
name: fields
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: all
|
default: all
|
||||||
|
|
@ -142,59 +144,59 @@ paths:
|
||||||
'500':
|
'500':
|
||||||
description: Unknown server error
|
description: Unknown server error
|
||||||
patch:
|
patch:
|
||||||
|
operationId: updateUser
|
||||||
summary: Partially update a user account
|
summary: Partially update a user account
|
||||||
description: |
|
description: |
|
||||||
Update selected user profile fields (excluding password).
|
Update selected user profile fields (excluding password).
|
||||||
Password updates must be done via the dedicated auth-service (`/auth/`).
|
Password updates must be done via the dedicated auth-service (`/auth/`).
|
||||||
Fields not provided in the request body remain unchanged.
|
Fields not provided in the request body remain unchanged.
|
||||||
operationId: updateUser
|
|
||||||
parameters:
|
parameters:
|
||||||
- name: user_id
|
- name: user_id
|
||||||
in: path
|
in: path
|
||||||
|
description: User ID (primary key)
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
description: User ID (primary key)
|
|
||||||
example: 123
|
example: 123
|
||||||
requestBody:
|
requestBody:
|
||||||
required: true
|
required: true
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
description: Only provided fields are updated. Omitted fields remain unchanged.
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
avatar_id:
|
avatar_id:
|
||||||
|
description: ID of the user avatar (references `images.id`); set to `null` to remove avatar
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
nullable: true
|
|
||||||
description: ID of the user avatar (references `images.id`); set to `null` to remove avatar
|
|
||||||
example: 42
|
example: 42
|
||||||
|
nullable: true
|
||||||
mail:
|
mail:
|
||||||
|
description: User email (must be unique and valid)
|
||||||
type: string
|
type: string
|
||||||
format: email
|
format: email
|
||||||
pattern: '^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\\.[a-zA-Z0-9_-]+$'
|
|
||||||
description: User email (must be unique and valid)
|
|
||||||
example: john.doe.updated@example.com
|
example: john.doe.updated@example.com
|
||||||
|
pattern: '^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\\.[a-zA-Z0-9_-]+$'
|
||||||
nickname:
|
nickname:
|
||||||
type: string
|
|
||||||
pattern: '^[a-zA-Z0-9_-]{3,16}$'
|
|
||||||
description: 'Username (alphanumeric + `_` or `-`, 3–16 chars)'
|
description: 'Username (alphanumeric + `_` or `-`, 3–16 chars)'
|
||||||
|
type: string
|
||||||
|
example: john_doe_43
|
||||||
maxLength: 16
|
maxLength: 16
|
||||||
minLength: 3
|
minLength: 3
|
||||||
example: john_doe_43
|
pattern: '^[a-zA-Z0-9_-]{3,16}$'
|
||||||
disp_name:
|
disp_name:
|
||||||
type: string
|
|
||||||
description: Display name
|
description: Display name
|
||||||
maxLength: 32
|
|
||||||
example: John Smith
|
|
||||||
user_desc:
|
|
||||||
type: string
|
type: string
|
||||||
|
example: John Smith
|
||||||
|
maxLength: 32
|
||||||
|
user_desc:
|
||||||
description: User description / bio
|
description: User description / bio
|
||||||
maxLength: 512
|
type: string
|
||||||
example: Just a curious developer.
|
example: Just a curious developer.
|
||||||
|
maxLength: 512
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
description: Only provided fields are updated. Omitted fields remain unchanged.
|
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: User updated successfully. Returns updated user representation (excluding sensitive fields).
|
description: User updated successfully. Returns updated user representation (excluding sensitive fields).
|
||||||
|
|
@ -222,64 +224,64 @@ paths:
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: '#/components/parameters/cursor'
|
- $ref: '#/components/parameters/cursor'
|
||||||
- $ref: '#/components/parameters/title_sort'
|
- $ref: '#/components/parameters/title_sort'
|
||||||
- in: path
|
- name: user_id
|
||||||
name: user_id
|
in: path
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
- in: query
|
- name: sort_forward
|
||||||
name: sort_forward
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
- in: query
|
- name: word
|
||||||
name: word
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
- in: query
|
- name: status
|
||||||
name: status
|
in: query
|
||||||
|
description: List of title statuses to filter
|
||||||
schema:
|
schema:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/TitleStatus'
|
$ref: '#/components/schemas/TitleStatus'
|
||||||
description: List of title statuses to filter
|
|
||||||
style: form
|
|
||||||
explode: false
|
explode: false
|
||||||
- in: query
|
style: form
|
||||||
name: watch_status
|
- name: watch_status
|
||||||
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/UserTitleStatus'
|
$ref: '#/components/schemas/UserTitleStatus'
|
||||||
style: form
|
|
||||||
explode: false
|
explode: false
|
||||||
- in: query
|
style: form
|
||||||
name: rating
|
- name: rating
|
||||||
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: number
|
type: number
|
||||||
format: double
|
format: double
|
||||||
- in: query
|
- name: my_rate
|
||||||
name: my_rate
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
- in: query
|
- name: release_year
|
||||||
name: release_year
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
- in: query
|
- name: release_season
|
||||||
name: release_season
|
in: query
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/ReleaseSeason'
|
$ref: '#/components/schemas/ReleaseSeason'
|
||||||
- in: query
|
- name: limit
|
||||||
name: limit
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
default: 10
|
default: 10
|
||||||
- in: query
|
- name: fields
|
||||||
name: fields
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: all
|
default: all
|
||||||
|
|
@ -309,17 +311,17 @@ paths:
|
||||||
'500':
|
'500':
|
||||||
description: Unknown server error
|
description: Unknown server error
|
||||||
post:
|
post:
|
||||||
|
operationId: addUserTitle
|
||||||
summary: Add a title to a user
|
summary: Add a title to a user
|
||||||
description: 'User adding title to list af watched, status required'
|
description: 'User adding title to list af watched, status required'
|
||||||
operationId: addUserTitle
|
|
||||||
parameters:
|
parameters:
|
||||||
- name: user_id
|
- name: user_id
|
||||||
in: path
|
in: path
|
||||||
|
description: ID of the user to assign the title to
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
description: ID of the user to assign the title to
|
|
||||||
example: 123
|
example: 123
|
||||||
requestBody:
|
requestBody:
|
||||||
required: true
|
required: true
|
||||||
|
|
@ -327,9 +329,6 @@ paths:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: object
|
type: object
|
||||||
required:
|
|
||||||
- title_id
|
|
||||||
- status
|
|
||||||
properties:
|
properties:
|
||||||
title_id:
|
title_id:
|
||||||
type: integer
|
type: integer
|
||||||
|
|
@ -339,36 +338,16 @@ paths:
|
||||||
rate:
|
rate:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
|
required:
|
||||||
|
- title_id
|
||||||
|
- status
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: Title successfully added to user
|
description: Title successfully added to user
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: object
|
$ref: '#/components/schemas/UserTitleMini'
|
||||||
required:
|
|
||||||
- user_id
|
|
||||||
- title_id
|
|
||||||
- status
|
|
||||||
properties:
|
|
||||||
user_id:
|
|
||||||
type: integer
|
|
||||||
format: int64
|
|
||||||
title_id:
|
|
||||||
type: integer
|
|
||||||
format: int64
|
|
||||||
status:
|
|
||||||
$ref: '#/components/schemas/UserTitleStatus'
|
|
||||||
rate:
|
|
||||||
type: integer
|
|
||||||
format: int32
|
|
||||||
review_id:
|
|
||||||
type: integer
|
|
||||||
format: int64
|
|
||||||
ctime:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
additionalProperties: false
|
|
||||||
'400':
|
'400':
|
||||||
description: 'Invalid request body (missing fields, invalid types, etc.)'
|
description: 'Invalid request body (missing fields, invalid types, etc.)'
|
||||||
'401':
|
'401':
|
||||||
|
|
@ -382,17 +361,17 @@ paths:
|
||||||
'500':
|
'500':
|
||||||
description: Internal server error
|
description: Internal server error
|
||||||
patch:
|
patch:
|
||||||
|
operationId: updateUserTitle
|
||||||
summary: Update a usertitle
|
summary: Update a usertitle
|
||||||
description: User updating title list of watched
|
description: User updating title list of watched
|
||||||
operationId: updateUserTitle
|
|
||||||
parameters:
|
parameters:
|
||||||
- name: user_id
|
- name: user_id
|
||||||
in: path
|
in: path
|
||||||
|
description: ID of the user to assign the title to
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
description: ID of the user to assign the title to
|
|
||||||
example: 123
|
example: 123
|
||||||
requestBody:
|
requestBody:
|
||||||
required: true
|
required: true
|
||||||
|
|
@ -400,8 +379,6 @@ paths:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: object
|
type: object
|
||||||
required:
|
|
||||||
- title_id
|
|
||||||
properties:
|
properties:
|
||||||
title_id:
|
title_id:
|
||||||
type: integer
|
type: integer
|
||||||
|
|
@ -411,13 +388,15 @@ paths:
|
||||||
rate:
|
rate:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
|
required:
|
||||||
|
- title_id
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: Title successfully updated
|
description: Title successfully updated
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/paths/~1users~1%7Buser_id%7D~1titles/post/responses/200/content/application~1json/schema'
|
$ref: '#/components/schemas/UserTitleMini'
|
||||||
'400':
|
'400':
|
||||||
description: 'Invalid request body (missing fields, invalid types, etc.)'
|
description: 'Invalid request body (missing fields, invalid types, etc.)'
|
||||||
'401':
|
'401':
|
||||||
|
|
@ -443,25 +422,36 @@ components:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/TitleSort'
|
$ref: '#/components/schemas/TitleSort'
|
||||||
schemas:
|
schemas:
|
||||||
CursorObj:
|
|
||||||
type: object
|
|
||||||
required:
|
|
||||||
- id
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
type: integer
|
|
||||||
format: int64
|
|
||||||
param:
|
|
||||||
type: string
|
|
||||||
TitleSort:
|
TitleSort:
|
||||||
type: string
|
|
||||||
description: Title sort order
|
description: Title sort order
|
||||||
|
type: string
|
||||||
default: id
|
default: id
|
||||||
enum:
|
enum:
|
||||||
- id
|
- id
|
||||||
- year
|
- year
|
||||||
- rating
|
- rating
|
||||||
- views
|
- views
|
||||||
|
TitleStatus:
|
||||||
|
description: Title status
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- finished
|
||||||
|
- ongoing
|
||||||
|
- planned
|
||||||
|
ReleaseSeason:
|
||||||
|
description: Title release season
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- winter
|
||||||
|
- spring
|
||||||
|
- summer
|
||||||
|
- fall
|
||||||
|
StorageType:
|
||||||
|
description: Image storage type
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- s3
|
||||||
|
- local
|
||||||
Image:
|
Image:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
@ -469,65 +459,11 @@ components:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
storage_type:
|
storage_type:
|
||||||
type: string
|
$ref: '#/components/schemas/StorageType'
|
||||||
description: Image storage type
|
|
||||||
enum:
|
|
||||||
- s3
|
|
||||||
- local
|
|
||||||
image_path:
|
image_path:
|
||||||
type: string
|
type: string
|
||||||
TitleStatus:
|
|
||||||
type: string
|
|
||||||
description: Title status
|
|
||||||
enum:
|
|
||||||
- finished
|
|
||||||
- ongoing
|
|
||||||
- planned
|
|
||||||
ReleaseSeason:
|
|
||||||
type: string
|
|
||||||
description: Title release season
|
|
||||||
enum:
|
|
||||||
- winter
|
|
||||||
- spring
|
|
||||||
- summer
|
|
||||||
- fall
|
|
||||||
UserTitleStatus:
|
|
||||||
type: string
|
|
||||||
description: User's title status
|
|
||||||
enum:
|
|
||||||
- finished
|
|
||||||
- planned
|
|
||||||
- dropped
|
|
||||||
- in-progress
|
|
||||||
Review:
|
|
||||||
type: object
|
|
||||||
additionalProperties: true
|
|
||||||
Tag:
|
|
||||||
type: object
|
|
||||||
description: 'A localized tag: keys are language codes (ISO 639-1), values are tag names'
|
|
||||||
additionalProperties:
|
|
||||||
type: string
|
|
||||||
example:
|
|
||||||
en: Shojo
|
|
||||||
ru: Сёдзё
|
|
||||||
ja: 少女
|
|
||||||
Tags:
|
|
||||||
type: array
|
|
||||||
description: Array of localized tags
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/Tag'
|
|
||||||
example:
|
|
||||||
- en: Shojo
|
|
||||||
ru: Сёдзё
|
|
||||||
ja: 少女
|
|
||||||
- en: Shounen
|
|
||||||
ru: Сёнен
|
|
||||||
ja: 少年
|
|
||||||
Studio:
|
Studio:
|
||||||
type: object
|
type: object
|
||||||
required:
|
|
||||||
- id
|
|
||||||
- name
|
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
type: integer
|
type: integer
|
||||||
|
|
@ -538,30 +474,41 @@ components:
|
||||||
$ref: '#/components/schemas/Image'
|
$ref: '#/components/schemas/Image'
|
||||||
description:
|
description:
|
||||||
type: string
|
type: string
|
||||||
Title:
|
|
||||||
type: object
|
|
||||||
required:
|
required:
|
||||||
- id
|
- id
|
||||||
- title_names
|
- name
|
||||||
- tags
|
Tag:
|
||||||
|
description: 'A localized tag: keys are language codes (ISO 639-1), values are tag names'
|
||||||
|
type: object
|
||||||
|
example:
|
||||||
|
en: Shojo
|
||||||
|
ru: Сёдзё
|
||||||
|
ja: 少女
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
Tags:
|
||||||
|
description: Array of localized tags
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/Tag'
|
||||||
|
example:
|
||||||
|
- en: Shojo
|
||||||
|
ru: Сёдзё
|
||||||
|
ja: 少女
|
||||||
|
- en: Shounen
|
||||||
|
ru: Сёнен
|
||||||
|
ja: 少年
|
||||||
|
Title:
|
||||||
|
type: object
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
|
description: Unique title ID (primary key)
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
description: Unique title ID (primary key)
|
|
||||||
example: 1
|
example: 1
|
||||||
title_names:
|
title_names:
|
||||||
type: object
|
|
||||||
description: 'Localized titles. Key = language (ISO 639-1), value = list of names'
|
description: 'Localized titles. Key = language (ISO 639-1), value = list of names'
|
||||||
additionalProperties:
|
type: object
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: string
|
|
||||||
example: Attack on Titan
|
|
||||||
minItems: 1
|
|
||||||
example:
|
|
||||||
- Attack on Titan
|
|
||||||
- AoT
|
|
||||||
example:
|
example:
|
||||||
en:
|
en:
|
||||||
- Attack on Titan
|
- Attack on Titan
|
||||||
|
|
@ -571,6 +518,15 @@ components:
|
||||||
- Титаны
|
- Титаны
|
||||||
ja:
|
ja:
|
||||||
- 進撃の巨人
|
- 進撃の巨人
|
||||||
|
additionalProperties:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
example: Attack on Titan
|
||||||
|
minItems: 1
|
||||||
|
example:
|
||||||
|
- Attack on Titan
|
||||||
|
- AoT
|
||||||
studio:
|
studio:
|
||||||
$ref: '#/components/schemas/Studio'
|
$ref: '#/components/schemas/Studio'
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -601,51 +557,68 @@ components:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: number
|
type: number
|
||||||
format: double
|
format: double
|
||||||
additionalProperties: true
|
required:
|
||||||
User:
|
- id
|
||||||
|
- title_names
|
||||||
|
- tags
|
||||||
|
CursorObj:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
|
param:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
User:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
description: Unique user ID (primary key)
|
description: Unique user ID (primary key)
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
example: 1
|
example: 1
|
||||||
image:
|
image:
|
||||||
$ref: '#/components/schemas/Image'
|
$ref: '#/components/schemas/Image'
|
||||||
mail:
|
mail:
|
||||||
|
description: User email
|
||||||
type: string
|
type: string
|
||||||
format: email
|
format: email
|
||||||
description: User email
|
|
||||||
example: john.doe@example.com
|
example: john.doe@example.com
|
||||||
nickname:
|
nickname:
|
||||||
type: string
|
|
||||||
description: Username (alphanumeric + _ or -)
|
description: Username (alphanumeric + _ or -)
|
||||||
maxLength: 16
|
type: string
|
||||||
example: john_doe_42
|
example: john_doe_42
|
||||||
|
maxLength: 16
|
||||||
disp_name:
|
disp_name:
|
||||||
type: string
|
|
||||||
description: Display name
|
description: Display name
|
||||||
maxLength: 32
|
|
||||||
example: John Doe
|
|
||||||
user_desc:
|
|
||||||
type: string
|
type: string
|
||||||
|
example: John Doe
|
||||||
|
maxLength: 32
|
||||||
|
user_desc:
|
||||||
description: User description
|
description: User description
|
||||||
maxLength: 512
|
type: string
|
||||||
example: Just a regular user.
|
example: Just a regular user.
|
||||||
|
maxLength: 512
|
||||||
creation_date:
|
creation_date:
|
||||||
|
description: Timestamp when the user was created
|
||||||
type: string
|
type: string
|
||||||
format: date-time
|
format: date-time
|
||||||
description: Timestamp when the user was created
|
|
||||||
example: '2025-10-10T23:45:47.908073Z'
|
example: '2025-10-10T23:45:47.908073Z'
|
||||||
required:
|
required:
|
||||||
- user_id
|
- user_id
|
||||||
- nickname
|
- nickname
|
||||||
|
UserTitleStatus:
|
||||||
|
description: User's title status
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- finished
|
||||||
|
- planned
|
||||||
|
- dropped
|
||||||
|
- in-progress
|
||||||
UserTitle:
|
UserTitle:
|
||||||
type: object
|
type: object
|
||||||
required:
|
|
||||||
- user_id
|
|
||||||
- title_id
|
|
||||||
- status
|
|
||||||
properties:
|
properties:
|
||||||
user_id:
|
user_id:
|
||||||
type: integer
|
type: integer
|
||||||
|
|
@ -663,3 +636,34 @@ components:
|
||||||
ctime:
|
ctime:
|
||||||
type: string
|
type: string
|
||||||
format: date-time
|
format: date-time
|
||||||
|
required:
|
||||||
|
- user_id
|
||||||
|
- title_id
|
||||||
|
- status
|
||||||
|
UserTitleMini:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
user_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
title_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
status:
|
||||||
|
$ref: '#/components/schemas/UserTitleStatus'
|
||||||
|
rate:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
review_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
ctime:
|
||||||
|
type: string
|
||||||
|
format: date-time
|
||||||
|
required:
|
||||||
|
- user_id
|
||||||
|
- title_id
|
||||||
|
- status
|
||||||
|
Review:
|
||||||
|
type: object
|
||||||
|
additionalProperties: true
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
get:
|
get:
|
||||||
summary: Get title description
|
summary: Get title description
|
||||||
|
operationId: getTitle
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
name: title_id
|
name: title_id
|
||||||
|
|
|
||||||
|
|
@ -117,11 +117,10 @@ post:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
status:
|
status:
|
||||||
$ref: ../schemas/enums/UserTitleStatus.yaml
|
$ref: '../schemas/enums/UserTitleStatus.yaml'
|
||||||
rate:
|
rate:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
|
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: Title successfully added to user
|
description: Title successfully added to user
|
||||||
|
|
@ -129,7 +128,6 @@ post:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '../schemas/UserTitleMini.yaml'
|
$ref: '../schemas/UserTitleMini.yaml'
|
||||||
|
|
||||||
'400':
|
'400':
|
||||||
description: Invalid request body (missing fields, invalid types, etc.)
|
description: Invalid request body (missing fields, invalid types, etc.)
|
||||||
'401':
|
'401':
|
||||||
|
|
@ -169,7 +167,7 @@ patch:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
status:
|
status:
|
||||||
$ref: ../schemas/enums/UserTitleStatus.yaml
|
$ref: '../schemas/enums/UserTitleStatus.yaml'
|
||||||
rate:
|
rate:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
|
|
@ -181,7 +179,6 @@ patch:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '../schemas/UserTitleMini.yaml'
|
$ref: '../schemas/UserTitleMini.yaml'
|
||||||
|
|
||||||
'400':
|
'400':
|
||||||
description: Invalid request body (missing fields, invalid types, etc.)
|
description: Invalid request body (missing fields, invalid types, etc.)
|
||||||
'401':
|
'401':
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
get:
|
get:
|
||||||
summary: Get user info
|
summary: Get user info
|
||||||
|
operationId: getUsersId
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
name: user_id
|
name: user_id
|
||||||
|
|
|
||||||
|
|
@ -60,4 +60,3 @@ properties:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: number
|
type: number
|
||||||
format: double
|
format: double
|
||||||
additionalProperties: true
|
|
||||||
|
|
|
||||||
|
|
@ -21,4 +21,3 @@ properties:
|
||||||
ctime:
|
ctime:
|
||||||
type: string
|
type: string
|
||||||
format: date-time
|
format: date-time
|
||||||
additionalProperties: false
|
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ export type { CursorObj } from './models/CursorObj';
|
||||||
export type { Image } from './models/Image';
|
export type { Image } from './models/Image';
|
||||||
export type { ReleaseSeason } from './models/ReleaseSeason';
|
export type { ReleaseSeason } from './models/ReleaseSeason';
|
||||||
export type { Review } from './models/Review';
|
export type { Review } from './models/Review';
|
||||||
|
export type { StorageType } from './models/StorageType';
|
||||||
export type { Studio } from './models/Studio';
|
export type { Studio } from './models/Studio';
|
||||||
export type { Tag } from './models/Tag';
|
export type { Tag } from './models/Tag';
|
||||||
export type { Tags } from './models/Tags';
|
export type { Tags } from './models/Tags';
|
||||||
|
|
@ -21,6 +22,7 @@ export type { TitleSort } from './models/TitleSort';
|
||||||
export type { TitleStatus } from './models/TitleStatus';
|
export type { TitleStatus } from './models/TitleStatus';
|
||||||
export type { User } from './models/User';
|
export type { User } from './models/User';
|
||||||
export type { UserTitle } from './models/UserTitle';
|
export type { UserTitle } from './models/UserTitle';
|
||||||
|
export type { UserTitleMini } from './models/UserTitleMini';
|
||||||
export type { UserTitleStatus } from './models/UserTitleStatus';
|
export type { UserTitleStatus } from './models/UserTitleStatus';
|
||||||
|
|
||||||
export { DefaultService } from './services/DefaultService';
|
export { DefaultService } from './services/DefaultService';
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,10 @@
|
||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
import type { StorageType } from './StorageType';
|
||||||
export type Image = {
|
export type Image = {
|
||||||
id?: number;
|
id?: number;
|
||||||
/**
|
storage_type?: StorageType;
|
||||||
* Image storage type
|
|
||||||
*/
|
|
||||||
storage_type?: 's3' | 'local';
|
|
||||||
image_path?: string;
|
image_path?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
8
modules/frontend/src/api/models/StorageType.ts
Normal file
8
modules/frontend/src/api/models/StorageType.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
/**
|
||||||
|
* Image storage type
|
||||||
|
*/
|
||||||
|
export type StorageType = 's3' | 'local';
|
||||||
|
|
@ -2,4 +2,30 @@
|
||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type Title = Record<string, any>;
|
import type { Image } from './Image';
|
||||||
|
import type { ReleaseSeason } from './ReleaseSeason';
|
||||||
|
import type { Studio } from './Studio';
|
||||||
|
import type { Tags } from './Tags';
|
||||||
|
import type { TitleStatus } from './TitleStatus';
|
||||||
|
export type Title = {
|
||||||
|
/**
|
||||||
|
* Unique title ID (primary key)
|
||||||
|
*/
|
||||||
|
id: number;
|
||||||
|
/**
|
||||||
|
* Localized titles. Key = language (ISO 639-1), value = list of names
|
||||||
|
*/
|
||||||
|
title_names: Record<string, Array<string>>;
|
||||||
|
studio?: Studio;
|
||||||
|
tags: Tags;
|
||||||
|
poster?: Image;
|
||||||
|
title_status?: TitleStatus;
|
||||||
|
rating?: number;
|
||||||
|
rating_count?: number;
|
||||||
|
release_year?: number;
|
||||||
|
release_season?: ReleaseSeason;
|
||||||
|
episodes_aired?: number;
|
||||||
|
episodes_all?: number;
|
||||||
|
episodes_len?: Record<string, number>;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
|
||||||
14
modules/frontend/src/api/models/UserTitleMini.ts
Normal file
14
modules/frontend/src/api/models/UserTitleMini.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { UserTitleStatus } from './UserTitleStatus';
|
||||||
|
export type UserTitleMini = {
|
||||||
|
user_id: number;
|
||||||
|
title_id: number;
|
||||||
|
status: UserTitleStatus;
|
||||||
|
rate?: number;
|
||||||
|
review_id?: number;
|
||||||
|
ctime?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
@ -9,6 +9,7 @@ import type { TitleSort } from '../models/TitleSort';
|
||||||
import type { TitleStatus } from '../models/TitleStatus';
|
import type { TitleStatus } from '../models/TitleStatus';
|
||||||
import type { User } from '../models/User';
|
import type { User } from '../models/User';
|
||||||
import type { UserTitle } from '../models/UserTitle';
|
import type { UserTitle } from '../models/UserTitle';
|
||||||
|
import type { UserTitleMini } from '../models/UserTitleMini';
|
||||||
import type { UserTitleStatus } from '../models/UserTitleStatus';
|
import type { UserTitleStatus } from '../models/UserTitleStatus';
|
||||||
import type { CancelablePromise } from '../core/CancelablePromise';
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
||||||
import { OpenAPI } from '../core/OpenAPI';
|
import { OpenAPI } from '../core/OpenAPI';
|
||||||
|
|
@ -78,7 +79,7 @@ export class DefaultService {
|
||||||
* @returns Title Title description
|
* @returns Title Title description
|
||||||
* @throws ApiError
|
* @throws ApiError
|
||||||
*/
|
*/
|
||||||
public static getTitles1(
|
public static getTitle(
|
||||||
titleId: number,
|
titleId: number,
|
||||||
fields: string = 'all',
|
fields: string = 'all',
|
||||||
): CancelablePromise<Title> {
|
): CancelablePromise<Title> {
|
||||||
|
|
@ -105,7 +106,7 @@ export class DefaultService {
|
||||||
* @returns User User info
|
* @returns User User info
|
||||||
* @throws ApiError
|
* @throws ApiError
|
||||||
*/
|
*/
|
||||||
public static getUsers(
|
public static getUsersId(
|
||||||
userId: string,
|
userId: string,
|
||||||
fields: string = 'all',
|
fields: string = 'all',
|
||||||
): CancelablePromise<User> {
|
): CancelablePromise<User> {
|
||||||
|
|
@ -248,22 +249,17 @@ export class DefaultService {
|
||||||
* User adding title to list af watched, status required
|
* User adding title to list af watched, status required
|
||||||
* @param userId ID of the user to assign the title to
|
* @param userId ID of the user to assign the title to
|
||||||
* @param requestBody
|
* @param requestBody
|
||||||
* @returns any Title successfully added to user
|
* @returns UserTitleMini Title successfully added to user
|
||||||
* @throws ApiError
|
* @throws ApiError
|
||||||
*/
|
*/
|
||||||
public static addUserTitle(
|
public static addUserTitle(
|
||||||
userId: number,
|
userId: number,
|
||||||
requestBody: UserTitle,
|
requestBody: {
|
||||||
): CancelablePromise<{
|
|
||||||
data?: {
|
|
||||||
user_id: number;
|
|
||||||
title_id: number;
|
title_id: number;
|
||||||
status: UserTitleStatus;
|
status: UserTitleStatus;
|
||||||
rate?: number;
|
rate?: number;
|
||||||
review_id?: number;
|
},
|
||||||
ctime?: string;
|
): CancelablePromise<UserTitleMini> {
|
||||||
};
|
|
||||||
}> {
|
|
||||||
return __request(OpenAPI, {
|
return __request(OpenAPI, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
url: '/users/{user_id}/titles',
|
url: '/users/{user_id}/titles',
|
||||||
|
|
@ -282,4 +278,37 @@ export class DefaultService {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Update a usertitle
|
||||||
|
* User updating title list of watched
|
||||||
|
* @param userId ID of the user to assign the title to
|
||||||
|
* @param requestBody
|
||||||
|
* @returns UserTitleMini Title successfully updated
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
public static updateUserTitle(
|
||||||
|
userId: number,
|
||||||
|
requestBody: {
|
||||||
|
title_id: number;
|
||||||
|
status?: UserTitleStatus;
|
||||||
|
rate?: number;
|
||||||
|
},
|
||||||
|
): CancelablePromise<UserTitleMini> {
|
||||||
|
return __request(OpenAPI, {
|
||||||
|
method: 'PATCH',
|
||||||
|
url: '/users/{user_id}/titles',
|
||||||
|
path: {
|
||||||
|
'user_id': userId,
|
||||||
|
},
|
||||||
|
body: requestBody,
|
||||||
|
mediaType: 'application/json',
|
||||||
|
errors: {
|
||||||
|
400: `Invalid request body (missing fields, invalid types, etc.)`,
|
||||||
|
401: `Unauthorized — missing or invalid auth token`,
|
||||||
|
403: `Forbidden — user not allowed to update title`,
|
||||||
|
404: `User or Title not found`,
|
||||||
|
500: `Internal server error`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
// import React, { useEffect, useState } from "react";
|
|
||||||
// import { useParams } from "react-router-dom";
|
|
||||||
// import { DefaultService } from "../../api/services/DefaultService";
|
|
||||||
// import type { User } from "../../api/models/User";
|
|
||||||
// import styles from "./UserPage.module.css";
|
|
||||||
|
|
||||||
// const UserPage: React.FC = () => {
|
|
||||||
// const { id } = useParams<{ id: string }>();
|
|
||||||
// const [user, setUser] = useState<User | null>(null);
|
|
||||||
// const [loading, setLoading] = useState(true);
|
|
||||||
// const [error, setError] = useState<string | null>(null);
|
|
||||||
|
|
||||||
// useEffect(() => {
|
|
||||||
// if (!id) return;
|
|
||||||
|
|
||||||
// const getTitleInfo = async () => {
|
|
||||||
// try {
|
|
||||||
// const userInfo = await DefaultService.getTitle(id, "all");
|
|
||||||
// setUser(userInfo);
|
|
||||||
// } catch (err) {
|
|
||||||
// console.error(err);
|
|
||||||
// setError("Failed to fetch user info.");
|
|
||||||
// } finally {
|
|
||||||
// setLoading(false);
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
// getTitleInfo();
|
|
||||||
// }, [id]);
|
|
||||||
|
|
||||||
// if (loading) return <div className={styles.loader}>Loading...</div>;
|
|
||||||
// if (error) return <div className={styles.error}>{error}</div>;
|
|
||||||
// if (!user) return <div className={styles.error}>User not found.</div>;
|
|
||||||
|
|
||||||
// return (
|
|
||||||
// <div className={styles.container}>
|
|
||||||
// <div className={styles.card}>
|
|
||||||
// <div className={styles.avatar}>
|
|
||||||
// {user.avatar_id ? (
|
|
||||||
// <img
|
|
||||||
// src={`/images/${user.avatar_id}.png`}
|
|
||||||
// alt="User Avatar"
|
|
||||||
// className={styles.avatarImg}
|
|
||||||
// />
|
|
||||||
// ) : (
|
|
||||||
// <div className={styles.avatarPlaceholder}>
|
|
||||||
// {user.disp_name?.[0] || "U"}
|
|
||||||
// </div>
|
|
||||||
// )}
|
|
||||||
// </div>
|
|
||||||
|
|
||||||
// <div className={styles.info}>
|
|
||||||
// <h1 className={styles.name}>{user.disp_name || user.nickname}</h1>
|
|
||||||
// <p className={styles.nickname}>@{user.nickname}</p>
|
|
||||||
// {user.user_desc && <p className={styles.desc}>{user.user_desc}</p>}
|
|
||||||
// <p className={styles.created}>
|
|
||||||
// Joined: {new Date(user.creation_date).toLocaleDateString()}
|
|
||||||
// </p>
|
|
||||||
// </div>
|
|
||||||
// </div>
|
|
||||||
// </div>
|
|
||||||
// );
|
|
||||||
// };
|
|
||||||
|
|
||||||
// export default UserPage;
|
|
||||||
|
|
@ -15,7 +15,7 @@ const UserPage: React.FC = () => {
|
||||||
|
|
||||||
const getUserInfo = async () => {
|
const getUserInfo = async () => {
|
||||||
try {
|
try {
|
||||||
const userInfo = await DefaultService.getUsers(id, "all"); // <-- use dynamic id
|
const userInfo = await DefaultService.getUsersId(id, "all"); // <-- use dynamic id
|
||||||
setUser(userInfo);
|
setUser(userInfo);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ export default function UsersIdPage({ userId }: UsersIdPageProps) {
|
||||||
if (!id) return;
|
if (!id) return;
|
||||||
setLoadingUser(true);
|
setLoadingUser(true);
|
||||||
try {
|
try {
|
||||||
const result = await DefaultService.getUsers(id, "all");
|
const result = await DefaultService.getUsersId(id, "all");
|
||||||
setUser(result);
|
setUser(result);
|
||||||
setErrorUser(null);
|
setErrorUser(null);
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue