2021-03-05 17:31:12 +00:00
/ *
GoToSocial
Copyright ( C ) 2021 GoToSocial Authors admin @ gotosocial . org
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-04-19 17:42:19 +00:00
// Package gtsmodel contains types used *internally* by GoToSocial and added/removed/selected from the database.
2021-03-15 15:15:14 +00:00
// These types should never be serialized and/or sent out via public APIs, as they contain sensitive information.
2021-04-01 18:46:45 +00:00
// The annotation used on these structs is for handling them via the go-pg ORM (hence why they're in this db subdir).
// See here for more info on go-pg model annotations: https://pg.uptrace.dev/models/
2021-04-19 17:42:19 +00:00
package gtsmodel
2021-03-05 17:31:12 +00:00
import (
2021-04-01 18:46:45 +00:00
"crypto/rsa"
2021-03-05 17:31:12 +00:00
"time"
)
2021-03-20 18:04:27 +00:00
// Account represents either a local or a remote fediverse account, gotosocial or otherwise (mastodon, pleroma, etc)
2021-03-15 22:05:24 +00:00
type Account struct {
2021-03-20 18:04:27 +00:00
/ *
BASIC INFO
* /
2021-06-13 16:42:28 +00:00
// id of this account in the local database
ID string ` pg:"type:CHAR(26),pk,notnull,unique" `
2021-03-20 18:04:27 +00:00
// Username of the account, should just be a string of [a-z0-9_]. Can be added to domain to create the full username in the form ``[username]@[domain]`` eg., ``user_96@example.org``
Username string ` pg:",notnull,unique:userdomain" ` // username and domain should be unique *with* each other
2021-04-19 17:42:19 +00:00
// Domain of the account, will be null if this is a local account, otherwise something like ``example.org`` or ``mastodon.social``. Should be unique with username.
2021-04-01 18:46:45 +00:00
Domain string ` pg:",unique:userdomain" ` // username and domain should be unique *with* each other
2021-03-20 18:04:27 +00:00
/ *
ACCOUNT METADATA
* /
2021-04-19 17:42:19 +00:00
// ID of the avatar as a media attachment
2021-08-20 10:26:56 +00:00
AvatarMediaAttachmentID string ` pg:"type:CHAR(26)" `
AvatarMediaAttachment * MediaAttachment ` pg:"rel:has-one" `
2021-05-08 12:25:55 +00:00
// For a non-local account, where can the header be fetched?
AvatarRemoteURL string
2021-04-19 17:42:19 +00:00
// ID of the header as a media attachment
2021-08-20 10:26:56 +00:00
HeaderMediaAttachmentID string ` pg:"type:CHAR(26)" `
HeaderMediaAttachment * MediaAttachment ` pg:"rel:has-one" `
2021-05-08 12:25:55 +00:00
// For a non-local account, where can the header be fetched?
HeaderRemoteURL string
2021-03-20 18:04:27 +00:00
// DisplayName for this account. Can be empty, then just the Username will be used for display purposes.
DisplayName string
// a key/value map of fields that this account has added to their profile
2021-04-01 18:46:45 +00:00
Fields [ ] Field
2021-03-20 18:04:27 +00:00
// A note that this account has on their profile (ie., the account's bio/description of themselves)
Note string
// Is this a memorial account, ie., has the user passed away?
Memorial bool
// This account has moved this account id in the database
2021-06-13 16:42:28 +00:00
MovedToAccountID string ` pg:"type:CHAR(26)" `
2021-03-20 18:04:27 +00:00
// When was this account created?
CreatedAt time . Time ` pg:"type:timestamp,notnull,default:now()" `
// When was this account last updated?
UpdatedAt time . Time ` pg:"type:timestamp,notnull,default:now()" `
2021-04-01 18:46:45 +00:00
// Does this account identify itself as a bot?
Bot bool
// What reason was given for signing up when this account was created?
Reason string
2021-03-20 18:04:27 +00:00
/ *
2021-04-01 18:46:45 +00:00
USER AND PRIVACY PREFERENCES
2021-03-20 18:04:27 +00:00
* /
// Does this account need an approval for new followers?
2021-08-23 10:46:05 +00:00
Locked bool ` pg:",default:true,use_zero" `
2021-03-20 18:04:27 +00:00
// Should this account be shown in the instance's profile directory?
2021-05-28 17:57:04 +00:00
Discoverable bool ` pg:",default:false" `
2021-04-01 18:46:45 +00:00
// Default post privacy for this account
2021-05-28 17:57:04 +00:00
Privacy Visibility ` pg:",default:'public'" `
2021-04-01 18:46:45 +00:00
// Set posts from this account to sensitive by default?
2021-05-28 17:57:04 +00:00
Sensitive bool ` pg:",default:false" `
2021-04-01 18:46:45 +00:00
// What language does this account post in?
2021-05-15 09:58:11 +00:00
Language string ` pg:",default:'en'" `
2021-03-20 18:04:27 +00:00
/ *
ACTIVITYPUB THINGS
* /
// What is the activitypub URI for this account discovered by webfinger?
URI string ` pg:",unique" `
// At which URL can we see the user account in a web browser?
URL string ` pg:",unique" `
// Last time this account was located using the webfinger API.
LastWebfingeredAt time . Time ` pg:"type:timestamp" `
// Address of this account's activitypub inbox, for sending activity to
2021-05-08 12:25:55 +00:00
InboxURI string ` pg:",unique" `
2021-03-20 18:04:27 +00:00
// Address of this account's activitypub outbox
2021-05-08 12:25:55 +00:00
OutboxURI string ` pg:",unique" `
// URI for getting the following list of this account
FollowingURI string ` pg:",unique" `
// URI for getting the followers list of this account
FollowersURI string ` pg:",unique" `
2021-03-20 18:04:27 +00:00
// URL for getting the featured collection list of this account
2021-05-08 12:25:55 +00:00
FeaturedCollectionURI string ` pg:",unique" `
2021-03-20 18:04:27 +00:00
// What type of activitypub actor is this account?
2021-05-21 13:48:26 +00:00
ActorType string
2021-03-20 18:04:27 +00:00
// This account is associated with x account id
AlsoKnownAs string
/ *
CRYPTO FIELDS
* /
2021-07-06 11:29:11 +00:00
// Privatekey for validating activitypub requests, will only be defined for local accounts
2021-04-01 18:46:45 +00:00
PrivateKey * rsa . PrivateKey
2021-03-20 18:04:27 +00:00
// Publickey for encoding activitypub requests, will be defined for both local and remote accounts
2021-04-01 18:46:45 +00:00
PublicKey * rsa . PublicKey
2021-05-08 12:25:55 +00:00
// Web-reachable location of this account's public key
PublicKeyURI string
2021-03-20 18:04:27 +00:00
/ *
ADMIN FIELDS
* /
// When was this account set to have all its media shown as sensitive?
SensitizedAt time . Time ` pg:"type:timestamp" `
// When was this account silenced (eg., statuses only visible to followers, not public)?
SilencedAt time . Time ` pg:"type:timestamp" `
// When was this account suspended (eg., don't allow it to log in/post, don't accept media/posts from this account)
SuspendedAt time . Time ` pg:"type:timestamp" `
// Should we hide this account's collections?
HideCollections bool
2021-07-06 11:29:11 +00:00
// id of the database entry that caused this account to become suspended -- can be an account ID or a domain block ID
SuspensionOrigin string ` pg:"type:CHAR(26)" `
2021-03-05 17:31:12 +00:00
}
2021-04-01 18:46:45 +00:00
// Field represents a key value field on an account, for things like pronouns, website, etc.
// VerifiedAt is optional, to be used only if Value is a URL to a webpage that contains the
// username of the user.
type Field struct {
Name string
Value string
VerifiedAt time . Time ` pg:"type:timestamp" `
2021-03-07 12:05:33 +00:00
}