2023-04-25 18:43:01 +02:00
|
|
|
package db
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"fmt"
|
2024-05-04 17:06:01 +02:00
|
|
|
"os"
|
|
|
|
|
|
|
|
"code.lila.network/adoralaura/go-urlsh/models"
|
2023-04-25 18:43:01 +02:00
|
|
|
"github.com/uptrace/bun"
|
|
|
|
"github.com/uptrace/bun/dialect/pgdialect"
|
|
|
|
"github.com/uptrace/bun/driver/pgdriver"
|
|
|
|
)
|
|
|
|
|
|
|
|
func InitializeDB() error {
|
|
|
|
sqldb := sql.OpenDB(pgdriver.NewConnector(pgdriver.WithDSN(os.Getenv("DATABASE_URL"))))
|
|
|
|
models.DB = bun.NewDB(sqldb, pgdialect.New())
|
|
|
|
|
|
|
|
_, err := models.DB.NewCreateTable().IfNotExists().Model((*models.Link)(nil)).Exec(context.Background())
|
|
|
|
if err != nil {
|
2024-05-04 17:06:01 +02:00
|
|
|
return fmt.Errorf("[DB] couldn't create database: [%w]", err)
|
2023-04-25 18:43:01 +02:00
|
|
|
}
|
2023-04-27 10:37:42 +02:00
|
|
|
|
|
|
|
_, err = models.DB.NewCreateTable().IfNotExists().Model((*models.User)(nil)).Exec(context.Background())
|
|
|
|
if err != nil {
|
2024-05-04 17:06:01 +02:00
|
|
|
return fmt.Errorf("[DB] couldn't create database: [%w]", err)
|
2023-04-27 10:37:42 +02:00
|
|
|
}
|
|
|
|
|
2023-06-16 14:30:27 +02:00
|
|
|
_, err = models.DB.NewCreateTable().IfNotExists().Model((*models.Session)(nil)).Exec(context.Background())
|
2023-04-27 10:37:42 +02:00
|
|
|
if err != nil {
|
2024-05-04 17:06:01 +02:00
|
|
|
return fmt.Errorf("[DB] couldn't create database: [%w]", err)
|
2023-04-27 10:37:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err = models.DB.NewCreateTable().IfNotExists().Model((*models.ApiKey)(nil)).Exec(context.Background())
|
|
|
|
if err != nil {
|
2024-05-04 17:06:01 +02:00
|
|
|
return fmt.Errorf("[DB] couldn't create database: [%w]", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = models.DB.NewCreateTable().IfNotExists().Model((*models.MFALoginTransaction)(nil)).Exec(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("[DB] couldn't create database: [%w]", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = models.DB.NewCreateTable().IfNotExists().Model((*models.MFAConfig)(nil)).Exec(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("[DB] couldn't create database: [%w]", err)
|
|
|
|
}
|
|
|
|
|
2024-05-06 15:32:53 +02:00
|
|
|
_, err = models.DB.NewCreateTable().IfNotExists().Model((*models.MFAScratchCode)(nil)).Exec(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("[DB] couldn't create database: [%w]", err)
|
|
|
|
}
|
|
|
|
|
2024-05-04 17:06:01 +02:00
|
|
|
err = doMigrations()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("[DB] Error during Migrations: [%w]", err)
|
2023-04-27 10:37:42 +02:00
|
|
|
}
|
2023-04-25 18:43:01 +02:00
|
|
|
return nil
|
|
|
|
}
|