Merge branch 'front' into auth
This commit is contained in:
commit
4c74315291
97 changed files with 7991 additions and 997 deletions
6
api/_build/oapi-codegen.yaml
Normal file
6
api/_build/oapi-codegen.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
package: oapi
|
||||||
|
generate:
|
||||||
|
strict-server: true
|
||||||
|
gin-server: true
|
||||||
|
models: true
|
||||||
|
output: api/api.gen.go
|
||||||
669
api/_build/openapi.yaml
Normal file
669
api/_build/openapi.yaml
Normal file
|
|
@ -0,0 +1,669 @@
|
||||||
|
openapi: 3.0.4
|
||||||
|
info:
|
||||||
|
title: 'Titles, Users, Reviews, Tags, and Media API'
|
||||||
|
version: 1.0.0
|
||||||
|
servers:
|
||||||
|
- url: /api/v1
|
||||||
|
paths:
|
||||||
|
/titles:
|
||||||
|
get:
|
||||||
|
summary: Get titles
|
||||||
|
parameters:
|
||||||
|
- $ref: '#/components/parameters/cursor'
|
||||||
|
- $ref: '#/components/parameters/title_sort'
|
||||||
|
- name: sort_forward
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
- name: word
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
- name: status
|
||||||
|
in: query
|
||||||
|
description: List of title statuses to filter
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/TitleStatus'
|
||||||
|
explode: false
|
||||||
|
style: form
|
||||||
|
- name: rating
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
- name: release_year
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
- name: release_season
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/ReleaseSeason'
|
||||||
|
- name: limit
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
default: 10
|
||||||
|
- name: offset
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
default: 0
|
||||||
|
- name: fields
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: all
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: List of titles with cursor
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
data:
|
||||||
|
description: List of titles
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/Title'
|
||||||
|
cursor:
|
||||||
|
$ref: '#/components/schemas/CursorObj'
|
||||||
|
required:
|
||||||
|
- data
|
||||||
|
- cursor
|
||||||
|
'204':
|
||||||
|
description: No titles found
|
||||||
|
'400':
|
||||||
|
description: Request params are not correct
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
|
'/titles/{title_id}':
|
||||||
|
get:
|
||||||
|
operationId: getTitle
|
||||||
|
summary: Get title description
|
||||||
|
parameters:
|
||||||
|
- name: title_id
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
- name: fields
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: all
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: Title description
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/Title'
|
||||||
|
'204':
|
||||||
|
description: No title found
|
||||||
|
'400':
|
||||||
|
description: Request params are not correct
|
||||||
|
'404':
|
||||||
|
description: Title not found
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
|
'/users/{user_id}':
|
||||||
|
get:
|
||||||
|
operationId: getUsersId
|
||||||
|
summary: Get user info
|
||||||
|
parameters:
|
||||||
|
- name: user_id
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
- name: fields
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: all
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: User info
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/User'
|
||||||
|
'400':
|
||||||
|
description: Request params are not correct
|
||||||
|
'404':
|
||||||
|
description: User not found
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
|
patch:
|
||||||
|
operationId: updateUser
|
||||||
|
summary: Partially update a user account
|
||||||
|
description: |
|
||||||
|
Update selected user profile fields (excluding password).
|
||||||
|
Password updates must be done via the dedicated auth-service (`/auth/`).
|
||||||
|
Fields not provided in the request body remain unchanged.
|
||||||
|
parameters:
|
||||||
|
- name: user_id
|
||||||
|
in: path
|
||||||
|
description: User ID (primary key)
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
example: 123
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
description: Only provided fields are updated. Omitted fields remain unchanged.
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
avatar_id:
|
||||||
|
description: ID of the user avatar (references `images.id`); set to `null` to remove avatar
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
example: 42
|
||||||
|
nullable: true
|
||||||
|
mail:
|
||||||
|
description: User email (must be unique and valid)
|
||||||
|
type: string
|
||||||
|
format: email
|
||||||
|
example: john.doe.updated@example.com
|
||||||
|
pattern: '^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\\.[a-zA-Z0-9_-]+$'
|
||||||
|
nickname:
|
||||||
|
description: 'Username (alphanumeric + `_` or `-`, 3–16 chars)'
|
||||||
|
type: string
|
||||||
|
example: john_doe_43
|
||||||
|
maxLength: 16
|
||||||
|
minLength: 3
|
||||||
|
pattern: '^[a-zA-Z0-9_-]{3,16}$'
|
||||||
|
disp_name:
|
||||||
|
description: Display name
|
||||||
|
type: string
|
||||||
|
example: John Smith
|
||||||
|
maxLength: 32
|
||||||
|
user_desc:
|
||||||
|
description: User description / bio
|
||||||
|
type: string
|
||||||
|
example: Just a curious developer.
|
||||||
|
maxLength: 512
|
||||||
|
additionalProperties: false
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: User updated successfully. Returns updated user representation (excluding sensitive fields).
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/User'
|
||||||
|
'400':
|
||||||
|
description: 'Invalid input (e.g., validation failed, nickname/email conflict, malformed JSON)'
|
||||||
|
'401':
|
||||||
|
description: Unauthorized — missing or invalid authentication token
|
||||||
|
'403':
|
||||||
|
description: 'Forbidden — user is not allowed to modify this resource (e.g., not own profile & no admin rights)'
|
||||||
|
'404':
|
||||||
|
description: User not found
|
||||||
|
'409':
|
||||||
|
description: 'Conflict — e.g., requested `nickname` or `mail` already taken by another user'
|
||||||
|
'422':
|
||||||
|
description: 'Unprocessable Entity — semantic errors not caught by schema (e.g., invalid `avatar_id`)'
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
|
'/users/{user_id}/titles':
|
||||||
|
get:
|
||||||
|
summary: Get user titles
|
||||||
|
parameters:
|
||||||
|
- $ref: '#/components/parameters/cursor'
|
||||||
|
- $ref: '#/components/parameters/title_sort'
|
||||||
|
- name: user_id
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
- name: sort_forward
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
- name: word
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
- name: status
|
||||||
|
in: query
|
||||||
|
description: List of title statuses to filter
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/TitleStatus'
|
||||||
|
explode: false
|
||||||
|
style: form
|
||||||
|
- name: watch_status
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/UserTitleStatus'
|
||||||
|
explode: false
|
||||||
|
style: form
|
||||||
|
- name: rating
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
- name: my_rate
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
- name: release_year
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
- name: release_season
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/ReleaseSeason'
|
||||||
|
- name: limit
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
default: 10
|
||||||
|
- name: fields
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: all
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: List of user titles
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
data:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/UserTitle'
|
||||||
|
cursor:
|
||||||
|
$ref: '#/components/schemas/CursorObj'
|
||||||
|
required:
|
||||||
|
- data
|
||||||
|
- cursor
|
||||||
|
'204':
|
||||||
|
description: No titles found
|
||||||
|
'400':
|
||||||
|
description: Request params are not correct
|
||||||
|
'404':
|
||||||
|
description: User not found
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
|
post:
|
||||||
|
operationId: addUserTitle
|
||||||
|
summary: Add a title to a user
|
||||||
|
description: 'User adding title to list af watched, status required'
|
||||||
|
parameters:
|
||||||
|
- name: user_id
|
||||||
|
in: path
|
||||||
|
description: ID of the user to assign the title to
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
example: 123
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
title_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
status:
|
||||||
|
$ref: '#/components/schemas/UserTitleStatus'
|
||||||
|
rate:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
required:
|
||||||
|
- title_id
|
||||||
|
- status
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: Title successfully added to user
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/UserTitleMini'
|
||||||
|
'400':
|
||||||
|
description: 'Invalid request body (missing fields, invalid types, etc.)'
|
||||||
|
'401':
|
||||||
|
description: Unauthorized — missing or invalid auth token
|
||||||
|
'403':
|
||||||
|
description: Forbidden — user not allowed to assign titles to this user
|
||||||
|
'404':
|
||||||
|
description: User or Title not found
|
||||||
|
'409':
|
||||||
|
description: Conflict — title already assigned to user (if applicable)
|
||||||
|
'500':
|
||||||
|
description: Internal server error
|
||||||
|
patch:
|
||||||
|
operationId: updateUserTitle
|
||||||
|
summary: Update a usertitle
|
||||||
|
description: User updating title list of watched
|
||||||
|
parameters:
|
||||||
|
- name: user_id
|
||||||
|
in: path
|
||||||
|
description: ID of the user to assign the title to
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
example: 123
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
title_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
status:
|
||||||
|
$ref: '#/components/schemas/UserTitleStatus'
|
||||||
|
rate:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
required:
|
||||||
|
- title_id
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: Title successfully updated
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/UserTitleMini'
|
||||||
|
'400':
|
||||||
|
description: 'Invalid request body (missing fields, invalid types, etc.)'
|
||||||
|
'401':
|
||||||
|
description: Unauthorized — missing or invalid auth token
|
||||||
|
'403':
|
||||||
|
description: Forbidden — user not allowed to update title
|
||||||
|
'404':
|
||||||
|
description: User or Title not found
|
||||||
|
'500':
|
||||||
|
description: Internal server error
|
||||||
|
components:
|
||||||
|
parameters:
|
||||||
|
cursor:
|
||||||
|
in: query
|
||||||
|
name: cursor
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
title_sort:
|
||||||
|
in: query
|
||||||
|
name: sort
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/TitleSort'
|
||||||
|
schemas:
|
||||||
|
TitleSort:
|
||||||
|
description: Title sort order
|
||||||
|
type: string
|
||||||
|
default: id
|
||||||
|
enum:
|
||||||
|
- id
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- 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:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
storage_type:
|
||||||
|
$ref: '#/components/schemas/StorageType'
|
||||||
|
image_path:
|
||||||
|
type: string
|
||||||
|
Studio:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
poster:
|
||||||
|
$ref: '#/components/schemas/Image'
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- name
|
||||||
|
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:
|
||||||
|
id:
|
||||||
|
description: Unique title ID (primary key)
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
example: 1
|
||||||
|
title_names:
|
||||||
|
description: 'Localized titles. Key = language (ISO 639-1), value = list of names'
|
||||||
|
type: object
|
||||||
|
example:
|
||||||
|
en:
|
||||||
|
- Attack on Titan
|
||||||
|
- AoT
|
||||||
|
ru:
|
||||||
|
- Атака титанов
|
||||||
|
- Титаны
|
||||||
|
ja:
|
||||||
|
- 進撃の巨人
|
||||||
|
additionalProperties:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
example: Attack on Titan
|
||||||
|
minItems: 1
|
||||||
|
example:
|
||||||
|
- Attack on Titan
|
||||||
|
- AoT
|
||||||
|
studio:
|
||||||
|
$ref: '#/components/schemas/Studio'
|
||||||
|
tags:
|
||||||
|
$ref: '#/components/schemas/Tags'
|
||||||
|
poster:
|
||||||
|
$ref: '#/components/schemas/Image'
|
||||||
|
title_status:
|
||||||
|
$ref: '#/components/schemas/TitleStatus'
|
||||||
|
rating:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
rating_count:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
release_year:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
release_season:
|
||||||
|
$ref: '#/components/schemas/ReleaseSeason'
|
||||||
|
episodes_aired:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
episodes_all:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
episodes_len:
|
||||||
|
type: object
|
||||||
|
additionalProperties:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- title_names
|
||||||
|
- tags
|
||||||
|
CursorObj:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
param:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
User:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
description: Unique user ID (primary key)
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
example: 1
|
||||||
|
image:
|
||||||
|
$ref: '#/components/schemas/Image'
|
||||||
|
mail:
|
||||||
|
description: User email
|
||||||
|
type: string
|
||||||
|
format: email
|
||||||
|
example: john.doe@example.com
|
||||||
|
nickname:
|
||||||
|
description: Username (alphanumeric + _ or -)
|
||||||
|
type: string
|
||||||
|
example: john_doe_42
|
||||||
|
maxLength: 16
|
||||||
|
disp_name:
|
||||||
|
description: Display name
|
||||||
|
type: string
|
||||||
|
example: John Doe
|
||||||
|
maxLength: 32
|
||||||
|
user_desc:
|
||||||
|
description: User description
|
||||||
|
type: string
|
||||||
|
example: Just a regular user.
|
||||||
|
maxLength: 512
|
||||||
|
creation_date:
|
||||||
|
description: Timestamp when the user was created
|
||||||
|
type: string
|
||||||
|
format: date-time
|
||||||
|
example: '2025-10-10T23:45:47.908073Z'
|
||||||
|
required:
|
||||||
|
- user_id
|
||||||
|
- nickname
|
||||||
|
UserTitleStatus:
|
||||||
|
description: User's title status
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- finished
|
||||||
|
- planned
|
||||||
|
- dropped
|
||||||
|
- in-progress
|
||||||
|
UserTitle:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
user_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
title:
|
||||||
|
$ref: '#/components/schemas/Title'
|
||||||
|
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
|
||||||
|
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
|
||||||
1264
api/api.gen.go
1264
api/api.gen.go
File diff suppressed because it is too large
Load diff
596
api/openapi.yaml
596
api/openapi.yaml
|
|
@ -1,592 +1,24 @@
|
||||||
openapi: 3.1.1
|
openapi: 3.0.4
|
||||||
info:
|
info:
|
||||||
title: Titles, Users, Reviews, Tags, and Media API
|
title: Titles, Users, Reviews, Tags, and Media API
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
|
|
||||||
servers:
|
servers:
|
||||||
- url: /api/v1
|
- url: /api/v1
|
||||||
|
|
||||||
paths:
|
paths:
|
||||||
# /title:
|
/titles:
|
||||||
# get:
|
$ref: "./paths/titles.yaml"
|
||||||
# summary: Get titles
|
/titles/{title_id}:
|
||||||
# parameters:
|
$ref: "./paths/titles-id.yaml"
|
||||||
# - in: query
|
|
||||||
# name: query
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# - in: query
|
|
||||||
# name: limit
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 10
|
|
||||||
# - in: query
|
|
||||||
# name: offset
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 0
|
|
||||||
# - in: query
|
|
||||||
# name: fields
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# default: all
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: List of titles
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: array
|
|
||||||
# items:
|
|
||||||
# $ref: '#/components/schemas/Title'
|
|
||||||
# '204':
|
|
||||||
# description: No titles found
|
|
||||||
|
|
||||||
# /title/{title_id}:
|
|
||||||
# get:
|
|
||||||
# summary: Get title description
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: title_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# - in: query
|
|
||||||
# name: fields
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# default: all
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Title description
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# $ref: '#/components/schemas/Title'
|
|
||||||
# '404':
|
|
||||||
# description: Title not found
|
|
||||||
|
|
||||||
# patch:
|
|
||||||
# summary: Update title info
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: title_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# requestBody:
|
|
||||||
# required: true
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# $ref: '#/components/schemas/Title'
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Update result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
# user_json:
|
|
||||||
# $ref: '#/components/schemas/User'
|
|
||||||
|
|
||||||
# /title/{title_id}/reviews:
|
|
||||||
# get:
|
|
||||||
# summary: Get title reviews
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: title_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# - in: query
|
|
||||||
# name: limit
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 10
|
|
||||||
# - in: query
|
|
||||||
# name: offset
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 0
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: List of reviews
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: array
|
|
||||||
# items:
|
|
||||||
# $ref: '#/components/schemas/Review'
|
|
||||||
# '204':
|
|
||||||
# description: No reviews found
|
|
||||||
|
|
||||||
/users/{user_id}:
|
/users/{user_id}:
|
||||||
get:
|
$ref: "./paths/users-id.yaml"
|
||||||
summary: Get user info
|
/users/{user_id}/titles:
|
||||||
parameters:
|
$ref: "./paths/users-id-titles.yaml"
|
||||||
- in: path
|
|
||||||
name: user_id
|
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
- in: query
|
|
||||||
name: fields
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
default: all
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: User info
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/User'
|
|
||||||
'404':
|
|
||||||
description: User not found
|
|
||||||
|
|
||||||
# patch:
|
|
||||||
# summary: Update user
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: user_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# requestBody:
|
|
||||||
# required: true
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# $ref: '#/components/schemas/User'
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Update result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
# delete:
|
|
||||||
# summary: Delete user
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: user_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Delete result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
# /users:
|
|
||||||
# get:
|
|
||||||
# summary: Search user
|
|
||||||
# parameters:
|
|
||||||
# - in: query
|
|
||||||
# name: query
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# - in: query
|
|
||||||
# name: fields
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: List of users
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: array
|
|
||||||
# items:
|
|
||||||
# $ref: '#/components/schemas/User'
|
|
||||||
|
|
||||||
# post:
|
|
||||||
# summary: Add new user
|
|
||||||
# requestBody:
|
|
||||||
# required: true
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# $ref: '#/components/schemas/User'
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Add result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
# user_json:
|
|
||||||
# $ref: '#/components/schemas/User'
|
|
||||||
|
|
||||||
# /users/{user_id}/titles:
|
|
||||||
# get:
|
|
||||||
# summary: Get user titles
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: user_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# - in: query
|
|
||||||
# name: query
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# - in: query
|
|
||||||
# name: limit
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 10
|
|
||||||
# - in: query
|
|
||||||
# name: offset
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 0
|
|
||||||
# - in: query
|
|
||||||
# name: fields
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# default: all
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: List of user titles
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: array
|
|
||||||
# items:
|
|
||||||
# $ref: '#/components/schemas/UserTitle'
|
|
||||||
# '204':
|
|
||||||
# description: No titles found
|
|
||||||
|
|
||||||
# post:
|
|
||||||
# summary: Add user title
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: user_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# requestBody:
|
|
||||||
# required: true
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# title_id:
|
|
||||||
# type: string
|
|
||||||
# status:
|
|
||||||
# type: string
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Add result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
# patch:
|
|
||||||
# summary: Update user title
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: user_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# requestBody:
|
|
||||||
# required: true
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# $ref: '#/components/schemas/UserTitle'
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Update result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
# delete:
|
|
||||||
# summary: Delete user title
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: user_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# - in: query
|
|
||||||
# name: title_id
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Delete result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
# /users/{user_id}/reviews:
|
|
||||||
# get:
|
|
||||||
# summary: Get user reviews
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: user_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# - in: query
|
|
||||||
# name: limit
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 10
|
|
||||||
# - in: query
|
|
||||||
# name: offset
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 0
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: List of reviews
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: array
|
|
||||||
# items:
|
|
||||||
# $ref: '#/components/schemas/Review'
|
|
||||||
|
|
||||||
# /reviews:
|
|
||||||
# post:
|
|
||||||
# summary: Add review
|
|
||||||
# requestBody:
|
|
||||||
# required: true
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# $ref: '#/components/schemas/Review'
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Add result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
# /reviews/{review_id}:
|
|
||||||
# patch:
|
|
||||||
# summary: Update review
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: review_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# requestBody:
|
|
||||||
# required: true
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# $ref: '#/components/schemas/Review'
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Update result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
# delete:
|
|
||||||
# summary: Delete review
|
|
||||||
# parameters:
|
|
||||||
# - in: path
|
|
||||||
# name: review_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Delete result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
# /tags:
|
|
||||||
# get:
|
|
||||||
# summary: Get tags
|
|
||||||
# parameters:
|
|
||||||
# - in: query
|
|
||||||
# name: limit
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 10
|
|
||||||
# - in: query
|
|
||||||
# name: offset
|
|
||||||
# schema:
|
|
||||||
# type: integer
|
|
||||||
# default: 0
|
|
||||||
# - in: query
|
|
||||||
# name: fields
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: List of tags
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: array
|
|
||||||
# items:
|
|
||||||
# $ref: '#/components/schemas/Tag'
|
|
||||||
|
|
||||||
# /media:
|
|
||||||
# post:
|
|
||||||
# summary: Upload image
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Upload result
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
# image_id:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
# get:
|
|
||||||
# summary: Get image path
|
|
||||||
# parameters:
|
|
||||||
# - in: query
|
|
||||||
# name: image_id
|
|
||||||
# required: true
|
|
||||||
# schema:
|
|
||||||
# type: string
|
|
||||||
# responses:
|
|
||||||
# '200':
|
|
||||||
# description: Image path
|
|
||||||
# content:
|
|
||||||
# application/json:
|
|
||||||
# schema:
|
|
||||||
# type: object
|
|
||||||
# properties:
|
|
||||||
# success:
|
|
||||||
# type: boolean
|
|
||||||
# error:
|
|
||||||
# type: string
|
|
||||||
# image_path:
|
|
||||||
# type: string
|
|
||||||
|
|
||||||
components:
|
components:
|
||||||
|
parameters:
|
||||||
|
$ref: "./parameters/_index.yaml"
|
||||||
schemas:
|
schemas:
|
||||||
Title:
|
$ref: "./schemas/_index.yaml"
|
||||||
type: object
|
|
||||||
additionalProperties: true
|
|
||||||
User:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
type: integer
|
|
||||||
format: int64
|
|
||||||
description: Unique user ID (primary key)
|
|
||||||
example: 1
|
|
||||||
avatar_id:
|
|
||||||
type: integer
|
|
||||||
format: int64
|
|
||||||
description: ID of the user avatar (references images table)
|
|
||||||
nullable: true
|
|
||||||
example: null
|
|
||||||
mail:
|
|
||||||
type: string
|
|
||||||
format: email
|
|
||||||
description: User email
|
|
||||||
example: "john.doe@example.com"
|
|
||||||
nickname:
|
|
||||||
type: string
|
|
||||||
description: Username (alphanumeric + _ or -)
|
|
||||||
maxLength: 16
|
|
||||||
example: "john_doe_42"
|
|
||||||
disp_name:
|
|
||||||
type: string
|
|
||||||
description: Display name
|
|
||||||
maxLength: 32
|
|
||||||
example: "John Doe"
|
|
||||||
user_desc:
|
|
||||||
type: string
|
|
||||||
description: User description
|
|
||||||
maxLength: 512
|
|
||||||
example: "Just a regular user."
|
|
||||||
creation_date:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
description: Timestamp when the user was created
|
|
||||||
example: "2025-10-10T23:45:47.908073Z"
|
|
||||||
required:
|
|
||||||
- user_id
|
|
||||||
- nickname
|
|
||||||
- creation_date
|
|
||||||
UserTitle:
|
|
||||||
type: object
|
|
||||||
additionalProperties: true
|
|
||||||
Review:
|
|
||||||
type: object
|
|
||||||
additionalProperties: true
|
|
||||||
Tag:
|
|
||||||
type: object
|
|
||||||
additionalProperties: true
|
|
||||||
4
api/parameters/_index.yaml
Normal file
4
api/parameters/_index.yaml
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
cursor:
|
||||||
|
$ref: "./cursor.yaml"
|
||||||
|
title_sort:
|
||||||
|
$ref: "./title_sort.yaml"
|
||||||
5
api/parameters/cursor.yaml
Normal file
5
api/parameters/cursor.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
in: query
|
||||||
|
name: cursor
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
5
api/parameters/title_sort.yaml
Normal file
5
api/parameters/title_sort.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
in: query
|
||||||
|
name: sort
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
$ref: '../schemas/TitleSort.yaml'
|
||||||
30
api/paths/titles-id.yaml
Normal file
30
api/paths/titles-id.yaml
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
get:
|
||||||
|
summary: Get title description
|
||||||
|
operationId: getTitle
|
||||||
|
parameters:
|
||||||
|
- in: path
|
||||||
|
name: title_id
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
- in: query
|
||||||
|
name: fields
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: all
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: Title description
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "../schemas/Title.yaml"
|
||||||
|
'404':
|
||||||
|
description: Title not found
|
||||||
|
'400':
|
||||||
|
description: Request params are not correct
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
|
'204':
|
||||||
|
description: No title found
|
||||||
79
api/paths/titles.yaml
Normal file
79
api/paths/titles.yaml
Normal file
|
|
@ -0,0 +1,79 @@
|
||||||
|
get:
|
||||||
|
summary: Get titles
|
||||||
|
parameters:
|
||||||
|
- $ref: "../parameters/cursor.yaml"
|
||||||
|
- $ref: "../parameters/title_sort.yaml"
|
||||||
|
- in: query
|
||||||
|
name: sort_forward
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
- in: query
|
||||||
|
name: word
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
- in: query
|
||||||
|
name: status
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '../schemas/enums/TitleStatus.yaml'
|
||||||
|
description: List of title statuses to filter
|
||||||
|
style: form
|
||||||
|
explode: false
|
||||||
|
|
||||||
|
- in: query
|
||||||
|
name: rating
|
||||||
|
schema:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
- in: query
|
||||||
|
name: release_year
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
- in: query
|
||||||
|
name: release_season
|
||||||
|
schema:
|
||||||
|
$ref: '../schemas/enums/ReleaseSeason.yaml'
|
||||||
|
- in: query
|
||||||
|
name: limit
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
default: 10
|
||||||
|
- in: query
|
||||||
|
name: offset
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
default: 0
|
||||||
|
- in: query
|
||||||
|
name: fields
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: all
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: List of titles with cursor
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
data:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '../schemas/Title.yaml'
|
||||||
|
description: List of titles
|
||||||
|
cursor:
|
||||||
|
$ref: '../schemas/CursorObj.yaml'
|
||||||
|
required:
|
||||||
|
- data
|
||||||
|
- cursor
|
||||||
|
'204':
|
||||||
|
description: No titles found
|
||||||
|
'400':
|
||||||
|
description: Request params are not correct
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
191
api/paths/users-id-titles.yaml
Normal file
191
api/paths/users-id-titles.yaml
Normal file
|
|
@ -0,0 +1,191 @@
|
||||||
|
get:
|
||||||
|
summary: Get user titles
|
||||||
|
parameters:
|
||||||
|
- $ref: '../parameters/cursor.yaml'
|
||||||
|
- $ref: "../parameters/title_sort.yaml"
|
||||||
|
- in: path
|
||||||
|
name: user_id
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
- in: query
|
||||||
|
name: sort_forward
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
- in: query
|
||||||
|
name: word
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
- in: query
|
||||||
|
name: status
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '../schemas/enums/TitleStatus.yaml'
|
||||||
|
description: List of title statuses to filter
|
||||||
|
style: form
|
||||||
|
explode: false
|
||||||
|
- in: query
|
||||||
|
name: watch_status
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '../schemas/enums/UserTitleStatus.yaml'
|
||||||
|
style: form
|
||||||
|
explode: false
|
||||||
|
- in: query
|
||||||
|
name: rating
|
||||||
|
schema:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
- in: query
|
||||||
|
name: my_rate
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
- in: query
|
||||||
|
name: release_year
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
- in: query
|
||||||
|
name: release_season
|
||||||
|
schema:
|
||||||
|
$ref: '../schemas/enums/ReleaseSeason.yaml'
|
||||||
|
- in: query
|
||||||
|
name: limit
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
default: 10
|
||||||
|
- in: query
|
||||||
|
name: fields
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: all
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: List of user titles
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
data:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '../schemas/UserTitle.yaml'
|
||||||
|
cursor:
|
||||||
|
$ref: '../schemas/CursorObj.yaml'
|
||||||
|
required:
|
||||||
|
- data
|
||||||
|
- cursor
|
||||||
|
'204':
|
||||||
|
description: No titles found
|
||||||
|
'400':
|
||||||
|
description: Request params are not correct
|
||||||
|
'404':
|
||||||
|
description: User not found
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
|
|
||||||
|
post:
|
||||||
|
summary: Add a title to a user
|
||||||
|
description: User adding title to list af watched, status required
|
||||||
|
operationId: addUserTitle
|
||||||
|
parameters:
|
||||||
|
- name: user_id
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
description: ID of the user to assign the title to
|
||||||
|
example: 123
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- title_id
|
||||||
|
- status
|
||||||
|
properties:
|
||||||
|
title_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
status:
|
||||||
|
$ref: '../schemas/enums/UserTitleStatus.yaml'
|
||||||
|
rate:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: Title successfully added to user
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '../schemas/UserTitleMini.yaml'
|
||||||
|
'400':
|
||||||
|
description: Invalid request body (missing fields, invalid types, etc.)
|
||||||
|
'401':
|
||||||
|
description: Unauthorized — missing or invalid auth token
|
||||||
|
'403':
|
||||||
|
description: Forbidden — user not allowed to assign titles to this user
|
||||||
|
'404':
|
||||||
|
description: User or Title not found
|
||||||
|
'409':
|
||||||
|
description: Conflict — title already assigned to user (if applicable)
|
||||||
|
'500':
|
||||||
|
description: Internal server error
|
||||||
|
|
||||||
|
patch:
|
||||||
|
summary: Update a usertitle
|
||||||
|
description: User updating title list of watched
|
||||||
|
operationId: updateUserTitle
|
||||||
|
parameters:
|
||||||
|
- name: user_id
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
description: ID of the user to assign the title to
|
||||||
|
example: 123
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- title_id
|
||||||
|
properties:
|
||||||
|
title_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
status:
|
||||||
|
$ref: '../schemas/enums/UserTitleStatus.yaml'
|
||||||
|
rate:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: Title successfully updated
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '../schemas/UserTitleMini.yaml'
|
||||||
|
'400':
|
||||||
|
description: Invalid request body (missing fields, invalid types, etc.)
|
||||||
|
'401':
|
||||||
|
description: Unauthorized — missing or invalid auth token
|
||||||
|
'403':
|
||||||
|
description: Forbidden — user not allowed to update title
|
||||||
|
'404':
|
||||||
|
description: User or Title not found
|
||||||
|
'500':
|
||||||
|
description: Internal server error
|
||||||
103
api/paths/users-id.yaml
Normal file
103
api/paths/users-id.yaml
Normal file
|
|
@ -0,0 +1,103 @@
|
||||||
|
get:
|
||||||
|
summary: Get user info
|
||||||
|
operationId: getUsersId
|
||||||
|
parameters:
|
||||||
|
- in: path
|
||||||
|
name: user_id
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
- in: query
|
||||||
|
name: fields
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: all
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: User info
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '../schemas/User.yaml'
|
||||||
|
'404':
|
||||||
|
description: User not found
|
||||||
|
'400':
|
||||||
|
description: Request params are not correct
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
|
|
||||||
|
patch:
|
||||||
|
summary: Partially update a user account
|
||||||
|
description: |
|
||||||
|
Update selected user profile fields (excluding password).
|
||||||
|
Password updates must be done via the dedicated auth-service (`/auth/`).
|
||||||
|
Fields not provided in the request body remain unchanged.
|
||||||
|
operationId: updateUser
|
||||||
|
parameters:
|
||||||
|
- name: user_id
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
description: User ID (primary key)
|
||||||
|
example: 123
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
avatar_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
nullable: true
|
||||||
|
description: ID of the user avatar (references `images.id`); set to `null` to remove avatar
|
||||||
|
example: 42
|
||||||
|
mail:
|
||||||
|
type: string
|
||||||
|
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
|
||||||
|
nickname:
|
||||||
|
type: string
|
||||||
|
pattern: '^[a-zA-Z0-9_-]{3,16}$'
|
||||||
|
description: Username (alphanumeric + `_` or `-`, 3–16 chars)
|
||||||
|
maxLength: 16
|
||||||
|
minLength: 3
|
||||||
|
example: john_doe_43
|
||||||
|
disp_name:
|
||||||
|
type: string
|
||||||
|
description: Display name
|
||||||
|
maxLength: 32
|
||||||
|
example: John Smith
|
||||||
|
user_desc:
|
||||||
|
type: string
|
||||||
|
description: User description / bio
|
||||||
|
maxLength: 512
|
||||||
|
example: Just a curious developer.
|
||||||
|
additionalProperties: false
|
||||||
|
description: Only provided fields are updated. Omitted fields remain unchanged.
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: User updated successfully. Returns updated user representation (excluding sensitive fields).
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '../schemas/User.yaml'
|
||||||
|
'400':
|
||||||
|
description: Invalid input (e.g., validation failed, nickname/email conflict, malformed JSON)
|
||||||
|
'401':
|
||||||
|
description: Unauthorized — missing or invalid authentication token
|
||||||
|
'403':
|
||||||
|
description: Forbidden — user is not allowed to modify this resource (e.g., not own profile & no admin rights)
|
||||||
|
'404':
|
||||||
|
description: User not found
|
||||||
|
'409':
|
||||||
|
description: Conflict — e.g., requested `nickname` or `mail` already taken by another user
|
||||||
|
'422':
|
||||||
|
description: Unprocessable Entity — semantic errors not caught by schema (e.g., invalid `avatar_id`)
|
||||||
|
'500':
|
||||||
|
description: Unknown server error
|
||||||
9
api/schemas/CursorObj.yaml
Normal file
9
api/schemas/CursorObj.yaml
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
param:
|
||||||
|
type: string
|
||||||
10
api/schemas/Image.yaml
Normal file
10
api/schemas/Image.yaml
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
# id выпиливаем
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
storage_type:
|
||||||
|
$ref: './enums/StorageType.yaml'
|
||||||
|
image_path:
|
||||||
|
type: string
|
||||||
2
api/schemas/Review.yaml
Normal file
2
api/schemas/Review.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
type: object
|
||||||
|
additionalProperties: true
|
||||||
15
api/schemas/Studio.yaml
Normal file
15
api/schemas/Studio.yaml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- name
|
||||||
|
properties:
|
||||||
|
# id не нужен
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
poster:
|
||||||
|
$ref: ./Image.yaml
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
8
api/schemas/Tag.yaml
Normal file
8
api/schemas/Tag.yaml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
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: 少女
|
||||||
11
api/schemas/Tags.yaml
Normal file
11
api/schemas/Tags.yaml
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
type: array
|
||||||
|
description: Array of localized tags
|
||||||
|
items:
|
||||||
|
$ref: ./Tag.yaml
|
||||||
|
example:
|
||||||
|
- en: Shojo
|
||||||
|
ru: Сёдзё
|
||||||
|
ja: 少女
|
||||||
|
- en: Shounen
|
||||||
|
ru: Сёнен
|
||||||
|
ja: 少年
|
||||||
62
api/schemas/Title.yaml
Normal file
62
api/schemas/Title.yaml
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- title_names
|
||||||
|
- tags
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
description: Unique title ID (primary key)
|
||||||
|
example: 1
|
||||||
|
title_names:
|
||||||
|
type: object
|
||||||
|
description: Localized titles. Key = language (ISO 639-1), value = list of names
|
||||||
|
additionalProperties:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
example: Attack on Titan
|
||||||
|
minItems: 1
|
||||||
|
example:
|
||||||
|
- Attack on Titan
|
||||||
|
- AoT
|
||||||
|
example:
|
||||||
|
en:
|
||||||
|
- Attack on Titan
|
||||||
|
- AoT
|
||||||
|
ru:
|
||||||
|
- Атака титанов
|
||||||
|
- Титаны
|
||||||
|
ja:
|
||||||
|
- 進撃の巨人
|
||||||
|
studio:
|
||||||
|
$ref: ./Studio.yaml
|
||||||
|
tags:
|
||||||
|
$ref: ./Tags.yaml
|
||||||
|
poster:
|
||||||
|
$ref: ./Image.yaml
|
||||||
|
title_status:
|
||||||
|
$ref: ./enums/TitleStatus.yaml
|
||||||
|
rating:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
rating_count:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
release_year:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
release_season:
|
||||||
|
$ref: ./enums/ReleaseSeason.yaml
|
||||||
|
episodes_aired:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
episodes_all:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
episodes_len:
|
||||||
|
type: object
|
||||||
|
additionalProperties:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
8
api/schemas/TitleSort.yaml
Normal file
8
api/schemas/TitleSort.yaml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
type: string
|
||||||
|
description: Title sort order
|
||||||
|
default: id
|
||||||
|
enum:
|
||||||
|
- id
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- views
|
||||||
37
api/schemas/User.yaml
Normal file
37
api/schemas/User.yaml
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
description: Unique user ID (primary key)
|
||||||
|
example: 1
|
||||||
|
image:
|
||||||
|
$ref: '../schemas/Image.yaml'
|
||||||
|
mail:
|
||||||
|
type: string
|
||||||
|
format: email
|
||||||
|
description: User email
|
||||||
|
example: john.doe@example.com
|
||||||
|
nickname:
|
||||||
|
type: string
|
||||||
|
description: Username (alphanumeric + _ or -)
|
||||||
|
maxLength: 16
|
||||||
|
example: john_doe_42
|
||||||
|
disp_name:
|
||||||
|
type: string
|
||||||
|
description: Display name
|
||||||
|
maxLength: 32
|
||||||
|
example: John Doe
|
||||||
|
user_desc:
|
||||||
|
type: string
|
||||||
|
description: User description
|
||||||
|
maxLength: 512
|
||||||
|
example: Just a regular user.
|
||||||
|
creation_date:
|
||||||
|
type: string
|
||||||
|
format: date-time
|
||||||
|
description: Timestamp when the user was created
|
||||||
|
example: '2025-10-10T23:45:47.908073Z'
|
||||||
|
required:
|
||||||
|
- user_id
|
||||||
|
- nickname
|
||||||
22
api/schemas/UserTitle.yaml
Normal file
22
api/schemas/UserTitle.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- user_id
|
||||||
|
- title_id
|
||||||
|
- status
|
||||||
|
properties:
|
||||||
|
user_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
title:
|
||||||
|
$ref: ./Title.yaml
|
||||||
|
status:
|
||||||
|
$ref: ./enums/UserTitleStatus.yaml
|
||||||
|
rate:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
review_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
ctime:
|
||||||
|
type: string
|
||||||
|
format: date-time
|
||||||
23
api/schemas/UserTitleMini.yaml
Normal file
23
api/schemas/UserTitleMini.yaml
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- user_id
|
||||||
|
- title_id
|
||||||
|
- status
|
||||||
|
properties:
|
||||||
|
user_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
title_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
status:
|
||||||
|
$ref: ./enums/UserTitleStatus.yaml
|
||||||
|
rate:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
review_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
ctime:
|
||||||
|
type: string
|
||||||
|
format: date-time
|
||||||
26
api/schemas/_index.yaml
Normal file
26
api/schemas/_index.yaml
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
CursorObj:
|
||||||
|
$ref: "./CursorObj.yaml"
|
||||||
|
TitleSort:
|
||||||
|
$ref: "./TitleSort.yaml"
|
||||||
|
Image:
|
||||||
|
$ref: "./Image.yaml"
|
||||||
|
TitleStatus:
|
||||||
|
$ref: "./enums/TitleStatus.yaml"
|
||||||
|
ReleaseSeason:
|
||||||
|
$ref: "./enums/ReleaseSeason.yaml"
|
||||||
|
UserTitleStatus:
|
||||||
|
$ref: "./enums/UserTitleStatus.yaml"
|
||||||
|
Review:
|
||||||
|
$ref: "./Review.yaml"
|
||||||
|
Tag:
|
||||||
|
$ref: "./Tag.yaml"
|
||||||
|
Tags:
|
||||||
|
$ref: "./Tags.yaml"
|
||||||
|
Studio:
|
||||||
|
$ref: "./Studio.yaml"
|
||||||
|
Title:
|
||||||
|
$ref: "./Title.yaml"
|
||||||
|
User:
|
||||||
|
$ref: "./User.yaml"
|
||||||
|
UserTitle:
|
||||||
|
$ref: "./UserTitle.yaml"
|
||||||
7
api/schemas/enums/ReleaseSeason.yaml
Normal file
7
api/schemas/enums/ReleaseSeason.yaml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
type: string
|
||||||
|
description: Title release season
|
||||||
|
enum:
|
||||||
|
- winter
|
||||||
|
- spring
|
||||||
|
- summer
|
||||||
|
- fall
|
||||||
5
api/schemas/enums/StorageType.yaml
Normal file
5
api/schemas/enums/StorageType.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
type: string
|
||||||
|
description: Image storage type
|
||||||
|
enum:
|
||||||
|
- s3
|
||||||
|
- local
|
||||||
6
api/schemas/enums/TitleStatus.yaml
Normal file
6
api/schemas/enums/TitleStatus.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
type: string
|
||||||
|
description: Title status
|
||||||
|
enum:
|
||||||
|
- finished
|
||||||
|
- ongoing
|
||||||
|
- planned
|
||||||
7
api/schemas/enums/UserTitleStatus.yaml
Normal file
7
api/schemas/enums/UserTitleStatus.yaml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
type: string
|
||||||
|
description: User's title status
|
||||||
|
enum:
|
||||||
|
- finished
|
||||||
|
- planned
|
||||||
|
- dropped
|
||||||
|
- in-progress
|
||||||
26
api/schemas/updateUser.yaml
Normal file
26
api/schemas/updateUser.yaml
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
avatar_id:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
nullable: true
|
||||||
|
description: ID of the user avatar (references `images.id`); set to `null` to remove avatar
|
||||||
|
example: 42
|
||||||
|
mail:
|
||||||
|
type: string
|
||||||
|
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
|
||||||
|
disp_name:
|
||||||
|
type: string
|
||||||
|
description: Display name
|
||||||
|
maxLength: 32
|
||||||
|
example: John Smith
|
||||||
|
user_desc:
|
||||||
|
type: string
|
||||||
|
description: User description / bio
|
||||||
|
maxLength: 512
|
||||||
|
example: Just a curious developer.
|
||||||
|
additionalProperties: false
|
||||||
|
description: Only provided fields are updated. Omitted fields remain unchanged.
|
||||||
|
|
@ -3,6 +3,9 @@ info:
|
||||||
title: Auth Service
|
title: Auth Service
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
|
|
||||||
|
servers:
|
||||||
|
- url: /auth
|
||||||
|
|
||||||
paths:
|
paths:
|
||||||
/auth/sign-up:
|
/auth/sign-up:
|
||||||
post:
|
post:
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,18 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
|
|
||||||
|
nyanimedb-auth:
|
||||||
|
image: meowgit.nekoea.red/nihonium/nyanimedb-auth:latest
|
||||||
|
container_name: nyanimedb-auth
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
LOG_LEVEL: ${LOG_LEVEL}
|
||||||
|
DATABASE_URL: ${DATABASE_URL}
|
||||||
|
ports:
|
||||||
|
- "8082:8082"
|
||||||
|
depends_on:
|
||||||
|
- postgres
|
||||||
|
|
||||||
nyanimedb-frontend:
|
nyanimedb-frontend:
|
||||||
image: meowgit.nekoea.red/nihonium/nyanimedb-frontend:latest
|
image: meowgit.nekoea.red/nihonium/nyanimedb-frontend:latest
|
||||||
container_name: nyanimedb-frontend
|
container_name: nyanimedb-frontend
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
npx openapi-typescript-codegen --input ..\..\api\openapi.yaml --output ./src/api --client axios
|
npx openapi-typescript-codegen --input ..\..\api\openapi.yaml --output ./src/api --client axios --useUnionTypes
|
||||||
oapi-codegen --config=api/oapi-codegen.yaml .\api\openapi.yaml
|
oapi-codegen --config=api/oapi-codegen.yaml .\api\openapi.yaml
|
||||||
sqlc generate -f .\sql\sqlc.yaml
|
sqlc generate -f .\sql\sqlc.yaml
|
||||||
5
go.mod
5
go.mod
|
|
@ -9,6 +9,10 @@ require (
|
||||||
github.com/jackc/pgx/v5 v5.7.6
|
github.com/jackc/pgx/v5 v5.7.6
|
||||||
github.com/oapi-codegen/runtime v1.1.2
|
github.com/oapi-codegen/runtime v1.1.2
|
||||||
github.com/pelletier/go-toml/v2 v2.2.4
|
github.com/pelletier/go-toml/v2 v2.2.4
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
github.com/sirupsen/logrus v1.9.3
|
||||||
|
>>>>>>> front
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
|
@ -26,6 +30,7 @@ require (
|
||||||
github.com/google/uuid v1.5.0 // indirect
|
github.com/google/uuid v1.5.0 // indirect
|
||||||
github.com/jackc/pgpassfile v1.0.0 // indirect
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||||||
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
||||||
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
||||||
github.com/json-iterator/go v1.1.12 // indirect
|
github.com/json-iterator/go v1.1.12 // indirect
|
||||||
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
||||||
github.com/leodido/go-urn v1.4.0 // indirect
|
github.com/leodido/go-urn v1.4.0 // indirect
|
||||||
|
|
|
||||||
3
go.sum
3
go.sum
|
|
@ -70,6 +70,8 @@ github.com/quic-go/qpack v0.5.1 h1:giqksBPnT/HDtZ6VhtFKgoLOWmlyo9Ei6u9PqzIMbhI=
|
||||||
github.com/quic-go/qpack v0.5.1/go.mod h1:+PC4XFrEskIVkcLzpEkbLqq1uCoxPhQuvK5rH1ZgaEg=
|
github.com/quic-go/qpack v0.5.1/go.mod h1:+PC4XFrEskIVkcLzpEkbLqq1uCoxPhQuvK5rH1ZgaEg=
|
||||||
github.com/quic-go/quic-go v0.54.0 h1:6s1YB9QotYI6Ospeiguknbp2Znb/jZYjZLRXn9kMQBg=
|
github.com/quic-go/quic-go v0.54.0 h1:6s1YB9QotYI6Ospeiguknbp2Znb/jZYjZLRXn9kMQBg=
|
||||||
github.com/quic-go/quic-go v0.54.0/go.mod h1:e68ZEaCdyviluZmy44P6Iey98v/Wfz6HCjQEm+l8zTY=
|
github.com/quic-go/quic-go v0.54.0/go.mod h1:e68ZEaCdyviluZmy44P6Iey98v/Wfz6HCjQEm+l8zTY=
|
||||||
|
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
|
||||||
|
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
||||||
github.com/spkg/bom v0.0.0-20160624110644-59b7046e48ad/go.mod h1:qLr4V1qq6nMqFKkMo8ZTx3f+BZEkzsRUY10Xsm2mwU0=
|
github.com/spkg/bom v0.0.0-20160624110644-59b7046e48ad/go.mod h1:qLr4V1qq6nMqFKkMo8ZTx3f+BZEkzsRUY10Xsm2mwU0=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
||||||
|
|
@ -97,6 +99,7 @@ golang.org/x/net v0.42.0 h1:jzkYrhi3YQWD6MLBJcsklgQsoAcw89EcZbJw8Z614hs=
|
||||||
golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8=
|
golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8=
|
||||||
golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw=
|
golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw=
|
||||||
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
|
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
|
||||||
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
|
golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
|
||||||
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
|
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
|
||||||
|
|
|
||||||
151
modules/backend/handlers/common.go
Normal file
151
modules/backend/handlers/common.go
Normal file
|
|
@ -0,0 +1,151 @@
|
||||||
|
package handlers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
oapi "nyanimedb/api"
|
||||||
|
sqlc "nyanimedb/sql"
|
||||||
|
"strconv"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Server struct {
|
||||||
|
db *sqlc.Queries
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewServer(db *sqlc.Queries) Server {
|
||||||
|
return Server{db: db}
|
||||||
|
}
|
||||||
|
|
||||||
|
func sql2StorageType(s *sqlc.StorageTypeT) (*oapi.ImageStorageType, error) {
|
||||||
|
if s == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
var t oapi.ImageStorageType
|
||||||
|
switch *s {
|
||||||
|
case sqlc.StorageTypeTLocal:
|
||||||
|
t = oapi.Local
|
||||||
|
case sqlc.StorageTypeTS3:
|
||||||
|
t = oapi.S3
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unexpected storage type: %s", *s)
|
||||||
|
}
|
||||||
|
return &t, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s Server) mapTitle(ctx context.Context, title sqlc.GetTitleByIDRow) (oapi.Title, error) {
|
||||||
|
|
||||||
|
oapi_title := oapi.Title{
|
||||||
|
EpisodesAired: title.EpisodesAired,
|
||||||
|
EpisodesAll: title.EpisodesAll,
|
||||||
|
// EpisodesLen: &episodes_lens,
|
||||||
|
Id: title.ID,
|
||||||
|
// Poster: &oapi_image,
|
||||||
|
Rating: title.Rating,
|
||||||
|
RatingCount: title.RatingCount,
|
||||||
|
// ReleaseSeason: &release_season,
|
||||||
|
ReleaseYear: title.ReleaseYear,
|
||||||
|
// Studio: &oapi_studio,
|
||||||
|
// Tags: oapi_tag_names,
|
||||||
|
// TitleNames: title_names,
|
||||||
|
// TitleStatus: oapi_status,
|
||||||
|
// AdditionalProperties:
|
||||||
|
}
|
||||||
|
|
||||||
|
title_names := make(map[string][]string, 0)
|
||||||
|
err := json.Unmarshal(title.TitleNames, &title_names)
|
||||||
|
if err != nil {
|
||||||
|
return oapi.Title{}, fmt.Errorf("unmarshal TitleNames: %v", err)
|
||||||
|
}
|
||||||
|
oapi_title.TitleNames = title_names
|
||||||
|
|
||||||
|
if len(title.EpisodesLen) > 0 {
|
||||||
|
episodes_lens := make(map[string]float64, 0)
|
||||||
|
err = json.Unmarshal(title.EpisodesLen, &episodes_lens)
|
||||||
|
if err != nil {
|
||||||
|
return oapi.Title{}, fmt.Errorf("unmarshal EpisodesLen: %v", err)
|
||||||
|
}
|
||||||
|
oapi_title.EpisodesLen = &episodes_lens
|
||||||
|
}
|
||||||
|
|
||||||
|
oapi_tag_names := make(oapi.Tags, 0)
|
||||||
|
err = json.Unmarshal(title.TagNames, &oapi_tag_names)
|
||||||
|
if err != nil {
|
||||||
|
return oapi.Title{}, fmt.Errorf("unmarshalling title_tag: %v", err)
|
||||||
|
}
|
||||||
|
oapi_title.Tags = oapi_tag_names
|
||||||
|
|
||||||
|
var oapi_studio oapi.Studio
|
||||||
|
if title.StudioName != nil {
|
||||||
|
oapi_studio.Name = *title.StudioName
|
||||||
|
}
|
||||||
|
if title.StudioID != 0 {
|
||||||
|
oapi_studio.Id = title.StudioID
|
||||||
|
oapi_studio.Description = title.StudioDesc
|
||||||
|
if title.StudioIllustID != nil {
|
||||||
|
oapi_studio.Poster = &oapi.Image{}
|
||||||
|
oapi_studio.Poster.Id = title.StudioIllustID
|
||||||
|
oapi_studio.Poster.ImagePath = title.StudioImagePath
|
||||||
|
|
||||||
|
s, err := sql2StorageType(title.StudioStorageType)
|
||||||
|
if err != nil {
|
||||||
|
return oapi.Title{}, fmt.Errorf("mapTitle, studio storage type: %v", err)
|
||||||
|
}
|
||||||
|
oapi_studio.Poster.StorageType = s
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
oapi_title.Studio = &oapi_studio
|
||||||
|
|
||||||
|
var oapi_image oapi.Image
|
||||||
|
|
||||||
|
if title.PosterID != nil {
|
||||||
|
oapi_image.Id = title.PosterID
|
||||||
|
oapi_image.ImagePath = title.TitleImagePath
|
||||||
|
s, err := sql2StorageType(title.TitleStorageType)
|
||||||
|
if err != nil {
|
||||||
|
return oapi.Title{}, fmt.Errorf("mapTitle, title starage type: %v", err)
|
||||||
|
}
|
||||||
|
oapi_image.StorageType = s
|
||||||
|
}
|
||||||
|
oapi_title.Poster = &oapi_image
|
||||||
|
|
||||||
|
var release_season oapi.ReleaseSeason
|
||||||
|
if title.ReleaseSeason != nil {
|
||||||
|
release_season = oapi.ReleaseSeason(*title.ReleaseSeason)
|
||||||
|
}
|
||||||
|
oapi_title.ReleaseSeason = &release_season
|
||||||
|
|
||||||
|
oapi_status, err := TitleStatus2oapi(&title.TitleStatus)
|
||||||
|
if err != nil {
|
||||||
|
return oapi.Title{}, fmt.Errorf("TitleStatus2oapi: %v", err)
|
||||||
|
}
|
||||||
|
oapi_title.TitleStatus = oapi_status
|
||||||
|
|
||||||
|
return oapi_title, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseInt64(s string) (int64, error) {
|
||||||
|
i, err := strconv.ParseInt(s, 10, 64)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func TitleStatus2Sqlc(s *[]oapi.TitleStatus) ([]sqlc.TitleStatusT, error) {
|
||||||
|
var sqlc_status []sqlc.TitleStatusT
|
||||||
|
if s == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
for _, t := range *s {
|
||||||
|
switch t {
|
||||||
|
case oapi.TitleStatusFinished:
|
||||||
|
sqlc_status = append(sqlc_status, sqlc.TitleStatusTFinished)
|
||||||
|
case oapi.TitleStatusOngoing:
|
||||||
|
sqlc_status = append(sqlc_status, sqlc.TitleStatusTOngoing)
|
||||||
|
case oapi.TitleStatusPlanned:
|
||||||
|
sqlc_status = append(sqlc_status, sqlc.TitleStatusTPlanned)
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unexpected tittle status: %s", t)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return sqlc_status, nil
|
||||||
|
}
|
||||||
156
modules/backend/handlers/cursor.go
Normal file
156
modules/backend/handlers/cursor.go
Normal file
|
|
@ -0,0 +1,156 @@
|
||||||
|
package handlers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/base64"
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"reflect"
|
||||||
|
"strconv"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ParseCursorInto parses an opaque base64 cursor and injects values into target struct.
|
||||||
|
//
|
||||||
|
// Supported sort types:
|
||||||
|
// - "id" → sets CursorID (must be *int64)
|
||||||
|
// - "year" → sets CursorID (*int64) + CursorYear (*int32)
|
||||||
|
// - "rating" → sets CursorID (*int64) + CursorRating (*float64)
|
||||||
|
//
|
||||||
|
// Target struct may have any subset of these fields (e.g. only CursorID).
|
||||||
|
// Unknown fields are ignored. Missing fields → values are dropped (safe).
|
||||||
|
//
|
||||||
|
// Returns error if cursor is invalid or inconsistent with sort_by.
|
||||||
|
func ParseCursorInto(sortBy, cursorStr string, target any) error {
|
||||||
|
if cursorStr == "" {
|
||||||
|
return nil // no cursor → nothing to do
|
||||||
|
}
|
||||||
|
|
||||||
|
// 1. Decode cursor
|
||||||
|
payload, err := decodeCursor(cursorStr)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. Extract ID (required for all types)
|
||||||
|
id, err := extractInt64(payload, "id")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cursor: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. Get reflect value of target (must be ptr to struct)
|
||||||
|
v := reflect.ValueOf(target)
|
||||||
|
if v.Kind() != reflect.Pointer || v.IsNil() {
|
||||||
|
return fmt.Errorf("target must be non-nil pointer to struct")
|
||||||
|
}
|
||||||
|
v = v.Elem()
|
||||||
|
if v.Kind() != reflect.Struct {
|
||||||
|
return fmt.Errorf("target must be pointer to struct")
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. Helper: set field if exists and compatible
|
||||||
|
setField := func(fieldName string, value any) {
|
||||||
|
f := v.FieldByName(fieldName)
|
||||||
|
if !f.IsValid() || !f.CanSet() {
|
||||||
|
return // field not found or unexported
|
||||||
|
}
|
||||||
|
ft := f.Type()
|
||||||
|
vv := reflect.ValueOf(value)
|
||||||
|
|
||||||
|
// Case: field is *T, value is T → wrap in pointer
|
||||||
|
if ft.Kind() == reflect.Pointer {
|
||||||
|
elemType := ft.Elem()
|
||||||
|
if vv.Type().AssignableTo(elemType) {
|
||||||
|
ptr := reflect.New(elemType)
|
||||||
|
ptr.Elem().Set(vv)
|
||||||
|
f.Set(ptr)
|
||||||
|
}
|
||||||
|
// nil → leave as zero (nil pointer)
|
||||||
|
} else if vv.Type().AssignableTo(ft) {
|
||||||
|
f.Set(vv)
|
||||||
|
}
|
||||||
|
// else: type mismatch → silently skip (safe)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 5. Dispatch by sort type
|
||||||
|
switch sortBy {
|
||||||
|
case "id":
|
||||||
|
setField("CursorID", id)
|
||||||
|
|
||||||
|
case "year":
|
||||||
|
setField("CursorID", id)
|
||||||
|
param, err := extractString(payload, "param")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cursor year: %w", err)
|
||||||
|
}
|
||||||
|
year, err := strconv.Atoi(param)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cursor year: param must be integer, got %q", param)
|
||||||
|
}
|
||||||
|
setField("CursorYear", int32(year)) // or int, depending on your schema
|
||||||
|
|
||||||
|
case "rating":
|
||||||
|
setField("CursorID", id)
|
||||||
|
param, err := extractString(payload, "param")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cursor rating: %w", err)
|
||||||
|
}
|
||||||
|
rating, err := strconv.ParseFloat(param, 64)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cursor rating: param must be float, got %q", param)
|
||||||
|
}
|
||||||
|
setField("CursorRating", rating)
|
||||||
|
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("unsupported sort_by: %q", sortBy)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- helpers ---
|
||||||
|
func decodeCursor(cursorStr string) (map[string]any, error) {
|
||||||
|
data, err := base64.RawURLEncoding.DecodeString(cursorStr)
|
||||||
|
if err != nil {
|
||||||
|
data, err = base64.StdEncoding.DecodeString(cursorStr)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("invalid base64 cursor")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var m map[string]any
|
||||||
|
if err := json.Unmarshal(data, &m); err != nil {
|
||||||
|
return nil, fmt.Errorf("invalid cursor JSON: %w", err)
|
||||||
|
}
|
||||||
|
return m, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func extractInt64(m map[string]any, key string) (int64, error) {
|
||||||
|
v, ok := m[key]
|
||||||
|
if !ok {
|
||||||
|
return 0, fmt.Errorf("missing %q", key)
|
||||||
|
}
|
||||||
|
switch x := v.(type) {
|
||||||
|
case float64:
|
||||||
|
if x == float64(int64(x)) {
|
||||||
|
return int64(x), nil
|
||||||
|
}
|
||||||
|
case string:
|
||||||
|
i, err := strconv.ParseInt(x, 10, 64)
|
||||||
|
if err == nil {
|
||||||
|
return i, nil
|
||||||
|
}
|
||||||
|
case int64, int, int32:
|
||||||
|
return reflect.ValueOf(x).Int(), nil
|
||||||
|
}
|
||||||
|
return 0, fmt.Errorf("%q must be integer", key)
|
||||||
|
}
|
||||||
|
|
||||||
|
func extractString(m map[string]any, key string) (string, error) {
|
||||||
|
v, ok := m[key]
|
||||||
|
if !ok {
|
||||||
|
return "", fmt.Errorf("missing %q", key)
|
||||||
|
}
|
||||||
|
s, ok := v.(string)
|
||||||
|
if !ok {
|
||||||
|
return "", fmt.Errorf("%q must be string", key)
|
||||||
|
}
|
||||||
|
return s, nil
|
||||||
|
}
|
||||||
262
modules/backend/handlers/titles.go
Normal file
262
modules/backend/handlers/titles.go
Normal file
|
|
@ -0,0 +1,262 @@
|
||||||
|
package handlers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
oapi "nyanimedb/api"
|
||||||
|
sqlc "nyanimedb/sql"
|
||||||
|
"strconv"
|
||||||
|
|
||||||
|
"github.com/jackc/pgx/v5"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Word2Sqlc(s *string) *string {
|
||||||
|
if s == nil || *s == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
func TitleStatus2oapi(s *sqlc.TitleStatusT) (*oapi.TitleStatus, error) {
|
||||||
|
if s == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
var t oapi.TitleStatus
|
||||||
|
switch *s {
|
||||||
|
case sqlc.TitleStatusTFinished:
|
||||||
|
t = oapi.TitleStatusFinished
|
||||||
|
case sqlc.TitleStatusTOngoing:
|
||||||
|
t = oapi.TitleStatusOngoing
|
||||||
|
case sqlc.TitleStatusTPlanned:
|
||||||
|
t = oapi.TitleStatusPlanned
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unexpected tittle status: %s", *s)
|
||||||
|
}
|
||||||
|
return &t, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ReleaseSeason2sqlc(s *oapi.ReleaseSeason) (*sqlc.ReleaseSeasonT, error) {
|
||||||
|
if s == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
var t sqlc.ReleaseSeasonT
|
||||||
|
switch *s {
|
||||||
|
case oapi.Winter:
|
||||||
|
t = sqlc.ReleaseSeasonTWinter
|
||||||
|
case oapi.Spring:
|
||||||
|
t = sqlc.ReleaseSeasonTSpring
|
||||||
|
case oapi.Summer:
|
||||||
|
t = sqlc.ReleaseSeasonTSummer
|
||||||
|
case oapi.Fall:
|
||||||
|
t = sqlc.ReleaseSeasonTFall
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unexpected release season: %s", *s)
|
||||||
|
}
|
||||||
|
return &t, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s Server) GetTagsByTitleId(ctx context.Context, id int64) (oapi.Tags, error) {
|
||||||
|
|
||||||
|
sqlc_title_tags, err := s.db.GetTitleTags(ctx, id)
|
||||||
|
if err != nil {
|
||||||
|
if err == pgx.ErrNoRows {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
return nil, fmt.Errorf("query GetTitleTags: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
oapi_tag_names := make(oapi.Tags, 1)
|
||||||
|
for _, title_tag := range sqlc_title_tags {
|
||||||
|
oapi_tag_name := make(map[string]string, 1)
|
||||||
|
err = json.Unmarshal(title_tag, &oapi_tag_name)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("unmarshalling title_tag: %v", err)
|
||||||
|
}
|
||||||
|
oapi_tag_names = append(oapi_tag_names, oapi_tag_name)
|
||||||
|
}
|
||||||
|
|
||||||
|
return oapi_tag_names, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// func (s Server) GetImage(ctx context.Context, id int64) (*oapi.Image, error) {
|
||||||
|
|
||||||
|
// var oapi_image oapi.Image
|
||||||
|
|
||||||
|
// sqlc_image, err := s.db.GetImageByID(ctx, id)
|
||||||
|
// if err != nil {
|
||||||
|
// if err == pgx.ErrNoRows {
|
||||||
|
// return nil, nil //todo: error reference in db
|
||||||
|
// }
|
||||||
|
// return &oapi_image, fmt.Errorf("query GetImageByID: %v", err)
|
||||||
|
// }
|
||||||
|
|
||||||
|
// //can cast and dont use brain cause all this fields required in image table
|
||||||
|
// oapi_image.Id = &sqlc_image.ID
|
||||||
|
// oapi_image.ImagePath = &sqlc_image.ImagePath
|
||||||
|
// storageTypeStr := string(sqlc_image.StorageType)
|
||||||
|
// oapi_image.StorageType = string(storageTypeStr)
|
||||||
|
|
||||||
|
// return &oapi_image, nil
|
||||||
|
// }
|
||||||
|
|
||||||
|
// func (s Server) GetStudio(ctx context.Context, id int64) (*oapi.Studio, error) {
|
||||||
|
|
||||||
|
// var oapi_studio oapi.Studio
|
||||||
|
|
||||||
|
// sqlc_studio, err := s.db.GetStudioByID(ctx, id)
|
||||||
|
// if err != nil {
|
||||||
|
// if err == pgx.ErrNoRows {
|
||||||
|
// return nil, nil
|
||||||
|
// }
|
||||||
|
// return &oapi_studio, fmt.Errorf("query GetStudioByID: %v", err)
|
||||||
|
// }
|
||||||
|
|
||||||
|
// oapi_studio.Id = sqlc_studio.ID
|
||||||
|
// oapi_studio.Name = sqlc_studio.StudioName
|
||||||
|
// oapi_studio.Description = sqlc_studio.StudioDesc
|
||||||
|
|
||||||
|
// if sqlc_studio.IllustID == nil {
|
||||||
|
// return &oapi_studio, nil
|
||||||
|
// }
|
||||||
|
// oapi_illust, err := s.GetImage(ctx, *sqlc_studio.IllustID)
|
||||||
|
// if err != nil {
|
||||||
|
// return &oapi_studio, fmt.Errorf("GetImage: %v", err)
|
||||||
|
// }
|
||||||
|
// if oapi_illust != nil {
|
||||||
|
// oapi_studio.Poster = oapi_illust
|
||||||
|
// }
|
||||||
|
|
||||||
|
// return &oapi_studio, nil
|
||||||
|
// }
|
||||||
|
|
||||||
|
func (s Server) GetTitlesTitleId(ctx context.Context, request oapi.GetTitlesTitleIdRequestObject) (oapi.GetTitlesTitleIdResponseObject, error) {
|
||||||
|
var oapi_title oapi.Title
|
||||||
|
|
||||||
|
sqlc_title, err := s.db.GetTitleByID(ctx, request.TitleId)
|
||||||
|
if err != nil {
|
||||||
|
if err == pgx.ErrNoRows {
|
||||||
|
return oapi.GetTitlesTitleId204Response{}, nil
|
||||||
|
}
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetTitlesTitleId500Response{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
oapi_title, err = s.mapTitle(ctx, sqlc_title)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetTitlesTitleId500Response{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return oapi.GetTitlesTitleId200JSONResponse(oapi_title), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s Server) GetTitles(ctx context.Context, request oapi.GetTitlesRequestObject) (oapi.GetTitlesResponseObject, error) {
|
||||||
|
opai_titles := make([]oapi.Title, 0)
|
||||||
|
|
||||||
|
word := Word2Sqlc(request.Params.Word)
|
||||||
|
|
||||||
|
season, err := ReleaseSeason2sqlc(request.Params.ReleaseSeason)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetTitles400Response{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
title_statuses, err := TitleStatus2Sqlc(request.Params.Status)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetTitles400Response{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
params := sqlc.SearchTitlesParams{
|
||||||
|
Word: word,
|
||||||
|
TitleStatuses: title_statuses,
|
||||||
|
Rating: request.Params.Rating,
|
||||||
|
ReleaseYear: request.Params.ReleaseYear,
|
||||||
|
ReleaseSeason: season,
|
||||||
|
Forward: true, // default
|
||||||
|
SortBy: "id", // default
|
||||||
|
Limit: request.Params.Limit,
|
||||||
|
}
|
||||||
|
|
||||||
|
if request.Params.SortForward != nil {
|
||||||
|
params.Forward = *request.Params.SortForward
|
||||||
|
}
|
||||||
|
if request.Params.Sort != nil {
|
||||||
|
params.SortBy = string(*request.Params.Sort)
|
||||||
|
if request.Params.Cursor != nil {
|
||||||
|
// here we set CursorYear CursorID CursorRating fields
|
||||||
|
err := ParseCursorInto(string(*request.Params.Sort), string(*request.Params.Cursor), ¶ms)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetTitles400Response{}, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// param = nil means it will not be used
|
||||||
|
titles, err := s.db.SearchTitles(ctx, params)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetTitles500Response{}, nil
|
||||||
|
}
|
||||||
|
if len(titles) == 0 {
|
||||||
|
return oapi.GetTitles204Response{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var new_cursor oapi.CursorObj
|
||||||
|
|
||||||
|
for _, title := range titles {
|
||||||
|
|
||||||
|
_title := sqlc.GetTitleByIDRow{
|
||||||
|
ID: title.ID,
|
||||||
|
// StudioID: title.StudioID,
|
||||||
|
PosterID: title.PosterID,
|
||||||
|
TitleStatus: title.TitleStatus,
|
||||||
|
Rating: title.Rating,
|
||||||
|
RatingCount: title.RatingCount,
|
||||||
|
ReleaseYear: title.ReleaseYear,
|
||||||
|
ReleaseSeason: title.ReleaseSeason,
|
||||||
|
Season: title.Season,
|
||||||
|
EpisodesAired: title.EpisodesAired,
|
||||||
|
EpisodesAll: title.EpisodesAll,
|
||||||
|
// EpisodesLen: title.EpisodesLen,
|
||||||
|
TitleStorageType: title.TitleStorageType,
|
||||||
|
TitleImagePath: title.TitleImagePath,
|
||||||
|
TitleNames: title.TitleNames,
|
||||||
|
TagNames: title.TagNames,
|
||||||
|
StudioName: title.StudioName,
|
||||||
|
// StudioIllustID: title.StudioIllustID,
|
||||||
|
// StudioDesc: title.StudioDesc,
|
||||||
|
// StudioStorageType: title.StudioStorageType,
|
||||||
|
// StudioImagePath: title.StudioImagePath,
|
||||||
|
}
|
||||||
|
|
||||||
|
// if title.TitleStorageType != nil {
|
||||||
|
// s := *title.TitleStorageType
|
||||||
|
// _title.TitleStorageType = string(s)
|
||||||
|
// }
|
||||||
|
|
||||||
|
t, err := s.mapTitle(ctx, _title)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetTitles500Response{}, nil
|
||||||
|
}
|
||||||
|
opai_titles = append(opai_titles, t)
|
||||||
|
|
||||||
|
new_cursor.Id = t.Id
|
||||||
|
if request.Params.Sort != nil {
|
||||||
|
switch string(*request.Params.Sort) {
|
||||||
|
case "year":
|
||||||
|
tmp := fmt.Sprint(*t.ReleaseYear)
|
||||||
|
new_cursor.Param = &tmp
|
||||||
|
case "rating":
|
||||||
|
tmp := strconv.FormatFloat(*t.Rating, 'f', -1, 64)
|
||||||
|
new_cursor.Param = &tmp
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return oapi.GetTitles200JSONResponse{Cursor: new_cursor, Data: opai_titles}, nil
|
||||||
|
}
|
||||||
|
|
@ -2,37 +2,50 @@ package handlers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
oapi "nyanimedb/api"
|
oapi "nyanimedb/api"
|
||||||
sqlc "nyanimedb/sql"
|
sqlc "nyanimedb/sql"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/jackc/pgx/v5"
|
"github.com/jackc/pgx/v5"
|
||||||
|
"github.com/jackc/pgx/v5/pgtype"
|
||||||
"github.com/oapi-codegen/runtime/types"
|
"github.com/oapi-codegen/runtime/types"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Server struct {
|
// type Server struct {
|
||||||
db *sqlc.Queries
|
// db *sqlc.Queries
|
||||||
}
|
// }
|
||||||
|
|
||||||
func NewServer(db *sqlc.Queries) Server {
|
// func NewServer(db *sqlc.Queries) Server {
|
||||||
return Server{db: db}
|
// return Server{db: db}
|
||||||
}
|
// }
|
||||||
|
|
||||||
func parseInt64(s string) (int32, error) {
|
// func parseInt64(s string) (int32, error) {
|
||||||
i, err := strconv.ParseInt(s, 10, 64)
|
// i, err := strconv.ParseInt(s, 10, 64)
|
||||||
return int32(i), err
|
// return int32(i), err
|
||||||
}
|
// }
|
||||||
|
|
||||||
func mapUser(u sqlc.GetUserByIDRow) oapi.User {
|
func mapUser(u sqlc.GetUserByIDRow) (oapi.User, error) {
|
||||||
|
i := oapi.Image{
|
||||||
|
Id: u.AvatarID,
|
||||||
|
ImagePath: u.ImagePath,
|
||||||
|
}
|
||||||
|
s, err := sql2StorageType(u.StorageType)
|
||||||
|
if err != nil {
|
||||||
|
return oapi.User{}, fmt.Errorf("mapUser, storage type: %v", err)
|
||||||
|
}
|
||||||
|
i.StorageType = s
|
||||||
return oapi.User{
|
return oapi.User{
|
||||||
AvatarId: u.AvatarID,
|
Image: &i,
|
||||||
CreationDate: u.CreationDate,
|
CreationDate: &u.CreationDate,
|
||||||
DispName: u.DispName,
|
DispName: u.DispName,
|
||||||
Id: &u.ID,
|
Id: &u.ID,
|
||||||
Mail: (*types.Email)(u.Mail),
|
Mail: StringToEmail(u.Mail),
|
||||||
Nickname: u.Nickname,
|
Nickname: u.Nickname,
|
||||||
UserDesc: u.UserDesc,
|
UserDesc: u.UserDesc,
|
||||||
}
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s Server) GetUsersUserId(ctx context.Context, req oapi.GetUsersUserIdRequestObject) (oapi.GetUsersUserIdResponseObject, error) {
|
func (s Server) GetUsersUserId(ctx context.Context, req oapi.GetUsersUserIdRequestObject) (oapi.GetUsersUserIdResponseObject, error) {
|
||||||
|
|
@ -40,12 +53,356 @@ func (s Server) GetUsersUserId(ctx context.Context, req oapi.GetUsersUserIdReque
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return oapi.GetUsersUserId404Response{}, nil
|
return oapi.GetUsersUserId404Response{}, nil
|
||||||
}
|
}
|
||||||
user, err := s.db.GetUserByID(context.TODO(), int64(userID))
|
_user, err := s.db.GetUserByID(context.TODO(), userID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == pgx.ErrNoRows {
|
if err == pgx.ErrNoRows {
|
||||||
return oapi.GetUsersUserId404Response{}, nil
|
return oapi.GetUsersUserId404Response{}, nil
|
||||||
}
|
}
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return oapi.GetUsersUserId200JSONResponse(mapUser(user)), nil
|
user, err := mapUser(_user)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetUsersUserId500Response{}, err
|
||||||
|
}
|
||||||
|
return oapi.GetUsersUserId200JSONResponse(user), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func sqlDate2oapi(p_date pgtype.Timestamptz) *time.Time {
|
||||||
|
if p_date.Valid {
|
||||||
|
t := p_date.Time
|
||||||
|
return &t
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// func UserTitleStatus2Sqlc(s *[]oapi.UserTitleStatus) (*SqlcUserStatus, error) {
|
||||||
|
// var sqlc_status SqlcUserStatus
|
||||||
|
// if s == nil {
|
||||||
|
// return &sqlc_status, nil
|
||||||
|
// }
|
||||||
|
// for _, t := range *s {
|
||||||
|
// switch t {
|
||||||
|
// case oapi.UserTitleStatusFinished:
|
||||||
|
// sqlc_status.finished = "finished"
|
||||||
|
// case oapi.UserTitleStatusDropped:
|
||||||
|
// sqlc_status.dropped = "dropped"
|
||||||
|
// case oapi.UserTitleStatusPlanned:
|
||||||
|
// sqlc_status.planned = "planned"
|
||||||
|
// case oapi.UserTitleStatusInProgress:
|
||||||
|
// sqlc_status.in_progress = "in-progress"
|
||||||
|
// default:
|
||||||
|
// return nil, fmt.Errorf("unexpected tittle status: %s", t)
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// return &sqlc_status, nil
|
||||||
|
// }
|
||||||
|
|
||||||
|
func sql2usertitlestatus(s sqlc.UsertitleStatusT) (oapi.UserTitleStatus, error) {
|
||||||
|
var status oapi.UserTitleStatus
|
||||||
|
|
||||||
|
switch s {
|
||||||
|
case sqlc.UsertitleStatusTFinished:
|
||||||
|
status = oapi.UserTitleStatusFinished
|
||||||
|
case sqlc.UsertitleStatusTDropped:
|
||||||
|
status = oapi.UserTitleStatusDropped
|
||||||
|
case sqlc.UsertitleStatusTPlanned:
|
||||||
|
status = oapi.UserTitleStatusPlanned
|
||||||
|
case sqlc.UsertitleStatusTInProgress:
|
||||||
|
status = oapi.UserTitleStatusInProgress
|
||||||
|
default:
|
||||||
|
return status, fmt.Errorf("unexpected tittle status: %s", s)
|
||||||
|
}
|
||||||
|
|
||||||
|
return status, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func UserTitleStatus2Sqlc(s *[]oapi.UserTitleStatus) ([]sqlc.UsertitleStatusT, error) {
|
||||||
|
var sqlc_status []sqlc.UsertitleStatusT
|
||||||
|
if s == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
for _, t := range *s {
|
||||||
|
switch t {
|
||||||
|
case oapi.UserTitleStatusFinished:
|
||||||
|
sqlc_status = append(sqlc_status, sqlc.UsertitleStatusTFinished)
|
||||||
|
case oapi.UserTitleStatusInProgress:
|
||||||
|
sqlc_status = append(sqlc_status, sqlc.UsertitleStatusTInProgress)
|
||||||
|
case oapi.UserTitleStatusDropped:
|
||||||
|
sqlc_status = append(sqlc_status, sqlc.UsertitleStatusTDropped)
|
||||||
|
case oapi.UserTitleStatusPlanned:
|
||||||
|
sqlc_status = append(sqlc_status, sqlc.UsertitleStatusTPlanned)
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unexpected tittle status: %s", t)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return sqlc_status, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func UserTitleStatus2Sqlc1(s *oapi.UserTitleStatus) (*sqlc.UsertitleStatusT, error) {
|
||||||
|
var sqlc_status sqlc.UsertitleStatusT = sqlc.UsertitleStatusTFinished
|
||||||
|
if s == nil {
|
||||||
|
return &sqlc_status, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
switch *s {
|
||||||
|
case oapi.UserTitleStatusFinished:
|
||||||
|
sqlc_status = sqlc.UsertitleStatusTFinished
|
||||||
|
case oapi.UserTitleStatusInProgress:
|
||||||
|
sqlc_status = sqlc.UsertitleStatusTInProgress
|
||||||
|
case oapi.UserTitleStatusDropped:
|
||||||
|
sqlc_status = sqlc.UsertitleStatusTDropped
|
||||||
|
case oapi.UserTitleStatusPlanned:
|
||||||
|
sqlc_status = sqlc.UsertitleStatusTPlanned
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unexpected tittle status: %s", *s)
|
||||||
|
}
|
||||||
|
|
||||||
|
return &sqlc_status, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s Server) mapUsertitle(ctx context.Context, t sqlc.SearchUserTitlesRow) (oapi.UserTitle, error) {
|
||||||
|
|
||||||
|
oapi_usertitle := oapi.UserTitle{
|
||||||
|
Ctime: &t.UserCtime,
|
||||||
|
Rate: t.UserRate,
|
||||||
|
ReviewId: t.ReviewID,
|
||||||
|
// Status: ,
|
||||||
|
// Title: ,
|
||||||
|
UserId: t.UserID,
|
||||||
|
}
|
||||||
|
|
||||||
|
status, err := sql2usertitlestatus(t.UsertitleStatus)
|
||||||
|
if err != nil {
|
||||||
|
return oapi_usertitle, fmt.Errorf("mapUsertitle: %v", err)
|
||||||
|
}
|
||||||
|
oapi_usertitle.Status = status
|
||||||
|
|
||||||
|
_title := sqlc.GetTitleByIDRow{
|
||||||
|
ID: t.ID,
|
||||||
|
// StudioID: title.StudioID,
|
||||||
|
PosterID: t.PosterID,
|
||||||
|
TitleStatus: t.TitleStatus,
|
||||||
|
Rating: t.Rating,
|
||||||
|
RatingCount: t.RatingCount,
|
||||||
|
ReleaseYear: t.ReleaseYear,
|
||||||
|
ReleaseSeason: t.ReleaseSeason,
|
||||||
|
Season: t.Season,
|
||||||
|
EpisodesAired: t.EpisodesAired,
|
||||||
|
EpisodesAll: t.EpisodesAll,
|
||||||
|
// EpisodesLen: title.EpisodesLen,
|
||||||
|
TitleStorageType: t.TitleStorageType,
|
||||||
|
TitleImagePath: t.TitleImagePath,
|
||||||
|
StudioName: t.StudioName,
|
||||||
|
TitleNames: t.TitleNames,
|
||||||
|
TagNames: t.TagNames,
|
||||||
|
// StudioIllustID: title.StudioIllustID,
|
||||||
|
// StudioDesc: title.StudioDesc,
|
||||||
|
// StudioStorageType: title.StudioStorageType,
|
||||||
|
// StudioImagePath: title.StudioImagePath,
|
||||||
|
}
|
||||||
|
|
||||||
|
oapi_title, err := s.mapTitle(ctx, _title)
|
||||||
|
if err != nil {
|
||||||
|
return oapi_usertitle, fmt.Errorf("mapUsertitle: %v", err)
|
||||||
|
}
|
||||||
|
oapi_usertitle.Title = &oapi_title
|
||||||
|
|
||||||
|
return oapi_usertitle, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s Server) GetUsersUserIdTitles(ctx context.Context, request oapi.GetUsersUserIdTitlesRequestObject) (oapi.GetUsersUserIdTitlesResponseObject, error) {
|
||||||
|
|
||||||
|
oapi_usertitles := make([]oapi.UserTitle, 0)
|
||||||
|
|
||||||
|
word := Word2Sqlc(request.Params.Word)
|
||||||
|
|
||||||
|
season, err := ReleaseSeason2sqlc(request.Params.ReleaseSeason)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetUsersUserIdTitles400Response{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// var statuses_sort []string
|
||||||
|
// if request.Params.Status != nil {
|
||||||
|
// for _, s := range *request.Params.Status {
|
||||||
|
// ss := string(s) // s type is alias for string
|
||||||
|
// statuses_sort = append(statuses_sort, ss)
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
watch_status, err := UserTitleStatus2Sqlc(request.Params.WatchStatus)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetUsersUserIdTitles400Response{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
title_statuses, err := TitleStatus2Sqlc(request.Params.Status)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetUsersUserIdTitles400Response{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
userID, err := parseInt64(request.UserId)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("get user titles: %v", err)
|
||||||
|
return oapi.GetUsersUserIdTitles404Response{}, err
|
||||||
|
}
|
||||||
|
params := sqlc.SearchUserTitlesParams{
|
||||||
|
UserID: userID,
|
||||||
|
Word: word,
|
||||||
|
TitleStatuses: title_statuses,
|
||||||
|
UsertitleStatuses: watch_status,
|
||||||
|
Rating: request.Params.Rating,
|
||||||
|
Rate: request.Params.MyRate,
|
||||||
|
ReleaseYear: request.Params.ReleaseYear,
|
||||||
|
ReleaseSeason: season,
|
||||||
|
Forward: true, // default
|
||||||
|
SortBy: "id", // default
|
||||||
|
Limit: request.Params.Limit,
|
||||||
|
}
|
||||||
|
|
||||||
|
if request.Params.SortForward != nil {
|
||||||
|
params.Forward = *request.Params.SortForward
|
||||||
|
}
|
||||||
|
if request.Params.Sort != nil {
|
||||||
|
params.SortBy = string(*request.Params.Sort)
|
||||||
|
if request.Params.Cursor != nil {
|
||||||
|
// here we set CursorYear CursorID CursorRating fields
|
||||||
|
err := ParseCursorInto(string(*request.Params.Sort), string(*request.Params.Cursor), ¶ms)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetUsersUserIdTitles400Response{}, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// param = nil means it will not be used
|
||||||
|
titles, err := s.db.SearchUserTitles(ctx, params)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetUsersUserIdTitles500Response{}, nil
|
||||||
|
}
|
||||||
|
if len(titles) == 0 {
|
||||||
|
return oapi.GetUsersUserIdTitles204Response{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var new_cursor oapi.CursorObj
|
||||||
|
|
||||||
|
for _, title := range titles {
|
||||||
|
|
||||||
|
t, err := s.mapUsertitle(ctx, title)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.GetUsersUserIdTitles500Response{}, nil
|
||||||
|
}
|
||||||
|
oapi_usertitles = append(oapi_usertitles, t)
|
||||||
|
|
||||||
|
new_cursor.Id = t.Title.Id
|
||||||
|
if request.Params.Sort != nil {
|
||||||
|
switch string(*request.Params.Sort) {
|
||||||
|
case "year":
|
||||||
|
tmp := fmt.Sprint(*t.Title.ReleaseYear)
|
||||||
|
new_cursor.Param = &tmp
|
||||||
|
case "rating":
|
||||||
|
tmp := strconv.FormatFloat(*t.Title.Rating, 'f', -1, 64) // падает
|
||||||
|
new_cursor.Param = &tmp
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return oapi.GetUsersUserIdTitles200JSONResponse{Cursor: new_cursor, Data: oapi_usertitles}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func EmailToStringPtr(e *types.Email) *string {
|
||||||
|
if e == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
s := string(*e)
|
||||||
|
return &s
|
||||||
|
}
|
||||||
|
|
||||||
|
func StringToEmail(e *string) *types.Email {
|
||||||
|
if e == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
s := types.Email(*e)
|
||||||
|
return &s
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateUser implements oapi.StrictServerInterface.
|
||||||
|
func (s Server) UpdateUser(ctx context.Context, request oapi.UpdateUserRequestObject) (oapi.UpdateUserResponseObject, error) {
|
||||||
|
|
||||||
|
params := sqlc.UpdateUserParams{
|
||||||
|
AvatarID: request.Body.AvatarId,
|
||||||
|
DispName: request.Body.DispName,
|
||||||
|
UserDesc: request.Body.UserDesc,
|
||||||
|
Mail: EmailToStringPtr(request.Body.Mail),
|
||||||
|
UserID: request.UserId,
|
||||||
|
}
|
||||||
|
|
||||||
|
user, err := s.db.UpdateUser(ctx, params)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.UpdateUser500Response{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
oapi_user := oapi.User{ // maybe its possible to make one sqlc type and use one map func iinstead of this shit
|
||||||
|
// AvatarId: user.AvatarID,
|
||||||
|
CreationDate: &user.CreationDate,
|
||||||
|
DispName: user.DispName,
|
||||||
|
Id: &user.ID,
|
||||||
|
Mail: StringToEmail(user.Mail),
|
||||||
|
Nickname: user.Nickname,
|
||||||
|
UserDesc: user.UserDesc,
|
||||||
|
}
|
||||||
|
|
||||||
|
return oapi.UpdateUser200JSONResponse(oapi_user), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s Server) AddUserTitle(ctx context.Context, request oapi.AddUserTitleRequestObject) (oapi.AddUserTitleResponseObject, error) {
|
||||||
|
//TODO: add review if exists
|
||||||
|
status, err := UserTitleStatus2Sqlc1(&request.Body.Status)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.AddUserTitle400Response{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
params := sqlc.InsertUserTitleParams{
|
||||||
|
UserID: request.UserId,
|
||||||
|
TitleID: request.Body.TitleId,
|
||||||
|
Status: *status,
|
||||||
|
Rate: request.Body.Rate,
|
||||||
|
ReviewID: request.Body.ReviewId,
|
||||||
|
}
|
||||||
|
|
||||||
|
user_title, err := s.db.InsertUserTitle(ctx, params)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.AddUserTitle500Response{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
oapi_status, err := sql2usertitlestatus(user_title.Status)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("%v", err)
|
||||||
|
return oapi.AddUserTitle500Response{}, nil
|
||||||
|
}
|
||||||
|
oapi_usertitle := struct {
|
||||||
|
Ctime *time.Time `json:"ctime,omitempty"`
|
||||||
|
Rate *int32 `json:"rate,omitempty"`
|
||||||
|
ReviewId *int64 `json:"review_id,omitempty"`
|
||||||
|
|
||||||
|
// Status User's title status
|
||||||
|
Status oapi.UserTitleStatus `json:"status"`
|
||||||
|
TitleId int64 `json:"title_id"`
|
||||||
|
UserId int64 `json:"user_id"`
|
||||||
|
}{
|
||||||
|
Ctime: &user_title.Ctime,
|
||||||
|
Rate: user_title.Rate,
|
||||||
|
ReviewId: user_title.ReviewID,
|
||||||
|
Status: oapi_status,
|
||||||
|
TitleId: user_title.TitleID,
|
||||||
|
UserId: user_title.UserID,
|
||||||
|
}
|
||||||
|
|
||||||
|
return oapi.AddUserTitle200JSONResponse(oapi_usertitle), nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ import (
|
||||||
|
|
||||||
"github.com/gin-contrib/cors"
|
"github.com/gin-contrib/cors"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"github.com/jackc/pgx/v5"
|
"github.com/jackc/pgx/v5/pgxpool"
|
||||||
"github.com/pelletier/go-toml/v2"
|
"github.com/pelletier/go-toml/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -31,17 +31,17 @@ func main() {
|
||||||
// log.Fatalf("Failed to init config: %v\n", err)
|
// log.Fatalf("Failed to init config: %v\n", err)
|
||||||
// }
|
// }
|
||||||
|
|
||||||
conn, err := pgx.Connect(context.Background(), os.Getenv("DATABASE_URL"))
|
pool, err := pgxpool.New(context.Background(), os.Getenv("DATABASE_URL"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(os.Stderr, "Unable to connect to database: %v\n", err)
|
fmt.Fprintf(os.Stderr, "Unable to connect to database: %v\n", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
defer conn.Close(context.Background())
|
defer pool.Close()
|
||||||
|
|
||||||
r := gin.Default()
|
r := gin.Default()
|
||||||
|
|
||||||
queries := sqlc.New(conn)
|
queries := sqlc.New(pool)
|
||||||
|
|
||||||
server := handlers.NewServer(queries)
|
server := handlers.NewServer(queries)
|
||||||
// r.LoadHTMLGlob("templates/*")
|
// r.LoadHTMLGlob("templates/*")
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
-- name: GetImageByID :one
|
-- name: GetImageByID :one
|
||||||
SELECT id, storage_type, image_path
|
SELECT id, storage_type, image_path
|
||||||
FROM images
|
FROM images
|
||||||
WHERE id = $1;
|
WHERE id = sqlc.arg('illust_id')::bigint;
|
||||||
|
|
||||||
-- name: CreateImage :one
|
-- name: CreateImage :one
|
||||||
INSERT INTO images (storage_type, image_path)
|
INSERT INTO images (storage_type, image_path)
|
||||||
|
|
@ -9,9 +9,53 @@ VALUES ($1, $2)
|
||||||
RETURNING id, storage_type, image_path;
|
RETURNING id, storage_type, image_path;
|
||||||
|
|
||||||
-- name: GetUserByID :one
|
-- name: GetUserByID :one
|
||||||
SELECT id, avatar_id, mail, nickname, disp_name, user_desc, creation_date
|
SELECT
|
||||||
FROM users
|
t.id as id,
|
||||||
WHERE id = $1;
|
t.avatar_id as avatar_id,
|
||||||
|
t.mail as mail,
|
||||||
|
t.nickname as nickname,
|
||||||
|
t.disp_name as disp_name,
|
||||||
|
t.user_desc as user_desc,
|
||||||
|
t.creation_date as creation_date,
|
||||||
|
i.storage_type as storage_type,
|
||||||
|
i.image_path as image_path
|
||||||
|
FROM users as t
|
||||||
|
LEFT JOIN images as i ON (t.avatar_id = i.id)
|
||||||
|
WHERE t.id = sqlc.arg('id')::bigint;
|
||||||
|
|
||||||
|
|
||||||
|
-- name: GetStudioByID :one
|
||||||
|
SELECT *
|
||||||
|
FROM studios
|
||||||
|
WHERE id = sqlc.arg('studio_id')::bigint;
|
||||||
|
|
||||||
|
-- name: InsertStudio :one
|
||||||
|
INSERT INTO studios (studio_name, illust_id, studio_desc)
|
||||||
|
VALUES (
|
||||||
|
sqlc.arg('studio_name')::text,
|
||||||
|
sqlc.narg('illust_id')::bigint,
|
||||||
|
sqlc.narg('studio_desc')::text)
|
||||||
|
RETURNING id, studio_name, illust_id, studio_desc;
|
||||||
|
|
||||||
|
-- name: GetTitleTags :many
|
||||||
|
SELECT
|
||||||
|
tag_names
|
||||||
|
FROM tags as g
|
||||||
|
JOIN title_tags as t ON(t.tag_id = g.id)
|
||||||
|
WHERE t.title_id = sqlc.arg('title_id')::bigint;
|
||||||
|
|
||||||
|
-- name: InsertTitleTags :one
|
||||||
|
INSERT INTO title_tags (title_id, tag_id)
|
||||||
|
VALUES (
|
||||||
|
sqlc.arg('title_id')::bigint,
|
||||||
|
sqlc.arg('tag_id')::bigint)
|
||||||
|
RETURNING title_id, tag_id;
|
||||||
|
|
||||||
|
-- name: InsertTag :one
|
||||||
|
INSERT INTO tags (tag_names)
|
||||||
|
VALUES (
|
||||||
|
sqlc.arg('tag_names')::jsonb)
|
||||||
|
RETURNING id, tag_names;
|
||||||
|
|
||||||
-- -- name: ListUsers :many
|
-- -- name: ListUsers :many
|
||||||
-- SELECT user_id, avatar_id, passhash, mail, nickname, disp_name, user_desc, creation_date
|
-- SELECT user_id, avatar_id, passhash, mail, nickname, disp_name, user_desc, creation_date
|
||||||
|
|
@ -24,26 +68,315 @@ WHERE id = $1;
|
||||||
-- VALUES ($1, $2, $3, $4, $5, $6, $7)
|
-- VALUES ($1, $2, $3, $4, $5, $6, $7)
|
||||||
-- RETURNING user_id, avatar_id, nickname, disp_name, user_desc, creation_date;
|
-- RETURNING user_id, avatar_id, nickname, disp_name, user_desc, creation_date;
|
||||||
|
|
||||||
-- -- name: UpdateUser :one
|
-- name: UpdateUser :one
|
||||||
-- UPDATE users
|
UPDATE users
|
||||||
-- SET
|
SET
|
||||||
-- avatar_id = COALESCE(sqlc.narg('avatar_id'), avatar_id),
|
avatar_id = COALESCE(sqlc.narg('avatar_id'), avatar_id),
|
||||||
-- disp_name = COALESCE(sqlc.narg('disp_name'), disp_name),
|
disp_name = COALESCE(sqlc.narg('disp_name'), disp_name),
|
||||||
-- user_desc = COALESCE(sqlc.narg('user_desc'), user_desc),
|
user_desc = COALESCE(sqlc.narg('user_desc'), user_desc),
|
||||||
-- passhash = COALESCE(sqlc.narg('passhash'), passhash)
|
mail = COALESCE(sqlc.narg('mail'), mail)
|
||||||
-- WHERE user_id = sqlc.arg('user_id')
|
WHERE id = sqlc.arg('user_id')
|
||||||
-- RETURNING user_id, avatar_id, nickname, disp_name, user_desc, creation_date;
|
RETURNING id, avatar_id, nickname, disp_name, user_desc, creation_date, mail;
|
||||||
|
|
||||||
-- -- name: DeleteUser :exec
|
-- -- name: DeleteUser :exec
|
||||||
-- DELETE FROM users
|
-- DELETE FROM users
|
||||||
-- WHERE user_id = $1;
|
-- WHERE user_id = $1;
|
||||||
|
|
||||||
-- -- name: GetTitleByID :one
|
-- name: GetTitleByID :one
|
||||||
-- SELECT title_id, title_names, studio_id, poster_id, signal_ids,
|
-- sqlc.struct: TitlesFull
|
||||||
-- title_status, rating, rating_count, release_year, release_season,
|
SELECT
|
||||||
-- season, episodes_aired, episodes_all, episodes_len
|
t.*,
|
||||||
-- FROM titles
|
i.storage_type as title_storage_type,
|
||||||
-- WHERE title_id = $1;
|
i.image_path as title_image_path,
|
||||||
|
COALESCE(
|
||||||
|
jsonb_agg(g.tag_names) FILTER (WHERE g.tag_names IS NOT NULL),
|
||||||
|
'[]'::jsonb
|
||||||
|
)::jsonb as tag_names,
|
||||||
|
s.studio_name as studio_name,
|
||||||
|
s.illust_id as studio_illust_id,
|
||||||
|
s.studio_desc as studio_desc,
|
||||||
|
si.storage_type as studio_storage_type,
|
||||||
|
si.image_path as studio_image_path
|
||||||
|
|
||||||
|
FROM titles as t
|
||||||
|
LEFT JOIN images as i ON (t.poster_id = i.id)
|
||||||
|
LEFT JOIN title_tags as tt ON (t.id = tt.title_id)
|
||||||
|
LEFT JOIN tags as g ON (tt.tag_id = g.id)
|
||||||
|
LEFT JOIN studios as s ON (t.studio_id = s.id)
|
||||||
|
LEFT JOIN images as si ON (s.illust_id = si.id)
|
||||||
|
|
||||||
|
WHERE t.id = sqlc.arg('title_id')::bigint
|
||||||
|
GROUP BY
|
||||||
|
t.id, i.id, s.id, si.id;
|
||||||
|
|
||||||
|
-- name: SearchTitles :many
|
||||||
|
SELECT
|
||||||
|
t.id as id,
|
||||||
|
t.title_names as title_names,
|
||||||
|
t.poster_id as poster_id,
|
||||||
|
t.title_status as title_status,
|
||||||
|
t.rating as rating,
|
||||||
|
t.rating_count as rating_count,
|
||||||
|
t.release_year as release_year,
|
||||||
|
t.release_season as release_season,
|
||||||
|
t.season as season,
|
||||||
|
t.episodes_aired as episodes_aired,
|
||||||
|
t.episodes_all as episodes_all,
|
||||||
|
i.storage_type as title_storage_type,
|
||||||
|
i.image_path as title_image_path,
|
||||||
|
COALESCE(
|
||||||
|
jsonb_agg(g.tag_names) FILTER (WHERE g.tag_names IS NOT NULL),
|
||||||
|
'[]'::jsonb
|
||||||
|
)::jsonb as tag_names,
|
||||||
|
s.studio_name as studio_name
|
||||||
|
|
||||||
|
FROM titles as t
|
||||||
|
LEFT JOIN images as i ON (t.poster_id = i.id)
|
||||||
|
LEFT JOIN title_tags as tt ON (t.id = tt.title_id)
|
||||||
|
LEFT JOIN tags as g ON (tt.tag_id = g.id)
|
||||||
|
LEFT JOIN studios as s ON (t.studio_id = s.id)
|
||||||
|
|
||||||
|
WHERE
|
||||||
|
CASE
|
||||||
|
WHEN sqlc.arg('forward')::boolean THEN
|
||||||
|
-- forward: greater than cursor (next page)
|
||||||
|
CASE sqlc.arg('sort_by')::text
|
||||||
|
WHEN 'year' THEN
|
||||||
|
(sqlc.narg('cursor_year')::int IS NULL) OR
|
||||||
|
(t.release_year > sqlc.narg('cursor_year')::int) OR
|
||||||
|
(t.release_year = sqlc.narg('cursor_year')::int AND t.id > sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
WHEN 'rating' THEN
|
||||||
|
(sqlc.narg('cursor_rating')::float IS NULL) OR
|
||||||
|
(t.rating > sqlc.narg('cursor_rating')::float) OR
|
||||||
|
(t.rating = sqlc.narg('cursor_rating')::float AND t.id > sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
WHEN 'id' THEN
|
||||||
|
(sqlc.narg('cursor_id')::bigint IS NULL) OR
|
||||||
|
(t.id > sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
ELSE true -- fallback
|
||||||
|
END
|
||||||
|
|
||||||
|
ELSE
|
||||||
|
-- backward: less than cursor (prev page)
|
||||||
|
CASE sqlc.arg('sort_by')::text
|
||||||
|
WHEN 'year' THEN
|
||||||
|
(sqlc.narg('cursor_year')::int IS NULL) OR
|
||||||
|
(t.release_year < sqlc.narg('cursor_year')::int) OR
|
||||||
|
(t.release_year = sqlc.narg('cursor_year')::int AND t.id < sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
WHEN 'rating' THEN
|
||||||
|
(sqlc.narg('cursor_rating')::float IS NULL) OR
|
||||||
|
(t.rating < sqlc.narg('cursor_rating')::float) OR
|
||||||
|
(t.rating = sqlc.narg('cursor_rating')::float AND t.id < sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
WHEN 'id' THEN
|
||||||
|
(sqlc.narg('cursor_id')::bigint IS NULL) OR
|
||||||
|
(t.id < sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
ELSE true
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
||||||
|
AND (
|
||||||
|
CASE
|
||||||
|
WHEN sqlc.narg('word')::text IS NOT NULL THEN
|
||||||
|
(
|
||||||
|
SELECT bool_and(
|
||||||
|
EXISTS (
|
||||||
|
SELECT 1
|
||||||
|
FROM jsonb_each_text(t.title_names) AS t(key, val)
|
||||||
|
WHERE val ILIKE pattern
|
||||||
|
)
|
||||||
|
)
|
||||||
|
FROM unnest(
|
||||||
|
ARRAY(
|
||||||
|
SELECT '%' || trim(w) || '%'
|
||||||
|
FROM unnest(string_to_array(sqlc.narg('word')::text, ' ')) AS w
|
||||||
|
WHERE trim(w) <> ''
|
||||||
|
)
|
||||||
|
) AS pattern
|
||||||
|
)
|
||||||
|
ELSE true
|
||||||
|
END
|
||||||
|
)
|
||||||
|
|
||||||
|
AND (
|
||||||
|
sqlc.narg('title_statuses')::title_status_t[] IS NULL
|
||||||
|
OR array_length(sqlc.narg('title_statuses')::title_status_t[], 1) IS NULL
|
||||||
|
OR array_length(sqlc.narg('title_statuses')::title_status_t[], 1) = 0
|
||||||
|
OR t.title_status = ANY(sqlc.narg('title_statuses')::title_status_t[])
|
||||||
|
)
|
||||||
|
AND (sqlc.narg('rating')::float IS NULL OR t.rating >= sqlc.narg('rating')::float)
|
||||||
|
AND (sqlc.narg('release_year')::int IS NULL OR t.release_year = sqlc.narg('release_year')::int)
|
||||||
|
AND (sqlc.narg('release_season')::release_season_t IS NULL OR t.release_season = sqlc.narg('release_season')::release_season_t)
|
||||||
|
|
||||||
|
GROUP BY
|
||||||
|
t.id, i.id, s.id
|
||||||
|
|
||||||
|
ORDER BY
|
||||||
|
CASE WHEN sqlc.arg('forward')::boolean THEN
|
||||||
|
CASE
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'id' THEN t.id
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'year' THEN t.release_year
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'rating' THEN t.rating
|
||||||
|
END
|
||||||
|
END ASC,
|
||||||
|
CASE WHEN NOT sqlc.arg('forward')::boolean THEN
|
||||||
|
CASE
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'id' THEN t.id
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'year' THEN t.release_year
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'rating' THEN t.rating
|
||||||
|
END
|
||||||
|
END DESC,
|
||||||
|
|
||||||
|
CASE WHEN sqlc.arg('sort_by')::text <> 'id' THEN t.id END ASC
|
||||||
|
|
||||||
|
LIMIT COALESCE(sqlc.narg('limit')::int, 100); -- 100 is default limit
|
||||||
|
|
||||||
|
-- name: SearchUserTitles :many
|
||||||
|
SELECT
|
||||||
|
t.id as id,
|
||||||
|
t.title_names as title_names,
|
||||||
|
t.poster_id as poster_id,
|
||||||
|
t.title_status as title_status,
|
||||||
|
t.rating as rating,
|
||||||
|
t.rating_count as rating_count,
|
||||||
|
t.release_year as release_year,
|
||||||
|
t.release_season as release_season,
|
||||||
|
t.season as season,
|
||||||
|
t.episodes_aired as episodes_aired,
|
||||||
|
t.episodes_all as episodes_all,
|
||||||
|
u.user_id as user_id,
|
||||||
|
u.status as usertitle_status,
|
||||||
|
u.rate as user_rate,
|
||||||
|
u.review_id as review_id,
|
||||||
|
u.ctime as user_ctime,
|
||||||
|
i.storage_type as title_storage_type,
|
||||||
|
i.image_path as title_image_path,
|
||||||
|
COALESCE(
|
||||||
|
jsonb_agg(g.tag_names) FILTER (WHERE g.tag_names IS NOT NULL),
|
||||||
|
'[]'::jsonb
|
||||||
|
)::jsonb as tag_names,
|
||||||
|
s.studio_name as studio_name
|
||||||
|
|
||||||
|
FROM usertitles as u
|
||||||
|
JOIN titles as t ON (u.title_id = t.id)
|
||||||
|
LEFT JOIN images as i ON (t.poster_id = i.id)
|
||||||
|
LEFT JOIN title_tags as tt ON (t.id = tt.title_id)
|
||||||
|
LEFT JOIN tags as g ON (tt.tag_id = g.id)
|
||||||
|
LEFT JOIN studios as s ON (t.studio_id = s.id)
|
||||||
|
|
||||||
|
WHERE
|
||||||
|
u.user_id = sqlc.arg('user_id')::bigint
|
||||||
|
AND
|
||||||
|
CASE
|
||||||
|
WHEN sqlc.arg('forward')::boolean THEN
|
||||||
|
-- forward: greater than cursor (next page)
|
||||||
|
CASE sqlc.arg('sort_by')::text
|
||||||
|
WHEN 'year' THEN
|
||||||
|
(sqlc.narg('cursor_year')::int IS NULL) OR
|
||||||
|
(t.release_year > sqlc.narg('cursor_year')::int) OR
|
||||||
|
(t.release_year = sqlc.narg('cursor_year')::int AND t.id > sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
WHEN 'rating' THEN
|
||||||
|
(sqlc.narg('cursor_rating')::float IS NULL) OR
|
||||||
|
(t.rating > sqlc.narg('cursor_rating')::float) OR
|
||||||
|
(t.rating = sqlc.narg('cursor_rating')::float AND t.id > sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
WHEN 'id' THEN
|
||||||
|
(sqlc.narg('cursor_id')::bigint IS NULL) OR
|
||||||
|
(t.id > sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
ELSE true -- fallback
|
||||||
|
END
|
||||||
|
|
||||||
|
ELSE
|
||||||
|
-- backward: less than cursor (prev page)
|
||||||
|
CASE sqlc.arg('sort_by')::text
|
||||||
|
WHEN 'year' THEN
|
||||||
|
(sqlc.narg('cursor_year')::int IS NULL) OR
|
||||||
|
(t.release_year < sqlc.narg('cursor_year')::int) OR
|
||||||
|
(t.release_year = sqlc.narg('cursor_year')::int AND t.id < sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
WHEN 'rating' THEN
|
||||||
|
(sqlc.narg('cursor_rating')::float IS NULL) OR
|
||||||
|
(t.rating < sqlc.narg('cursor_rating')::float) OR
|
||||||
|
(t.rating = sqlc.narg('cursor_rating')::float AND t.id < sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
WHEN 'id' THEN
|
||||||
|
(sqlc.narg('cursor_id')::bigint IS NULL) OR
|
||||||
|
(t.id < sqlc.narg('cursor_id')::bigint)
|
||||||
|
|
||||||
|
ELSE true
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
||||||
|
AND (
|
||||||
|
CASE
|
||||||
|
WHEN sqlc.narg('word')::text IS NOT NULL THEN
|
||||||
|
(
|
||||||
|
SELECT bool_and(
|
||||||
|
EXISTS (
|
||||||
|
SELECT 1
|
||||||
|
FROM jsonb_each_text(t.title_names) AS t(key, val)
|
||||||
|
WHERE val ILIKE pattern
|
||||||
|
)
|
||||||
|
)
|
||||||
|
FROM unnest(
|
||||||
|
ARRAY(
|
||||||
|
SELECT '%' || trim(w) || '%'
|
||||||
|
FROM unnest(string_to_array(sqlc.narg('word')::text, ' ')) AS w
|
||||||
|
WHERE trim(w) <> ''
|
||||||
|
)
|
||||||
|
) AS pattern
|
||||||
|
)
|
||||||
|
ELSE true
|
||||||
|
END
|
||||||
|
)
|
||||||
|
|
||||||
|
AND (
|
||||||
|
sqlc.narg('title_statuses')::title_status_t[] IS NULL
|
||||||
|
OR array_length(sqlc.narg('title_statuses')::title_status_t[], 1) IS NULL
|
||||||
|
OR array_length(sqlc.narg('title_statuses')::title_status_t[], 1) = 0
|
||||||
|
OR t.title_status = ANY(sqlc.narg('title_statuses')::title_status_t[])
|
||||||
|
)
|
||||||
|
AND (
|
||||||
|
sqlc.narg('usertitle_statuses')::usertitle_status_t[] IS NULL
|
||||||
|
OR array_length(sqlc.narg('usertitle_statuses')::usertitle_status_t[], 1) IS NULL
|
||||||
|
OR array_length(sqlc.narg('usertitle_statuses')::usertitle_status_t[], 1) = 0
|
||||||
|
OR u.status = ANY(sqlc.narg('usertitle_statuses')::usertitle_status_t[])
|
||||||
|
)
|
||||||
|
AND (sqlc.narg('rate')::int IS NULL OR u.rate >= sqlc.narg('rate')::int)
|
||||||
|
AND (sqlc.narg('rating')::float IS NULL OR t.rating >= sqlc.narg('rating')::float)
|
||||||
|
AND (sqlc.narg('release_year')::int IS NULL OR t.release_year = sqlc.narg('release_year')::int)
|
||||||
|
AND (sqlc.narg('release_season')::release_season_t IS NULL OR t.release_season = sqlc.narg('release_season')::release_season_t)
|
||||||
|
|
||||||
|
GROUP BY
|
||||||
|
t.id, u.user_id, u.status, u.rate, u.review_id, u.ctime, i.id, s.id
|
||||||
|
|
||||||
|
ORDER BY
|
||||||
|
CASE WHEN sqlc.arg('forward')::boolean THEN
|
||||||
|
CASE
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'id' THEN t.id
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'year' THEN t.release_year
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'rating' THEN t.rating
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'rate' THEN u.rate
|
||||||
|
END
|
||||||
|
END ASC,
|
||||||
|
CASE WHEN NOT sqlc.arg('forward')::boolean THEN
|
||||||
|
CASE
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'id' THEN t.id
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'year' THEN t.release_year
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'rating' THEN t.rating
|
||||||
|
WHEN sqlc.arg('sort_by')::text = 'rate' THEN u.rate
|
||||||
|
END
|
||||||
|
END DESC,
|
||||||
|
|
||||||
|
CASE WHEN sqlc.arg('sort_by')::text <> 'id' THEN t.id END ASC
|
||||||
|
|
||||||
|
LIMIT COALESCE(sqlc.narg('limit')::int, 100); -- 100 is default limit
|
||||||
|
|
||||||
-- -- name: ListTitles :many
|
-- -- name: ListTitles :many
|
||||||
-- SELECT title_id, title_names, studio_id, poster_id, signal_ids,
|
-- SELECT title_id, title_names, studio_id, poster_id, signal_ids,
|
||||||
|
|
@ -69,10 +402,10 @@ WHERE id = $1;
|
||||||
-- WHERE title_id = sqlc.arg('title_id')
|
-- WHERE title_id = sqlc.arg('title_id')
|
||||||
-- RETURNING *;
|
-- RETURNING *;
|
||||||
|
|
||||||
-- -- name: GetReviewByID :one
|
-- name: GetReviewByID :one
|
||||||
-- SELECT review_id, user_id, title_id, image_ids, review_text, creation_date
|
SELECT *
|
||||||
-- FROM reviews
|
FROM reviews
|
||||||
-- WHERE review_id = $1;
|
WHERE review_id = sqlc.arg('review_id')::bigint;
|
||||||
|
|
||||||
-- -- name: CreateReview :one
|
-- -- name: CreateReview :one
|
||||||
-- INSERT INTO reviews (user_id, title_id, image_ids, review_text, creation_date)
|
-- INSERT INTO reviews (user_id, title_id, image_ids, review_text, creation_date)
|
||||||
|
|
@ -91,7 +424,7 @@ WHERE id = $1;
|
||||||
-- DELETE FROM reviews
|
-- DELETE FROM reviews
|
||||||
-- WHERE review_id = $1;
|
-- WHERE review_id = $1;
|
||||||
|
|
||||||
-- -- name: ListReviewsByTitle :many
|
-- -- name: ListReviewsByTitle :many
|
||||||
-- SELECT review_id, user_id, title_id, image_ids, review_text, creation_date
|
-- SELECT review_id, user_id, title_id, image_ids, review_text, creation_date
|
||||||
-- FROM reviews
|
-- FROM reviews
|
||||||
-- WHERE title_id = $1
|
-- WHERE title_id = $1
|
||||||
|
|
@ -117,10 +450,16 @@ WHERE id = $1;
|
||||||
-- ORDER BY usertitle_id
|
-- ORDER BY usertitle_id
|
||||||
-- LIMIT $2 OFFSET $3;
|
-- LIMIT $2 OFFSET $3;
|
||||||
|
|
||||||
-- -- name: CreateUserTitle :one
|
-- name: InsertUserTitle :one
|
||||||
-- INSERT INTO usertitles (user_id, title_id, status, rate, review_id)
|
INSERT INTO usertitles (user_id, title_id, status, rate, review_id)
|
||||||
-- VALUES ($1, $2, $3, $4, $5)
|
VALUES (
|
||||||
-- RETURNING usertitle_id, user_id, title_id, status, rate, review_id;
|
sqlc.arg('user_id')::bigint,
|
||||||
|
sqlc.arg('title_id')::bigint,
|
||||||
|
sqlc.arg('status')::usertitle_status_t,
|
||||||
|
sqlc.narg('rate')::int,
|
||||||
|
sqlc.narg('review_id')::bigint
|
||||||
|
)
|
||||||
|
RETURNING user_id, title_id, status, rate, review_id, ctime;
|
||||||
|
|
||||||
-- -- name: UpdateUserTitle :one
|
-- -- name: UpdateUserTitle :one
|
||||||
-- UPDATE usertitles
|
-- UPDATE usertitles
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,15 @@ server {
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_cache_bypass $http_upgrade;
|
proxy_cache_bypass $http_upgrade;
|
||||||
}
|
}
|
||||||
|
location /auth/ {
|
||||||
|
rewrite ^/auth/(.*)$ /$1 break;
|
||||||
|
proxy_pass http://nyanimedb-auth:8082/;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection 'upgrade';
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_cache_bypass $http_upgrade;
|
||||||
|
}
|
||||||
#error_page 404 /404.html;
|
#error_page 404 /404.html;
|
||||||
|
|
||||||
error_page 500 502 503 504 /50x.html;
|
error_page 500 502 503 504 /50x.html;
|
||||||
|
|
|
||||||
891
modules/frontend/package-lock.json
generated
891
modules/frontend/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -10,10 +10,14 @@
|
||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@headlessui/react": "^2.2.9",
|
||||||
|
"@heroicons/react": "^2.2.0",
|
||||||
|
"@tailwindcss/vite": "^4.1.17",
|
||||||
"axios": "^1.12.2",
|
"axios": "^1.12.2",
|
||||||
"react": "^19.1.1",
|
"react": "^19.1.1",
|
||||||
"react-dom": "^19.1.1",
|
"react-dom": "^19.1.1",
|
||||||
"react-router-dom": "^7.9.4"
|
"react-router-dom": "^7.9.4",
|
||||||
|
"tailwindcss": "^4.1.17"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.36.0",
|
"@eslint/js": "^9.36.0",
|
||||||
|
|
@ -29,5 +33,8 @@
|
||||||
"typescript": "~5.9.3",
|
"typescript": "~5.9.3",
|
||||||
"typescript-eslint": "^8.45.0",
|
"typescript-eslint": "^8.45.0",
|
||||||
"vite": "^7.1.7"
|
"vite": "^7.1.7"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "20.x"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
#root {
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
height: 6em;
|
|
||||||
padding: 1.5em;
|
|
||||||
will-change: filter;
|
|
||||||
transition: filter 300ms;
|
|
||||||
}
|
|
||||||
.logo:hover {
|
|
||||||
filter: drop-shadow(0 0 2em #646cffaa);
|
|
||||||
}
|
|
||||||
.logo.react:hover {
|
|
||||||
filter: drop-shadow(0 0 2em #61dafbaa);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes logo-spin {
|
|
||||||
from {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-reduced-motion: no-preference) {
|
|
||||||
a:nth-of-type(2) .logo {
|
|
||||||
animation: logo-spin infinite 20s linear;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
padding: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.read-the-docs {
|
|
||||||
color: #888;
|
|
||||||
}
|
|
||||||
|
|
@ -1,15 +1,37 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
|
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
|
||||||
import UserPage from "./components/UserPage/UserPage";
|
import UsersIdPage from "./pages/UsersIdPage/UsersIdPage";
|
||||||
|
import TitlesPage from "./pages/TitlesPage/TitlesPage";
|
||||||
|
import TitlePage from "./pages/TitlePage/TitlePage";
|
||||||
|
import { LoginPage } from "./pages/LoginPage/LoginPage";
|
||||||
|
import { Header } from "./components/Header/Header";
|
||||||
|
|
||||||
const App: React.FC = () => {
|
const App: React.FC = () => {
|
||||||
|
// Получаем username из localStorage
|
||||||
|
const username = localStorage.getItem("username") || undefined;
|
||||||
|
const userId = localStorage.getItem("userId");
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Router>
|
<Router>
|
||||||
|
<Header username={username} />
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/users/:id" element={<UserPage />} />
|
<Route path="/login" element={<LoginPage />} />
|
||||||
|
<Route path="/signup" element={<LoginPage />} />
|
||||||
|
|
||||||
|
{/* /profile рендерит UsersIdPage с id из localStorage */}
|
||||||
|
<Route
|
||||||
|
path="/profile"
|
||||||
|
element={userId ? <UsersIdPage userId={userId} /> : <LoginPage />}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Route path="/users/:id" element={<UsersIdPage />} />
|
||||||
|
|
||||||
|
<Route path="/titles" element={<TitlesPage />} />
|
||||||
|
<Route path="/titles/:id" element={<TitlePage />} />
|
||||||
</Routes>
|
</Routes>
|
||||||
</Router>
|
</Router>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
|
@ -20,7 +20,7 @@ export type OpenAPIConfig = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const OpenAPI: OpenAPIConfig = {
|
export const OpenAPI: OpenAPIConfig = {
|
||||||
BASE: '/api/v1',
|
BASE: 'http://10.1.0.65:8081/api/v1',
|
||||||
VERSION: '1.0.0',
|
VERSION: '1.0.0',
|
||||||
WITH_CREDENTIALS: false,
|
WITH_CREDENTIALS: false,
|
||||||
CREDENTIALS: 'include',
|
CREDENTIALS: 'include',
|
||||||
|
|
|
||||||
|
|
@ -7,10 +7,22 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
||||||
export { OpenAPI } from './core/OpenAPI';
|
export { OpenAPI } from './core/OpenAPI';
|
||||||
export type { OpenAPIConfig } from './core/OpenAPI';
|
export type { OpenAPIConfig } from './core/OpenAPI';
|
||||||
|
|
||||||
|
export type { cursor } from './models/cursor';
|
||||||
|
export type { CursorObj } from './models/CursorObj';
|
||||||
|
export type { Image } from './models/Image';
|
||||||
|
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 { Tag } from './models/Tag';
|
export type { Tag } from './models/Tag';
|
||||||
|
export type { Tags } from './models/Tags';
|
||||||
export type { Title } from './models/Title';
|
export type { Title } from './models/Title';
|
||||||
|
export type { title_sort } from './models/title_sort';
|
||||||
|
export type { TitleSort } from './models/TitleSort';
|
||||||
|
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 { DefaultService } from './services/DefaultService';
|
export { DefaultService } from './services/DefaultService';
|
||||||
|
|
|
||||||
9
modules/frontend/src/api/models/CursorObj.ts
Normal file
9
modules/frontend/src/api/models/CursorObj.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CursorObj = {
|
||||||
|
id: number;
|
||||||
|
param?: string;
|
||||||
|
};
|
||||||
|
|
||||||
11
modules/frontend/src/api/models/Image.ts
Normal file
11
modules/frontend/src/api/models/Image.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { StorageType } from './StorageType';
|
||||||
|
export type Image = {
|
||||||
|
id?: number;
|
||||||
|
storage_type?: StorageType;
|
||||||
|
image_path?: string;
|
||||||
|
};
|
||||||
|
|
||||||
8
modules/frontend/src/api/models/ReleaseSeason.ts
Normal file
8
modules/frontend/src/api/models/ReleaseSeason.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
/**
|
||||||
|
* Title release season
|
||||||
|
*/
|
||||||
|
export type ReleaseSeason = 'winter' | 'spring' | 'summer' | 'fall';
|
||||||
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';
|
||||||
12
modules/frontend/src/api/models/Studio.ts
Normal file
12
modules/frontend/src/api/models/Studio.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { Image } from './Image';
|
||||||
|
export type Studio = {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
poster?: Image;
|
||||||
|
description?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
@ -2,4 +2,7 @@
|
||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type Tag = Record<string, any>;
|
/**
|
||||||
|
* A localized tag: keys are language codes (ISO 639-1), values are tag names
|
||||||
|
*/
|
||||||
|
export type Tag = Record<string, string>;
|
||||||
|
|
|
||||||
9
modules/frontend/src/api/models/Tags.ts
Normal file
9
modules/frontend/src/api/models/Tags.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { Tag } from './Tag';
|
||||||
|
/**
|
||||||
|
* Array of localized tags
|
||||||
|
*/
|
||||||
|
export type Tags = Array<Tag>;
|
||||||
|
|
@ -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>;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
|
||||||
8
modules/frontend/src/api/models/TitleSort.ts
Normal file
8
modules/frontend/src/api/models/TitleSort.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
/**
|
||||||
|
* Title sort order
|
||||||
|
*/
|
||||||
|
export type TitleSort = 'id' | 'year' | 'rating' | 'views';
|
||||||
8
modules/frontend/src/api/models/TitleStatus.ts
Normal file
8
modules/frontend/src/api/models/TitleStatus.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
/**
|
||||||
|
* Title status
|
||||||
|
*/
|
||||||
|
export type TitleStatus = 'finished' | 'ongoing' | 'planned';
|
||||||
|
|
@ -2,15 +2,13 @@
|
||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
import type { Image } from './Image';
|
||||||
export type User = {
|
export type User = {
|
||||||
/**
|
/**
|
||||||
* Unique user ID (primary key)
|
* Unique user ID (primary key)
|
||||||
*/
|
*/
|
||||||
id?: number;
|
id?: number;
|
||||||
/**
|
image?: Image;
|
||||||
* ID of the user avatar (references images table)
|
|
||||||
*/
|
|
||||||
avatar_id?: number | null;
|
|
||||||
/**
|
/**
|
||||||
* User email
|
* User email
|
||||||
*/
|
*/
|
||||||
|
|
@ -30,6 +28,6 @@ export type User = {
|
||||||
/**
|
/**
|
||||||
* Timestamp when the user was created
|
* Timestamp when the user was created
|
||||||
*/
|
*/
|
||||||
creation_date: string;
|
creation_date?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,4 +2,14 @@
|
||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type UserTitle = Record<string, any>;
|
import type { Title } from './Title';
|
||||||
|
import type { UserTitleStatus } from './UserTitleStatus';
|
||||||
|
export type UserTitle = {
|
||||||
|
user_id: number;
|
||||||
|
title?: Title;
|
||||||
|
status: UserTitleStatus;
|
||||||
|
rate?: number;
|
||||||
|
review_id?: number;
|
||||||
|
ctime?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
|
||||||
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;
|
||||||
|
};
|
||||||
|
|
||||||
8
modules/frontend/src/api/models/UserTitleStatus.ts
Normal file
8
modules/frontend/src/api/models/UserTitleStatus.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
/**
|
||||||
|
* User's title status
|
||||||
|
*/
|
||||||
|
export type UserTitleStatus = 'finished' | 'planned' | 'dropped' | 'in-progress';
|
||||||
5
modules/frontend/src/api/models/cursor.ts
Normal file
5
modules/frontend/src/api/models/cursor.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type cursor = string;
|
||||||
6
modules/frontend/src/api/models/title_sort.ts
Normal file
6
modules/frontend/src/api/models/title_sort.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { TitleSort } from './TitleSort';
|
||||||
|
export type title_sort = TitleSort;
|
||||||
|
|
@ -2,11 +2,103 @@
|
||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
import type { CursorObj } from '../models/CursorObj';
|
||||||
|
import type { ReleaseSeason } from '../models/ReleaseSeason';
|
||||||
|
import type { Title } from '../models/Title';
|
||||||
|
import type { TitleSort } from '../models/TitleSort';
|
||||||
|
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 { UserTitleMini } from '../models/UserTitleMini';
|
||||||
|
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';
|
||||||
import { request as __request } from '../core/request';
|
import { request as __request } from '../core/request';
|
||||||
export class DefaultService {
|
export class DefaultService {
|
||||||
|
/**
|
||||||
|
* Get titles
|
||||||
|
* @param cursor
|
||||||
|
* @param sort
|
||||||
|
* @param sortForward
|
||||||
|
* @param word
|
||||||
|
* @param status List of title statuses to filter
|
||||||
|
* @param rating
|
||||||
|
* @param releaseYear
|
||||||
|
* @param releaseSeason
|
||||||
|
* @param limit
|
||||||
|
* @param offset
|
||||||
|
* @param fields
|
||||||
|
* @returns any List of titles with cursor
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
public static getTitles(
|
||||||
|
cursor?: string,
|
||||||
|
sort?: TitleSort,
|
||||||
|
sortForward: boolean = true,
|
||||||
|
word?: string,
|
||||||
|
status?: Array<TitleStatus>,
|
||||||
|
rating?: number,
|
||||||
|
releaseYear?: number,
|
||||||
|
releaseSeason?: ReleaseSeason,
|
||||||
|
limit: number = 10,
|
||||||
|
offset?: number,
|
||||||
|
fields: string = 'all',
|
||||||
|
): CancelablePromise<{
|
||||||
|
/**
|
||||||
|
* List of titles
|
||||||
|
*/
|
||||||
|
data: Array<Title>;
|
||||||
|
cursor: CursorObj;
|
||||||
|
}> {
|
||||||
|
return __request(OpenAPI, {
|
||||||
|
method: 'GET',
|
||||||
|
url: '/titles',
|
||||||
|
query: {
|
||||||
|
'cursor': cursor,
|
||||||
|
'sort': sort,
|
||||||
|
'sort_forward': sortForward,
|
||||||
|
'word': word,
|
||||||
|
'status': status,
|
||||||
|
'rating': rating,
|
||||||
|
'release_year': releaseYear,
|
||||||
|
'release_season': releaseSeason,
|
||||||
|
'limit': limit,
|
||||||
|
'offset': offset,
|
||||||
|
'fields': fields,
|
||||||
|
},
|
||||||
|
errors: {
|
||||||
|
400: `Request params are not correct`,
|
||||||
|
500: `Unknown server error`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get title description
|
||||||
|
* @param titleId
|
||||||
|
* @param fields
|
||||||
|
* @returns Title Title description
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
public static getTitle(
|
||||||
|
titleId: number,
|
||||||
|
fields: string = 'all',
|
||||||
|
): CancelablePromise<Title> {
|
||||||
|
return __request(OpenAPI, {
|
||||||
|
method: 'GET',
|
||||||
|
url: '/titles/{title_id}',
|
||||||
|
path: {
|
||||||
|
'title_id': titleId,
|
||||||
|
},
|
||||||
|
query: {
|
||||||
|
'fields': fields,
|
||||||
|
},
|
||||||
|
errors: {
|
||||||
|
400: `Request params are not correct`,
|
||||||
|
404: `Title not found`,
|
||||||
|
500: `Unknown server error`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Get user info
|
* Get user info
|
||||||
* @param userId
|
* @param userId
|
||||||
|
|
@ -14,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> {
|
||||||
|
|
@ -28,7 +120,194 @@ export class DefaultService {
|
||||||
'fields': fields,
|
'fields': fields,
|
||||||
},
|
},
|
||||||
errors: {
|
errors: {
|
||||||
|
400: `Request params are not correct`,
|
||||||
404: `User not found`,
|
404: `User not found`,
|
||||||
|
500: `Unknown server error`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Partially update a user account
|
||||||
|
* Update selected user profile fields (excluding password).
|
||||||
|
* Password updates must be done via the dedicated auth-service (`/auth/`).
|
||||||
|
* Fields not provided in the request body remain unchanged.
|
||||||
|
*
|
||||||
|
* @param userId User ID (primary key)
|
||||||
|
* @param requestBody
|
||||||
|
* @returns User User updated successfully. Returns updated user representation (excluding sensitive fields).
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
public static updateUser(
|
||||||
|
userId: number,
|
||||||
|
requestBody: {
|
||||||
|
/**
|
||||||
|
* ID of the user avatar (references `images.id`); set to `null` to remove avatar
|
||||||
|
*/
|
||||||
|
avatar_id?: number | null;
|
||||||
|
/**
|
||||||
|
* User email (must be unique and valid)
|
||||||
|
*/
|
||||||
|
mail?: string;
|
||||||
|
/**
|
||||||
|
* Username (alphanumeric + `_` or `-`, 3–16 chars)
|
||||||
|
*/
|
||||||
|
nickname?: string;
|
||||||
|
/**
|
||||||
|
* Display name
|
||||||
|
*/
|
||||||
|
disp_name?: string;
|
||||||
|
/**
|
||||||
|
* User description / bio
|
||||||
|
*/
|
||||||
|
user_desc?: string;
|
||||||
|
},
|
||||||
|
): CancelablePromise<User> {
|
||||||
|
return __request(OpenAPI, {
|
||||||
|
method: 'PATCH',
|
||||||
|
url: '/users/{user_id}',
|
||||||
|
path: {
|
||||||
|
'user_id': userId,
|
||||||
|
},
|
||||||
|
body: requestBody,
|
||||||
|
mediaType: 'application/json',
|
||||||
|
errors: {
|
||||||
|
400: `Invalid input (e.g., validation failed, nickname/email conflict, malformed JSON)`,
|
||||||
|
401: `Unauthorized — missing or invalid authentication token`,
|
||||||
|
403: `Forbidden — user is not allowed to modify this resource (e.g., not own profile & no admin rights)`,
|
||||||
|
404: `User not found`,
|
||||||
|
409: `Conflict — e.g., requested \`nickname\` or \`mail\` already taken by another user`,
|
||||||
|
422: `Unprocessable Entity — semantic errors not caught by schema (e.g., invalid \`avatar_id\`)`,
|
||||||
|
500: `Unknown server error`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get user titles
|
||||||
|
* @param userId
|
||||||
|
* @param cursor
|
||||||
|
* @param sort
|
||||||
|
* @param sortForward
|
||||||
|
* @param word
|
||||||
|
* @param status List of title statuses to filter
|
||||||
|
* @param watchStatus
|
||||||
|
* @param rating
|
||||||
|
* @param myRate
|
||||||
|
* @param releaseYear
|
||||||
|
* @param releaseSeason
|
||||||
|
* @param limit
|
||||||
|
* @param fields
|
||||||
|
* @returns any List of user titles
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
public static getUsersTitles(
|
||||||
|
userId: string,
|
||||||
|
cursor?: string,
|
||||||
|
sort?: TitleSort,
|
||||||
|
sortForward: boolean = true,
|
||||||
|
word?: string,
|
||||||
|
status?: Array<TitleStatus>,
|
||||||
|
watchStatus?: Array<UserTitleStatus>,
|
||||||
|
rating?: number,
|
||||||
|
myRate?: number,
|
||||||
|
releaseYear?: number,
|
||||||
|
releaseSeason?: ReleaseSeason,
|
||||||
|
limit: number = 10,
|
||||||
|
fields: string = 'all',
|
||||||
|
): CancelablePromise<{
|
||||||
|
data: Array<UserTitle>;
|
||||||
|
cursor: CursorObj;
|
||||||
|
}> {
|
||||||
|
return __request(OpenAPI, {
|
||||||
|
method: 'GET',
|
||||||
|
url: '/users/{user_id}/titles',
|
||||||
|
path: {
|
||||||
|
'user_id': userId,
|
||||||
|
},
|
||||||
|
query: {
|
||||||
|
'cursor': cursor,
|
||||||
|
'sort': sort,
|
||||||
|
'sort_forward': sortForward,
|
||||||
|
'word': word,
|
||||||
|
'status': status,
|
||||||
|
'watch_status': watchStatus,
|
||||||
|
'rating': rating,
|
||||||
|
'my_rate': myRate,
|
||||||
|
'release_year': releaseYear,
|
||||||
|
'release_season': releaseSeason,
|
||||||
|
'limit': limit,
|
||||||
|
'fields': fields,
|
||||||
|
},
|
||||||
|
errors: {
|
||||||
|
400: `Request params are not correct`,
|
||||||
|
404: `User not found`,
|
||||||
|
500: `Unknown server error`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Add a title to a user
|
||||||
|
* User adding title to list af watched, status required
|
||||||
|
* @param userId ID of the user to assign the title to
|
||||||
|
* @param requestBody
|
||||||
|
* @returns UserTitleMini Title successfully added to user
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
public static addUserTitle(
|
||||||
|
userId: number,
|
||||||
|
requestBody: {
|
||||||
|
title_id: number;
|
||||||
|
status: UserTitleStatus;
|
||||||
|
rate?: number;
|
||||||
|
},
|
||||||
|
): CancelablePromise<UserTitleMini> {
|
||||||
|
return __request(OpenAPI, {
|
||||||
|
method: 'POST',
|
||||||
|
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 assign titles to this user`,
|
||||||
|
404: `User or Title not found`,
|
||||||
|
409: `Conflict — title already assigned to user (if applicable)`,
|
||||||
|
500: `Internal server error`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 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`,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
25
modules/frontend/src/auth/core/ApiError.ts
Normal file
25
modules/frontend/src/auth/core/ApiError.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { ApiRequestOptions } from './ApiRequestOptions';
|
||||||
|
import type { ApiResult } from './ApiResult';
|
||||||
|
|
||||||
|
export class ApiError extends Error {
|
||||||
|
public readonly url: string;
|
||||||
|
public readonly status: number;
|
||||||
|
public readonly statusText: string;
|
||||||
|
public readonly body: any;
|
||||||
|
public readonly request: ApiRequestOptions;
|
||||||
|
|
||||||
|
constructor(request: ApiRequestOptions, response: ApiResult, message: string) {
|
||||||
|
super(message);
|
||||||
|
|
||||||
|
this.name = 'ApiError';
|
||||||
|
this.url = response.url;
|
||||||
|
this.status = response.status;
|
||||||
|
this.statusText = response.statusText;
|
||||||
|
this.body = response.body;
|
||||||
|
this.request = request;
|
||||||
|
}
|
||||||
|
}
|
||||||
17
modules/frontend/src/auth/core/ApiRequestOptions.ts
Normal file
17
modules/frontend/src/auth/core/ApiRequestOptions.ts
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type ApiRequestOptions = {
|
||||||
|
readonly method: 'GET' | 'PUT' | 'POST' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'PATCH';
|
||||||
|
readonly url: string;
|
||||||
|
readonly path?: Record<string, any>;
|
||||||
|
readonly cookies?: Record<string, any>;
|
||||||
|
readonly headers?: Record<string, any>;
|
||||||
|
readonly query?: Record<string, any>;
|
||||||
|
readonly formData?: Record<string, any>;
|
||||||
|
readonly body?: any;
|
||||||
|
readonly mediaType?: string;
|
||||||
|
readonly responseHeader?: string;
|
||||||
|
readonly errors?: Record<number, string>;
|
||||||
|
};
|
||||||
11
modules/frontend/src/auth/core/ApiResult.ts
Normal file
11
modules/frontend/src/auth/core/ApiResult.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type ApiResult = {
|
||||||
|
readonly url: string;
|
||||||
|
readonly ok: boolean;
|
||||||
|
readonly status: number;
|
||||||
|
readonly statusText: string;
|
||||||
|
readonly body: any;
|
||||||
|
};
|
||||||
131
modules/frontend/src/auth/core/CancelablePromise.ts
Normal file
131
modules/frontend/src/auth/core/CancelablePromise.ts
Normal file
|
|
@ -0,0 +1,131 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export class CancelError extends Error {
|
||||||
|
|
||||||
|
constructor(message: string) {
|
||||||
|
super(message);
|
||||||
|
this.name = 'CancelError';
|
||||||
|
}
|
||||||
|
|
||||||
|
public get isCancelled(): boolean {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface OnCancel {
|
||||||
|
readonly isResolved: boolean;
|
||||||
|
readonly isRejected: boolean;
|
||||||
|
readonly isCancelled: boolean;
|
||||||
|
|
||||||
|
(cancelHandler: () => void): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class CancelablePromise<T> implements Promise<T> {
|
||||||
|
#isResolved: boolean;
|
||||||
|
#isRejected: boolean;
|
||||||
|
#isCancelled: boolean;
|
||||||
|
readonly #cancelHandlers: (() => void)[];
|
||||||
|
readonly #promise: Promise<T>;
|
||||||
|
#resolve?: (value: T | PromiseLike<T>) => void;
|
||||||
|
#reject?: (reason?: any) => void;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
executor: (
|
||||||
|
resolve: (value: T | PromiseLike<T>) => void,
|
||||||
|
reject: (reason?: any) => void,
|
||||||
|
onCancel: OnCancel
|
||||||
|
) => void
|
||||||
|
) {
|
||||||
|
this.#isResolved = false;
|
||||||
|
this.#isRejected = false;
|
||||||
|
this.#isCancelled = false;
|
||||||
|
this.#cancelHandlers = [];
|
||||||
|
this.#promise = new Promise<T>((resolve, reject) => {
|
||||||
|
this.#resolve = resolve;
|
||||||
|
this.#reject = reject;
|
||||||
|
|
||||||
|
const onResolve = (value: T | PromiseLike<T>): void => {
|
||||||
|
if (this.#isResolved || this.#isRejected || this.#isCancelled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.#isResolved = true;
|
||||||
|
if (this.#resolve) this.#resolve(value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onReject = (reason?: any): void => {
|
||||||
|
if (this.#isResolved || this.#isRejected || this.#isCancelled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.#isRejected = true;
|
||||||
|
if (this.#reject) this.#reject(reason);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onCancel = (cancelHandler: () => void): void => {
|
||||||
|
if (this.#isResolved || this.#isRejected || this.#isCancelled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.#cancelHandlers.push(cancelHandler);
|
||||||
|
};
|
||||||
|
|
||||||
|
Object.defineProperty(onCancel, 'isResolved', {
|
||||||
|
get: (): boolean => this.#isResolved,
|
||||||
|
});
|
||||||
|
|
||||||
|
Object.defineProperty(onCancel, 'isRejected', {
|
||||||
|
get: (): boolean => this.#isRejected,
|
||||||
|
});
|
||||||
|
|
||||||
|
Object.defineProperty(onCancel, 'isCancelled', {
|
||||||
|
get: (): boolean => this.#isCancelled,
|
||||||
|
});
|
||||||
|
|
||||||
|
return executor(onResolve, onReject, onCancel as OnCancel);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
get [Symbol.toStringTag]() {
|
||||||
|
return "Cancellable Promise";
|
||||||
|
}
|
||||||
|
|
||||||
|
public then<TResult1 = T, TResult2 = never>(
|
||||||
|
onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null,
|
||||||
|
onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null
|
||||||
|
): Promise<TResult1 | TResult2> {
|
||||||
|
return this.#promise.then(onFulfilled, onRejected);
|
||||||
|
}
|
||||||
|
|
||||||
|
public catch<TResult = never>(
|
||||||
|
onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null
|
||||||
|
): Promise<T | TResult> {
|
||||||
|
return this.#promise.catch(onRejected);
|
||||||
|
}
|
||||||
|
|
||||||
|
public finally(onFinally?: (() => void) | null): Promise<T> {
|
||||||
|
return this.#promise.finally(onFinally);
|
||||||
|
}
|
||||||
|
|
||||||
|
public cancel(): void {
|
||||||
|
if (this.#isResolved || this.#isRejected || this.#isCancelled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.#isCancelled = true;
|
||||||
|
if (this.#cancelHandlers.length) {
|
||||||
|
try {
|
||||||
|
for (const cancelHandler of this.#cancelHandlers) {
|
||||||
|
cancelHandler();
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.warn('Cancellation threw an error', error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.#cancelHandlers.length = 0;
|
||||||
|
if (this.#reject) this.#reject(new CancelError('Request aborted'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public get isCancelled(): boolean {
|
||||||
|
return this.#isCancelled;
|
||||||
|
}
|
||||||
|
}
|
||||||
32
modules/frontend/src/auth/core/OpenAPI.ts
Normal file
32
modules/frontend/src/auth/core/OpenAPI.ts
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { ApiRequestOptions } from './ApiRequestOptions';
|
||||||
|
|
||||||
|
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
||||||
|
type Headers = Record<string, string>;
|
||||||
|
|
||||||
|
export type OpenAPIConfig = {
|
||||||
|
BASE: string;
|
||||||
|
VERSION: string;
|
||||||
|
WITH_CREDENTIALS: boolean;
|
||||||
|
CREDENTIALS: 'include' | 'omit' | 'same-origin';
|
||||||
|
TOKEN?: string | Resolver<string> | undefined;
|
||||||
|
USERNAME?: string | Resolver<string> | undefined;
|
||||||
|
PASSWORD?: string | Resolver<string> | undefined;
|
||||||
|
HEADERS?: Headers | Resolver<Headers> | undefined;
|
||||||
|
ENCODE_PATH?: ((path: string) => string) | undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const OpenAPI: OpenAPIConfig = {
|
||||||
|
BASE: 'http://10.1.0.65:8081/auth',
|
||||||
|
VERSION: '1.0.0',
|
||||||
|
WITH_CREDENTIALS: false,
|
||||||
|
CREDENTIALS: 'include',
|
||||||
|
TOKEN: undefined,
|
||||||
|
USERNAME: undefined,
|
||||||
|
PASSWORD: undefined,
|
||||||
|
HEADERS: undefined,
|
||||||
|
ENCODE_PATH: undefined,
|
||||||
|
};
|
||||||
323
modules/frontend/src/auth/core/request.ts
Normal file
323
modules/frontend/src/auth/core/request.ts
Normal file
|
|
@ -0,0 +1,323 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import axios from 'axios';
|
||||||
|
import type { AxiosError, AxiosRequestConfig, AxiosResponse, AxiosInstance } from 'axios';
|
||||||
|
import FormData from 'form-data';
|
||||||
|
|
||||||
|
import { ApiError } from './ApiError';
|
||||||
|
import type { ApiRequestOptions } from './ApiRequestOptions';
|
||||||
|
import type { ApiResult } from './ApiResult';
|
||||||
|
import { CancelablePromise } from './CancelablePromise';
|
||||||
|
import type { OnCancel } from './CancelablePromise';
|
||||||
|
import type { OpenAPIConfig } from './OpenAPI';
|
||||||
|
|
||||||
|
export const isDefined = <T>(value: T | null | undefined): value is Exclude<T, null | undefined> => {
|
||||||
|
return value !== undefined && value !== null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const isString = (value: any): value is string => {
|
||||||
|
return typeof value === 'string';
|
||||||
|
};
|
||||||
|
|
||||||
|
export const isStringWithValue = (value: any): value is string => {
|
||||||
|
return isString(value) && value !== '';
|
||||||
|
};
|
||||||
|
|
||||||
|
export const isBlob = (value: any): value is Blob => {
|
||||||
|
return (
|
||||||
|
typeof value === 'object' &&
|
||||||
|
typeof value.type === 'string' &&
|
||||||
|
typeof value.stream === 'function' &&
|
||||||
|
typeof value.arrayBuffer === 'function' &&
|
||||||
|
typeof value.constructor === 'function' &&
|
||||||
|
typeof value.constructor.name === 'string' &&
|
||||||
|
/^(Blob|File)$/.test(value.constructor.name) &&
|
||||||
|
/^(Blob|File)$/.test(value[Symbol.toStringTag])
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const isFormData = (value: any): value is FormData => {
|
||||||
|
return value instanceof FormData;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const isSuccess = (status: number): boolean => {
|
||||||
|
return status >= 200 && status < 300;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const base64 = (str: string): string => {
|
||||||
|
try {
|
||||||
|
return btoa(str);
|
||||||
|
} catch (err) {
|
||||||
|
// @ts-ignore
|
||||||
|
return Buffer.from(str).toString('base64');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getQueryString = (params: Record<string, any>): string => {
|
||||||
|
const qs: string[] = [];
|
||||||
|
|
||||||
|
const append = (key: string, value: any) => {
|
||||||
|
qs.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);
|
||||||
|
};
|
||||||
|
|
||||||
|
const process = (key: string, value: any) => {
|
||||||
|
if (isDefined(value)) {
|
||||||
|
if (Array.isArray(value)) {
|
||||||
|
value.forEach(v => {
|
||||||
|
process(key, v);
|
||||||
|
});
|
||||||
|
} else if (typeof value === 'object') {
|
||||||
|
Object.entries(value).forEach(([k, v]) => {
|
||||||
|
process(`${key}[${k}]`, v);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
append(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Object.entries(params).forEach(([key, value]) => {
|
||||||
|
process(key, value);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (qs.length > 0) {
|
||||||
|
return `?${qs.join('&')}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
};
|
||||||
|
|
||||||
|
const getUrl = (config: OpenAPIConfig, options: ApiRequestOptions): string => {
|
||||||
|
const encoder = config.ENCODE_PATH || encodeURI;
|
||||||
|
|
||||||
|
const path = options.url
|
||||||
|
.replace('{api-version}', config.VERSION)
|
||||||
|
.replace(/{(.*?)}/g, (substring: string, group: string) => {
|
||||||
|
if (options.path?.hasOwnProperty(group)) {
|
||||||
|
return encoder(String(options.path[group]));
|
||||||
|
}
|
||||||
|
return substring;
|
||||||
|
});
|
||||||
|
|
||||||
|
const url = `${config.BASE}${path}`;
|
||||||
|
if (options.query) {
|
||||||
|
return `${url}${getQueryString(options.query)}`;
|
||||||
|
}
|
||||||
|
return url;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getFormData = (options: ApiRequestOptions): FormData | undefined => {
|
||||||
|
if (options.formData) {
|
||||||
|
const formData = new FormData();
|
||||||
|
|
||||||
|
const process = (key: string, value: any) => {
|
||||||
|
if (isString(value) || isBlob(value)) {
|
||||||
|
formData.append(key, value);
|
||||||
|
} else {
|
||||||
|
formData.append(key, JSON.stringify(value));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Object.entries(options.formData)
|
||||||
|
.filter(([_, value]) => isDefined(value))
|
||||||
|
.forEach(([key, value]) => {
|
||||||
|
if (Array.isArray(value)) {
|
||||||
|
value.forEach(v => process(key, v));
|
||||||
|
} else {
|
||||||
|
process(key, value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return formData;
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
||||||
|
|
||||||
|
export const resolve = async <T>(options: ApiRequestOptions, resolver?: T | Resolver<T>): Promise<T | undefined> => {
|
||||||
|
if (typeof resolver === 'function') {
|
||||||
|
return (resolver as Resolver<T>)(options);
|
||||||
|
}
|
||||||
|
return resolver;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getHeaders = async (config: OpenAPIConfig, options: ApiRequestOptions, formData?: FormData): Promise<Record<string, string>> => {
|
||||||
|
const [token, username, password, additionalHeaders] = await Promise.all([
|
||||||
|
resolve(options, config.TOKEN),
|
||||||
|
resolve(options, config.USERNAME),
|
||||||
|
resolve(options, config.PASSWORD),
|
||||||
|
resolve(options, config.HEADERS),
|
||||||
|
]);
|
||||||
|
|
||||||
|
const formHeaders = typeof formData?.getHeaders === 'function' && formData?.getHeaders() || {}
|
||||||
|
|
||||||
|
const headers = Object.entries({
|
||||||
|
Accept: 'application/json',
|
||||||
|
...additionalHeaders,
|
||||||
|
...options.headers,
|
||||||
|
...formHeaders,
|
||||||
|
})
|
||||||
|
.filter(([_, value]) => isDefined(value))
|
||||||
|
.reduce((headers, [key, value]) => ({
|
||||||
|
...headers,
|
||||||
|
[key]: String(value),
|
||||||
|
}), {} as Record<string, string>);
|
||||||
|
|
||||||
|
if (isStringWithValue(token)) {
|
||||||
|
headers['Authorization'] = `Bearer ${token}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isStringWithValue(username) && isStringWithValue(password)) {
|
||||||
|
const credentials = base64(`${username}:${password}`);
|
||||||
|
headers['Authorization'] = `Basic ${credentials}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.body !== undefined) {
|
||||||
|
if (options.mediaType) {
|
||||||
|
headers['Content-Type'] = options.mediaType;
|
||||||
|
} else if (isBlob(options.body)) {
|
||||||
|
headers['Content-Type'] = options.body.type || 'application/octet-stream';
|
||||||
|
} else if (isString(options.body)) {
|
||||||
|
headers['Content-Type'] = 'text/plain';
|
||||||
|
} else if (!isFormData(options.body)) {
|
||||||
|
headers['Content-Type'] = 'application/json';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return headers;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getRequestBody = (options: ApiRequestOptions): any => {
|
||||||
|
if (options.body) {
|
||||||
|
return options.body;
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const sendRequest = async <T>(
|
||||||
|
config: OpenAPIConfig,
|
||||||
|
options: ApiRequestOptions,
|
||||||
|
url: string,
|
||||||
|
body: any,
|
||||||
|
formData: FormData | undefined,
|
||||||
|
headers: Record<string, string>,
|
||||||
|
onCancel: OnCancel,
|
||||||
|
axiosClient: AxiosInstance
|
||||||
|
): Promise<AxiosResponse<T>> => {
|
||||||
|
const source = axios.CancelToken.source();
|
||||||
|
|
||||||
|
const requestConfig: AxiosRequestConfig = {
|
||||||
|
url,
|
||||||
|
headers,
|
||||||
|
data: body ?? formData,
|
||||||
|
method: options.method,
|
||||||
|
withCredentials: config.WITH_CREDENTIALS,
|
||||||
|
withXSRFToken: config.CREDENTIALS === 'include' ? config.WITH_CREDENTIALS : false,
|
||||||
|
cancelToken: source.token,
|
||||||
|
};
|
||||||
|
|
||||||
|
onCancel(() => source.cancel('The user aborted a request.'));
|
||||||
|
|
||||||
|
try {
|
||||||
|
return await axiosClient.request(requestConfig);
|
||||||
|
} catch (error) {
|
||||||
|
const axiosError = error as AxiosError<T>;
|
||||||
|
if (axiosError.response) {
|
||||||
|
return axiosError.response;
|
||||||
|
}
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getResponseHeader = (response: AxiosResponse<any>, responseHeader?: string): string | undefined => {
|
||||||
|
if (responseHeader) {
|
||||||
|
const content = response.headers[responseHeader];
|
||||||
|
if (isString(content)) {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getResponseBody = (response: AxiosResponse<any>): any => {
|
||||||
|
if (response.status !== 204) {
|
||||||
|
return response.data;
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const catchErrorCodes = (options: ApiRequestOptions, result: ApiResult): void => {
|
||||||
|
const errors: Record<number, string> = {
|
||||||
|
400: 'Bad Request',
|
||||||
|
401: 'Unauthorized',
|
||||||
|
403: 'Forbidden',
|
||||||
|
404: 'Not Found',
|
||||||
|
500: 'Internal Server Error',
|
||||||
|
502: 'Bad Gateway',
|
||||||
|
503: 'Service Unavailable',
|
||||||
|
...options.errors,
|
||||||
|
}
|
||||||
|
|
||||||
|
const error = errors[result.status];
|
||||||
|
if (error) {
|
||||||
|
throw new ApiError(options, result, error);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!result.ok) {
|
||||||
|
const errorStatus = result.status ?? 'unknown';
|
||||||
|
const errorStatusText = result.statusText ?? 'unknown';
|
||||||
|
const errorBody = (() => {
|
||||||
|
try {
|
||||||
|
return JSON.stringify(result.body, null, 2);
|
||||||
|
} catch (e) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
|
throw new ApiError(options, result,
|
||||||
|
`Generic Error: status: ${errorStatus}; status text: ${errorStatusText}; body: ${errorBody}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Request method
|
||||||
|
* @param config The OpenAPI configuration object
|
||||||
|
* @param options The request options from the service
|
||||||
|
* @param axiosClient The axios client instance to use
|
||||||
|
* @returns CancelablePromise<T>
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
export const request = <T>(config: OpenAPIConfig, options: ApiRequestOptions, axiosClient: AxiosInstance = axios): CancelablePromise<T> => {
|
||||||
|
return new CancelablePromise(async (resolve, reject, onCancel) => {
|
||||||
|
try {
|
||||||
|
const url = getUrl(config, options);
|
||||||
|
const formData = getFormData(options);
|
||||||
|
const body = getRequestBody(options);
|
||||||
|
const headers = await getHeaders(config, options, formData);
|
||||||
|
|
||||||
|
if (!onCancel.isCancelled) {
|
||||||
|
const response = await sendRequest<T>(config, options, url, body, formData, headers, onCancel, axiosClient);
|
||||||
|
const responseBody = getResponseBody(response);
|
||||||
|
const responseHeader = getResponseHeader(response, options.responseHeader);
|
||||||
|
|
||||||
|
const result: ApiResult = {
|
||||||
|
url,
|
||||||
|
ok: isSuccess(response.status),
|
||||||
|
status: response.status,
|
||||||
|
statusText: response.statusText,
|
||||||
|
body: responseHeader ?? responseBody,
|
||||||
|
};
|
||||||
|
|
||||||
|
catchErrorCodes(options, result);
|
||||||
|
|
||||||
|
resolve(result.body);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
reject(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
10
modules/frontend/src/auth/index.ts
Normal file
10
modules/frontend/src/auth/index.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export { ApiError } from './core/ApiError';
|
||||||
|
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
||||||
|
export { OpenAPI } from './core/OpenAPI';
|
||||||
|
export type { OpenAPIConfig } from './core/OpenAPI';
|
||||||
|
|
||||||
|
export { AuthService } from './services/AuthService';
|
||||||
58
modules/frontend/src/auth/services/AuthService.ts
Normal file
58
modules/frontend/src/auth/services/AuthService.ts
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
||||||
|
import { OpenAPI } from '../core/OpenAPI';
|
||||||
|
import { request as __request } from '../core/request';
|
||||||
|
export class AuthService {
|
||||||
|
/**
|
||||||
|
* Sign up a new user
|
||||||
|
* @param requestBody
|
||||||
|
* @returns any Sign-up result
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
public static postAuthSignUp(
|
||||||
|
requestBody: {
|
||||||
|
nickname: string;
|
||||||
|
pass: string;
|
||||||
|
},
|
||||||
|
): CancelablePromise<{
|
||||||
|
success?: boolean;
|
||||||
|
error?: string | null;
|
||||||
|
user_id?: string | null;
|
||||||
|
}> {
|
||||||
|
return __request(OpenAPI, {
|
||||||
|
method: 'POST',
|
||||||
|
url: '/auth/sign-up',
|
||||||
|
body: requestBody,
|
||||||
|
mediaType: 'application/json',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Sign in a user and return JWT
|
||||||
|
* @param requestBody
|
||||||
|
* @returns any Sign-in result with JWT
|
||||||
|
* @throws ApiError
|
||||||
|
*/
|
||||||
|
public static postAuthSignIn(
|
||||||
|
requestBody: {
|
||||||
|
nickname: string;
|
||||||
|
pass: string;
|
||||||
|
},
|
||||||
|
): CancelablePromise<{
|
||||||
|
error?: string | null;
|
||||||
|
user_id?: string | null;
|
||||||
|
user_name?: string | null;
|
||||||
|
}> {
|
||||||
|
return __request(OpenAPI, {
|
||||||
|
method: 'POST',
|
||||||
|
url: '/auth/sign-in',
|
||||||
|
body: requestBody,
|
||||||
|
mediaType: 'application/json',
|
||||||
|
errors: {
|
||||||
|
401: `Access denied due to invalid credentials`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
90
modules/frontend/src/components/Header/Header.tsx
Normal file
90
modules/frontend/src/components/Header/Header.tsx
Normal file
|
|
@ -0,0 +1,90 @@
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import { Link } from "react-router-dom";
|
||||||
|
import { Bars3Icon, XMarkIcon } from "@heroicons/react/24/solid";
|
||||||
|
|
||||||
|
type HeaderProps = {
|
||||||
|
username?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const Header: React.FC<HeaderProps> = ({ username }) => {
|
||||||
|
const [menuOpen, setMenuOpen] = useState(false);
|
||||||
|
|
||||||
|
const toggleMenu = () => setMenuOpen(!menuOpen);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<header className="w-full bg-white shadow-md sticky top-0 left-0 z-50">
|
||||||
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="flex justify-between h-16 items-center">
|
||||||
|
|
||||||
|
{/* Левый блок — логотип / название */}
|
||||||
|
<div className="flex-shrink-0">
|
||||||
|
<Link to="/" className="text-xl font-bold text-gray-800 hover:text-blue-600">
|
||||||
|
NyanimeDB
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Центр — ссылки на разделы (desktop) */}
|
||||||
|
<nav className="hidden md:flex space-x-4">
|
||||||
|
<Link to="/titles" className="text-gray-700 hover:text-blue-600">
|
||||||
|
Titles
|
||||||
|
</Link>
|
||||||
|
<Link to="/users" className="text-gray-700 hover:text-blue-600">
|
||||||
|
Users
|
||||||
|
</Link>
|
||||||
|
<Link to="/about" className="text-gray-700 hover:text-blue-600">
|
||||||
|
About
|
||||||
|
</Link>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{/* Правый блок — профиль */}
|
||||||
|
<div className="hidden md:flex items-center space-x-4">
|
||||||
|
{username ? (
|
||||||
|
<Link to="/profile" className="text-gray-700 hover:text-blue-600 font-medium">
|
||||||
|
{username}
|
||||||
|
</Link>
|
||||||
|
) : (
|
||||||
|
<Link to="/login" className="text-gray-700 hover:text-blue-600 font-medium">
|
||||||
|
Login
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Бургер для мобильного */}
|
||||||
|
<div className="md:hidden flex items-center">
|
||||||
|
<button
|
||||||
|
onClick={toggleMenu}
|
||||||
|
className="p-2 rounded-md hover:bg-gray-200 transition"
|
||||||
|
>
|
||||||
|
{menuOpen ? (
|
||||||
|
<XMarkIcon className="w-6 h-6 text-gray-800" />
|
||||||
|
) : (
|
||||||
|
<Bars3Icon className="w-6 h-6 text-gray-800" />
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Мобильное меню */}
|
||||||
|
{menuOpen && (
|
||||||
|
<div className="md:hidden bg-white border-t border-gray-200 shadow-md">
|
||||||
|
<nav className="flex flex-col p-4 space-y-2">
|
||||||
|
<Link to="/titles" className="text-gray-700 hover:text-blue-600" onClick={() => setMenuOpen(false)}>Titles</Link>
|
||||||
|
<Link to="/users" className="text-gray-700 hover:text-blue-600" onClick={() => setMenuOpen(false)}>Users</Link>
|
||||||
|
<Link to="/about" className="text-gray-700 hover:text-blue-600" onClick={() => setMenuOpen(false)}>About</Link>
|
||||||
|
{username ? (
|
||||||
|
<Link to="/profile" className="text-gray-700 hover:text-blue-600 font-medium" onClick={() => setMenuOpen(false)}>
|
||||||
|
{username}
|
||||||
|
</Link>
|
||||||
|
) : (
|
||||||
|
<Link to="/login" className="text-gray-700 hover:text-blue-600 font-medium" onClick={() => setMenuOpen(false)}>
|
||||||
|
Login
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</header>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
import React from "react";
|
||||||
|
import { Squares2X2Icon, Bars3Icon } from "@heroicons/react/24/solid";
|
||||||
|
|
||||||
|
export type LayoutSwitchProps = {
|
||||||
|
layout: "square" | "horizontal"
|
||||||
|
setLayout: (value: React.SetStateAction<"square" | "horizontal">) => void
|
||||||
|
};
|
||||||
|
|
||||||
|
export function LayoutSwitch({
|
||||||
|
layout,
|
||||||
|
setLayout
|
||||||
|
}: LayoutSwitchProps) {
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex justify-end">
|
||||||
|
<button
|
||||||
|
className="p-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition"
|
||||||
|
onClick={() =>
|
||||||
|
setLayout(prev => (prev === "square" ? "horizontal" : "square"))
|
||||||
|
}>
|
||||||
|
{layout === "square"
|
||||||
|
? <Squares2X2Icon className="w-6 h-6" />
|
||||||
|
: <Bars3Icon className="w-6 h-6" />
|
||||||
|
}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
48
modules/frontend/src/components/ListView/ListView.tsx
Normal file
48
modules/frontend/src/components/ListView/ListView.tsx
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
export type ListViewProps<T> = {
|
||||||
|
items: T[];
|
||||||
|
layout: "square" | "horizontal";
|
||||||
|
renderItem: (item: T, layout: "square" | "horizontal") => React.ReactNode;
|
||||||
|
onLoadMore: () => void;
|
||||||
|
hasMore: boolean;
|
||||||
|
loadingMore: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function ListView<T>({
|
||||||
|
items,
|
||||||
|
layout,
|
||||||
|
renderItem,
|
||||||
|
onLoadMore,
|
||||||
|
hasMore,
|
||||||
|
loadingMore
|
||||||
|
}: ListViewProps<T>) {
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="w-full flex flex-col items-center">
|
||||||
|
{/* Items */}
|
||||||
|
<div
|
||||||
|
className={`w-full sm:w-4/5 grid gap-6 ${
|
||||||
|
layout === "square"
|
||||||
|
? "grid-cols-1 sm:grid-cols-2 lg:grid-cols-4"
|
||||||
|
: "grid-cols-1"
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
{items.map(item => renderItem(item, layout))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Load More */}
|
||||||
|
{hasMore && (
|
||||||
|
<div className="mt-8">
|
||||||
|
<button
|
||||||
|
className="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition disabled:opacity-50"
|
||||||
|
disabled={loadingMore}
|
||||||
|
onClick={onLoadMore}
|
||||||
|
>
|
||||||
|
{loadingMore ? "Loading..." : "Load More"}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
34
modules/frontend/src/components/SearchBar/SearchBar.tsx
Normal file
34
modules/frontend/src/components/SearchBar/SearchBar.tsx
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
type SearchBarProps = {
|
||||||
|
placeholder?: string;
|
||||||
|
search: string;
|
||||||
|
setSearch: (value: string) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function SearchBar({
|
||||||
|
placeholder = "Search...",
|
||||||
|
search,
|
||||||
|
setSearch,
|
||||||
|
}: SearchBarProps) {
|
||||||
|
return (
|
||||||
|
<div className="w-full">
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
value={search}
|
||||||
|
placeholder={placeholder}
|
||||||
|
onChange={(e) => setSearch(e.target.value)}
|
||||||
|
className="
|
||||||
|
w-full
|
||||||
|
px-4
|
||||||
|
py-2
|
||||||
|
border
|
||||||
|
border-gray-300
|
||||||
|
rounded-lg
|
||||||
|
focus:outline-none
|
||||||
|
focus:ring-2
|
||||||
|
focus:ring-blue-500
|
||||||
|
text-black
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,67 @@
|
||||||
|
import { useState } from "react";
|
||||||
|
import type { TitleSort } from "../../api";
|
||||||
|
import { ChevronDownIcon, ArrowUpIcon, ArrowDownIcon } from "@heroicons/react/24/solid";
|
||||||
|
|
||||||
|
type TitlesSortBoxProps = {
|
||||||
|
sort: TitleSort;
|
||||||
|
setSort: (value: TitleSort) => void;
|
||||||
|
sortForward: boolean;
|
||||||
|
setSortForward: (value: boolean) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
const SORT_OPTIONS: TitleSort[] = ["id", "rating", "year", "views"];
|
||||||
|
|
||||||
|
export function TitlesSortBox({
|
||||||
|
sort,
|
||||||
|
setSort,
|
||||||
|
sortForward,
|
||||||
|
setSortForward,
|
||||||
|
}: TitlesSortBoxProps) {
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
|
||||||
|
const toggleSortDirection = () => setSortForward(!sortForward);
|
||||||
|
const handleSortSelect = (newSort: TitleSort) => {
|
||||||
|
setSort(newSort);
|
||||||
|
setOpen(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="inline-flex relative z-50">
|
||||||
|
{/* Левая часть — смена направления */}
|
||||||
|
<button
|
||||||
|
onClick={toggleSortDirection}
|
||||||
|
className="px-4 py-2 flex items-center justify-center bg-gray-100 hover:bg-gray-200 border border-gray-300 rounded-l-lg transition"
|
||||||
|
>
|
||||||
|
{sortForward ? <ArrowUpIcon className="w-4 h-4 mr-1" /> : <ArrowDownIcon className="w-4 h-4 mr-1" />}
|
||||||
|
<span className="text-sm font-medium">Order</span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* Правая часть — выбор параметра */}
|
||||||
|
<button
|
||||||
|
onClick={() => setOpen(!open)}
|
||||||
|
className="px-4 py-2 flex items-center justify-center bg-gray-100 hover:bg-gray-200 border border-gray-300 border-l-0 rounded-r-lg transition"
|
||||||
|
>
|
||||||
|
<span className="text-sm font-medium">{sort}</span>
|
||||||
|
<ChevronDownIcon className="w-4 h-4 ml-1" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* Dropdown */}
|
||||||
|
{open && (
|
||||||
|
<ul className="absolute top-full left-0 mt-1 w-40 bg-white border border-gray-300 rounded-md shadow-lg z-[1000]">
|
||||||
|
{SORT_OPTIONS.map(option => (
|
||||||
|
<li key={option}>
|
||||||
|
<button
|
||||||
|
className={`w-full text-left px-4 py-2 hover:bg-gray-100 transition ${
|
||||||
|
option === sort ? "font-bold bg-gray-100" : ""
|
||||||
|
}`}
|
||||||
|
onClick={() => handleSortSelect(option)}
|
||||||
|
>
|
||||||
|
{option}
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -1,97 +0,0 @@
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: flex-start;
|
|
||||||
padding: 3rem 1rem;
|
|
||||||
background-color: #f5f6fa;
|
|
||||||
min-height: 100vh;
|
|
||||||
font-family: "Inter", sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
background-color: #ffffff;
|
|
||||||
border-radius: 1rem;
|
|
||||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
||||||
padding: 2rem;
|
|
||||||
max-width: 400px;
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.avatar {
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.avatarImg {
|
|
||||||
width: 120px;
|
|
||||||
height: 120px;
|
|
||||||
border-radius: 50%;
|
|
||||||
object-fit: cover;
|
|
||||||
border: 3px solid #4a90e2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.avatarPlaceholder {
|
|
||||||
width: 120px;
|
|
||||||
height: 120px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: #dcdde1;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 3rem;
|
|
||||||
color: #4a4a4a;
|
|
||||||
font-weight: bold;
|
|
||||||
border: 3px solid #4a90e2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.name {
|
|
||||||
font-size: 1.8rem;
|
|
||||||
font-weight: 700;
|
|
||||||
margin: 0.25rem 0;
|
|
||||||
color: #2f3640;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nickname {
|
|
||||||
font-size: 1rem;
|
|
||||||
color: #718093;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.desc {
|
|
||||||
font-size: 1rem;
|
|
||||||
color: #353b48;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.created {
|
|
||||||
font-size: 0.9rem;
|
|
||||||
color: #7f8fa6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.loader {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
height: 80vh;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
color: #4a90e2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.error {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
height: 80vh;
|
|
||||||
color: #e84118;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
}
|
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
import type { Title } from "../../api/models/Title";
|
||||||
|
|
||||||
|
export function TitleCardHorizontal({ title }: { title: Title }) {
|
||||||
|
return (
|
||||||
|
<div style={{
|
||||||
|
display: "flex",
|
||||||
|
gap: 12,
|
||||||
|
padding: 12,
|
||||||
|
border: "1px solid #ddd",
|
||||||
|
borderRadius: 8
|
||||||
|
}}>
|
||||||
|
{title.poster?.image_path && (
|
||||||
|
<img src={title.poster.image_path} width={80} />
|
||||||
|
)}
|
||||||
|
<div>
|
||||||
|
<h3>{title.title_names["en"]}</h3>
|
||||||
|
<p>{title.release_year} · {title.release_season} · Rating: {title.rating}</p>
|
||||||
|
<p>Status: {title.title_status}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
22
modules/frontend/src/components/cards/TitleCardSquare.tsx
Normal file
22
modules/frontend/src/components/cards/TitleCardSquare.tsx
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
// TitleCardSquare.tsx
|
||||||
|
import type { Title } from "../../api/models/Title";
|
||||||
|
|
||||||
|
export function TitleCardSquare({ title }: { title: Title }) {
|
||||||
|
return (
|
||||||
|
<div style={{
|
||||||
|
width: 160,
|
||||||
|
border: "1px solid #ddd",
|
||||||
|
padding: 8,
|
||||||
|
borderRadius: 8,
|
||||||
|
textAlign: "center"
|
||||||
|
}}>
|
||||||
|
{title.poster?.image_path && (
|
||||||
|
<img src={title.poster.image_path} width={140} />
|
||||||
|
)}
|
||||||
|
<div>
|
||||||
|
<h4>{title.title_names["en"]}</h4>
|
||||||
|
<small>{title.release_year} • {title.rating}</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
import type { UserTitle } from "../../api";
|
||||||
|
|
||||||
|
export function UserTitleCardHorizontal({ title }: { title: UserTitle }) {
|
||||||
|
return (
|
||||||
|
<div style={{
|
||||||
|
display: "flex",
|
||||||
|
gap: 12,
|
||||||
|
padding: 12,
|
||||||
|
border: "1px solid #ddd",
|
||||||
|
borderRadius: 8
|
||||||
|
}}>
|
||||||
|
{title.title?.poster?.image_path && (
|
||||||
|
<img src={title.title?.poster.image_path} width={80} />
|
||||||
|
)}
|
||||||
|
<div>
|
||||||
|
<h3>{title.title?.title_names["en"]}</h3>
|
||||||
|
<p>{title.title?.release_year} · {title.title?.release_season} · Rating: {title.title?.rating}</p>
|
||||||
|
<p>Status: {title.title?.title_status}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
import type { UserTitle } from "../../api";
|
||||||
|
|
||||||
|
export function UserTitleCardSquare({ title }: { title: UserTitle }) {
|
||||||
|
return (
|
||||||
|
<div style={{
|
||||||
|
width: 160,
|
||||||
|
border: "1px solid #ddd",
|
||||||
|
padding: 8,
|
||||||
|
borderRadius: 8,
|
||||||
|
textAlign: "center"
|
||||||
|
}}>
|
||||||
|
{title.title?.poster?.image_path && (
|
||||||
|
<img src={title.title?.poster.image_path} width={140} />
|
||||||
|
)}
|
||||||
|
<div>
|
||||||
|
<h4>{title.title?.title_names["en"]}</h4>
|
||||||
|
<h5>{title.status}</h5>
|
||||||
|
<small>{title.title?.release_year} • {title.title?.rating}</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -1,68 +1,9 @@
|
||||||
:root {
|
@import "tailwindcss";
|
||||||
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
||||||
line-height: 1.5;
|
|
||||||
font-weight: 400;
|
|
||||||
|
|
||||||
color-scheme: light dark;
|
html, body, #root {
|
||||||
color: rgba(255, 255, 255, 0.87);
|
|
||||||
background-color: #242424;
|
|
||||||
|
|
||||||
font-synthesis: none;
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
font-weight: 500;
|
|
||||||
color: #646cff;
|
|
||||||
text-decoration: inherit;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #535bf2;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
padding: 0;
|
||||||
place-items: center;
|
width: 100%;
|
||||||
min-width: 320px;
|
height: 100%;
|
||||||
min-height: 100vh;
|
@apply text-black bg-white;
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 3.2em;
|
|
||||||
line-height: 1.1;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
border-radius: 8px;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
padding: 0.6em 1.2em;
|
|
||||||
font-size: 1em;
|
|
||||||
font-weight: 500;
|
|
||||||
font-family: inherit;
|
|
||||||
background-color: #1a1a1a;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: border-color 0.25s;
|
|
||||||
}
|
|
||||||
button:hover {
|
|
||||||
border-color: #646cff;
|
|
||||||
}
|
|
||||||
button:focus,
|
|
||||||
button:focus-visible {
|
|
||||||
outline: 4px auto -webkit-focus-ring-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
:root {
|
|
||||||
color: #213547;
|
|
||||||
background-color: #ffffff;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #747bff;
|
|
||||||
}
|
|
||||||
button {
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
118
modules/frontend/src/pages/LoginPage/LoginPage.tsx
Normal file
118
modules/frontend/src/pages/LoginPage/LoginPage.tsx
Normal file
|
|
@ -0,0 +1,118 @@
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import { AuthService } from "../../auth/services/AuthService";
|
||||||
|
import { useNavigate } from "react-router-dom";
|
||||||
|
|
||||||
|
export const LoginPage: React.FC = () => {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const [isLogin, setIsLogin] = useState(true); // true = login, false = signup
|
||||||
|
const [nickname, setNickname] = useState("");
|
||||||
|
const [password, setPassword] = useState("");
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const handleSubmit = async (e: React.FormEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
setLoading(true);
|
||||||
|
setError(null);
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (isLogin) {
|
||||||
|
const res = await AuthService.postAuthSignIn({ nickname, pass: password });
|
||||||
|
if (res.user_id && res.user_name) {
|
||||||
|
// Сохраняем user_id и username в localStorage
|
||||||
|
localStorage.setItem("userId", res.user_id);
|
||||||
|
localStorage.setItem("username", res.user_name);
|
||||||
|
|
||||||
|
navigate("/profile"); // редирект на профиль
|
||||||
|
} else {
|
||||||
|
setError(res.error || "Login failed");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// SignUp оставляем без сохранения данных
|
||||||
|
const res = await AuthService.postAuthSignUp({ nickname, pass: password });
|
||||||
|
if (res.user_id) {
|
||||||
|
setIsLogin(true); // переключаемся на login после регистрации
|
||||||
|
} else {
|
||||||
|
setError(res.error || "Sign up failed");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (err: any) {
|
||||||
|
console.error(err);
|
||||||
|
setError(err?.message || "Something went wrong");
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 px-4">
|
||||||
|
<div className="max-w-md w-full bg-white shadow-md rounded-lg p-8">
|
||||||
|
<h2 className="text-2xl font-bold mb-6 text-center">
|
||||||
|
{isLogin ? "Login" : "Sign Up"}
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
{error && <div className="text-red-600 mb-4">{error}</div>}
|
||||||
|
|
||||||
|
<form onSubmit={handleSubmit} className="space-y-4">
|
||||||
|
<div>
|
||||||
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||||
|
Nickname
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
value={nickname}
|
||||||
|
onChange={(e) => setNickname(e.target.value)}
|
||||||
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||||
|
Password
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
type="password"
|
||||||
|
value={password}
|
||||||
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={loading}
|
||||||
|
className="w-full bg-blue-600 text-white py-2 rounded-lg font-semibold hover:bg-blue-700 transition disabled:opacity-50"
|
||||||
|
>
|
||||||
|
{loading ? "Please wait..." : isLogin ? "Login" : "Sign Up"}
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<div className="mt-4 text-center text-sm text-gray-600">
|
||||||
|
{isLogin ? (
|
||||||
|
<>
|
||||||
|
Don't have an account?{" "}
|
||||||
|
<button
|
||||||
|
onClick={() => setIsLogin(false)}
|
||||||
|
className="text-blue-600 hover:underline"
|
||||||
|
>
|
||||||
|
Sign Up
|
||||||
|
</button>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
Already have an account?{" "}
|
||||||
|
<button
|
||||||
|
onClick={() => setIsLogin(true)}
|
||||||
|
className="text-blue-600 hover:underline"
|
||||||
|
>
|
||||||
|
Login
|
||||||
|
</button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
140
modules/frontend/src/pages/TitlePage/TitlePage.tsx
Normal file
140
modules/frontend/src/pages/TitlePage/TitlePage.tsx
Normal file
|
|
@ -0,0 +1,140 @@
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { useParams } from "react-router-dom";
|
||||||
|
import { DefaultService } from "../../api/services/DefaultService";
|
||||||
|
import type { Title, UserTitleStatus } from "../../api";
|
||||||
|
import {
|
||||||
|
ClockIcon,
|
||||||
|
CheckCircleIcon,
|
||||||
|
PlayCircleIcon,
|
||||||
|
XCircleIcon,
|
||||||
|
} from "@heroicons/react/24/solid";
|
||||||
|
|
||||||
|
const STATUS_BUTTONS: { status: UserTitleStatus; icon: React.ReactNode; label: string }[] = [
|
||||||
|
{ status: "planned", icon: <ClockIcon className="w-6 h-6" />, label: "Planned" },
|
||||||
|
{ status: "finished", icon: <CheckCircleIcon className="w-6 h-6" />, label: "Finished" },
|
||||||
|
{ status: "in-progress", icon: <PlayCircleIcon className="w-6 h-6" />, label: "In Progress" },
|
||||||
|
{ status: "dropped", icon: <XCircleIcon className="w-6 h-6" />, label: "Dropped" },
|
||||||
|
];
|
||||||
|
|
||||||
|
export default function TitlePage() {
|
||||||
|
const params = useParams();
|
||||||
|
const titleId = Number(params.id);
|
||||||
|
|
||||||
|
const [title, setTitle] = useState<Title | null>(null);
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const [userStatus, setUserStatus] = useState<UserTitleStatus | null>(null);
|
||||||
|
const [updatingStatus, setUpdatingStatus] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchTitle = async () => {
|
||||||
|
setLoading(true);
|
||||||
|
try {
|
||||||
|
const data = await DefaultService.getTitle(titleId, "all");
|
||||||
|
setTitle(data);
|
||||||
|
setError(null);
|
||||||
|
} catch (err: any) {
|
||||||
|
console.error(err);
|
||||||
|
setError(err?.message || "Failed to fetch title");
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
fetchTitle();
|
||||||
|
}, [titleId]);
|
||||||
|
|
||||||
|
const handleStatusClick = async (status: UserTitleStatus) => {
|
||||||
|
if (updatingStatus || userStatus === status) return;
|
||||||
|
|
||||||
|
const userId = Number(localStorage.getItem("userId"));
|
||||||
|
if (!userId) {
|
||||||
|
alert("You must be logged in to set status.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setUpdatingStatus(true);
|
||||||
|
try {
|
||||||
|
await DefaultService.addUserTitle(userId, {
|
||||||
|
title_id: titleId,
|
||||||
|
status,
|
||||||
|
});
|
||||||
|
setUserStatus(status);
|
||||||
|
} catch (err: any) {
|
||||||
|
console.error(err);
|
||||||
|
alert(err?.message || "Failed to set status");
|
||||||
|
} finally {
|
||||||
|
setUpdatingStatus(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const getTagsString = () =>
|
||||||
|
title?.tags?.map(tag => tag.en).filter(Boolean).join(", ");
|
||||||
|
|
||||||
|
if (loading) return <div className="mt-20 font-medium text-black">Loading title...</div>;
|
||||||
|
if (error) return <div className="mt-20 text-red-600 font-medium">{error}</div>;
|
||||||
|
if (!title) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="w-full min-h-screen bg-gray-50 p-6 flex justify-center">
|
||||||
|
<div className="flex flex-col md:flex-row bg-white shadow-lg rounded-xl max-w-4xl w-full p-6 gap-6">
|
||||||
|
{/* Постер */}
|
||||||
|
<div className="flex flex-col items-center">
|
||||||
|
<img
|
||||||
|
src={title.poster?.image_path || "/default-poster.png"}
|
||||||
|
alt={title.title_names?.en?.[0] || "Title poster"}
|
||||||
|
className="w-48 h-72 object-cover rounded-lg mb-4"
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Статус кнопки с иконками */}
|
||||||
|
<div className="flex gap-2 mt-2 flex-wrap justify-center">
|
||||||
|
{STATUS_BUTTONS.map(btn => (
|
||||||
|
<button
|
||||||
|
key={btn.status}
|
||||||
|
onClick={() => handleStatusClick(btn.status)}
|
||||||
|
disabled={updatingStatus}
|
||||||
|
className={`p-2 rounded-lg transition flex items-center justify-center ${
|
||||||
|
userStatus === btn.status
|
||||||
|
? "bg-blue-600 text-white"
|
||||||
|
: "bg-gray-200 text-gray-700 hover:bg-gray-300"
|
||||||
|
}`}
|
||||||
|
title={btn.label}
|
||||||
|
>
|
||||||
|
{btn.icon}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Информация о тайтле */}
|
||||||
|
<div className="flex-1 flex flex-col">
|
||||||
|
<h1 className="text-3xl font-bold mb-2">
|
||||||
|
{title.title_names?.en?.[0] || "Untitled"}
|
||||||
|
</h1>
|
||||||
|
{title.studio && <p className="text-gray-700 mb-1">Studio: {title.studio.name}</p>}
|
||||||
|
{title.title_status && <p className="text-gray-700 mb-1">Status: {title.title_status}</p>}
|
||||||
|
{title.rating !== undefined && (
|
||||||
|
<p className="text-gray-700 mb-1">
|
||||||
|
Rating: {title.rating} ({title.rating_count} votes)
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
{title.release_year && (
|
||||||
|
<p className="text-gray-700 mb-1">
|
||||||
|
Released: {title.release_year} {title.release_season || ""}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
{title.episodes_aired !== undefined && (
|
||||||
|
<p className="text-gray-700 mb-1">
|
||||||
|
Episodes: {title.episodes_aired}/{title.episodes_all}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
{title.tags && title.tags.length > 0 && (
|
||||||
|
<p className="text-gray-700 mb-1">
|
||||||
|
Tags: {getTagsString()}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
@import "tailwindcss";
|
||||||
154
modules/frontend/src/pages/TitlesPage/TitlesPage.tsx
Normal file
154
modules/frontend/src/pages/TitlesPage/TitlesPage.tsx
Normal file
|
|
@ -0,0 +1,154 @@
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { ListView } from "../../components/ListView/ListView";
|
||||||
|
import { SearchBar } from "../../components/SearchBar/SearchBar";
|
||||||
|
import { TitlesSortBox } from "../../components/TitlesSortBox/TitlesSortBox";
|
||||||
|
import { DefaultService } from "../../api/services/DefaultService";
|
||||||
|
import { TitleCardSquare } from "../../components/cards/TitleCardSquare";
|
||||||
|
import { TitleCardHorizontal } from "../../components/cards/TitleCardHorizontal";
|
||||||
|
import type { CursorObj, Title, TitleSort } from "../../api";
|
||||||
|
import { LayoutSwitch } from "../../components/LayoutSwitch/LayoutSwitch";
|
||||||
|
|
||||||
|
const PAGE_SIZE = 10;
|
||||||
|
|
||||||
|
export default function TitlesPage() {
|
||||||
|
const [titles, setTitles] = useState<Title[]>([]);
|
||||||
|
const [nextPage, setNextPage] = useState<Title[]>([]);
|
||||||
|
const [cursor, setCursor] = useState<CursorObj | null>(null);
|
||||||
|
const [search, setSearch] = useState("");
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
const [loadingMore, setLoadingMore] = useState(false);
|
||||||
|
const [sort, setSort] = useState<TitleSort>("id");
|
||||||
|
const [sortForward, setSortForward] = useState(true);
|
||||||
|
const [layout, setLayout] = useState<"square" | "horizontal">("square");
|
||||||
|
|
||||||
|
const fetchPage = async (cursorObj: CursorObj | null) => {
|
||||||
|
const cursorStr = cursorObj ? btoa(JSON.stringify(cursorObj)).replace(/\+/g, '-').replace(/\//g, '_').replace(/=+$/, '') : "";
|
||||||
|
|
||||||
|
try {
|
||||||
|
const result = await DefaultService.getTitles(
|
||||||
|
cursorStr,
|
||||||
|
sort,
|
||||||
|
sortForward,
|
||||||
|
search.trim() || undefined,
|
||||||
|
undefined,
|
||||||
|
undefined,
|
||||||
|
undefined,
|
||||||
|
undefined,
|
||||||
|
PAGE_SIZE,
|
||||||
|
undefined,
|
||||||
|
"all"
|
||||||
|
);
|
||||||
|
|
||||||
|
if ((result === undefined) || !result.data?.length) {
|
||||||
|
return { items: [], nextCursor: null };
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
items: result.data ?? [],
|
||||||
|
nextCursor: result.cursor ?? null
|
||||||
|
};
|
||||||
|
} catch (err: any) {
|
||||||
|
if (err.status === 204) {
|
||||||
|
return { items: [], nextCursor: null };
|
||||||
|
}
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Инициализация: загружаем сразу две страницы
|
||||||
|
useEffect(() => {
|
||||||
|
const initLoad = async () => {
|
||||||
|
setLoading(true);
|
||||||
|
setTitles([]);
|
||||||
|
setNextPage([]);
|
||||||
|
setCursor(null);
|
||||||
|
|
||||||
|
const firstPage = await fetchPage(null);
|
||||||
|
const secondPage = firstPage.nextCursor ? await fetchPage(firstPage.nextCursor) : { items: [], nextCursor: null };
|
||||||
|
|
||||||
|
setTitles(firstPage.items);
|
||||||
|
setNextPage(secondPage.items);
|
||||||
|
setCursor(secondPage.nextCursor);
|
||||||
|
setLoading(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
initLoad();
|
||||||
|
}, [search, sort, sortForward]);
|
||||||
|
|
||||||
|
|
||||||
|
const handleLoadMore = async () => {
|
||||||
|
if (nextPage.length === 0) {
|
||||||
|
setLoadingMore(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setLoadingMore(true);
|
||||||
|
|
||||||
|
setTitles(prev => [...prev, ...nextPage]);
|
||||||
|
setNextPage([]);
|
||||||
|
|
||||||
|
// Подгружаем следующую страницу с сервера
|
||||||
|
if (cursor) {
|
||||||
|
try {
|
||||||
|
const next = await fetchPage(cursor);
|
||||||
|
if (next.items.length > 0) {
|
||||||
|
setNextPage(next.items);
|
||||||
|
}
|
||||||
|
setCursor(next.nextCursor);
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Любой сценарий – выключаем loadingMore
|
||||||
|
setLoadingMore(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="w-full min-h-screen bg-gray-50 p-6 flex flex-col items-center">
|
||||||
|
|
||||||
|
<h1 className="text-4xl font-bold mb-6 text-center text-black">Titles</h1>
|
||||||
|
|
||||||
|
<div className="w-full sm:w-4/5 flex flex-col sm:flex-row gap-4 mb-6 items-center">
|
||||||
|
<SearchBar placeholder="Search titles..." search={search} setSearch={setSearch} />
|
||||||
|
<LayoutSwitch layout={layout} setLayout={setLayout} />
|
||||||
|
<TitlesSortBox
|
||||||
|
sort={sort}
|
||||||
|
setSort={setSort}
|
||||||
|
sortForward={sortForward}
|
||||||
|
setSortForward={setSortForward}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{loading && <div className="mt-20 font-medium text-black">Loading...</div>}
|
||||||
|
|
||||||
|
{!loading && titles.length === 0 && (
|
||||||
|
<div className="mt-20 font-medium text-black">No titles found.</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{titles.length > 0 && (
|
||||||
|
<>
|
||||||
|
<ListView<Title>
|
||||||
|
items={titles}
|
||||||
|
layout={layout}
|
||||||
|
hasMore={!!cursor || nextPage.length > 1}
|
||||||
|
loadingMore={loadingMore}
|
||||||
|
onLoadMore={handleLoadMore}
|
||||||
|
renderItem={(title, layout) =>
|
||||||
|
layout === "square"
|
||||||
|
? <TitleCardSquare title={title} />
|
||||||
|
: <TitleCardHorizontal title={title} />
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{!cursor && nextPage.length == 0 && (
|
||||||
|
<div className="mt-6 font-medium text-black">
|
||||||
|
Результатов больше нет, было найдено {titles.length} тайтлов.
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
103
modules/frontend/src/pages/UserPage/UserPage.module.css
Normal file
103
modules/frontend/src/pages/UserPage/UserPage.module.css
Normal file
|
|
@ -0,0 +1,103 @@
|
||||||
|
body,
|
||||||
|
html {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
background-color: #777;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
html,
|
||||||
|
body,
|
||||||
|
#root {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
width: 100vw;
|
||||||
|
padding: 30px 40px;
|
||||||
|
background: #f7f7f7;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 25px;
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
||||||
|
border-bottom: 1px solid #e5e5e5;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatarWrapper {
|
||||||
|
width: 120px;
|
||||||
|
height: 120px;
|
||||||
|
min-width: 120px;
|
||||||
|
border-radius: 50%;
|
||||||
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatarImg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatarPlaceholder {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: #ccc;
|
||||||
|
font-size: 42px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #555;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.userInfo {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.name {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nickname {
|
||||||
|
font-size: 18px;
|
||||||
|
color: #666;
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 100vw;
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 0%;
|
||||||
|
/* margin: 25px auto; */
|
||||||
|
/* padding: 0 20px; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.desc {
|
||||||
|
font-size: 18px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.created {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loader,
|
||||||
|
.error {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 40px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
@ -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);
|
||||||
|
|
@ -33,11 +33,11 @@ const UserPage: React.FC = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.container}>
|
<div className={styles.container}>
|
||||||
<div className={styles.card}>
|
<div className={styles.header}>
|
||||||
<div className={styles.avatar}>
|
<div className={styles.avatarWrapper}>
|
||||||
{user.avatar_id ? (
|
{user.image?.image_path ? (
|
||||||
<img
|
<img
|
||||||
src={`/images/${user.avatar_id}.png`}
|
src={`/images/${user.image.image_path}.png`}
|
||||||
alt="User Avatar"
|
alt="User Avatar"
|
||||||
className={styles.avatarImg}
|
className={styles.avatarImg}
|
||||||
/>
|
/>
|
||||||
|
|
@ -48,13 +48,16 @@ const UserPage: React.FC = () => {
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles.info}>
|
<div className={styles.userInfo}>
|
||||||
<h1 className={styles.name}>{user.disp_name || user.nickname}</h1>
|
<h1 className={styles.name}>{user.disp_name || user.nickname}</h1>
|
||||||
<p className={styles.nickname}>@{user.nickname}</p>
|
<p className={styles.nickname}>@{user.nickname}</p>
|
||||||
{user.user_desc && <p className={styles.desc}>{user.user_desc}</p>}
|
{/* <p className={styles.created}>
|
||||||
<p className={styles.created}>
|
|
||||||
Joined: {new Date(user.creation_date).toLocaleDateString()}
|
Joined: {new Date(user.creation_date).toLocaleDateString()}
|
||||||
</p>
|
</p> */}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.content}>
|
||||||
|
{user.user_desc && <p className={styles.desc}>{user.user_desc}</p>}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
183
modules/frontend/src/pages/UsersIdPage/UsersIdPage.tsx
Normal file
183
modules/frontend/src/pages/UsersIdPage/UsersIdPage.tsx
Normal file
|
|
@ -0,0 +1,183 @@
|
||||||
|
// pages/UserPage/UserPage.tsx
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { useParams } from "react-router-dom";
|
||||||
|
import { DefaultService } from "../../api/services/DefaultService";
|
||||||
|
import { SearchBar } from "../../components/SearchBar/SearchBar";
|
||||||
|
import { TitlesSortBox } from "../../components/TitlesSortBox/TitlesSortBox";
|
||||||
|
import { LayoutSwitch } from "../../components/LayoutSwitch/LayoutSwitch";
|
||||||
|
import { ListView } from "../../components/ListView/ListView";
|
||||||
|
import { UserTitleCardSquare } from "../../components/cards/UserTitleCardSquare";
|
||||||
|
import { UserTitleCardHorizontal } from "../../components/cards/UserTitleCardHorizontal";
|
||||||
|
import type { User, UserTitle, CursorObj, TitleSort } from "../../api";
|
||||||
|
|
||||||
|
const PAGE_SIZE = 10;
|
||||||
|
|
||||||
|
type UsersIdPageProps = {
|
||||||
|
userId?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function UsersIdPage({ userId }: UsersIdPageProps) {
|
||||||
|
const params = useParams();
|
||||||
|
const id = userId || params?.id;
|
||||||
|
|
||||||
|
const [user, setUser] = useState<User | null>(null);
|
||||||
|
const [loadingUser, setLoadingUser] = useState(true);
|
||||||
|
const [errorUser, setErrorUser] = useState<string | null>(null);
|
||||||
|
|
||||||
|
// Для списка тайтлов
|
||||||
|
const [titles, setTitles] = useState<UserTitle[]>([]);
|
||||||
|
const [nextPage, setNextPage] = useState<UserTitle[]>([]);
|
||||||
|
const [cursor, setCursor] = useState<CursorObj | null>(null);
|
||||||
|
const [loadingTitles, setLoadingTitles] = useState(true);
|
||||||
|
const [loadingMore, setLoadingMore] = useState(false);
|
||||||
|
const [search, setSearch] = useState("");
|
||||||
|
const [sort, setSort] = useState<TitleSort>("id");
|
||||||
|
const [sortForward, setSortForward] = useState(true);
|
||||||
|
const [layout, setLayout] = useState<"square" | "horizontal">("square");
|
||||||
|
|
||||||
|
// --- Получение данных пользователя ---
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchUser = async () => {
|
||||||
|
if (!id) return;
|
||||||
|
setLoadingUser(true);
|
||||||
|
try {
|
||||||
|
const result = await DefaultService.getUsersId(id, "all");
|
||||||
|
setUser(result);
|
||||||
|
setErrorUser(null);
|
||||||
|
} catch (err: any) {
|
||||||
|
console.error(err);
|
||||||
|
setErrorUser(err?.message || "Failed to fetch user data");
|
||||||
|
} finally {
|
||||||
|
setLoadingUser(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
fetchUser();
|
||||||
|
}, [id]);
|
||||||
|
|
||||||
|
// --- Получение списка тайтлов пользователя ---
|
||||||
|
const fetchPage = async (cursorObj: CursorObj | null) => {
|
||||||
|
if (!id) return { items: [], nextCursor: null };
|
||||||
|
const cursorStr = cursorObj
|
||||||
|
? btoa(JSON.stringify(cursorObj)).replace(/\+/g, "-").replace(/\//g, "_").replace(/=+$/, "")
|
||||||
|
: "";
|
||||||
|
|
||||||
|
try {
|
||||||
|
const result = await DefaultService.getUsersTitles(
|
||||||
|
id,
|
||||||
|
cursorStr,
|
||||||
|
sort,
|
||||||
|
sortForward,
|
||||||
|
search.trim() || undefined,
|
||||||
|
undefined, // status фильтр, можно добавить
|
||||||
|
undefined, // watchStatus
|
||||||
|
undefined, // rating
|
||||||
|
undefined, // myRate
|
||||||
|
undefined, // releaseYear
|
||||||
|
undefined, // releaseSeason
|
||||||
|
PAGE_SIZE,
|
||||||
|
"all"
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!result?.data?.length) return { items: [], nextCursor: null };
|
||||||
|
|
||||||
|
return { items: result.data, nextCursor: result.cursor ?? null };
|
||||||
|
} catch (err: any) {
|
||||||
|
if (err.status === 204) return { items: [], nextCursor: null };
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Инициализация: загружаем сразу две страницы
|
||||||
|
useEffect(() => {
|
||||||
|
const initLoad = async () => {
|
||||||
|
setLoadingTitles(true);
|
||||||
|
setTitles([]);
|
||||||
|
setNextPage([]);
|
||||||
|
setCursor(null);
|
||||||
|
|
||||||
|
const firstPage = await fetchPage(null);
|
||||||
|
const secondPage = firstPage.nextCursor ? await fetchPage(firstPage.nextCursor) : { items: [], nextCursor: null };
|
||||||
|
|
||||||
|
setTitles(firstPage.items);
|
||||||
|
setNextPage(secondPage.items);
|
||||||
|
setCursor(secondPage.nextCursor);
|
||||||
|
setLoadingTitles(false);
|
||||||
|
};
|
||||||
|
initLoad();
|
||||||
|
}, [id, search, sort, sortForward]);
|
||||||
|
|
||||||
|
const handleLoadMore = async () => {
|
||||||
|
if (nextPage.length === 0) {
|
||||||
|
setLoadingMore(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setLoadingMore(true);
|
||||||
|
|
||||||
|
setTitles(prev => [...prev, ...nextPage]);
|
||||||
|
setNextPage([]);
|
||||||
|
|
||||||
|
if (cursor) {
|
||||||
|
try {
|
||||||
|
const next = await fetchPage(cursor);
|
||||||
|
if (next.items.length > 0) setNextPage(next.items);
|
||||||
|
setCursor(next.nextCursor);
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setLoadingMore(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
// const getAvatarUrl = (avatarId?: number) => (avatarId ? `/api/images/${avatarId}` : "/default-avatar.png");
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="w-full min-h-screen bg-gray-50 p-6 flex flex-col items-center">
|
||||||
|
|
||||||
|
{/* --- Карточка пользователя --- */}
|
||||||
|
{loadingUser && <div className="mt-10 text-xl font-medium">Loading user...</div>}
|
||||||
|
{errorUser && <div className="mt-10 text-red-600 font-medium">{errorUser}</div>}
|
||||||
|
{user && (
|
||||||
|
<div className="bg-white shadow-lg rounded-xl p-6 w-full max-w-sm flex flex-col items-center mb-8">
|
||||||
|
<img src={user.image?.image_path} alt={user.nickname} className="w-32 h-32 rounded-full object-cover mb-4" />
|
||||||
|
<h2 className="text-2xl font-bold mb-2">{user.disp_name || user.nickname}</h2>
|
||||||
|
{user.mail && <p className="text-gray-600 mb-2">{user.mail}</p>}
|
||||||
|
{user.user_desc && <p className="text-gray-700 text-center">{user.user_desc}</p>}
|
||||||
|
{user.creation_date && <p className="text-gray-400 mt-4 text-sm">Registered: {new Date(user.creation_date).toLocaleDateString()}</p>}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* --- Панель поиска, сортировки и лейаута --- */}
|
||||||
|
<div className="w-full sm:w-4/5 flex flex-col sm:flex-row gap-4 mb-6 items-center">
|
||||||
|
<SearchBar placeholder="Search titles..." search={search} setSearch={setSearch} />
|
||||||
|
<LayoutSwitch layout={layout} setLayout={setLayout} />
|
||||||
|
<TitlesSortBox sort={sort} setSort={setSort} sortForward={sortForward} setSortForward={setSortForward} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* --- Список тайтлов --- */}
|
||||||
|
{loadingTitles && <div className="mt-6 font-medium text-black">Loading titles...</div>}
|
||||||
|
{!loadingTitles && titles.length === 0 && <div className="mt-6 font-medium text-black">No titles found.</div>}
|
||||||
|
|
||||||
|
{titles.length > 0 && (
|
||||||
|
<>
|
||||||
|
<ListView<UserTitle>
|
||||||
|
items={titles}
|
||||||
|
layout={layout}
|
||||||
|
hasMore={!!cursor || nextPage.length > 1}
|
||||||
|
loadingMore={loadingMore}
|
||||||
|
onLoadMore={handleLoadMore}
|
||||||
|
renderItem={(title, layout) =>
|
||||||
|
layout === "square" ? <UserTitleCardSquare title={title} /> : <UserTitleCardHorizontal title={title} />
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{!cursor && nextPage.length === 0 && (
|
||||||
|
<div className="mt-6 font-medium text-black">
|
||||||
|
Результатов больше нет, было найдено {titles.length} тайтлов.
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
12
modules/frontend/src/types/list.ts
Normal file
12
modules/frontend/src/types/list.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
export interface PaginatedResult<TItem> {
|
||||||
|
items: TItem[];
|
||||||
|
nextCursor?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FetchParams {
|
||||||
|
search: string;
|
||||||
|
cursor?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type FetchFunction<TItem> =
|
||||||
|
(params: FetchParams) => Promise<PaginatedResult<TItem>>;
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"noUnusedParameters": true,
|
"noUnusedParameters": true,
|
||||||
"erasableSyntaxOnly": true,
|
"erasableSyntaxOnly": false,
|
||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true,
|
||||||
"noUncheckedSideEffectImports": true
|
"noUncheckedSideEffectImports": true
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"noUnusedParameters": true,
|
"noUnusedParameters": true,
|
||||||
"erasableSyntaxOnly": true,
|
"erasableSyntaxOnly": false,
|
||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true,
|
||||||
"noUncheckedSideEffectImports": true
|
"noUncheckedSideEffectImports": true
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,15 @@
|
||||||
import { defineConfig } from 'vite'
|
import { defineConfig } from 'vite'
|
||||||
import react from '@vitejs/plugin-react'
|
import react from '@vitejs/plugin-react'
|
||||||
|
import tailwindcss from '@tailwindcss/vite'
|
||||||
|
|
||||||
// https://vite.dev/config/
|
// https://vite.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [react()],
|
plugins: [
|
||||||
|
react(),
|
||||||
|
tailwindcss()
|
||||||
|
],
|
||||||
server: {
|
server: {
|
||||||
host: '127.0.0.1',
|
host: '0.0.0.0',
|
||||||
port: 8083,
|
port: 8083,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,3 @@
|
||||||
-- TODO:
|
|
||||||
-- maybe jsonb constraints
|
|
||||||
-- clean unused images
|
|
||||||
CREATE TYPE usertitle_status_t AS ENUM ('finished', 'planned', 'dropped', 'in-progress');
|
CREATE TYPE usertitle_status_t AS ENUM ('finished', 'planned', 'dropped', 'in-progress');
|
||||||
CREATE TYPE storage_type_t AS ENUM ('local', 's3');
|
CREATE TYPE storage_type_t AS ENUM ('local', 's3');
|
||||||
CREATE TYPE title_status_t AS ENUM ('finished', 'ongoing', 'planned');
|
CREATE TYPE title_status_t AS ENUM ('finished', 'ongoing', 'planned');
|
||||||
|
|
@ -14,6 +11,7 @@ CREATE TABLE providers (
|
||||||
|
|
||||||
CREATE TABLE tags (
|
CREATE TABLE tags (
|
||||||
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
|
-- example: { "ru": "Сёдзё", "en": "Shojo", "jp": "少女"}
|
||||||
tag_names jsonb NOT NULL
|
tag_names jsonb NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -25,28 +23,32 @@ CREATE TABLE images (
|
||||||
|
|
||||||
CREATE TABLE users (
|
CREATE TABLE users (
|
||||||
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
avatar_id bigint REFERENCES images (id),
|
avatar_id bigint REFERENCES images (id) ON DELETE SET NULL,
|
||||||
passhash text NOT NULL,
|
passhash text NOT NULL,
|
||||||
mail text CHECK (mail ~ '[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9_-]+'),
|
mail text CHECK (mail ~ '^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9_-]+$'),
|
||||||
nickname text NOT NULL CHECK (nickname ~ '^[a-zA-Z0-9_-]+$'),
|
nickname text UNIQUE NOT NULL CHECK (nickname ~ '^[a-zA-Z0-9_-]{3,}$'),
|
||||||
disp_name text,
|
disp_name text,
|
||||||
user_desc text,
|
user_desc text,
|
||||||
creation_date timestamptz NOT NULL,
|
creation_date timestamptz NOT NULL DEFAULT NOW(),
|
||||||
last_login timestamptz
|
last_login timestamptz
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE studios (
|
CREATE TABLE studios (
|
||||||
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
studio_name text UNIQUE,
|
studio_name text NOT NULL UNIQUE,
|
||||||
illust_id bigint REFERENCES images (id),
|
illust_id bigint REFERENCES images (id) ON DELETE SET NULL,
|
||||||
studio_desc text
|
studio_desc text
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE titles (
|
CREATE TABLE titles (
|
||||||
|
-- // TODO: anime type (film, season etc)
|
||||||
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
|
-- example {"ru": ["Атака титанов", "Атака Титанов"],"en": ["Attack on Titan", "AoT"],"ja": ["進撃の巨人", "しんげきのきょじん"]}
|
||||||
title_names jsonb NOT NULL,
|
title_names jsonb NOT NULL,
|
||||||
studio_id bigint NOT NULL REFERENCES studios (id),
|
studio_id bigint NOT NULL REFERENCES studios (id),
|
||||||
poster_id bigint REFERENCES images (id),
|
poster_id bigint REFERENCES images (id) ON DELETE SET NULL,
|
||||||
title_status title_status_t NOT NULL,
|
title_status title_status_t NOT NULL,
|
||||||
rating float CHECK (rating >= 0 AND rating <= 10),
|
rating float CHECK (rating >= 0 AND rating <= 10),
|
||||||
rating_count int CHECK (rating_count >= 0),
|
rating_count int CHECK (rating_count >= 0),
|
||||||
|
|
@ -55,26 +57,43 @@ CREATE TABLE titles (
|
||||||
season int CHECK (season >= 0),
|
season int CHECK (season >= 0),
|
||||||
episodes_aired int CHECK (episodes_aired >= 0),
|
episodes_aired int CHECK (episodes_aired >= 0),
|
||||||
episodes_all int CHECK (episodes_all >= 0),
|
episodes_all int CHECK (episodes_all >= 0),
|
||||||
|
-- example { "1": "50.50", "2": "23.23"}
|
||||||
episodes_len jsonb,
|
episodes_len jsonb,
|
||||||
CHECK ((episodes_aired IS NULL AND episodes_all IS NULL)
|
CHECK ((episodes_aired IS NULL AND episodes_all IS NULL)
|
||||||
OR (episodes_aired IS NOT NULL AND episodes_all IS NOT NULL
|
OR (episodes_aired IS NOT NULL AND episodes_all IS NOT NULL
|
||||||
AND episodes_aired <= episodes_all))
|
AND episodes_aired <= episodes_all))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE reviews (
|
||||||
|
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
|
data text NOT NULL,
|
||||||
|
rating int CHECK (rating >= 0 AND rating <= 10),
|
||||||
|
user_id bigint REFERENCES users (id) ON DELETE SET NULL,
|
||||||
|
title_id bigint REFERENCES titles (id) ON DELETE CASCADE,
|
||||||
|
created_at timestamptz DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE review_images (
|
||||||
|
PRIMARY KEY (review_id, image_id),
|
||||||
|
review_id bigint NOT NULL REFERENCES reviews(id) ON DELETE CASCADE,
|
||||||
|
image_id bigint NOT NULL REFERENCES images(id) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE usertitles (
|
CREATE TABLE usertitles (
|
||||||
PRIMARY KEY (user_id, title_id),
|
PRIMARY KEY (user_id, title_id),
|
||||||
user_id bigint NOT NULL REFERENCES users (id),
|
user_id bigint NOT NULL REFERENCES users (id) ON DELETE CASCADE,
|
||||||
title_id bigint NOT NULL REFERENCES titles (id),
|
title_id bigint NOT NULL REFERENCES titles (id) ON DELETE CASCADE,
|
||||||
status usertitle_status_t NOT NULL,
|
status usertitle_status_t NOT NULL,
|
||||||
rate int CHECK (rate > 0 AND rate <= 10),
|
rate int CHECK (rate > 0 AND rate <= 10),
|
||||||
review_text text,
|
review_id bigint REFERENCES reviews (id) ON DELETE SET NULL,
|
||||||
review_date timestamptz
|
ctime timestamptz NOT NULL DEFAULT now()
|
||||||
|
-- // TODO: series status
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE title_tags (
|
CREATE TABLE title_tags (
|
||||||
PRIMARY KEY (title_id, tag_id),
|
PRIMARY KEY (title_id, tag_id),
|
||||||
title_id bigint NOT NULL REFERENCES titles (id),
|
title_id bigint NOT NULL REFERENCES titles (id) ON DELETE CASCADE,
|
||||||
tag_id bigint NOT NULL REFERENCES tags (id)
|
tag_id bigint NOT NULL REFERENCES tags (id) ON DELETE CASCADE
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE signals (
|
CREATE TABLE signals (
|
||||||
|
|
@ -85,6 +104,17 @@ CREATE TABLE signals (
|
||||||
pending boolean NOT NULL
|
pending boolean NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE external_services (
|
||||||
|
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
|
name text UNIQUE NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE external_ids (
|
||||||
|
user_id bigint NOT NULL REFERENCES users (id),
|
||||||
|
service_id bigint REFERENCES external_services (id),
|
||||||
|
external_id text NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
-- Functions
|
-- Functions
|
||||||
CREATE OR REPLACE FUNCTION update_title_rating()
|
CREATE OR REPLACE FUNCTION update_title_rating()
|
||||||
RETURNS TRIGGER AS $$
|
RETURNS TRIGGER AS $$
|
||||||
|
|
@ -139,3 +169,16 @@ CREATE TRIGGER trg_notify_new_signal
|
||||||
AFTER INSERT ON signals
|
AFTER INSERT ON signals
|
||||||
FOR EACH ROW
|
FOR EACH ROW
|
||||||
EXECUTE FUNCTION notify_new_signal();
|
EXECUTE FUNCTION notify_new_signal();
|
||||||
|
|
||||||
|
CREATE OR REPLACE FUNCTION set_ctime()
|
||||||
|
RETURNS TRIGGER AS $$
|
||||||
|
BEGIN
|
||||||
|
NEW.ctime = now();
|
||||||
|
RETURN NEW;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE plpgsql;
|
||||||
|
|
||||||
|
CREATE TRIGGER set_ctime_on_update
|
||||||
|
AFTER UPDATE ON usertitles
|
||||||
|
FOR EACH ROW
|
||||||
|
EXECUTE FUNCTION set_ctime();
|
||||||
|
|
@ -6,6 +6,7 @@ package sqlc
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"database/sql/driver"
|
"database/sql/driver"
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
|
@ -185,6 +186,17 @@ func (ns NullUsertitleStatusT) Value() (driver.Value, error) {
|
||||||
return string(ns.UsertitleStatusT), nil
|
return string(ns.UsertitleStatusT), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ExternalID struct {
|
||||||
|
UserID int64 `json:"user_id"`
|
||||||
|
ServiceID *int64 `json:"service_id"`
|
||||||
|
ExternalID string `json:"external_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ExternalService struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
type Image struct {
|
type Image struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
StorageType StorageTypeT `json:"storage_type"`
|
StorageType StorageTypeT `json:"storage_type"`
|
||||||
|
|
@ -197,40 +209,54 @@ type Provider struct {
|
||||||
Credentials []byte `json:"credentials"`
|
Credentials []byte `json:"credentials"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Review struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
Data string `json:"data"`
|
||||||
|
Rating *int32 `json:"rating"`
|
||||||
|
UserID *int64 `json:"user_id"`
|
||||||
|
TitleID *int64 `json:"title_id"`
|
||||||
|
CreatedAt pgtype.Timestamptz `json:"created_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReviewImage struct {
|
||||||
|
ReviewID int64 `json:"review_id"`
|
||||||
|
ImageID int64 `json:"image_id"`
|
||||||
|
}
|
||||||
|
|
||||||
type Signal struct {
|
type Signal struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
TitleID *int64 `json:"title_id"`
|
TitleID *int64 `json:"title_id"`
|
||||||
RawData []byte `json:"raw_data"`
|
RawData json.RawMessage `json:"raw_data"`
|
||||||
ProviderID int64 `json:"provider_id"`
|
ProviderID int64 `json:"provider_id"`
|
||||||
Pending bool `json:"pending"`
|
Pending bool `json:"pending"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Studio struct {
|
type Studio struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
StudioName *string `json:"studio_name"`
|
StudioName string `json:"studio_name"`
|
||||||
IllustID *int64 `json:"illust_id"`
|
IllustID *int64 `json:"illust_id"`
|
||||||
StudioDesc *string `json:"studio_desc"`
|
StudioDesc *string `json:"studio_desc"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Tag struct {
|
type Tag struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
TagNames []byte `json:"tag_names"`
|
TagNames json.RawMessage `json:"tag_names"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Title struct {
|
type Title struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
TitleNames []byte `json:"title_names"`
|
TitleNames json.RawMessage `json:"title_names"`
|
||||||
StudioID int64 `json:"studio_id"`
|
StudioID int64 `json:"studio_id"`
|
||||||
PosterID *int64 `json:"poster_id"`
|
PosterID *int64 `json:"poster_id"`
|
||||||
TitleStatus TitleStatusT `json:"title_status"`
|
TitleStatus TitleStatusT `json:"title_status"`
|
||||||
Rating *float64 `json:"rating"`
|
Rating *float64 `json:"rating"`
|
||||||
RatingCount *int32 `json:"rating_count"`
|
RatingCount *int32 `json:"rating_count"`
|
||||||
ReleaseYear *int32 `json:"release_year"`
|
ReleaseYear *int32 `json:"release_year"`
|
||||||
ReleaseSeason NullReleaseSeasonT `json:"release_season"`
|
ReleaseSeason *ReleaseSeasonT `json:"release_season"`
|
||||||
Season *int32 `json:"season"`
|
Season *int32 `json:"season"`
|
||||||
EpisodesAired *int32 `json:"episodes_aired"`
|
EpisodesAired *int32 `json:"episodes_aired"`
|
||||||
EpisodesAll *int32 `json:"episodes_all"`
|
EpisodesAll *int32 `json:"episodes_all"`
|
||||||
EpisodesLen []byte `json:"episodes_len"`
|
EpisodesLen []byte `json:"episodes_len"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type TitleTag struct {
|
type TitleTag struct {
|
||||||
|
|
@ -251,10 +277,10 @@ type User struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Usertitle struct {
|
type Usertitle struct {
|
||||||
UserID int64 `json:"user_id"`
|
UserID int64 `json:"user_id"`
|
||||||
TitleID int64 `json:"title_id"`
|
TitleID int64 `json:"title_id"`
|
||||||
Status UsertitleStatusT `json:"status"`
|
Status UsertitleStatusT `json:"status"`
|
||||||
Rate *int32 `json:"rate"`
|
Rate *int32 `json:"rate"`
|
||||||
ReviewText *string `json:"review_text"`
|
ReviewID *int64 `json:"review_id"`
|
||||||
ReviewDate pgtype.Timestamptz `json:"review_date"`
|
Ctime time.Time `json:"ctime"`
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ package sqlc
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"encoding/json"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -31,30 +32,223 @@ func (q *Queries) CreateImage(ctx context.Context, arg CreateImageParams) (Image
|
||||||
const getImageByID = `-- name: GetImageByID :one
|
const getImageByID = `-- name: GetImageByID :one
|
||||||
SELECT id, storage_type, image_path
|
SELECT id, storage_type, image_path
|
||||||
FROM images
|
FROM images
|
||||||
WHERE id = $1
|
WHERE id = $1::bigint
|
||||||
`
|
`
|
||||||
|
|
||||||
func (q *Queries) GetImageByID(ctx context.Context, id int64) (Image, error) {
|
func (q *Queries) GetImageByID(ctx context.Context, illustID int64) (Image, error) {
|
||||||
row := q.db.QueryRow(ctx, getImageByID, id)
|
row := q.db.QueryRow(ctx, getImageByID, illustID)
|
||||||
var i Image
|
var i Image
|
||||||
err := row.Scan(&i.ID, &i.StorageType, &i.ImagePath)
|
err := row.Scan(&i.ID, &i.StorageType, &i.ImagePath)
|
||||||
return i, err
|
return i, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const getReviewByID = `-- name: GetReviewByID :one
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
SELECT id, data, rating, user_id, title_id, created_at
|
||||||
|
FROM reviews
|
||||||
|
WHERE review_id = $1::bigint
|
||||||
|
`
|
||||||
|
|
||||||
|
// 100 is default limit
|
||||||
|
// -- name: ListTitles :many
|
||||||
|
// SELECT title_id, title_names, studio_id, poster_id, signal_ids,
|
||||||
|
//
|
||||||
|
// title_status, rating, rating_count, release_year, release_season,
|
||||||
|
// season, episodes_aired, episodes_all, episodes_len
|
||||||
|
//
|
||||||
|
// FROM titles
|
||||||
|
// ORDER BY title_id
|
||||||
|
// LIMIT $1 OFFSET $2;
|
||||||
|
// -- name: UpdateTitle :one
|
||||||
|
// UPDATE titles
|
||||||
|
// SET
|
||||||
|
//
|
||||||
|
// title_names = COALESCE(sqlc.narg('title_names'), title_names),
|
||||||
|
// studio_id = COALESCE(sqlc.narg('studio_id'), studio_id),
|
||||||
|
// poster_id = COALESCE(sqlc.narg('poster_id'), poster_id),
|
||||||
|
// signal_ids = COALESCE(sqlc.narg('signal_ids'), signal_ids),
|
||||||
|
// title_status = COALESCE(sqlc.narg('title_status'), title_status),
|
||||||
|
// release_year = COALESCE(sqlc.narg('release_year'), release_year),
|
||||||
|
// release_season = COALESCE(sqlc.narg('release_season'), release_season),
|
||||||
|
// episodes_aired = COALESCE(sqlc.narg('episodes_aired'), episodes_aired),
|
||||||
|
// episodes_all = COALESCE(sqlc.narg('episodes_all'), episodes_all),
|
||||||
|
// episodes_len = COALESCE(sqlc.narg('episodes_len'), episodes_len)
|
||||||
|
//
|
||||||
|
// WHERE title_id = sqlc.arg('title_id')
|
||||||
|
// RETURNING *;
|
||||||
|
func (q *Queries) GetReviewByID(ctx context.Context, reviewID int64) (Review, error) {
|
||||||
|
row := q.db.QueryRow(ctx, getReviewByID, reviewID)
|
||||||
|
var i Review
|
||||||
|
err := row.Scan(
|
||||||
|
&i.ID,
|
||||||
|
&i.Data,
|
||||||
|
&i.Rating,
|
||||||
|
&i.UserID,
|
||||||
|
&i.TitleID,
|
||||||
|
&i.CreatedAt,
|
||||||
|
)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const getStudioByID = `-- name: GetStudioByID :one
|
||||||
|
SELECT id, studio_name, illust_id, studio_desc
|
||||||
|
FROM studios
|
||||||
|
WHERE id = $1::bigint
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) GetStudioByID(ctx context.Context, studioID int64) (Studio, error) {
|
||||||
|
row := q.db.QueryRow(ctx, getStudioByID, studioID)
|
||||||
|
var i Studio
|
||||||
|
err := row.Scan(
|
||||||
|
&i.ID,
|
||||||
|
&i.StudioName,
|
||||||
|
&i.IllustID,
|
||||||
|
&i.StudioDesc,
|
||||||
|
)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const getTitleByID = `-- name: GetTitleByID :one
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
t.id, t.title_names, t.studio_id, t.poster_id, t.title_status, t.rating, t.rating_count, t.release_year, t.release_season, t.season, t.episodes_aired, t.episodes_all, t.episodes_len,
|
||||||
|
i.storage_type as title_storage_type,
|
||||||
|
i.image_path as title_image_path,
|
||||||
|
COALESCE(
|
||||||
|
jsonb_agg(g.tag_names) FILTER (WHERE g.tag_names IS NOT NULL),
|
||||||
|
'[]'::jsonb
|
||||||
|
)::jsonb as tag_names,
|
||||||
|
s.studio_name as studio_name,
|
||||||
|
s.illust_id as studio_illust_id,
|
||||||
|
s.studio_desc as studio_desc,
|
||||||
|
si.storage_type as studio_storage_type,
|
||||||
|
si.image_path as studio_image_path
|
||||||
|
|
||||||
|
FROM titles as t
|
||||||
|
LEFT JOIN images as i ON (t.poster_id = i.id)
|
||||||
|
LEFT JOIN title_tags as tt ON (t.id = tt.title_id)
|
||||||
|
LEFT JOIN tags as g ON (tt.tag_id = g.id)
|
||||||
|
LEFT JOIN studios as s ON (t.studio_id = s.id)
|
||||||
|
LEFT JOIN images as si ON (s.illust_id = si.id)
|
||||||
|
|
||||||
|
WHERE t.id = $1::bigint
|
||||||
|
GROUP BY
|
||||||
|
t.id, i.id, s.id, si.id
|
||||||
|
`
|
||||||
|
|
||||||
|
type GetTitleByIDRow struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
TitleNames json.RawMessage `json:"title_names"`
|
||||||
|
StudioID int64 `json:"studio_id"`
|
||||||
|
PosterID *int64 `json:"poster_id"`
|
||||||
|
TitleStatus TitleStatusT `json:"title_status"`
|
||||||
|
Rating *float64 `json:"rating"`
|
||||||
|
RatingCount *int32 `json:"rating_count"`
|
||||||
|
ReleaseYear *int32 `json:"release_year"`
|
||||||
|
ReleaseSeason *ReleaseSeasonT `json:"release_season"`
|
||||||
|
Season *int32 `json:"season"`
|
||||||
|
EpisodesAired *int32 `json:"episodes_aired"`
|
||||||
|
EpisodesAll *int32 `json:"episodes_all"`
|
||||||
|
EpisodesLen []byte `json:"episodes_len"`
|
||||||
|
TitleStorageType *StorageTypeT `json:"title_storage_type"`
|
||||||
|
TitleImagePath *string `json:"title_image_path"`
|
||||||
|
TagNames json.RawMessage `json:"tag_names"`
|
||||||
|
StudioName *string `json:"studio_name"`
|
||||||
|
StudioIllustID *int64 `json:"studio_illust_id"`
|
||||||
|
StudioDesc *string `json:"studio_desc"`
|
||||||
|
StudioStorageType *StorageTypeT `json:"studio_storage_type"`
|
||||||
|
StudioImagePath *string `json:"studio_image_path"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- name: DeleteUser :exec
|
||||||
|
// DELETE FROM users
|
||||||
|
// WHERE user_id = $1;
|
||||||
|
// sqlc.struct: TitlesFull
|
||||||
|
func (q *Queries) GetTitleByID(ctx context.Context, titleID int64) (GetTitleByIDRow, error) {
|
||||||
|
row := q.db.QueryRow(ctx, getTitleByID, titleID)
|
||||||
|
var i GetTitleByIDRow
|
||||||
|
err := row.Scan(
|
||||||
|
&i.ID,
|
||||||
|
&i.TitleNames,
|
||||||
|
&i.StudioID,
|
||||||
|
&i.PosterID,
|
||||||
|
&i.TitleStatus,
|
||||||
|
&i.Rating,
|
||||||
|
&i.RatingCount,
|
||||||
|
&i.ReleaseYear,
|
||||||
|
&i.ReleaseSeason,
|
||||||
|
&i.Season,
|
||||||
|
&i.EpisodesAired,
|
||||||
|
&i.EpisodesAll,
|
||||||
|
&i.EpisodesLen,
|
||||||
|
&i.TitleStorageType,
|
||||||
|
&i.TitleImagePath,
|
||||||
|
&i.TagNames,
|
||||||
|
&i.StudioName,
|
||||||
|
&i.StudioIllustID,
|
||||||
|
&i.StudioDesc,
|
||||||
|
&i.StudioStorageType,
|
||||||
|
&i.StudioImagePath,
|
||||||
|
)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const getTitleTags = `-- name: GetTitleTags :many
|
||||||
|
SELECT
|
||||||
|
tag_names
|
||||||
|
FROM tags as g
|
||||||
|
JOIN title_tags as t ON(t.tag_id = g.id)
|
||||||
|
WHERE t.title_id = $1::bigint
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) GetTitleTags(ctx context.Context, titleID int64) ([]json.RawMessage, error) {
|
||||||
|
rows, err := q.db.Query(ctx, getTitleTags, titleID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
items := []json.RawMessage{}
|
||||||
|
for rows.Next() {
|
||||||
|
var tag_names json.RawMessage
|
||||||
|
if err := rows.Scan(&tag_names); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
items = append(items, tag_names)
|
||||||
|
}
|
||||||
|
if err := rows.Err(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return items, nil
|
||||||
|
}
|
||||||
|
|
||||||
const getUserByID = `-- name: GetUserByID :one
|
const getUserByID = `-- name: GetUserByID :one
|
||||||
SELECT id, avatar_id, mail, nickname, disp_name, user_desc, creation_date
|
SELECT
|
||||||
FROM users
|
t.id as id,
|
||||||
WHERE id = $1
|
t.avatar_id as avatar_id,
|
||||||
|
t.mail as mail,
|
||||||
|
t.nickname as nickname,
|
||||||
|
t.disp_name as disp_name,
|
||||||
|
t.user_desc as user_desc,
|
||||||
|
t.creation_date as creation_date,
|
||||||
|
i.storage_type as storage_type,
|
||||||
|
i.image_path as image_path
|
||||||
|
FROM users as t
|
||||||
|
LEFT JOIN images as i ON (t.avatar_id = i.id)
|
||||||
|
WHERE t.id = $1::bigint
|
||||||
`
|
`
|
||||||
|
|
||||||
type GetUserByIDRow struct {
|
type GetUserByIDRow struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
AvatarID *int64 `json:"avatar_id"`
|
AvatarID *int64 `json:"avatar_id"`
|
||||||
Mail *string `json:"mail"`
|
Mail *string `json:"mail"`
|
||||||
Nickname string `json:"nickname"`
|
Nickname string `json:"nickname"`
|
||||||
DispName *string `json:"disp_name"`
|
DispName *string `json:"disp_name"`
|
||||||
UserDesc *string `json:"user_desc"`
|
UserDesc *string `json:"user_desc"`
|
||||||
CreationDate time.Time `json:"creation_date"`
|
CreationDate time.Time `json:"creation_date"`
|
||||||
|
StorageType *StorageTypeT `json:"storage_type"`
|
||||||
|
ImagePath *string `json:"image_path"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (q *Queries) GetUserByID(ctx context.Context, id int64) (GetUserByIDRow, error) {
|
func (q *Queries) GetUserByID(ctx context.Context, id int64) (GetUserByIDRow, error) {
|
||||||
|
|
@ -68,6 +262,666 @@ func (q *Queries) GetUserByID(ctx context.Context, id int64) (GetUserByIDRow, er
|
||||||
&i.DispName,
|
&i.DispName,
|
||||||
&i.UserDesc,
|
&i.UserDesc,
|
||||||
&i.CreationDate,
|
&i.CreationDate,
|
||||||
|
&i.StorageType,
|
||||||
|
&i.ImagePath,
|
||||||
|
)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const insertStudio = `-- name: InsertStudio :one
|
||||||
|
INSERT INTO studios (studio_name, illust_id, studio_desc)
|
||||||
|
VALUES (
|
||||||
|
$1::text,
|
||||||
|
$2::bigint,
|
||||||
|
$3::text)
|
||||||
|
RETURNING id, studio_name, illust_id, studio_desc
|
||||||
|
`
|
||||||
|
|
||||||
|
type InsertStudioParams struct {
|
||||||
|
StudioName string `json:"studio_name"`
|
||||||
|
IllustID *int64 `json:"illust_id"`
|
||||||
|
StudioDesc *string `json:"studio_desc"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (q *Queries) InsertStudio(ctx context.Context, arg InsertStudioParams) (Studio, error) {
|
||||||
|
row := q.db.QueryRow(ctx, insertStudio, arg.StudioName, arg.IllustID, arg.StudioDesc)
|
||||||
|
var i Studio
|
||||||
|
err := row.Scan(
|
||||||
|
&i.ID,
|
||||||
|
&i.StudioName,
|
||||||
|
&i.IllustID,
|
||||||
|
&i.StudioDesc,
|
||||||
|
)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const insertTag = `-- name: InsertTag :one
|
||||||
|
INSERT INTO tags (tag_names)
|
||||||
|
VALUES (
|
||||||
|
$1::jsonb)
|
||||||
|
RETURNING id, tag_names
|
||||||
|
`
|
||||||
|
|
||||||
|
func (q *Queries) InsertTag(ctx context.Context, tagNames json.RawMessage) (Tag, error) {
|
||||||
|
row := q.db.QueryRow(ctx, insertTag, tagNames)
|
||||||
|
var i Tag
|
||||||
|
err := row.Scan(&i.ID, &i.TagNames)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const insertTitleTags = `-- name: InsertTitleTags :one
|
||||||
|
INSERT INTO title_tags (title_id, tag_id)
|
||||||
|
VALUES (
|
||||||
|
$1::bigint,
|
||||||
|
$2::bigint)
|
||||||
|
RETURNING title_id, tag_id
|
||||||
|
`
|
||||||
|
|
||||||
|
type InsertTitleTagsParams struct {
|
||||||
|
TitleID int64 `json:"title_id"`
|
||||||
|
TagID int64 `json:"tag_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (q *Queries) InsertTitleTags(ctx context.Context, arg InsertTitleTagsParams) (TitleTag, error) {
|
||||||
|
row := q.db.QueryRow(ctx, insertTitleTags, arg.TitleID, arg.TagID)
|
||||||
|
var i TitleTag
|
||||||
|
err := row.Scan(&i.TitleID, &i.TagID)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const insertUserTitle = `-- name: InsertUserTitle :one
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
INSERT INTO usertitles (user_id, title_id, status, rate, review_id)
|
||||||
|
VALUES (
|
||||||
|
$1::bigint,
|
||||||
|
$2::bigint,
|
||||||
|
$3::usertitle_status_t,
|
||||||
|
$4::int,
|
||||||
|
$5::bigint
|
||||||
|
)
|
||||||
|
RETURNING user_id, title_id, status, rate, review_id, ctime
|
||||||
|
`
|
||||||
|
|
||||||
|
type InsertUserTitleParams struct {
|
||||||
|
UserID int64 `json:"user_id"`
|
||||||
|
TitleID int64 `json:"title_id"`
|
||||||
|
Status UsertitleStatusT `json:"status"`
|
||||||
|
Rate *int32 `json:"rate"`
|
||||||
|
ReviewID *int64 `json:"review_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- name: CreateReview :one
|
||||||
|
// INSERT INTO reviews (user_id, title_id, image_ids, review_text, creation_date)
|
||||||
|
// VALUES ($1, $2, $3, $4, $5)
|
||||||
|
// RETURNING review_id, user_id, title_id, image_ids, review_text, creation_date;
|
||||||
|
// -- name: UpdateReview :one
|
||||||
|
// UPDATE reviews
|
||||||
|
// SET
|
||||||
|
//
|
||||||
|
// image_ids = COALESCE(sqlc.narg('image_ids'), image_ids),
|
||||||
|
// review_text = COALESCE(sqlc.narg('review_text'), review_text)
|
||||||
|
//
|
||||||
|
// WHERE review_id = sqlc.arg('review_id')
|
||||||
|
// RETURNING *;
|
||||||
|
// -- name: DeleteReview :exec
|
||||||
|
// DELETE FROM reviews
|
||||||
|
// WHERE review_id = $1;
|
||||||
|
//
|
||||||
|
// -- name: ListReviewsByTitle :many
|
||||||
|
//
|
||||||
|
// SELECT review_id, user_id, title_id, image_ids, review_text, creation_date
|
||||||
|
// FROM reviews
|
||||||
|
// WHERE title_id = $1
|
||||||
|
// ORDER BY creation_date DESC
|
||||||
|
// LIMIT $2 OFFSET $3;
|
||||||
|
// -- name: ListReviewsByUser :many
|
||||||
|
// SELECT review_id, user_id, title_id, image_ids, review_text, creation_date
|
||||||
|
// FROM reviews
|
||||||
|
// WHERE user_id = $1
|
||||||
|
// ORDER BY creation_date DESC
|
||||||
|
// LIMIT $2 OFFSET $3;
|
||||||
|
// -- name: GetUserTitle :one
|
||||||
|
// SELECT usertitle_id, user_id, title_id, status, rate, review_id
|
||||||
|
// FROM usertitles
|
||||||
|
// WHERE user_id = $1 AND title_id = $2;
|
||||||
|
// -- name: ListUserTitles :many
|
||||||
|
// SELECT usertitle_id, user_id, title_id, status, rate, review_id
|
||||||
|
// FROM usertitles
|
||||||
|
// WHERE user_id = $1
|
||||||
|
// ORDER BY usertitle_id
|
||||||
|
// LIMIT $2 OFFSET $3;
|
||||||
|
func (q *Queries) InsertUserTitle(ctx context.Context, arg InsertUserTitleParams) (Usertitle, error) {
|
||||||
|
row := q.db.QueryRow(ctx, insertUserTitle,
|
||||||
|
arg.UserID,
|
||||||
|
arg.TitleID,
|
||||||
|
arg.Status,
|
||||||
|
arg.Rate,
|
||||||
|
arg.ReviewID,
|
||||||
|
)
|
||||||
|
var i Usertitle
|
||||||
|
err := row.Scan(
|
||||||
|
&i.UserID,
|
||||||
|
&i.TitleID,
|
||||||
|
&i.Status,
|
||||||
|
&i.Rate,
|
||||||
|
&i.ReviewID,
|
||||||
|
&i.Ctime,
|
||||||
|
)
|
||||||
|
return i, err
|
||||||
|
}
|
||||||
|
|
||||||
|
const searchTitles = `-- name: SearchTitles :many
|
||||||
|
SELECT
|
||||||
|
t.id as id,
|
||||||
|
t.title_names as title_names,
|
||||||
|
t.poster_id as poster_id,
|
||||||
|
t.title_status as title_status,
|
||||||
|
t.rating as rating,
|
||||||
|
t.rating_count as rating_count,
|
||||||
|
t.release_year as release_year,
|
||||||
|
t.release_season as release_season,
|
||||||
|
t.season as season,
|
||||||
|
t.episodes_aired as episodes_aired,
|
||||||
|
t.episodes_all as episodes_all,
|
||||||
|
i.storage_type as title_storage_type,
|
||||||
|
i.image_path as title_image_path,
|
||||||
|
COALESCE(
|
||||||
|
jsonb_agg(g.tag_names) FILTER (WHERE g.tag_names IS NOT NULL),
|
||||||
|
'[]'::jsonb
|
||||||
|
)::jsonb as tag_names,
|
||||||
|
s.studio_name as studio_name
|
||||||
|
|
||||||
|
FROM titles as t
|
||||||
|
LEFT JOIN images as i ON (t.poster_id = i.id)
|
||||||
|
LEFT JOIN title_tags as tt ON (t.id = tt.title_id)
|
||||||
|
LEFT JOIN tags as g ON (tt.tag_id = g.id)
|
||||||
|
LEFT JOIN studios as s ON (t.studio_id = s.id)
|
||||||
|
|
||||||
|
WHERE
|
||||||
|
CASE
|
||||||
|
WHEN $1::boolean THEN
|
||||||
|
-- forward: greater than cursor (next page)
|
||||||
|
CASE $2::text
|
||||||
|
WHEN 'year' THEN
|
||||||
|
($3::int IS NULL) OR
|
||||||
|
(t.release_year > $3::int) OR
|
||||||
|
(t.release_year = $3::int AND t.id > $4::bigint)
|
||||||
|
|
||||||
|
WHEN 'rating' THEN
|
||||||
|
($5::float IS NULL) OR
|
||||||
|
(t.rating > $5::float) OR
|
||||||
|
(t.rating = $5::float AND t.id > $4::bigint)
|
||||||
|
|
||||||
|
WHEN 'id' THEN
|
||||||
|
($4::bigint IS NULL) OR
|
||||||
|
(t.id > $4::bigint)
|
||||||
|
|
||||||
|
ELSE true -- fallback
|
||||||
|
END
|
||||||
|
|
||||||
|
ELSE
|
||||||
|
-- backward: less than cursor (prev page)
|
||||||
|
CASE $2::text
|
||||||
|
WHEN 'year' THEN
|
||||||
|
($3::int IS NULL) OR
|
||||||
|
(t.release_year < $3::int) OR
|
||||||
|
(t.release_year = $3::int AND t.id < $4::bigint)
|
||||||
|
|
||||||
|
WHEN 'rating' THEN
|
||||||
|
($5::float IS NULL) OR
|
||||||
|
(t.rating < $5::float) OR
|
||||||
|
(t.rating = $5::float AND t.id < $4::bigint)
|
||||||
|
|
||||||
|
WHEN 'id' THEN
|
||||||
|
($4::bigint IS NULL) OR
|
||||||
|
(t.id < $4::bigint)
|
||||||
|
|
||||||
|
ELSE true
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
||||||
|
AND (
|
||||||
|
CASE
|
||||||
|
WHEN $6::text IS NOT NULL THEN
|
||||||
|
(
|
||||||
|
SELECT bool_and(
|
||||||
|
EXISTS (
|
||||||
|
SELECT 1
|
||||||
|
FROM jsonb_each_text(t.title_names) AS t(key, val)
|
||||||
|
WHERE val ILIKE pattern
|
||||||
|
)
|
||||||
|
)
|
||||||
|
FROM unnest(
|
||||||
|
ARRAY(
|
||||||
|
SELECT '%' || trim(w) || '%'
|
||||||
|
FROM unnest(string_to_array($6::text, ' ')) AS w
|
||||||
|
WHERE trim(w) <> ''
|
||||||
|
)
|
||||||
|
) AS pattern
|
||||||
|
)
|
||||||
|
ELSE true
|
||||||
|
END
|
||||||
|
)
|
||||||
|
|
||||||
|
AND (
|
||||||
|
$7::title_status_t[] IS NULL
|
||||||
|
OR array_length($7::title_status_t[], 1) IS NULL
|
||||||
|
OR array_length($7::title_status_t[], 1) = 0
|
||||||
|
OR t.title_status = ANY($7::title_status_t[])
|
||||||
|
)
|
||||||
|
AND ($8::float IS NULL OR t.rating >= $8::float)
|
||||||
|
AND ($9::int IS NULL OR t.release_year = $9::int)
|
||||||
|
AND ($10::release_season_t IS NULL OR t.release_season = $10::release_season_t)
|
||||||
|
|
||||||
|
GROUP BY
|
||||||
|
t.id, i.id, s.id
|
||||||
|
|
||||||
|
ORDER BY
|
||||||
|
CASE WHEN $1::boolean THEN
|
||||||
|
CASE
|
||||||
|
WHEN $2::text = 'id' THEN t.id
|
||||||
|
WHEN $2::text = 'year' THEN t.release_year
|
||||||
|
WHEN $2::text = 'rating' THEN t.rating
|
||||||
|
END
|
||||||
|
END ASC,
|
||||||
|
CASE WHEN NOT $1::boolean THEN
|
||||||
|
CASE
|
||||||
|
WHEN $2::text = 'id' THEN t.id
|
||||||
|
WHEN $2::text = 'year' THEN t.release_year
|
||||||
|
WHEN $2::text = 'rating' THEN t.rating
|
||||||
|
END
|
||||||
|
END DESC,
|
||||||
|
|
||||||
|
CASE WHEN $2::text <> 'id' THEN t.id END ASC
|
||||||
|
|
||||||
|
LIMIT COALESCE($11::int, 100)
|
||||||
|
`
|
||||||
|
|
||||||
|
type SearchTitlesParams struct {
|
||||||
|
Forward bool `json:"forward"`
|
||||||
|
SortBy string `json:"sort_by"`
|
||||||
|
CursorYear *int32 `json:"cursor_year"`
|
||||||
|
CursorID *int64 `json:"cursor_id"`
|
||||||
|
CursorRating *float64 `json:"cursor_rating"`
|
||||||
|
Word *string `json:"word"`
|
||||||
|
TitleStatuses []TitleStatusT `json:"title_statuses"`
|
||||||
|
Rating *float64 `json:"rating"`
|
||||||
|
ReleaseYear *int32 `json:"release_year"`
|
||||||
|
ReleaseSeason *ReleaseSeasonT `json:"release_season"`
|
||||||
|
Limit *int32 `json:"limit"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type SearchTitlesRow struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
TitleNames json.RawMessage `json:"title_names"`
|
||||||
|
PosterID *int64 `json:"poster_id"`
|
||||||
|
TitleStatus TitleStatusT `json:"title_status"`
|
||||||
|
Rating *float64 `json:"rating"`
|
||||||
|
RatingCount *int32 `json:"rating_count"`
|
||||||
|
ReleaseYear *int32 `json:"release_year"`
|
||||||
|
ReleaseSeason *ReleaseSeasonT `json:"release_season"`
|
||||||
|
Season *int32 `json:"season"`
|
||||||
|
EpisodesAired *int32 `json:"episodes_aired"`
|
||||||
|
EpisodesAll *int32 `json:"episodes_all"`
|
||||||
|
TitleStorageType *StorageTypeT `json:"title_storage_type"`
|
||||||
|
TitleImagePath *string `json:"title_image_path"`
|
||||||
|
TagNames json.RawMessage `json:"tag_names"`
|
||||||
|
StudioName *string `json:"studio_name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (q *Queries) SearchTitles(ctx context.Context, arg SearchTitlesParams) ([]SearchTitlesRow, error) {
|
||||||
|
rows, err := q.db.Query(ctx, searchTitles,
|
||||||
|
arg.Forward,
|
||||||
|
arg.SortBy,
|
||||||
|
arg.CursorYear,
|
||||||
|
arg.CursorID,
|
||||||
|
arg.CursorRating,
|
||||||
|
arg.Word,
|
||||||
|
arg.TitleStatuses,
|
||||||
|
arg.Rating,
|
||||||
|
arg.ReleaseYear,
|
||||||
|
arg.ReleaseSeason,
|
||||||
|
arg.Limit,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
items := []SearchTitlesRow{}
|
||||||
|
for rows.Next() {
|
||||||
|
var i SearchTitlesRow
|
||||||
|
if err := rows.Scan(
|
||||||
|
&i.ID,
|
||||||
|
&i.TitleNames,
|
||||||
|
&i.PosterID,
|
||||||
|
&i.TitleStatus,
|
||||||
|
&i.Rating,
|
||||||
|
&i.RatingCount,
|
||||||
|
&i.ReleaseYear,
|
||||||
|
&i.ReleaseSeason,
|
||||||
|
&i.Season,
|
||||||
|
&i.EpisodesAired,
|
||||||
|
&i.EpisodesAll,
|
||||||
|
&i.TitleStorageType,
|
||||||
|
&i.TitleImagePath,
|
||||||
|
&i.TagNames,
|
||||||
|
&i.StudioName,
|
||||||
|
); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
items = append(items, i)
|
||||||
|
}
|
||||||
|
if err := rows.Err(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return items, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
const searchUserTitles = `-- name: SearchUserTitles :many
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
t.id as id,
|
||||||
|
t.title_names as title_names,
|
||||||
|
t.poster_id as poster_id,
|
||||||
|
t.title_status as title_status,
|
||||||
|
t.rating as rating,
|
||||||
|
t.rating_count as rating_count,
|
||||||
|
t.release_year as release_year,
|
||||||
|
t.release_season as release_season,
|
||||||
|
t.season as season,
|
||||||
|
t.episodes_aired as episodes_aired,
|
||||||
|
t.episodes_all as episodes_all,
|
||||||
|
u.user_id as user_id,
|
||||||
|
u.status as usertitle_status,
|
||||||
|
u.rate as user_rate,
|
||||||
|
u.review_id as review_id,
|
||||||
|
u.ctime as user_ctime,
|
||||||
|
i.storage_type as title_storage_type,
|
||||||
|
i.image_path as title_image_path,
|
||||||
|
COALESCE(
|
||||||
|
jsonb_agg(g.tag_names) FILTER (WHERE g.tag_names IS NOT NULL),
|
||||||
|
'[]'::jsonb
|
||||||
|
)::jsonb as tag_names,
|
||||||
|
s.studio_name as studio_name
|
||||||
|
|
||||||
|
FROM usertitles as u
|
||||||
|
JOIN titles as t ON (u.title_id = t.id)
|
||||||
|
LEFT JOIN images as i ON (t.poster_id = i.id)
|
||||||
|
LEFT JOIN title_tags as tt ON (t.id = tt.title_id)
|
||||||
|
LEFT JOIN tags as g ON (tt.tag_id = g.id)
|
||||||
|
LEFT JOIN studios as s ON (t.studio_id = s.id)
|
||||||
|
|
||||||
|
WHERE
|
||||||
|
u.user_id = $1::bigint
|
||||||
|
AND
|
||||||
|
CASE
|
||||||
|
WHEN $2::boolean THEN
|
||||||
|
-- forward: greater than cursor (next page)
|
||||||
|
CASE $3::text
|
||||||
|
WHEN 'year' THEN
|
||||||
|
($4::int IS NULL) OR
|
||||||
|
(t.release_year > $4::int) OR
|
||||||
|
(t.release_year = $4::int AND t.id > $5::bigint)
|
||||||
|
|
||||||
|
WHEN 'rating' THEN
|
||||||
|
($6::float IS NULL) OR
|
||||||
|
(t.rating > $6::float) OR
|
||||||
|
(t.rating = $6::float AND t.id > $5::bigint)
|
||||||
|
|
||||||
|
WHEN 'id' THEN
|
||||||
|
($5::bigint IS NULL) OR
|
||||||
|
(t.id > $5::bigint)
|
||||||
|
|
||||||
|
ELSE true -- fallback
|
||||||
|
END
|
||||||
|
|
||||||
|
ELSE
|
||||||
|
-- backward: less than cursor (prev page)
|
||||||
|
CASE $3::text
|
||||||
|
WHEN 'year' THEN
|
||||||
|
($4::int IS NULL) OR
|
||||||
|
(t.release_year < $4::int) OR
|
||||||
|
(t.release_year = $4::int AND t.id < $5::bigint)
|
||||||
|
|
||||||
|
WHEN 'rating' THEN
|
||||||
|
($6::float IS NULL) OR
|
||||||
|
(t.rating < $6::float) OR
|
||||||
|
(t.rating = $6::float AND t.id < $5::bigint)
|
||||||
|
|
||||||
|
WHEN 'id' THEN
|
||||||
|
($5::bigint IS NULL) OR
|
||||||
|
(t.id < $5::bigint)
|
||||||
|
|
||||||
|
ELSE true
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
||||||
|
AND (
|
||||||
|
CASE
|
||||||
|
WHEN $7::text IS NOT NULL THEN
|
||||||
|
(
|
||||||
|
SELECT bool_and(
|
||||||
|
EXISTS (
|
||||||
|
SELECT 1
|
||||||
|
FROM jsonb_each_text(t.title_names) AS t(key, val)
|
||||||
|
WHERE val ILIKE pattern
|
||||||
|
)
|
||||||
|
)
|
||||||
|
FROM unnest(
|
||||||
|
ARRAY(
|
||||||
|
SELECT '%' || trim(w) || '%'
|
||||||
|
FROM unnest(string_to_array($7::text, ' ')) AS w
|
||||||
|
WHERE trim(w) <> ''
|
||||||
|
)
|
||||||
|
) AS pattern
|
||||||
|
)
|
||||||
|
ELSE true
|
||||||
|
END
|
||||||
|
)
|
||||||
|
|
||||||
|
AND (
|
||||||
|
$8::title_status_t[] IS NULL
|
||||||
|
OR array_length($8::title_status_t[], 1) IS NULL
|
||||||
|
OR array_length($8::title_status_t[], 1) = 0
|
||||||
|
OR t.title_status = ANY($8::title_status_t[])
|
||||||
|
)
|
||||||
|
AND (
|
||||||
|
$9::usertitle_status_t[] IS NULL
|
||||||
|
OR array_length($9::usertitle_status_t[], 1) IS NULL
|
||||||
|
OR array_length($9::usertitle_status_t[], 1) = 0
|
||||||
|
OR u.status = ANY($9::usertitle_status_t[])
|
||||||
|
)
|
||||||
|
AND ($10::int IS NULL OR u.rate >= $10::int)
|
||||||
|
AND ($11::float IS NULL OR t.rating >= $11::float)
|
||||||
|
AND ($12::int IS NULL OR t.release_year = $12::int)
|
||||||
|
AND ($13::release_season_t IS NULL OR t.release_season = $13::release_season_t)
|
||||||
|
|
||||||
|
GROUP BY
|
||||||
|
t.id, u.user_id, u.status, u.rate, u.review_id, u.ctime, i.id, s.id
|
||||||
|
|
||||||
|
ORDER BY
|
||||||
|
CASE WHEN $2::boolean THEN
|
||||||
|
CASE
|
||||||
|
WHEN $3::text = 'id' THEN t.id
|
||||||
|
WHEN $3::text = 'year' THEN t.release_year
|
||||||
|
WHEN $3::text = 'rating' THEN t.rating
|
||||||
|
WHEN $3::text = 'rate' THEN u.rate
|
||||||
|
END
|
||||||
|
END ASC,
|
||||||
|
CASE WHEN NOT $2::boolean THEN
|
||||||
|
CASE
|
||||||
|
WHEN $3::text = 'id' THEN t.id
|
||||||
|
WHEN $3::text = 'year' THEN t.release_year
|
||||||
|
WHEN $3::text = 'rating' THEN t.rating
|
||||||
|
WHEN $3::text = 'rate' THEN u.rate
|
||||||
|
END
|
||||||
|
END DESC,
|
||||||
|
|
||||||
|
CASE WHEN $3::text <> 'id' THEN t.id END ASC
|
||||||
|
|
||||||
|
LIMIT COALESCE($14::int, 100)
|
||||||
|
`
|
||||||
|
|
||||||
|
type SearchUserTitlesParams struct {
|
||||||
|
UserID int64 `json:"user_id"`
|
||||||
|
Forward bool `json:"forward"`
|
||||||
|
SortBy string `json:"sort_by"`
|
||||||
|
CursorYear *int32 `json:"cursor_year"`
|
||||||
|
CursorID *int64 `json:"cursor_id"`
|
||||||
|
CursorRating *float64 `json:"cursor_rating"`
|
||||||
|
Word *string `json:"word"`
|
||||||
|
TitleStatuses []TitleStatusT `json:"title_statuses"`
|
||||||
|
UsertitleStatuses []UsertitleStatusT `json:"usertitle_statuses"`
|
||||||
|
Rate *int32 `json:"rate"`
|
||||||
|
Rating *float64 `json:"rating"`
|
||||||
|
ReleaseYear *int32 `json:"release_year"`
|
||||||
|
ReleaseSeason *ReleaseSeasonT `json:"release_season"`
|
||||||
|
Limit *int32 `json:"limit"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type SearchUserTitlesRow struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
TitleNames json.RawMessage `json:"title_names"`
|
||||||
|
PosterID *int64 `json:"poster_id"`
|
||||||
|
TitleStatus TitleStatusT `json:"title_status"`
|
||||||
|
Rating *float64 `json:"rating"`
|
||||||
|
RatingCount *int32 `json:"rating_count"`
|
||||||
|
ReleaseYear *int32 `json:"release_year"`
|
||||||
|
ReleaseSeason *ReleaseSeasonT `json:"release_season"`
|
||||||
|
Season *int32 `json:"season"`
|
||||||
|
EpisodesAired *int32 `json:"episodes_aired"`
|
||||||
|
EpisodesAll *int32 `json:"episodes_all"`
|
||||||
|
UserID int64 `json:"user_id"`
|
||||||
|
UsertitleStatus UsertitleStatusT `json:"usertitle_status"`
|
||||||
|
UserRate *int32 `json:"user_rate"`
|
||||||
|
ReviewID *int64 `json:"review_id"`
|
||||||
|
UserCtime time.Time `json:"user_ctime"`
|
||||||
|
TitleStorageType *StorageTypeT `json:"title_storage_type"`
|
||||||
|
TitleImagePath *string `json:"title_image_path"`
|
||||||
|
TagNames json.RawMessage `json:"tag_names"`
|
||||||
|
StudioName *string `json:"studio_name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 100 is default limit
|
||||||
|
func (q *Queries) SearchUserTitles(ctx context.Context, arg SearchUserTitlesParams) ([]SearchUserTitlesRow, error) {
|
||||||
|
rows, err := q.db.Query(ctx, searchUserTitles,
|
||||||
|
arg.UserID,
|
||||||
|
arg.Forward,
|
||||||
|
arg.SortBy,
|
||||||
|
arg.CursorYear,
|
||||||
|
arg.CursorID,
|
||||||
|
arg.CursorRating,
|
||||||
|
arg.Word,
|
||||||
|
arg.TitleStatuses,
|
||||||
|
arg.UsertitleStatuses,
|
||||||
|
arg.Rate,
|
||||||
|
arg.Rating,
|
||||||
|
arg.ReleaseYear,
|
||||||
|
arg.ReleaseSeason,
|
||||||
|
arg.Limit,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
items := []SearchUserTitlesRow{}
|
||||||
|
for rows.Next() {
|
||||||
|
var i SearchUserTitlesRow
|
||||||
|
if err := rows.Scan(
|
||||||
|
&i.ID,
|
||||||
|
&i.TitleNames,
|
||||||
|
&i.PosterID,
|
||||||
|
&i.TitleStatus,
|
||||||
|
&i.Rating,
|
||||||
|
&i.RatingCount,
|
||||||
|
&i.ReleaseYear,
|
||||||
|
&i.ReleaseSeason,
|
||||||
|
&i.Season,
|
||||||
|
&i.EpisodesAired,
|
||||||
|
&i.EpisodesAll,
|
||||||
|
&i.UserID,
|
||||||
|
&i.UsertitleStatus,
|
||||||
|
&i.UserRate,
|
||||||
|
&i.ReviewID,
|
||||||
|
&i.UserCtime,
|
||||||
|
&i.TitleStorageType,
|
||||||
|
&i.TitleImagePath,
|
||||||
|
&i.TagNames,
|
||||||
|
&i.StudioName,
|
||||||
|
); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
items = append(items, i)
|
||||||
|
}
|
||||||
|
if err := rows.Err(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return items, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
const updateUser = `-- name: UpdateUser :one
|
||||||
|
|
||||||
|
|
||||||
|
UPDATE users
|
||||||
|
SET
|
||||||
|
avatar_id = COALESCE($1, avatar_id),
|
||||||
|
disp_name = COALESCE($2, disp_name),
|
||||||
|
user_desc = COALESCE($3, user_desc),
|
||||||
|
mail = COALESCE($4, mail)
|
||||||
|
WHERE id = $5
|
||||||
|
RETURNING id, avatar_id, nickname, disp_name, user_desc, creation_date, mail
|
||||||
|
`
|
||||||
|
|
||||||
|
type UpdateUserParams struct {
|
||||||
|
AvatarID *int64 `json:"avatar_id"`
|
||||||
|
DispName *string `json:"disp_name"`
|
||||||
|
UserDesc *string `json:"user_desc"`
|
||||||
|
Mail *string `json:"mail"`
|
||||||
|
UserID int64 `json:"user_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UpdateUserRow struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
AvatarID *int64 `json:"avatar_id"`
|
||||||
|
Nickname string `json:"nickname"`
|
||||||
|
DispName *string `json:"disp_name"`
|
||||||
|
UserDesc *string `json:"user_desc"`
|
||||||
|
CreationDate time.Time `json:"creation_date"`
|
||||||
|
Mail *string `json:"mail"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- name: ListUsers :many
|
||||||
|
// SELECT user_id, avatar_id, passhash, mail, nickname, disp_name, user_desc, creation_date
|
||||||
|
// FROM users
|
||||||
|
// ORDER BY user_id
|
||||||
|
// LIMIT $1 OFFSET $2;
|
||||||
|
// -- name: CreateUser :one
|
||||||
|
// INSERT INTO users (avatar_id, passhash, mail, nickname, disp_name, user_desc, creation_date)
|
||||||
|
// VALUES ($1, $2, $3, $4, $5, $6, $7)
|
||||||
|
// RETURNING user_id, avatar_id, nickname, disp_name, user_desc, creation_date;
|
||||||
|
func (q *Queries) UpdateUser(ctx context.Context, arg UpdateUserParams) (UpdateUserRow, error) {
|
||||||
|
row := q.db.QueryRow(ctx, updateUser,
|
||||||
|
arg.AvatarID,
|
||||||
|
arg.DispName,
|
||||||
|
arg.UserDesc,
|
||||||
|
arg.Mail,
|
||||||
|
arg.UserID,
|
||||||
|
)
|
||||||
|
var i UpdateUserRow
|
||||||
|
err := row.Scan(
|
||||||
|
&i.ID,
|
||||||
|
&i.AvatarID,
|
||||||
|
&i.Nickname,
|
||||||
|
&i.DispName,
|
||||||
|
&i.UserDesc,
|
||||||
|
&i.CreationDate,
|
||||||
|
&i.Mail,
|
||||||
)
|
)
|
||||||
return i, err
|
return i, err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,15 @@ sql:
|
||||||
sql_driver: "github.com/jackc/pgx/v5"
|
sql_driver: "github.com/jackc/pgx/v5"
|
||||||
emit_json_tags: true
|
emit_json_tags: true
|
||||||
emit_pointers_for_null_types: true
|
emit_pointers_for_null_types: true
|
||||||
|
emit_empty_slices: true #slices returned by :many queries will be empty instead of nil
|
||||||
overrides:
|
overrides:
|
||||||
|
- db_type: "storage_type_t"
|
||||||
|
nullable: true
|
||||||
|
go_type:
|
||||||
|
type: "StorageTypeT"
|
||||||
|
pointer: true
|
||||||
|
- db_type: "jsonb"
|
||||||
|
go_type: "encoding/json.RawMessage"
|
||||||
- db_type: "uuid"
|
- db_type: "uuid"
|
||||||
nullable: false
|
nullable: false
|
||||||
go_type:
|
go_type:
|
||||||
|
|
@ -25,3 +33,13 @@ sql:
|
||||||
go_type:
|
go_type:
|
||||||
import: "time"
|
import: "time"
|
||||||
type: "Time"
|
type: "Time"
|
||||||
|
- db_type: "title_status_t"
|
||||||
|
nullable: true
|
||||||
|
go_type:
|
||||||
|
pointer: true
|
||||||
|
type: "TitleStatusT"
|
||||||
|
- db_type: "release_season_t"
|
||||||
|
nullable: true
|
||||||
|
go_type:
|
||||||
|
pointer: true
|
||||||
|
type: "ReleaseSeasonT"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue