2016-11-07 19:23:13 +05:30
|
|
|
// 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 15:51:34 +05:30
|
|
|
package structs
|
2016-11-07 19:23:13 +05:30
|
|
|
|
|
|
|
import (
|
2019-06-16 08:58:32 +05:30
|
|
|
"time"
|
2021-03-02 02:38:10 +05:30
|
|
|
|
|
|
|
jsoniter "github.com/json-iterator/go"
|
2016-11-07 19:23:13 +05:30
|
|
|
)
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// User represents a user
|
|
|
|
// swagger:model
|
2016-11-07 19:23:13 +05:30
|
|
|
type User struct {
|
2017-11-13 12:32:25 +05:30
|
|
|
// the user's id
|
2018-03-06 06:52:16 +05:30
|
|
|
ID int64 `json:"id"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// the user's username
|
2018-03-06 06:52:16 +05:30
|
|
|
UserName string `json:"login"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// the user's full name
|
2018-03-06 06:52:16 +05:30
|
|
|
FullName string `json:"full_name"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:strfmt email
|
2018-03-06 06:52:16 +05:30
|
|
|
Email string `json:"email"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// URL to the user's avatar
|
2016-11-29 13:39:17 +05:30
|
|
|
AvatarURL string `json:"avatar_url"`
|
2018-05-05 05:58:30 +05:30
|
|
|
// User locale
|
|
|
|
Language string `json:"language"`
|
2019-03-04 04:27:24 +05:30
|
|
|
// Is the user an administrator
|
|
|
|
IsAdmin bool `json:"is_admin"`
|
2019-06-16 08:58:32 +05:30
|
|
|
// swagger:strfmt date-time
|
|
|
|
LastLogin time.Time `json:"last_login,omitempty"`
|
|
|
|
// swagger:strfmt date-time
|
|
|
|
Created time.Time `json:"created,omitempty"`
|
2021-02-18 13:55:35 +05:30
|
|
|
// Is user restricted
|
|
|
|
Restricted bool `json:"restricted"`
|
2021-05-11 05:52:29 +05:30
|
|
|
// Is user active
|
|
|
|
IsActive bool `json:"active"`
|
|
|
|
// Is user login prohibited
|
|
|
|
ProhibitLogin bool `json:"prohibit_login"`
|
2021-05-01 14:35:55 +05:30
|
|
|
// the user's location
|
|
|
|
Location string `json:"location"`
|
|
|
|
// the user's website
|
|
|
|
Website string `json:"website"`
|
2021-05-03 00:33:15 +05:30
|
|
|
// the user's description
|
|
|
|
Description string `json:"description"`
|
2021-06-17 12:47:35 +05:30
|
|
|
|
|
|
|
// user counts
|
|
|
|
Followers int `json:"followers_count"`
|
|
|
|
Following int `json:"following_count"`
|
|
|
|
StarredRepos int `json:"starred_repos_count"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
2016-12-16 20:56:35 +05:30
|
|
|
// 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
|
2021-03-02 02:38:10 +05:30
|
|
|
json := jsoniter.ConfigCompatibleWithStandardLibrary
|
2016-12-16 20:56:35 +05:30
|
|
|
return json.Marshal(struct {
|
|
|
|
shadow
|
|
|
|
CompatUserName string `json:"username"`
|
|
|
|
}{shadow(u), u.UserName})
|
|
|
|
}
|