2023-10-19 10:19:10 +00:00
|
|
|
package setup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"embed"
|
|
|
|
"errors"
|
|
|
|
"strings"
|
|
|
|
|
2024-03-27 13:48:22 +00:00
|
|
|
"github.com/jackc/pgx/v5/pgconn"
|
2023-10-19 10:19:10 +00:00
|
|
|
"github.com/zitadel/logging"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
2024-01-25 16:28:20 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
2023-10-19 10:19:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
//go:embed 14/cockroach/*.sql
|
|
|
|
//go:embed 14/postgres/*.sql
|
|
|
|
newEventsTable embed.FS
|
|
|
|
)
|
|
|
|
|
|
|
|
type NewEventsTable struct {
|
|
|
|
dbClient *database.DB
|
|
|
|
}
|
|
|
|
|
2024-01-25 16:28:20 +00:00
|
|
|
func (mig *NewEventsTable) Execute(ctx context.Context, _ eventstore.Event) error {
|
2023-10-19 10:19:10 +00:00
|
|
|
migrations, err := newEventsTable.ReadDir("14/" + mig.dbClient.Type())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// if events already exists events2 is created during a setup job
|
|
|
|
var count int
|
|
|
|
err = mig.dbClient.QueryRow(
|
|
|
|
func(row *sql.Row) error {
|
|
|
|
if err = row.Scan(&count); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return row.Err()
|
|
|
|
},
|
|
|
|
"SELECT count(*) FROM information_schema.tables WHERE table_schema = 'eventstore' AND table_name like 'events2'",
|
|
|
|
)
|
|
|
|
if err != nil || count == 1 {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, migration := range migrations {
|
|
|
|
stmt, err := readStmt(newEventsTable, "14", mig.dbClient.Type(), migration.Name())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stmt = strings.ReplaceAll(stmt, "{{.username}}", mig.dbClient.Username())
|
|
|
|
|
|
|
|
logging.WithFields("migration", mig.String(), "file", migration.Name()).Debug("execute statement")
|
|
|
|
|
|
|
|
_, err = mig.dbClient.ExecContext(ctx, stmt)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mig *NewEventsTable) String() string {
|
|
|
|
return "14_events_push"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mig *NewEventsTable) ContinueOnErr(err error) bool {
|
|
|
|
pgErr := new(pgconn.PgError)
|
|
|
|
if errors.As(err, &pgErr) {
|
|
|
|
return pgErr.Code == "42P01"
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|