garm/database/sql/models.go

136 lines
2.7 KiB
Go
Raw Normal View History

2022-04-25 00:03:26 +00:00
package sql
import (
"runner-manager/config"
2022-04-27 16:56:28 +00:00
"runner-manager/runner/providers/common"
2022-04-25 00:03:26 +00:00
"time"
2022-04-28 16:13:20 +00:00
"github.com/pkg/errors"
2022-04-25 00:03:26 +00:00
uuid "github.com/satori/go.uuid"
"gorm.io/gorm"
)
type Base struct {
ID uuid.UUID `gorm:"type:uuid;primary_key;"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt gorm.DeletedAt `gorm:"index"`
}
func (b *Base) BeforeCreate(tx *gorm.DB) error {
2022-04-26 20:29:58 +00:00
emptyId := uuid.UUID{}
if b.ID != emptyId {
return nil
}
2022-04-28 16:13:20 +00:00
newID, err := uuid.NewV4()
if err != nil {
return errors.Wrap(err, "generating id")
}
b.ID = newID
2022-04-25 00:03:26 +00:00
return nil
}
type Tag struct {
Base
2022-04-26 20:29:58 +00:00
Name string `gorm:"type:varchar(64);uniqueIndex"`
Pools []*Pool `gorm:"many2many:pool_tags;"`
2022-04-25 00:03:26 +00:00
}
type Pool struct {
Base
ProviderName string `gorm:"index:idx_pool_type,unique"`
MaxRunners uint
MinIdleRunners uint
Image string `gorm:"index:idx_pool_type,unique"`
Flavor string `gorm:"index:idx_pool_type,unique"`
OSType config.OSType
OSArch config.OSArch
2022-04-26 20:29:58 +00:00
Tags []*Tag `gorm:"many2many:pool_tags;"`
2022-04-27 16:56:28 +00:00
Enabled bool
2022-04-26 20:29:58 +00:00
RepoID uuid.UUID
Repository Repository `gorm:"foreignKey:RepoID"`
OrgID uuid.UUID
Organization Organization `gorm:"foreignKey:OrgID"`
2022-04-27 16:56:28 +00:00
Instances []Instance `gorm:"foreignKey:PoolID"`
2022-04-25 00:03:26 +00:00
}
type Repository struct {
Base
2022-04-28 16:13:20 +00:00
CredentialsName string
Owner string `gorm:"index:idx_owner,unique"`
Name string `gorm:"index:idx_owner,unique"`
WebhookSecret []byte
Pools []Pool `gorm:"foreignKey:RepoID"`
2022-04-25 00:03:26 +00:00
}
type Organization struct {
Base
2022-04-28 16:13:20 +00:00
CredentialsName string
Name string `gorm:"uniqueIndex"`
WebhookSecret []byte
Pools []Pool `gorm:"foreignKey:OrgID"`
2022-04-26 20:29:58 +00:00
}
type Address struct {
Base
Address string
Type string
2022-05-03 19:49:14 +00:00
InstanceID uuid.UUID
Instance Instance `gorm:"foreignKey:InstanceID"`
}
type InstanceStatusUpdate struct {
Base
Message string `gorm:"type:text"`
InstanceID uuid.UUID
Instance Instance `gorm:"foreignKey:InstanceID"`
2022-04-26 20:29:58 +00:00
}
type Instance struct {
Base
2022-05-02 17:55:29 +00:00
ProviderID *string `gorm:"uniqueIndex"`
Name string `gorm:"uniqueIndex"`
2022-04-27 16:56:28 +00:00
OSType config.OSType
OSArch config.OSArch
OSName string
OSVersion string
2022-05-03 19:49:14 +00:00
Addresses []Address `gorm:"foreignKey:InstanceID"`
2022-04-27 16:56:28 +00:00
Status common.InstanceStatus
RunnerStatus common.RunnerStatus
CallbackURL string
PoolID uuid.UUID
Pool Pool `gorm:"foreignKey:PoolID"`
2022-05-03 19:49:14 +00:00
StatusMessages []InstanceStatusUpdate `gorm:"foreignKey:InstanceID"`
2022-04-25 00:03:26 +00:00
}
2022-04-28 16:13:20 +00:00
type User struct {
Base
Username string `gorm:"uniqueIndex;varchar(64)"`
FullName string `gorm:"type:varchar(254)"`
Email string `gorm:"type:varchar(254);unique;index:idx_email"`
Password string `gorm:"type:varchar(60)"`
IsAdmin bool
Enabled bool
}
type ControllerInfo struct {
Base
ControllerID uuid.UUID
}