fusenapi/server_api/upload.api

52 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-07-05 11:00:33 +00:00
syntax = "v1"
2023-07-04 11:59:54 +00:00
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
import "basic.api"
2023-07-11 03:33:43 +00:00
service upload {
@handler UploadUpFileHandler
2023-07-12 03:09:43 +00:00
get /api/upload/up-file(RequestUpFile) returns (response);
2023-07-11 03:33:43 +00:00
@handler UploadFileFrontendHandler
2023-07-12 03:09:43 +00:00
post /api/upload/upload-file-frontend(RequestUploadFileFrontend) returns (response);
2023-07-11 03:33:43 +00:00
@handler UploadFileBackendHandler
2023-07-12 03:09:43 +00:00
post /api/upload/upload-file-backend(RequestUploadFileBackend) returns (response);
2023-07-11 03:33:43 +00:00
//生成二维码
@handler UploadQrcodeHandler
2023-07-12 03:09:43 +00:00
post /api/upload/qrcode (UploadQrcodeReq) returns (response);
2023-07-11 03:33:43 +00:00
}
2023-07-04 11:59:54 +00:00
type RequestUpFile {
2023-07-05 11:00:33 +00:00
UpFile string `form:"upfile"`
IsCut string `form:"is_cut"` // 是否裁剪
2023-07-04 11:59:54 +00:00
}
type RequestUploadFileFrontend {
2023-07-05 11:00:33 +00:00
FileName string `json:"file_name"` // 文件名
FileType string `json:"file_type"` // Image / fbx / hdr
FileSize int64 `json:"file_size"` // 文件大小
Category string `json:"category"` // 类别
2023-07-04 11:59:54 +00:00
}
type RequestUploadFileBackend {
File File `file:"file"` // 文件名
FileType string `form:"file_type"` // Image / fbx / hdr
Category string `form:"category"` // 类别
2023-07-04 11:59:54 +00:00
}
2023-07-11 03:33:43 +00:00
//生成二维码
type UploadQrcodeReq {
Url string `json:"url"`
QRcodeType int64 `json:"QRcodeType"`
}
type UploadQrcodeRsp {
Link string `json:"link"`
Data string `json:"d"`
2023-07-04 11:59:54 +00:00
}