2016-11-07 06:53:13 -07:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-05-11 04:21:34 -06:00
|
|
|
package structs
|
2016-11-07 06:53:13 -07:00
|
|
|
|
|
|
|
import (
|
2016-12-16 08:26:35 -07:00
|
|
|
"encoding/json"
|
2019-06-15 21:28:32 -06:00
|
|
|
"time"
|
2016-11-07 06:53:13 -07:00
|
|
|
)
|
|
|
|
|
2017-11-13 00:02:25 -07:00
|
|
|
// User represents a user
|
|
|
|
// swagger:model
|
2016-11-07 06:53:13 -07:00
|
|
|
type User struct {
|
2017-11-13 00:02:25 -07:00
|
|
|
// the user's id
|
2018-03-05 18:22:16 -07:00
|
|
|
ID int64 `json:"id"`
|
2017-11-13 00:02:25 -07:00
|
|
|
// the user's username
|
2018-03-05 18:22:16 -07:00
|
|
|
UserName string `json:"login"`
|
2017-11-13 00:02:25 -07:00
|
|
|
// the user's full name
|
2018-03-05 18:22:16 -07:00
|
|
|
FullName string `json:"full_name"`
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:strfmt email
|
2018-03-05 18:22:16 -07:00
|
|
|
Email string `json:"email"`
|
2017-11-13 00:02:25 -07:00
|
|
|
// URL to the user's avatar
|
2016-11-29 01:09:17 -07:00
|
|
|
AvatarURL string `json:"avatar_url"`
|
2018-05-04 18:28:30 -06:00
|
|
|
// User locale
|
|
|
|
Language string `json:"language"`
|
2019-03-03 15:57:24 -07:00
|
|
|
// Is the user an administrator
|
|
|
|
IsAdmin bool `json:"is_admin"`
|
2019-06-15 21:28:32 -06:00
|
|
|
// swagger:strfmt date-time
|
|
|
|
LastLogin time.Time `json:"last_login,omitempty"`
|
|
|
|
// swagger:strfmt date-time
|
|
|
|
Created time.Time `json:"created,omitempty"`
|
2016-11-07 06:53:13 -07:00
|
|
|
}
|
|
|
|
|
2016-12-16 08:26:35 -07:00
|
|
|
// MarshalJSON implements the json.Marshaler interface for User, adding field(s) for backward compatibility
|
|
|
|
func (u User) MarshalJSON() ([]byte, error) {
|
|
|
|
// Re-declaring User to avoid recursion
|
|
|
|
type shadow User
|
|
|
|
return json.Marshal(struct {
|
|
|
|
shadow
|
|
|
|
CompatUserName string `json:"username"`
|
|
|
|
}{shadow(u), u.UserName})
|
|
|
|
}
|