2021-11-23 09:45:38 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
_ "github.com/go-sql-driver/mysql" // Load the MySQL Driver used in the connection string.
|
|
|
|
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MySQLProvider is a MySQL provider.
|
|
|
|
type MySQLProvider struct {
|
|
|
|
SQLProvider
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMySQLProvider a MySQL provider.
|
2021-12-01 12:11:29 +00:00
|
|
|
func NewMySQLProvider(config *schema.Configuration) (provider *MySQLProvider) {
|
2021-11-23 09:45:38 +00:00
|
|
|
provider = &MySQLProvider{
|
2021-12-01 12:11:29 +00:00
|
|
|
SQLProvider: NewSQLProvider(config, providerMySQL, providerMySQL, dataSourceNameMySQL(*config.Storage.MySQL)),
|
2021-11-23 09:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// All providers have differing SELECT existing table statements.
|
|
|
|
provider.sqlSelectExistingTables = queryMySQLSelectExistingTables
|
|
|
|
|
|
|
|
// Specific alterations to this provider.
|
|
|
|
provider.sqlFmtRenameTable = queryFmtMySQLRenameTable
|
|
|
|
|
|
|
|
return provider
|
|
|
|
}
|
|
|
|
|
|
|
|
func dataSourceNameMySQL(config schema.MySQLStorageConfiguration) (dataSourceName string) {
|
|
|
|
dataSourceName = fmt.Sprintf("%s:%s", config.Username, config.Password)
|
|
|
|
|
|
|
|
if dataSourceName != "" {
|
|
|
|
dataSourceName += "@"
|
|
|
|
}
|
|
|
|
|
|
|
|
address := config.Host
|
|
|
|
if config.Port > 0 {
|
|
|
|
address += fmt.Sprintf(":%d", config.Port)
|
|
|
|
}
|
|
|
|
|
2021-12-02 05:36:03 +00:00
|
|
|
dataSourceName += fmt.Sprintf("tcp(%s)/%s", address, config.Database)
|
2021-11-23 09:45:38 +00:00
|
|
|
|
|
|
|
dataSourceName += "?"
|
|
|
|
dataSourceName += fmt.Sprintf("timeout=%ds&multiStatements=true&parseTime=true", int32(config.Timeout/time.Second))
|
|
|
|
|
|
|
|
return dataSourceName
|
|
|
|
}
|