mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-17 18:38:37 +00:00

This PR summarizes multiple changes specifically only available with ZITADEL v3: - feat: Web Keys management (https://github.com/zitadel/zitadel/pull/9526) - fix(cmd): ensure proper working of mirror (https://github.com/zitadel/zitadel/pull/9509) - feat(Authz): system user support for permission check v2 (https://github.com/zitadel/zitadel/pull/9640) - chore(license): change from Apache to AGPL (https://github.com/zitadel/zitadel/pull/9597) - feat(console): list v2 sessions (https://github.com/zitadel/zitadel/pull/9539) - fix(console): add loginV2 feature flag (https://github.com/zitadel/zitadel/pull/9682) - fix(feature flags): allow reading "own" flags (https://github.com/zitadel/zitadel/pull/9649) - feat(console): add Actions V2 UI (https://github.com/zitadel/zitadel/pull/9591) BREAKING CHANGE - feat(webkey): migrate to v2beta API (https://github.com/zitadel/zitadel/pull/9445) - chore!: remove CockroachDB Support (https://github.com/zitadel/zitadel/pull/9444) - feat(actions): migrate to v2beta API (https://github.com/zitadel/zitadel/pull/9489) --------- Co-authored-by: Livio Spring <livio.a@gmail.com> Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com> Co-authored-by: Silvan <27845747+adlerhurst@users.noreply.github.com> Co-authored-by: Ramon <mail@conblem.me> Co-authored-by: Elio Bischof <elio@zitadel.com> Co-authored-by: Kenta Yamaguchi <56732734+KEY60228@users.noreply.github.com> Co-authored-by: Harsha Reddy <harsha.reddy@klaviyo.com> Co-authored-by: Livio Spring <livio@zitadel.com> Co-authored-by: Max Peintner <max@caos.ch> Co-authored-by: Iraq <66622793+kkrime@users.noreply.github.com> Co-authored-by: Florian Forster <florian@zitadel.com> Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Max Peintner <peintnerm@gmail.com>
116 lines
2.6 KiB
Go
116 lines
2.6 KiB
Go
package setup
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"embed"
|
|
"fmt"
|
|
"io/fs"
|
|
"path"
|
|
"strings"
|
|
"text/template"
|
|
|
|
"github.com/zitadel/logging"
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
)
|
|
|
|
// query filenames
|
|
const (
|
|
fileInTxOrderType = "00_in_tx_order_type.sql"
|
|
fileType = "01_type.sql"
|
|
fileFunc = "02_func.sql"
|
|
)
|
|
|
|
var (
|
|
//go:embed 40/*.sql
|
|
initPushFunc embed.FS
|
|
)
|
|
|
|
type InitPushFunc struct {
|
|
dbClient *database.DB
|
|
}
|
|
|
|
func (mig *InitPushFunc) Execute(ctx context.Context, _ eventstore.Event) (err error) {
|
|
conn, err := mig.dbClient.Conn(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
closeErr := conn.Close()
|
|
logging.OnError(closeErr).Debug("failed to release connection")
|
|
// Force the pool to reopen connections to apply the new types
|
|
mig.dbClient.Pool.Reset()
|
|
}()
|
|
statements, err := mig.prepareStatements(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, stmt := range statements {
|
|
logging.WithFields("file", stmt.file, "migration", mig.String()).Info("execute statement")
|
|
if _, err := conn.ExecContext(ctx, stmt.query); err != nil {
|
|
return fmt.Errorf("%s %s: %w", mig.String(), stmt.file, err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (mig *InitPushFunc) String() string {
|
|
return "40_init_push_func_v4"
|
|
}
|
|
|
|
func (mig *InitPushFunc) prepareStatements(ctx context.Context) ([]statement, error) {
|
|
funcTmpl, err := template.ParseFS(initPushFunc, mig.filePath(fileFunc))
|
|
if err != nil {
|
|
return nil, fmt.Errorf("prepare steps: %w", err)
|
|
}
|
|
typeName, err := mig.inTxOrderType(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("prepare steps: %w", err)
|
|
}
|
|
var funcStep strings.Builder
|
|
err = funcTmpl.Execute(&funcStep, struct {
|
|
InTxOrderType string
|
|
}{
|
|
InTxOrderType: typeName,
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("prepare steps: %w", err)
|
|
}
|
|
typeStatement, err := fs.ReadFile(initPushFunc, mig.filePath(fileType))
|
|
if err != nil {
|
|
return nil, fmt.Errorf("prepare steps: %w", err)
|
|
}
|
|
return []statement{
|
|
{
|
|
file: fileType,
|
|
query: string(typeStatement),
|
|
},
|
|
{
|
|
file: fileFunc,
|
|
query: funcStep.String(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (mig *InitPushFunc) inTxOrderType(ctx context.Context) (typeName string, err error) {
|
|
query, err := fs.ReadFile(initPushFunc, mig.filePath(fileInTxOrderType))
|
|
if err != nil {
|
|
return "", fmt.Errorf("get in_tx_order_type: %w", err)
|
|
}
|
|
|
|
err = mig.dbClient.QueryRowContext(ctx, func(row *sql.Row) error {
|
|
return row.Scan(&typeName)
|
|
}, string(query))
|
|
if err != nil {
|
|
return "", fmt.Errorf("get in_tx_order_type: %w", err)
|
|
}
|
|
return typeName, nil
|
|
}
|
|
|
|
func (mig *InitPushFunc) filePath(fileName string) string {
|
|
return path.Join("40", fileName)
|
|
}
|