2021-03-11 20:15:51 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-03-11 20:15:51 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
package model
|
2021-03-11 13:30:14 +00:00
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
import (
|
|
|
|
"mime/multipart"
|
|
|
|
"net"
|
|
|
|
)
|
2021-04-01 19:46:45 +01:00
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// Account models a fediverse account.
|
|
|
|
//
|
|
|
|
// The modelled account can be either a remote account, or one on this instance.
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
|
|
|
// swagger:model account
|
2021-03-11 13:30:14 +00:00
|
|
|
type Account struct {
|
2021-07-31 16:49:59 +01:00
|
|
|
// The account id.
|
|
|
|
// example: 01FBVD42CQ3ZEEVMW180SBX03B
|
2021-03-11 20:15:51 +00:00
|
|
|
ID string `json:"id"`
|
|
|
|
// The username of the account, not including domain.
|
2021-07-31 16:49:59 +01:00
|
|
|
// example: some_user
|
2021-03-11 20:15:51 +00:00
|
|
|
Username string `json:"username"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The account URI as discovered via webfinger.
|
|
|
|
// Equal to username for local users, or username@domain for remote users.
|
|
|
|
// example: some_user@example.org
|
2021-03-11 20:15:51 +00:00
|
|
|
Acct string `json:"acct"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The account's display name.
|
|
|
|
// example: big jeff (he/him)
|
2021-03-11 20:15:51 +00:00
|
|
|
DisplayName string `json:"display_name"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Account manually approves follow requests.
|
2021-03-11 20:15:51 +00:00
|
|
|
Locked bool `json:"locked"`
|
2021-08-02 18:06:44 +01:00
|
|
|
// Account has opted into discovery features.
|
2021-04-01 19:46:45 +01:00
|
|
|
Discoverable bool `json:"discoverable,omitempty"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Account identifies as a bot.
|
2021-03-11 20:15:51 +00:00
|
|
|
Bot bool `json:"bot"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// When the account was created (ISO 8601 Datetime).
|
|
|
|
// example: 2021-07-30T09:20:25+00:00
|
2021-03-11 20:15:51 +00:00
|
|
|
CreatedAt string `json:"created_at"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Bio/description of this account.
|
2021-03-11 20:15:51 +00:00
|
|
|
Note string `json:"note"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Web location of the account's profile page.
|
|
|
|
// example: https://example.org/@some_user
|
2021-03-11 20:15:51 +00:00
|
|
|
URL string `json:"url"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Web location of the account's avatar.
|
|
|
|
// example: https://example.org/media/some_user/avatar/original/avatar.jpeg
|
2021-03-11 20:15:51 +00:00
|
|
|
Avatar string `json:"avatar"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Web location of a static version of the account's avatar.
|
|
|
|
// Only relevant when the account's main avatar is a video or a gif.
|
|
|
|
// example: https://example.org/media/some_user/avatar/static/avatar.png
|
2021-03-11 20:15:51 +00:00
|
|
|
AvatarStatic string `json:"avatar_static"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Web location of the account's header image.
|
|
|
|
// example: https://example.org/media/some_user/header/original/header.jpeg
|
2021-03-11 20:15:51 +00:00
|
|
|
Header string `json:"header"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Web location of a static version of the account's header.
|
|
|
|
// Only relevant when the account's main header is a video or a gif.
|
|
|
|
// example: https://example.org/media/some_user/header/static/header.png
|
2021-03-11 20:15:51 +00:00
|
|
|
HeaderStatic string `json:"header_static"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Number of accounts following this account, according to our instance.
|
2021-03-11 20:15:51 +00:00
|
|
|
FollowersCount int `json:"followers_count"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Number of account's followed by this account, according to our instance.
|
2021-03-11 20:15:51 +00:00
|
|
|
FollowingCount int `json:"following_count"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Number of statuses posted by this account, according to our instance.
|
2021-03-11 20:15:51 +00:00
|
|
|
StatusesCount int `json:"statuses_count"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// When the account's most recent status was posted (ISO 8601 Datetime).
|
|
|
|
// example: 2021-07-30T09:20:25+00:00
|
2022-11-13 20:38:01 +00:00
|
|
|
LastStatusAt *string `json:"last_status_at"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Array of custom emojis used in this account's note or display name.
|
2021-03-11 20:15:51 +00:00
|
|
|
Emojis []Emoji `json:"emojis"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Additional metadata attached to this account's profile.
|
2021-03-11 20:15:51 +00:00
|
|
|
Fields []Field `json:"fields"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Account has been suspended by our instance.
|
2021-04-01 19:46:45 +01:00
|
|
|
Suspended bool `json:"suspended,omitempty"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// If this account has been muted, when will the mute expire (ISO 8601 Datetime).
|
|
|
|
// example: 2021-07-30T09:20:25+00:00
|
2021-04-01 19:46:45 +01:00
|
|
|
MuteExpiresAt string `json:"mute_expires_at,omitempty"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Extra profile information. Shown only if the requester owns the account being requested.
|
2021-04-19 18:42:19 +01:00
|
|
|
Source *Source `json:"source,omitempty"`
|
2022-09-12 12:14:29 +01:00
|
|
|
// CustomCSS to include when rendering this account's profile or statuses.
|
|
|
|
CustomCSS string `json:"custom_css,omitempty"`
|
2022-10-08 13:00:39 +01:00
|
|
|
// Account has enabled RSS feed.
|
|
|
|
EnableRSS bool `json:"enable_rss,omitempty"`
|
2021-03-11 13:30:14 +00:00
|
|
|
}
|
2021-04-01 19:46:45 +01:00
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// AccountCreateRequest models account creation parameters.
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2021-08-02 18:06:44 +01:00
|
|
|
// swagger:parameters accountCreate
|
2021-04-01 19:46:45 +01:00
|
|
|
type AccountCreateRequest struct {
|
|
|
|
// Text that will be reviewed by moderators if registrations require manual approval.
|
2021-05-21 14:48:26 +01:00
|
|
|
Reason string `form:"reason" json:"reason" xml:"reason"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The desired username for the account.
|
|
|
|
// swagger:parameters
|
|
|
|
// pattern: [a-z0-9_]{2,64}
|
|
|
|
// example: a_valid_username
|
|
|
|
// required: true
|
2021-05-21 14:48:26 +01:00
|
|
|
Username string `form:"username" json:"username" xml:"username" binding:"required"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The email address to be used for login.
|
|
|
|
// swagger:parameters
|
|
|
|
// example: someone@wherever.com
|
|
|
|
// required: true
|
2021-05-21 14:48:26 +01:00
|
|
|
Email string `form:"email" json:"email" xml:"email" binding:"required"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The password to be used for login. This will be hashed before storage.
|
|
|
|
// swagger:parameters
|
|
|
|
// example: some_really_really_really_strong_password
|
|
|
|
// required: true
|
2021-05-21 14:48:26 +01:00
|
|
|
Password string `form:"password" json:"password" xml:"password" binding:"required"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The user agrees to the terms, conditions, and policies of the instance.
|
|
|
|
// swagger:parameters
|
|
|
|
// required: true
|
2021-05-21 14:48:26 +01:00
|
|
|
Agreement bool `form:"agreement" json:"agreement" xml:"agreement" binding:"required"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The language of the confirmation email that will be sent.
|
|
|
|
// swagger:parameters
|
|
|
|
// example: en
|
|
|
|
// Required: true
|
2021-05-21 14:48:26 +01:00
|
|
|
Locale string `form:"locale" json:"locale" xml:"locale" binding:"required"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The IP of the sign up request, will not be parsed from the form.
|
|
|
|
// swagger:parameters
|
|
|
|
// swagger:ignore
|
2021-05-08 13:25:55 +01:00
|
|
|
IP net.IP `form:"-"`
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// UpdateCredentialsRequest models an update to an account, by the account owner.
|
|
|
|
//
|
2021-07-31 16:49:59 +01:00
|
|
|
// swagger:ignore
|
2021-04-01 19:46:45 +01:00
|
|
|
type UpdateCredentialsRequest struct {
|
2021-07-31 16:49:59 +01:00
|
|
|
// Account should be made discoverable and shown in the profile directory (if enabled).
|
2021-05-21 14:48:26 +01:00
|
|
|
Discoverable *bool `form:"discoverable" json:"discoverable" xml:"discoverable"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Account is flagged as a bot.
|
2021-05-21 14:48:26 +01:00
|
|
|
Bot *bool `form:"bot" json:"bot" xml:"bot"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// The display name to use for the account.
|
2021-05-21 14:48:26 +01:00
|
|
|
DisplayName *string `form:"display_name" json:"display_name" xml:"display_name"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Bio/description of this account.
|
2021-05-21 14:48:26 +01:00
|
|
|
Note *string `form:"note" json:"note" xml:"note"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Avatar image encoded using multipart/form-data.
|
2021-05-21 14:48:26 +01:00
|
|
|
Avatar *multipart.FileHeader `form:"avatar" json:"avatar" xml:"avatar"`
|
2021-04-01 19:46:45 +01:00
|
|
|
// Header image encoded using multipart/form-data
|
2021-05-21 14:48:26 +01:00
|
|
|
Header *multipart.FileHeader `form:"header" json:"header" xml:"header"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Require manual approval of follow requests.
|
2021-05-21 14:48:26 +01:00
|
|
|
Locked *bool `form:"locked" json:"locked" xml:"locked"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// New Source values for this account.
|
2021-05-21 14:48:26 +01:00
|
|
|
Source *UpdateSource `form:"source" json:"source" xml:"source"`
|
2021-04-01 19:46:45 +01:00
|
|
|
// Profile metadata name and value
|
2021-05-21 14:48:26 +01:00
|
|
|
FieldsAttributes *[]UpdateField `form:"fields_attributes" json:"fields_attributes" xml:"fields_attributes"`
|
2022-09-12 12:14:29 +01:00
|
|
|
// Custom CSS to be included when rendering this account's profile or statuses.
|
|
|
|
CustomCSS *string `form:"custom_css" json:"custom_css" xml:"custom_css"`
|
2022-10-08 13:00:39 +01:00
|
|
|
// Enable RSS feed of public toots for this account at /@[username]/feed.rss
|
|
|
|
EnableRSS *bool `form:"enable_rss" json:"enable_rss" xml:"enable_rss"`
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateSource is to be used specifically in an UpdateCredentialsRequest.
|
2021-08-02 18:06:44 +01:00
|
|
|
//
|
|
|
|
// swagger:model updateSource
|
2021-04-01 19:46:45 +01:00
|
|
|
type UpdateSource struct {
|
|
|
|
// Default post privacy for authored statuses.
|
2021-05-21 14:48:26 +01:00
|
|
|
Privacy *string `form:"privacy" json:"privacy" xml:"privacy"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// Mark authored statuses as sensitive by default.
|
2021-05-21 14:48:26 +01:00
|
|
|
Sensitive *bool `form:"sensitive" json:"sensitive" xml:"sensitive"`
|
2021-04-01 19:46:45 +01:00
|
|
|
// Default language to use for authored statuses. (ISO 6391)
|
2021-05-21 14:48:26 +01:00
|
|
|
Language *string `form:"language" json:"language" xml:"language"`
|
2022-08-06 11:09:21 +01:00
|
|
|
// Default format for authored statuses (plain or markdown).
|
|
|
|
StatusFormat *string `form:"status_format" json:"status_format" xml:"status_format"`
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateField is to be used specifically in an UpdateCredentialsRequest.
|
|
|
|
// By default, max 4 fields and 255 characters per property/value.
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
|
|
|
// swagger:model updateField
|
2021-04-01 19:46:45 +01:00
|
|
|
type UpdateField struct {
|
|
|
|
// Name of the field
|
2021-05-21 14:48:26 +01:00
|
|
|
Name *string `form:"name" json:"name" xml:"name"`
|
2021-04-01 19:46:45 +01:00
|
|
|
// Value of the field
|
2021-05-21 14:48:26 +01:00
|
|
|
Value *string `form:"value" json:"value" xml:"value"`
|
|
|
|
}
|
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// AccountFollowRequest models a request to follow an account.
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2021-08-02 18:06:44 +01:00
|
|
|
// swagger:ignore
|
2021-05-21 14:48:26 +01:00
|
|
|
type AccountFollowRequest struct {
|
2021-08-02 18:06:44 +01:00
|
|
|
// The id of the account to follow.
|
|
|
|
ID string `form:"-" json:"-" xml:"-"`
|
|
|
|
// Show reblogs from this account.
|
2021-05-21 14:48:26 +01:00
|
|
|
Reblogs *bool `form:"reblogs" json:"reblogs" xml:"reblogs"`
|
2021-08-02 18:06:44 +01:00
|
|
|
// Notify when this account posts.
|
2021-05-21 14:48:26 +01:00
|
|
|
Notify *bool `form:"notify" json:"notify" xml:"notify"`
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
2022-03-15 15:12:35 +00:00
|
|
|
|
|
|
|
// AccountDeleteRequest models a request to delete an account.
|
|
|
|
//
|
|
|
|
// swagger:ignore
|
|
|
|
type AccountDeleteRequest struct {
|
|
|
|
// Password of the account's user, for confirmation.
|
|
|
|
Password string `form:"password" json:"password" xml:"password"`
|
|
|
|
// The origin of the delete account request.
|
|
|
|
// Can be the ID of the account owner, or the ID of an admin account.
|
|
|
|
DeleteOriginID string `form:"-" json:"-" xml:"-"`
|
|
|
|
}
|