You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
4.4 KiB
165 lines
4.4 KiB
package serializer
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/HFO4/cloudreve/models"
|
|
"github.com/HFO4/cloudreve/pkg/hashid"
|
|
"github.com/duo-labs/webauthn/webauthn"
|
|
)
|
|
|
|
// CheckLogin 检查登录
|
|
func CheckLogin() Response {
|
|
return Response{
|
|
Code: CodeCheckLogin,
|
|
Msg: "未登录",
|
|
}
|
|
}
|
|
|
|
// User 用户序列化器
|
|
type User struct {
|
|
ID string `json:"id"`
|
|
Email string `json:"user_name"`
|
|
Nickname string `json:"nickname"`
|
|
Status int `json:"status"`
|
|
Avatar string `json:"avatar"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
PreferredTheme string `json:"preferred_theme"`
|
|
Anonymous bool `json:"anonymous"`
|
|
Policy policy `json:"policy"`
|
|
Group group `json:"group"`
|
|
Tags []tag `json:"tags"`
|
|
}
|
|
|
|
type policy struct {
|
|
SaveType string `json:"saveType"`
|
|
MaxSize string `json:"maxSize"`
|
|
AllowedType []string `json:"allowedType"`
|
|
UploadURL string `json:"upUrl"`
|
|
AllowGetSource bool `json:"allowSource"`
|
|
}
|
|
|
|
type group struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
AllowShare bool `json:"allowShare"`
|
|
AllowRemoteDownload bool `json:"allowRemoteDownload"`
|
|
AllowArchiveDownload bool `json:"allowArchiveDownload"`
|
|
ShareDownload bool `json:"shareDownload"`
|
|
CompressEnabled bool `json:"compress"`
|
|
WebDAVEnabled bool `json:"webdav"`
|
|
}
|
|
|
|
type tag struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Icon string `json:"icon"`
|
|
Color string `json:"color"`
|
|
Type int `json:"type"`
|
|
Expression string `json:"expression"`
|
|
}
|
|
|
|
type storage struct {
|
|
Used uint64 `json:"used"`
|
|
Free uint64 `json:"free"`
|
|
Total uint64 `json:"total"`
|
|
}
|
|
|
|
// WebAuthnCredentials 外部验证器凭证
|
|
type WebAuthnCredentials struct {
|
|
ID []byte `json:"id"`
|
|
FingerPrint string `json:"fingerprint"`
|
|
}
|
|
|
|
// BuildWebAuthnList 构建设置页面凭证列表
|
|
func BuildWebAuthnList(credentials []webauthn.Credential) []WebAuthnCredentials {
|
|
res := make([]WebAuthnCredentials, 0, len(credentials))
|
|
for _, v := range credentials {
|
|
credential := WebAuthnCredentials{
|
|
ID: v.ID,
|
|
FingerPrint: fmt.Sprintf("% X", v.Authenticator.AAGUID),
|
|
}
|
|
res = append(res, credential)
|
|
}
|
|
|
|
return res
|
|
}
|
|
|
|
// BuildUser 序列化用户
|
|
func BuildUser(user model.User) User {
|
|
tags, _ := model.GetTagsByUID(user.ID)
|
|
return User{
|
|
ID: hashid.HashID(user.ID, hashid.UserID),
|
|
Email: user.Email,
|
|
Nickname: user.Nick,
|
|
Status: user.Status,
|
|
Avatar: user.Avatar,
|
|
CreatedAt: user.CreatedAt.Unix(),
|
|
PreferredTheme: user.OptionsSerialized.PreferredTheme,
|
|
Anonymous: user.IsAnonymous(),
|
|
Policy: policy{
|
|
SaveType: user.Policy.Type,
|
|
MaxSize: fmt.Sprintf("%.2fmb", float64(user.Policy.MaxSize)/(1024*1024)),
|
|
AllowedType: user.Policy.OptionsSerialized.FileType,
|
|
UploadURL: user.Policy.GetUploadURL(),
|
|
AllowGetSource: user.Policy.IsOriginLinkEnable,
|
|
},
|
|
Group: group{
|
|
ID: user.GroupID,
|
|
Name: user.Group.Name,
|
|
AllowShare: user.Group.ShareEnabled,
|
|
AllowRemoteDownload: user.Group.OptionsSerialized.Aria2,
|
|
AllowArchiveDownload: user.Group.OptionsSerialized.ArchiveDownload,
|
|
ShareDownload: user.Group.OptionsSerialized.ShareDownload,
|
|
CompressEnabled: user.Group.OptionsSerialized.ArchiveTask,
|
|
WebDAVEnabled: user.Group.WebDAVEnabled,
|
|
},
|
|
Tags: buildTagRes(tags),
|
|
}
|
|
}
|
|
|
|
// BuildUserResponse 序列化用户响应
|
|
func BuildUserResponse(user model.User) Response {
|
|
return Response{
|
|
Data: BuildUser(user),
|
|
}
|
|
}
|
|
|
|
// BuildUserStorageResponse 序列化用户存储概况响应
|
|
func BuildUserStorageResponse(user model.User) Response {
|
|
total := user.Group.MaxStorage
|
|
storageResp := storage{
|
|
Used: user.Storage,
|
|
Free: total - user.Storage,
|
|
Total: total,
|
|
}
|
|
|
|
if total < user.Storage {
|
|
storageResp.Free = 0
|
|
}
|
|
|
|
return Response{
|
|
Data: storageResp,
|
|
}
|
|
}
|
|
|
|
// buildTagRes 构建标签列表
|
|
func buildTagRes(tags []model.Tag) []tag {
|
|
res := make([]tag, 0, len(tags))
|
|
for i := 0; i < len(tags); i++ {
|
|
newTag := tag{
|
|
ID: hashid.HashID(tags[i].ID, hashid.TagID),
|
|
Name: tags[i].Name,
|
|
Icon: tags[i].Icon,
|
|
Color: tags[i].Color,
|
|
Type: tags[i].Type,
|
|
}
|
|
if newTag.Type != 0 {
|
|
newTag.Expression = tags[i].Expression
|
|
|
|
}
|
|
res = append(res, newTag)
|
|
}
|
|
|
|
return res
|
|
}
|