Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Emoji ¶
type Emoji struct { ID string `bun:"type:CHAR(26),pk,nullzero,notnull,unique"` // id of this item in the database CreatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item created UpdatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item last updated Shortcode string `bun:",nullzero,notnull,unique:domainshortcode"` // String shortcode for this emoji -- the part that's between colons. This should be a-zA-Z_ eg., 'blob_hug' 'purple_heart' 'Gay_Otter' Must be unique with domain. Domain string `bun:",nullzero,unique:domainshortcode"` // Origin domain of this emoji, eg 'example.org', 'queer.party'. empty string for local emojis. ImageRemoteURL string `bun:",nullzero"` // Where can this emoji be retrieved remotely? Null for local emojis. ImageStaticRemoteURL string `bun:",nullzero"` // Where can a static / non-animated version of this emoji be retrieved remotely? Null for local emojis. ImageURL string `bun:",nullzero"` // Where can this emoji be retrieved from the local server? Null for remote emojis. ImageStaticURL string `bun:",nullzero"` // Where can a static version of this emoji be retrieved from the local server? Null for remote emojis. ImagePath string `bun:",notnull"` // Path of the emoji image in the server storage system. ImageStaticPath string `bun:",notnull"` // Path of a static version of the emoji image in the server storage system ImageContentType string `bun:",notnull"` // MIME content type of the emoji image ImageStaticContentType string `bun:",notnull"` // MIME content type of the static version of the emoji image. ImageFileSize int `bun:",notnull"` // Size of the emoji image file in bytes, for serving purposes. ImageStaticFileSize int `bun:",notnull"` // Size of the static version of the emoji image file in bytes, for serving purposes. Disabled *bool `bun:",nullzero,notnull,default:false"` // Has a moderation action disabled this emoji from being shown? URI string `bun:",nullzero,notnull,unique"` // ActivityPub uri of this emoji. Something like 'https://example.org/emojis/1234' VisibleInPicker *bool `bun:",nullzero,notnull,default:true"` // Is this emoji visible in the admin emoji picker? Category *EmojiCategory `bun:"rel:belongs-to"` // In which emoji category is this emoji visible? CategoryID string `bun:"type:CHAR(26),nullzero"` // ID of the category this emoji belongs to. Cached *bool `bun:",nullzero,notnull,default:false"` // whether emoji is cached in locally in gotosocial storage. }
Emoji represents a custom emoji that's been uploaded through the admin UI or downloaded from a remote instance.
func (*Emoji) IsLocal ¶
IsLocal returns true if the emoji is local to this instance., ie., it did not originate from a remote instance.
func (*Emoji) ShortcodeDomain ¶
ShortcodeDomain returns the [shortcode]@[domain] for the given emoji.
type EmojiCategory ¶
type EmojiCategory struct { ID string `bun:"type:CHAR(26),pk,nullzero,notnull,unique"` // id of this item in the database CreatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item created UpdatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item last updated Name string `bun:",nullzero,notnull,unique"` // name of this category }
EmojiCategory represents a grouping of custom emojis.
type File ¶
type File struct { Path string `bun:",notnull"` // Path of the file in storage. ContentType string `bun:",notnull"` // MIME content type of the file. FileSize int `bun:",notnull"` // File size in bytes }
File refers to the metadata for the whole file
type FileMeta ¶
type FileMeta struct { Original Original `bun:"embed:original_"` Small Small `bun:"embed:small_"` Focus Focus `bun:"embed:focus_"` }
FileMeta describes metadata about the actual contents of the file.
type FileType ¶
type FileType string
FileType refers to the file type of the media attaachment.
const ( FileTypeImage FileType = "Image" // FileTypeImage is for jpegs, pngs, and standard gifs FileTypeGifv FileType = "Gifv" // FileTypeGif is for soundless looping videos that behave like gifs FileTypeAudio FileType = "Audio" // FileTypeAudio is for audio-only files (no video) FileTypeVideo FileType = "Video" // FileTypeVideo is for files with audio + visual FileTypeUnknown FileType = "Unknown" // FileTypeUnknown is for unknown file types (surprise surprise!) )
MediaAttachment file types.
type Focus ¶
Focus describes the 'center' of the image for display purposes. X and Y should each be between -1 and 1
type MediaAttachment ¶
type MediaAttachment struct { ID string `bun:"type:CHAR(26),pk,nullzero,notnull,unique"` // id of this item in the database CreatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item created UpdatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item last updated StatusID string `bun:"type:CHAR(26),nullzero"` // ID of the status to which this is attached URL string `bun:",nullzero"` // Where can the attachment be retrieved on *this* server RemoteURL string `bun:",nullzero"` // Where can the attachment be retrieved on a remote server (empty for local media) Type FileType `bun:",notnull"` // Type of file (image/gifv/audio/video/unknown) FileMeta FileMeta `bun:",embed:,notnull"` // Metadata about the file AccountID string `bun:"type:CHAR(26),nullzero,notnull"` // To which account does this attachment belong Description string `bun:""` // Description of the attachment (for screenreaders) ScheduledStatusID string `bun:"type:CHAR(26),nullzero"` // To which scheduled status does this attachment belong Blurhash string `bun:",nullzero"` // What is the generated blurhash of this attachment Processing ProcessingStatus `bun:",notnull,default:2"` // What is the processing status of this attachment File File `bun:",embed:file_,notnull,nullzero"` // metadata for the whole file Thumbnail Thumbnail `bun:",embed:thumbnail_,notnull,nullzero"` // small image thumbnail derived from a larger image, video, or audio file. Avatar *bool `bun:",nullzero,notnull,default:false"` // Is this attachment being used as an avatar? Header *bool `bun:",nullzero,notnull,default:false"` // Is this attachment being used as a header? Cached *bool `bun:",nullzero,notnull,default:false"` // Is this attachment currently cached by our instance? }
MediaAttachment represents a user-uploaded media attachment: an image/video/audio/gif that is somewhere in storage and that can be retrieved and served by the router.
func (*MediaAttachment) IsLocal ¶
func (m *MediaAttachment) IsLocal() bool
IsLocal returns whether media attachment is local.
func (*MediaAttachment) IsRemote ¶
func (m *MediaAttachment) IsRemote() bool
IsRemote returns whether media attachment is remote.
type Original ¶
type Original struct { Width int // width in pixels Height int // height in pixels Size int // size in pixels (width * height) Aspect float32 // aspect ratio (width / height) Duration *float32 // video-specific: duration of the video in seconds Framerate *float32 // video-specific: fps Bitrate *uint64 // video-specific: bitrate }
Original can be used for original metadata for any media type
type ProcessingStatus ¶
type ProcessingStatus int
ProcessingStatus refers to how far along in the processing stage the attachment is.
const ( ProcessingStatusReceived ProcessingStatus = 0 // ProcessingStatusReceived indicates the attachment has been received and is awaiting processing. No thumbnail available yet. ProcessingStatusProcessing ProcessingStatus = 1 // ProcessingStatusProcessing indicates the attachment is currently being processed. Thumbnail is available but full media is not. ProcessingStatusProcessed ProcessingStatus = 2 // ProcessingStatusProcessed indicates the attachment has been fully processed and is ready to be served. ProcessingStatusError ProcessingStatus = 666 // ProcessingStatusError indicates something went wrong processing the attachment and it won't be tried again--these can be deleted. )
MediaAttachment processing states.
type Small ¶
type Small struct { Width int // width in pixels Height int // height in pixels Size int // size in pixels (width * height) Aspect float32 // aspect ratio (width / height) }
Small can be used for a thumbnail of any media type
type Thumbnail ¶
type Thumbnail struct { Path string `bun:",notnull"` // Path of the file in storage. ContentType string `bun:",notnull"` // MIME content type of the file. FileSize int `bun:",notnull"` // File size in bytes URL string `bun:",nullzero"` // What is the URL of the thumbnail on the local server RemoteURL string `bun:",nullzero"` // What is the remote URL of the thumbnail (empty for local media) }
Thumbnail refers to a small image thumbnail derived from a larger image, video, or audio file.