mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-02-23 23:32:15 +08:00
403 lines
9.0 KiB
YAML
403 lines
9.0 KiB
YAML
basePath: /
|
|
definitions:
|
|
errorx.CodeErrorResponse:
|
|
properties:
|
|
code:
|
|
example: 200
|
|
type: integer
|
|
data: {}
|
|
msg:
|
|
example: OK
|
|
type: string
|
|
type: object
|
|
fiber.Route:
|
|
properties:
|
|
method:
|
|
description: Public fields
|
|
type: string
|
|
name:
|
|
description: Route's name
|
|
type: string
|
|
params:
|
|
description: Case sensitive param keys
|
|
items:
|
|
type: string
|
|
type: array
|
|
path:
|
|
description: Original registered route path
|
|
type: string
|
|
type: object
|
|
global.UserClaims:
|
|
properties:
|
|
account:
|
|
type: string
|
|
id:
|
|
type: string
|
|
type: object
|
|
models.User:
|
|
properties:
|
|
account:
|
|
type: string
|
|
active:
|
|
type: boolean
|
|
alias:
|
|
type: string
|
|
contact:
|
|
type: string
|
|
email:
|
|
type: string
|
|
emailVerify:
|
|
type: boolean
|
|
id:
|
|
type: string
|
|
lastLoginTime:
|
|
type: string
|
|
memo:
|
|
type: string
|
|
registerTime:
|
|
type: string
|
|
userName:
|
|
type: string
|
|
type: object
|
|
response.Response:
|
|
properties:
|
|
code:
|
|
example: 200
|
|
type: integer
|
|
data: {}
|
|
msg:
|
|
example: OK
|
|
type: string
|
|
type: object
|
|
info:
|
|
contact:
|
|
email: 919411476@qq.com
|
|
name: Shikong
|
|
description: 基于 Fiber 框架的 swagger
|
|
license:
|
|
name: Apache 2.0
|
|
url: http://www.apache.org/licenses/LICENSE-2.0.html
|
|
termsOfService: http://swagger.io/terms/
|
|
title: GoFiber Study API
|
|
version: "1.0"
|
|
paths:
|
|
/:
|
|
get:
|
|
consumes:
|
|
- application/json
|
|
description: 简单的 HelloWorld 示例
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: OK
|
|
schema:
|
|
allOf:
|
|
- $ref: '#/definitions/response.Response'
|
|
- properties:
|
|
data:
|
|
type: string
|
|
type: object
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: HelloWorld
|
|
tags:
|
|
- HelloWorld
|
|
/casbin/getUserRoles:
|
|
get:
|
|
consumes:
|
|
- application/json
|
|
description: 用户所有角色
|
|
parameters:
|
|
- default: root
|
|
description: 用户账号
|
|
in: query
|
|
name: account
|
|
required: true
|
|
type: string
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: OK
|
|
schema:
|
|
allOf:
|
|
- $ref: '#/definitions/response.Response'
|
|
- properties:
|
|
data:
|
|
items:
|
|
type: string
|
|
type: array
|
|
type: object
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: 用户所有角色
|
|
tags:
|
|
- CasBin
|
|
/casbin/reload:
|
|
post:
|
|
consumes:
|
|
- application/json
|
|
description: 重新加载 casbin 策略
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: OK
|
|
schema:
|
|
allOf:
|
|
- $ref: '#/definitions/response.Response'
|
|
- properties:
|
|
data:
|
|
type: string
|
|
type: object
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: 重新加载 casbin 策略
|
|
tags:
|
|
- CasBin
|
|
/casbin/test:
|
|
get:
|
|
consumes:
|
|
- application/json
|
|
description: casbin 鉴权测试
|
|
parameters:
|
|
- description: 身份
|
|
in: query
|
|
name: identity
|
|
required: true
|
|
type: string
|
|
- description: 系统
|
|
in: query
|
|
name: system
|
|
required: true
|
|
type: string
|
|
- description: api
|
|
in: query
|
|
name: api
|
|
required: true
|
|
type: string
|
|
- description: 动作
|
|
in: query
|
|
name: act
|
|
required: true
|
|
type: string
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: OK
|
|
schema:
|
|
allOf:
|
|
- $ref: '#/definitions/response.Response'
|
|
- properties:
|
|
data:
|
|
type: string
|
|
type: object
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: casbin 鉴权测试
|
|
tags:
|
|
- CasBin
|
|
/error:
|
|
delete:
|
|
consumes:
|
|
- application/json
|
|
description: 错误信息示例
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: 错误处理
|
|
tags:
|
|
- Error
|
|
get:
|
|
consumes:
|
|
- application/json
|
|
description: 错误信息示例
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: 错误处理
|
|
tags:
|
|
- Error
|
|
patch:
|
|
consumes:
|
|
- application/json
|
|
description: 错误信息示例
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: 错误处理
|
|
tags:
|
|
- Error
|
|
post:
|
|
consumes:
|
|
- application/json
|
|
description: 错误信息示例
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: 错误处理
|
|
tags:
|
|
- Error
|
|
put:
|
|
consumes:
|
|
- application/json
|
|
description: 错误信息示例
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: 错误处理
|
|
tags:
|
|
- Error
|
|
/routes:
|
|
get:
|
|
consumes:
|
|
- application/json
|
|
description: 获取所有路由信息
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: OK
|
|
schema:
|
|
allOf:
|
|
- $ref: '#/definitions/response.Response'
|
|
- properties:
|
|
data:
|
|
items:
|
|
items:
|
|
$ref: '#/definitions/fiber.Route'
|
|
type: array
|
|
type: array
|
|
type: object
|
|
summary: 获取所有路由
|
|
tags:
|
|
- Routes
|
|
/test/jwt:
|
|
get:
|
|
consumes:
|
|
- application/json
|
|
description: jwt token 解析测试
|
|
parameters:
|
|
- description: token
|
|
in: query
|
|
name: token
|
|
required: true
|
|
type: string
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: OK
|
|
schema:
|
|
allOf:
|
|
- $ref: '#/definitions/response.Response'
|
|
- properties:
|
|
data:
|
|
$ref: '#/definitions/global.UserClaims'
|
|
type: object
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: jwt token 解析测试
|
|
tags:
|
|
- Test
|
|
post:
|
|
consumes:
|
|
- application/json
|
|
description: jwt token 生成测试
|
|
parameters:
|
|
- description: userClaims
|
|
in: body
|
|
name: vo
|
|
required: true
|
|
schema:
|
|
$ref: '#/definitions/global.UserClaims'
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: OK
|
|
schema:
|
|
allOf:
|
|
- $ref: '#/definitions/response.Response'
|
|
- properties:
|
|
data:
|
|
type: string
|
|
type: object
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
summary: jwt token 生成测试
|
|
tags:
|
|
- Test
|
|
/user/account:
|
|
get:
|
|
consumes:
|
|
- application/json
|
|
description: 根据 账号 获取用户信息
|
|
parameters:
|
|
- description: 账号名称
|
|
in: query
|
|
name: account
|
|
required: true
|
|
type: string
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: OK
|
|
schema:
|
|
allOf:
|
|
- $ref: '#/definitions/response.Response'
|
|
- properties:
|
|
data:
|
|
$ref: '#/definitions/models.User'
|
|
type: object
|
|
default:
|
|
description: ""
|
|
schema:
|
|
$ref: '#/definitions/errorx.CodeErrorResponse'
|
|
security:
|
|
- Token: []
|
|
summary: 根据 账号 获取用户信息
|
|
tags:
|
|
- User
|
|
securityDefinitions:
|
|
Token:
|
|
in: header
|
|
name: token
|
|
type: apiKey
|
|
swagger: "2.0"
|