2016-11-07 13:53:13 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-11-07 13:53:13 +00:00
|
|
|
|
2019-05-11 10:21:34 +00:00
|
|
|
package structs
|
2016-11-07 13:53:13 +00:00
|
|
|
|
|
|
|
import (
|
2019-06-16 03:28:32 +00:00
|
|
|
"time"
|
2021-03-01 21:08:10 +00:00
|
|
|
|
2021-07-24 16:03:58 +00:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2016-11-07 13:53:13 +00:00
|
|
|
)
|
|
|
|
|
2017-11-13 07:02:25 +00:00
|
|
|
// User represents a user
|
|
|
|
// swagger:model
|
2016-11-07 13:53:13 +00:00
|
|
|
type User struct {
|
2017-11-13 07:02:25 +00:00
|
|
|
// the user's id
|
2018-03-06 01:22:16 +00:00
|
|
|
ID int64 `json:"id"`
|
2017-11-13 07:02:25 +00:00
|
|
|
// the user's username
|
2018-03-06 01:22:16 +00:00
|
|
|
UserName string `json:"login"`
|
2022-07-15 08:52:11 +00:00
|
|
|
// the user's authentication sign-in name.
|
|
|
|
// default: empty
|
|
|
|
LoginName string `json:"login_name"`
|
2024-04-16 06:08:48 +00:00
|
|
|
// The ID of the user's Authentication Source
|
|
|
|
SourceID int64 `json:"source_id"`
|
2017-11-13 07:02:25 +00:00
|
|
|
// the user's full name
|
2018-03-06 01:22:16 +00:00
|
|
|
FullName string `json:"full_name"`
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:strfmt email
|
2018-03-06 01:22:16 +00:00
|
|
|
Email string `json:"email"`
|
2017-11-13 07:02:25 +00:00
|
|
|
// URL to the user's avatar
|
2016-11-29 08:09:17 +00:00
|
|
|
AvatarURL string `json:"avatar_url"`
|
2018-05-05 00:28:30 +00:00
|
|
|
// User locale
|
|
|
|
Language string `json:"language"`
|
2019-03-03 22:57:24 +00:00
|
|
|
// Is the user an administrator
|
|
|
|
IsAdmin bool `json:"is_admin"`
|
2019-06-16 03:28:32 +00:00
|
|
|
// swagger:strfmt date-time
|
|
|
|
LastLogin time.Time `json:"last_login,omitempty"`
|
|
|
|
// swagger:strfmt date-time
|
|
|
|
Created time.Time `json:"created,omitempty"`
|
2021-02-18 08:25:35 +00:00
|
|
|
// Is user restricted
|
|
|
|
Restricted bool `json:"restricted"`
|
2021-05-11 00:22:29 +00:00
|
|
|
// Is user active
|
|
|
|
IsActive bool `json:"active"`
|
|
|
|
// Is user login prohibited
|
|
|
|
ProhibitLogin bool `json:"prohibit_login"`
|
2021-05-01 09:05:55 +00:00
|
|
|
// the user's location
|
|
|
|
Location string `json:"location"`
|
2024-02-29 10:10:18 +00:00
|
|
|
// the user's pronouns
|
|
|
|
Pronouns string `json:"pronouns"`
|
2021-05-01 09:05:55 +00:00
|
|
|
// the user's website
|
|
|
|
Website string `json:"website"`
|
2021-05-02 19:03:15 +00:00
|
|
|
// the user's description
|
|
|
|
Description string `json:"description"`
|
2021-06-26 19:53:14 +00:00
|
|
|
// User visibility level option: public, limited, private
|
|
|
|
Visibility string `json:"visibility"`
|
2021-06-17 07:17:35 +00:00
|
|
|
|
|
|
|
// user counts
|
|
|
|
Followers int `json:"followers_count"`
|
|
|
|
Following int `json:"following_count"`
|
|
|
|
StarredRepos int `json:"starred_repos_count"`
|
2016-11-07 13:53:13 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 15:26:35 +00: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})
|
|
|
|
}
|
2021-06-23 19:58:44 +00:00
|
|
|
|
|
|
|
// UserSettings represents user settings
|
|
|
|
// swagger:model
|
|
|
|
type UserSettings struct {
|
2024-03-01 12:22:40 +00:00
|
|
|
FullName string `json:"full_name"`
|
|
|
|
Website string `json:"website"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Location string `json:"location"`
|
2024-02-29 10:10:18 +00:00
|
|
|
Pronouns string `json:"pronouns"`
|
2024-03-01 12:22:40 +00:00
|
|
|
Language string `json:"language"`
|
|
|
|
Theme string `json:"theme"`
|
|
|
|
DiffViewStyle string `json:"diff_view_style"`
|
|
|
|
EnableRepoUnitHints bool `json:"enable_repo_unit_hints"`
|
2021-06-23 19:58:44 +00:00
|
|
|
// Privacy
|
|
|
|
HideEmail bool `json:"hide_email"`
|
|
|
|
HideActivity bool `json:"hide_activity"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// UserSettingsOptions represents options to change user settings
|
|
|
|
// swagger:model
|
|
|
|
type UserSettingsOptions struct {
|
2024-03-01 12:22:40 +00:00
|
|
|
FullName *string `json:"full_name" binding:"MaxSize(100)"`
|
|
|
|
Website *string `json:"website" binding:"OmitEmpty;ValidUrl;MaxSize(255)"`
|
|
|
|
Description *string `json:"description" binding:"MaxSize(255)"`
|
|
|
|
Location *string `json:"location" binding:"MaxSize(50)"`
|
2023-09-26 02:39:12 +00:00
|
|
|
Pronouns *string `json:"pronouns" binding:"MaxSize(50)"`
|
2024-03-01 12:22:40 +00:00
|
|
|
Language *string `json:"language"`
|
|
|
|
Theme *string `json:"theme"`
|
|
|
|
DiffViewStyle *string `json:"diff_view_style"`
|
|
|
|
EnableRepoUnitHints *bool `json:"enable_repo_unit_hints"`
|
2021-06-23 19:58:44 +00:00
|
|
|
// Privacy
|
|
|
|
HideEmail *bool `json:"hide_email"`
|
|
|
|
HideActivity *bool `json:"hide_activity"`
|
|
|
|
}
|
2023-03-14 07:45:21 +00:00
|
|
|
|
|
|
|
// RenameUserOption options when renaming a user
|
|
|
|
type RenameUserOption struct {
|
|
|
|
// New username for this user. This name cannot be in use yet by any other user.
|
|
|
|
//
|
|
|
|
// required: true
|
|
|
|
// unique: true
|
|
|
|
NewName string `json:"new_username" binding:"Required"`
|
|
|
|
}
|
2023-06-29 23:22:55 +00:00
|
|
|
|
|
|
|
// UpdateUserAvatarUserOption options when updating the user avatar
|
|
|
|
type UpdateUserAvatarOption struct {
|
|
|
|
// image must be base64 encoded
|
|
|
|
Image string `json:"image" binding:"Required"`
|
|
|
|
}
|