mirror of https://github.com/rocboss/paopao-ce
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.
60 lines
1.1 KiB
60 lines
1.1 KiB
// Copyright 2023 ROC. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cs
|
|
|
|
const (
|
|
RelationUnknow RelationTyp = iota
|
|
RelationSelf
|
|
RelationFriend
|
|
RelationFollower
|
|
RelationFollowing
|
|
RelationAdmin
|
|
RelationGuest
|
|
)
|
|
|
|
type (
|
|
// UserInfoList 用户信息列表
|
|
UserInfoList []*UserInfo
|
|
|
|
//
|
|
RelationTyp uint8
|
|
|
|
VistUser struct {
|
|
Username string
|
|
UserId int64
|
|
RelTyp RelationTyp
|
|
}
|
|
)
|
|
|
|
// UserInfo 用户基本信息
|
|
type UserInfo struct {
|
|
ID int64 `json:"id"`
|
|
Nickname string `json:"nickname"`
|
|
Username string `json:"username"`
|
|
Status int `json:"status"`
|
|
Avatar string `json:"avatar"`
|
|
IsAdmin bool `json:"is_admin"`
|
|
CreatedOn int64 `json:"created_on"`
|
|
}
|
|
|
|
func (t RelationTyp) String() string {
|
|
switch t {
|
|
case RelationSelf:
|
|
return "self"
|
|
case RelationFriend:
|
|
return "friend"
|
|
case RelationFollower:
|
|
return "follower"
|
|
case RelationFollowing:
|
|
return "following"
|
|
case RelationAdmin:
|
|
return "admin"
|
|
case RelationUnknow:
|
|
fallthrough
|
|
default:
|
|
return "unknow relation"
|
|
}
|
|
}
|