1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 19:44:32 -04:00
v2fly/common/protocol/user_json.go

30 lines
588 B
Go
Raw Normal View History

// +build json
package protocol
2016-05-28 07:44:11 -04:00
import "encoding/json"
func (u *User) UnmarshalJSON(data []byte) error {
type rawUser struct {
2016-05-28 07:44:11 -04:00
EmailString string `json:"email"`
LevelByte byte `json:"level"`
}
var rawUserValue rawUser
if err := json.Unmarshal(data, &rawUserValue); err != nil {
return err
}
2016-05-28 07:44:11 -04:00
var rawAccount AccountJson
if err := json.Unmarshal(data, &rawAccount); err != nil {
return err
}
account, err := rawAccount.GetAccount()
if err != nil {
return err
}
2016-05-28 07:44:11 -04:00
*u = *NewUser(account, UserLevel(rawUserValue.LevelByte), rawUserValue.EmailString)
return nil
}