saasitone/services/container.go

185 lines
4.5 KiB
Go
Raw Normal View History

2021-12-18 07:07:12 -08:00
package services
2021-12-03 03:11:01 -08:00
import (
2021-12-05 17:56:38 -08:00
"context"
2021-12-10 17:44:23 -08:00
"database/sql"
2021-12-05 17:56:38 -08:00
"fmt"
2021-12-10 17:44:23 -08:00
"entgo.io/ent/dialect"
entsql "entgo.io/ent/dialect/sql"
2022-01-28 05:45:16 -08:00
"entgo.io/ent/dialect/sql/schema"
2021-12-10 17:44:23 -08:00
_ "github.com/jackc/pgx/v4/stdlib"
2021-12-03 03:11:01 -08:00
"github.com/labstack/echo/v4"
2021-12-13 09:51:00 -08:00
"github.com/labstack/gommon/log"
2021-12-03 03:11:01 -08:00
2022-01-01 07:44:18 -08:00
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/ent"
_ "github.com/mikestefanello/pagoda/ent/runtime"
2021-12-03 03:11:01 -08:00
)
2021-12-22 16:18:33 -08:00
// Container contains all services used by the application and provides an easy way to handle dependency
// injection including within tests
2021-12-03 03:11:01 -08:00
type Container struct {
// Validator stores a validator
Validator *Validator
2021-12-22 16:18:33 -08:00
// Web stores the web framework
Web *echo.Echo
// Config stores the application configuration
Config *config.Config
// Cache contains the cache client
Cache *CacheClient
2021-12-22 16:18:33 -08:00
// Database stores the connection to the database
Database *sql.DB
// ORM stores a client to the ORM
ORM *ent.Client
// Mail stores an email sending client
Mail *MailClient
// Auth stores an authentication client
Auth *AuthClient
// TemplateRenderer stores a service to easily render and cache templates
TemplateRenderer *TemplateRenderer
2021-12-03 03:11:01 -08:00
}
2021-12-22 16:18:33 -08:00
// NewContainer creates and initializes a new Container
2021-12-12 18:28:53 -08:00
func NewContainer() *Container {
c := new(Container)
c.initConfig()
c.initValidator()
2021-12-13 09:51:00 -08:00
c.initWeb()
2021-12-12 18:28:53 -08:00
c.initCache()
c.initDatabase()
c.initORM()
2021-12-15 06:29:43 -08:00
c.initAuth()
2021-12-19 17:09:01 -08:00
c.initTemplateRenderer()
c.initMail()
2021-12-12 18:28:53 -08:00
return c
}
2021-12-22 16:18:33 -08:00
// Shutdown shuts the Container down and disconnects all connections
2021-12-19 10:22:44 -08:00
func (c *Container) Shutdown() error {
if err := c.Cache.Close(); err != nil {
2021-12-19 10:22:44 -08:00
return err
}
if err := c.ORM.Close(); err != nil {
return err
}
if err := c.Database.Close(); err != nil {
return err
}
return nil
}
2021-12-22 16:18:33 -08:00
// initConfig initializes configuration
2021-12-11 10:18:32 -08:00
func (c *Container) initConfig() {
2021-12-03 03:11:01 -08:00
cfg, err := config.GetConfig()
if err != nil {
2021-12-13 09:51:00 -08:00
panic(fmt.Sprintf("failed to load config: %v", err))
2021-12-03 03:11:01 -08:00
}
c.Config = &cfg
2021-12-11 10:18:32 -08:00
}
2021-12-03 03:11:01 -08:00
// initValidator initializes the validator
func (c *Container) initValidator() {
c.Validator = NewValidator()
}
2021-12-22 16:18:33 -08:00
// initWeb initializes the web framework
2021-12-13 09:51:00 -08:00
func (c *Container) initWeb() {
c.Web = echo.New()
// Configure logging
switch c.Config.App.Environment {
case config.EnvProduction:
c.Web.Logger.SetLevel(log.WARN)
default:
c.Web.Logger.SetLevel(log.DEBUG)
}
c.Web.Validator = c.Validator
2021-12-13 09:51:00 -08:00
}
2021-12-22 16:18:33 -08:00
// initCache initializes the cache
2021-12-11 10:18:32 -08:00
func (c *Container) initCache() {
var err error
if c.Cache, err = NewCacheClient(c.Config.Cache); err != nil {
panic(err)
2021-12-05 17:56:38 -08:00
}
2021-12-11 10:18:32 -08:00
}
2021-12-22 16:18:33 -08:00
// initDatabase initializes the database
// If the environment is set to test, the test database will be used and will be dropped, recreated and migrated
2021-12-11 10:18:32 -08:00
func (c *Container) initDatabase() {
var err error
2021-12-05 17:56:38 -08:00
2021-12-13 09:51:00 -08:00
getAddr := func(dbName string) string {
return fmt.Sprintf("postgresql://%s:%s@%s/%s",
c.Config.Database.User,
c.Config.Database.Password,
c.Config.Database.Hostname,
dbName,
)
}
c.Database, err = sql.Open("pgx", getAddr(c.Config.Database.Database))
2021-12-10 17:44:23 -08:00
if err != nil {
2021-12-13 09:51:00 -08:00
panic(fmt.Sprintf("failed to connect to database: %v", err))
}
// Check if this is a test environment
if c.Config.App.Environment == config.EnvTest {
// Drop the test database, ignoring errors in case it doesn't yet exist
_, _ = c.Database.Exec("DROP DATABASE " + c.Config.Database.TestDatabase)
// Create the test database
if _, err = c.Database.Exec("CREATE DATABASE " + c.Config.Database.TestDatabase); err != nil {
panic(fmt.Sprintf("failed to create test database: %v", err))
}
// Connect to the test database
if err = c.Database.Close(); err != nil {
panic(fmt.Sprintf("failed to close database connection: %v", err))
}
c.Database, err = sql.Open("pgx", getAddr(c.Config.Database.TestDatabase))
if err != nil {
panic(fmt.Sprintf("failed to connect to database: %v", err))
}
2021-12-10 17:44:23 -08:00
}
2021-12-11 10:18:32 -08:00
}
2021-12-10 17:44:23 -08:00
2021-12-22 16:18:33 -08:00
// initORM initializes the ORM
2021-12-11 10:18:32 -08:00
func (c *Container) initORM() {
2021-12-10 17:44:23 -08:00
drv := entsql.OpenDB(dialect.Postgres, c.Database)
2021-12-11 10:18:32 -08:00
c.ORM = ent.NewClient(ent.Driver(drv))
2022-01-28 05:45:16 -08:00
if err := c.ORM.Schema.Create(context.Background(), schema.WithAtlas(true)); err != nil {
2021-12-13 09:51:00 -08:00
panic(fmt.Sprintf("failed to create database schema: %v", err))
2021-12-10 17:44:23 -08:00
}
2021-12-11 10:18:32 -08:00
}
2021-12-14 08:29:45 -08:00
2021-12-22 16:18:33 -08:00
// initAuth initializes the authentication client
2021-12-15 06:29:43 -08:00
func (c *Container) initAuth() {
c.Auth = NewAuthClient(c.Config, c.ORM)
2021-12-15 06:29:43 -08:00
}
2021-12-19 17:09:01 -08:00
2021-12-22 16:18:33 -08:00
// initTemplateRenderer initializes the template renderer
2021-12-19 17:09:01 -08:00
func (c *Container) initTemplateRenderer() {
c.TemplateRenderer = NewTemplateRenderer(c.Config)
2021-12-19 17:09:01 -08:00
}
2021-12-22 16:18:33 -08:00
// initMail initialize the mail client
func (c *Container) initMail() {
var err error
c.Mail, err = NewMailClient(c.Config, c.TemplateRenderer)
if err != nil {
panic(fmt.Sprintf("failed to create mail client: %v", err))
}
}