wisski-cloud-distillery/internal/dis/component/sql/sql.go
Tom Wiesing 8235ea9105
Require access to Still via method
This commit adds a safeguard to accessing the still from a specific
component by requiring access via the component.GetStill method.
2024-04-08 22:39:32 +02:00

87 lines
2.1 KiB
Go

package sql
import (
"embed"
"path/filepath"
"time"
config_package "github.com/FAU-CDI/wisski-distillery/internal/config"
"github.com/FAU-CDI/wisski-distillery/internal/dis/component"
"github.com/tkw1536/pkglib/fsx/umaskfree"
"github.com/tkw1536/pkglib/yamlx"
"gopkg.in/yaml.v3"
)
type SQL struct {
component.Base
dependencies struct {
Tables []component.Table
}
ServerURL string // upstream server url
PollInterval time.Duration // duration to wait for during wait
}
var (
_ component.Backupable = (*SQL)(nil)
_ component.Snapshotable = (*SQL)(nil)
_ component.Installable = (*SQL)(nil)
_ component.Provisionable = (*SQL)(nil)
_ component.Updatable = (*SQL)(nil)
)
func (sql *SQL) Path() string {
return filepath.Join(component.GetStill(sql).Config.Paths.Root, "core", "sql")
}
func (*SQL) Context(parent component.InstallationContext) component.InstallationContext {
return parent
}
//go:embed all:sql
var resources embed.FS
func (sql *SQL) Stack() component.StackWithResources {
config := component.GetStill(sql).Config
return component.MakeStack(sql, component.StackWithResources{
Resources: resources,
ContextPath: "sql",
EnvContext: map[string]string{
"DOCKER_NETWORK_NAME": config.Docker.Network(),
"HTTPS_ENABLED": config.HTTP.HTTPSEnabledEnv(),
"HOST_RULE": config.HTTP.HostRule(config_package.PHPMyAdminDomain.Domain()),
},
ComposerYML: func(root *yaml.Node) (*yaml.Node, error) {
// phpmyadmin is exposed => everything is fine
if config.HTTP.PhpMyAdmin.Set && config.HTTP.PhpMyAdmin.Value {
return root, nil
}
// not exposed => remove the appropriate labels
if err := yamlx.ReplaceWith(root, []string{
"eu.wiss-ki.barrel.distillery=${DOCKER_NETWORK_NAME}",
}, "services", "phpmyadmin", "labels"); err != nil {
return nil, err
}
return root, nil
},
MakeDirsPerm: umaskfree.DefaultDirPerm,
MakeDirs: []string{
"data",
"imports",
},
})
}
const (
// "mysql"-compatible executable for raw sql queries
SQLQueryExecutable = "mariadb"
// "mysqldump"-compatible executable for dumping an entire database
SQlDumpExecutable = "mariadb-dump"
)