mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

* chore: multitenancy in integrations * chore: multitenancy in cloud integration accounts * chore: changes to cloudintegrationservice * chore: rename migration * chore: update scan function * chore: update scan function * chore: fix migration * chore: fix struct * chore: remove unwanted code * chore: update scan function * chore: migrate user and pat for integrations * fix: changes to the user for integrations * fix: address comments * fix: copy created_at * fix: update non revoked token * chore: don't allow deleting pat and user for integrations * fix: address comments * chore: address comments * chore: add checks for fk in dialect * fix: service migration * fix: don't update user if user is already migrated * fix: update correct service config * fix: remove unwanted code * fix: remove migration for multiple same services which is not required * fix: fix migration and disable disaboard if metrics disabled * fix: don't use ee types --------- Co-authored-by: Vikrant Gupta <vikrant@signoz.io>
95 lines
2.2 KiB
Go
95 lines
2.2 KiB
Go
package sqlmigration
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/SigNoz/signoz/pkg/factory"
|
|
"github.com/uptrace/bun"
|
|
"github.com/uptrace/bun/dialect"
|
|
"github.com/uptrace/bun/migrate"
|
|
)
|
|
|
|
// SQLMigration is the interface for a single migration.
|
|
type SQLMigration interface {
|
|
// Register registers the migration with the given migrations. Each migration needs to be registered
|
|
//in a dedicated `*.go` file so that the correct migration semantics can be detected.
|
|
Register(*migrate.Migrations) error
|
|
// Up runs the migration.
|
|
Up(context.Context, *bun.DB) error
|
|
// Down rolls back the migration.
|
|
Down(context.Context, *bun.DB) error
|
|
}
|
|
|
|
var (
|
|
ErrNoExecute = errors.New("no execute")
|
|
)
|
|
|
|
var (
|
|
OrgReference = "org"
|
|
UserReference = "user"
|
|
CloudIntegrationReference = "cloud_integration"
|
|
)
|
|
|
|
func New(
|
|
ctx context.Context,
|
|
settings factory.ProviderSettings,
|
|
config Config,
|
|
factories factory.NamedMap[factory.ProviderFactory[SQLMigration, Config]],
|
|
) (*migrate.Migrations, error) {
|
|
migrations := migrate.NewMigrations()
|
|
|
|
for _, factory := range factories.GetInOrder() {
|
|
migration, err := factory.New(ctx, settings, config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = migration.Register(migrations)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return migrations, nil
|
|
}
|
|
|
|
func MustNew(
|
|
ctx context.Context,
|
|
settings factory.ProviderSettings,
|
|
config Config,
|
|
factories factory.NamedMap[factory.ProviderFactory[SQLMigration, Config]],
|
|
) *migrate.Migrations {
|
|
migrations, err := New(ctx, settings, config, factories)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return migrations
|
|
}
|
|
|
|
func GetColumnType(ctx context.Context, bun bun.IDB, table string, column string) (string, error) {
|
|
var columnType string
|
|
var err error
|
|
|
|
if bun.Dialect().Name() == dialect.SQLite {
|
|
err = bun.NewSelect().
|
|
ColumnExpr("type").
|
|
TableExpr("pragma_table_info(?)", table).
|
|
Where("name = ?", column).
|
|
Scan(ctx, &columnType)
|
|
} else {
|
|
err = bun.NewSelect().
|
|
ColumnExpr("data_type").
|
|
TableExpr("information_schema.columns").
|
|
Where("table_name = ?", table).
|
|
Where("column_name = ?", column).
|
|
Scan(ctx, &columnType)
|
|
}
|
|
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return columnType, nil
|
|
}
|