2021-03-01 14:41:43 +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
|
2021-04-01 18:46:45 +00:00
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2021-04-19 17:42:19 +00:00
|
|
|
// Tag represents a hashtag for gathering public statuses together
|
|
|
|
type Tag struct {
|
|
|
|
// id of this tag in the database
|
2021-06-13 16:42:28 +00:00
|
|
|
ID string `pg:",unique,type:CHAR(26),pk,notnull"`
|
2021-05-15 09:58:11 +00:00
|
|
|
// Href of this tag, eg https://example.org/tags/somehashtag
|
|
|
|
URL string
|
2021-04-19 17:42:19 +00:00
|
|
|
// name of this tag -- the tag without the hash part
|
2021-08-20 10:26:56 +00:00
|
|
|
Name string `pg:",unique,notnull"`
|
2021-04-19 17:42:19 +00:00
|
|
|
// Which account ID is the first one we saw using this tag?
|
2021-06-13 16:42:28 +00:00
|
|
|
FirstSeenFromAccountID string `pg:"type:CHAR(26)"`
|
2021-04-19 17:42:19 +00:00
|
|
|
// when was this tag created
|
2021-04-01 18:46:45 +00:00
|
|
|
CreatedAt time.Time `pg:"type:timestamp,notnull,default:now()"`
|
2021-04-19 17:42:19 +00:00
|
|
|
// when was this tag last updated
|
2021-04-01 18:46:45 +00:00
|
|
|
UpdatedAt time.Time `pg:"type:timestamp,notnull,default:now()"`
|
2021-04-19 17:42:19 +00:00
|
|
|
// can our instance users use this tag?
|
|
|
|
Useable bool `pg:",notnull,default:true"`
|
|
|
|
// can our instance users look up this tag?
|
|
|
|
Listable bool `pg:",notnull,default:true"`
|
|
|
|
// when was this tag last used?
|
|
|
|
LastStatusAt time.Time `pg:"type:timestamp,notnull,default:now()"`
|
2021-03-22 21:26:54 +00:00
|
|
|
}
|