2021-09-01 17:29:25 +01: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-09-01 10:45:01 +01:00
|
|
|
package gtsmodel
|
|
|
|
|
2021-09-01 17:29:25 +01:00
|
|
|
import "time"
|
|
|
|
|
|
|
|
// Client is a wrapper for OAuth client details.
|
2021-09-01 10:45:01 +01:00
|
|
|
type Client struct {
|
2021-09-01 17:29:25 +01:00
|
|
|
ID string `validate:"required,ulid" bun:"type:CHAR(26),pk,nullzero,notnull,unique"` // id of this item in the database
|
|
|
|
CreatedAt time.Time `validate:"-" bun:"type:timestamp,nullzero,notnull,default:current_timestamp"` // when was item created
|
|
|
|
UpdatedAt time.Time `validate:"-" bun:"type:timestamp,nullzero,notnull,default:current_timestamp"` // when was item last updated
|
|
|
|
Secret string `validate:"required,uuid" bun:",nullzero,notnull"` // secret generated when client was created
|
2021-09-02 11:17:14 +01:00
|
|
|
Domain string `validate:"required,uri" bun:",nullzero,notnull"` // domain requested for client
|
2021-09-01 17:29:25 +01:00
|
|
|
UserID string `validate:"omitempty,ulid" bun:"type:CHAR(26),nullzero"` // id of the user that this client acts on behalf of
|
2021-09-01 10:45:01 +01:00
|
|
|
}
|