mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
2dc9fc1626
* start moving to bun * changing more stuff * more * and yet more * tests passing * seems stable now * more big changes * small fix * little fixes
78 lines
4.2 KiB
Go
78 lines
4.2 KiB
Go
/*
|
|
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/>.
|
|
*/
|
|
|
|
package gtsmodel
|
|
|
|
import "time"
|
|
|
|
// Emoji represents a custom emoji that's been uploaded through the admin UI, and is useable by instance denizens.
|
|
type Emoji struct {
|
|
// database ID of this emoji
|
|
ID string `bun:"type:CHAR(26),pk,notnull"`
|
|
// String shortcode for this emoji -- the part that's between colons. This should be lowercase a-z_
|
|
// eg., 'blob_hug' 'purple_heart' Must be unique with domain.
|
|
Shortcode string `bun:",notnull,unique:shortcodedomain"`
|
|
// Origin domain of this emoji, eg 'example.org', 'queer.party'. empty string for local emojis.
|
|
Domain string `bun:",notnull,default:'',unique:shortcodedomain"`
|
|
// When was this emoji created. Must be unique with shortcode.
|
|
CreatedAt time.Time `bun:",nullzero,notnull,default:current_timestamp"`
|
|
// When was this emoji updated
|
|
UpdatedAt time.Time `bun:",nullzero,notnull,default:current_timestamp"`
|
|
// Where can this emoji be retrieved remotely? Null for local emojis.
|
|
// For remote emojis, it'll be something like:
|
|
// https://hackers.town/system/custom_emojis/images/000/049/842/original/1b74481204feabfd.png
|
|
ImageRemoteURL string
|
|
// Where can a static / non-animated version of this emoji be retrieved remotely? Null for local emojis.
|
|
// For remote emojis, it'll be something like:
|
|
// https://hackers.town/system/custom_emojis/images/000/049/842/static/1b74481204feabfd.png
|
|
ImageStaticRemoteURL string
|
|
// Where can this emoji be retrieved from the local server? Null for remote emojis.
|
|
// Assuming our server is hosted at 'example.org', this will be something like:
|
|
// 'https://example.org/fileserver/6339820e-ef65-4166-a262-5a9f46adb1a7/emoji/original/bfa6c9c5-6c25-4ea4-98b4-d78b8126fb52.png'
|
|
ImageURL string
|
|
// Where can a static version of this emoji be retrieved from the local server? Null for remote emojis.
|
|
// Assuming our server is hosted at 'example.org', this will be something like:
|
|
// 'https://example.org/fileserver/6339820e-ef65-4166-a262-5a9f46adb1a7/emoji/small/bfa6c9c5-6c25-4ea4-98b4-d78b8126fb52.png'
|
|
ImageStaticURL string
|
|
// Path of the emoji image in the server storage system. Will be something like:
|
|
// '/gotosocial/storage/6339820e-ef65-4166-a262-5a9f46adb1a7/emoji/original/bfa6c9c5-6c25-4ea4-98b4-d78b8126fb52.png'
|
|
ImagePath string `bun:",notnull"`
|
|
// Path of a static version of the emoji image in the server storage system. Will be something like:
|
|
// '/gotosocial/storage/6339820e-ef65-4166-a262-5a9f46adb1a7/emoji/small/bfa6c9c5-6c25-4ea4-98b4-d78b8126fb52.png'
|
|
ImageStaticPath string `bun:",notnull"`
|
|
// MIME content type of the emoji image
|
|
// Probably "image/png"
|
|
ImageContentType string `bun:",notnull"`
|
|
// MIME content type of the static version of the emoji image.
|
|
ImageStaticContentType string `bun:",notnull"`
|
|
// Size of the emoji image file in bytes, for serving purposes.
|
|
ImageFileSize int `bun:",notnull"`
|
|
// Size of the static version of the emoji image file in bytes, for serving purposes.
|
|
ImageStaticFileSize int `bun:",notnull"`
|
|
// When was the emoji image last updated?
|
|
ImageUpdatedAt time.Time `bun:",nullzero,notnull,default:current_timestamp"`
|
|
// Has a moderation action disabled this emoji from being shown?
|
|
Disabled bool `bun:",notnull,default:false"`
|
|
// ActivityStreams uri of this emoji. Something like 'https://example.org/emojis/1234'
|
|
URI string `bun:",notnull,unique"`
|
|
// Is this emoji visible in the admin emoji picker?
|
|
VisibleInPicker bool `bun:",notnull,default:true"`
|
|
// In which emoji category is this emoji visible?
|
|
CategoryID string `bun:"type:CHAR(26),nullzero"`
|
|
}
|