mirror of https://github.com/v2ray/v2ray-core
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.
22 lines
403 B
22 lines
403 B
// +build json
|
|
|
|
package protocol
|
|
|
|
import "encoding/json"
|
|
|
|
func (u *User) UnmarshalJSON(data []byte) error {
|
|
type rawUser struct {
|
|
EmailString string `json:"email"`
|
|
LevelByte byte `json:"level"`
|
|
}
|
|
var rawUserValue rawUser
|
|
if err := json.Unmarshal(data, &rawUserValue); err != nil {
|
|
return err
|
|
}
|
|
|
|
u.Email = rawUserValue.EmailString
|
|
u.Level = uint32(rawUserValue.LevelByte)
|
|
|
|
return nil
|
|
}
|