homebox/backend/app/api/main.go

96 lines
2.6 KiB
Go
Raw Normal View History

2022-08-30 02:30:36 +00:00
package main
import (
"context"
"time"
2022-08-30 02:40:54 +00:00
"github.com/hay-kot/content/backend/app/api/docs"
"github.com/hay-kot/content/backend/ent"
"github.com/hay-kot/content/backend/internal/config"
"github.com/hay-kot/content/backend/internal/repo"
"github.com/hay-kot/content/backend/internal/services"
"github.com/hay-kot/content/backend/pkgs/server"
2022-08-30 02:30:36 +00:00
_ "github.com/mattn/go-sqlite3"
2022-09-03 18:38:35 +00:00
"github.com/rs/zerolog/log"
2022-08-30 02:30:36 +00:00
)
// @title Go API Templates
// @version 1.0
// @description This is a simple Rest API Server Template that implements some basic User and Authentication patterns to help you get started and bootstrap your next project!.
// @contact.name Don't
// @license.name MIT
// @BasePath /api
// @securityDefinitions.apikey Bearer
// @in header
// @name Authorization
// @description "Type 'Bearer TOKEN' to correctly set the API Key"
func main() {
2022-09-03 18:38:35 +00:00
2022-08-30 02:30:36 +00:00
cfgFile := "config.yml"
cfg, err := config.NewConfig(cfgFile)
if err != nil {
panic(err)
}
docs.SwaggerInfo.Host = cfg.Swagger.Host
if err := run(cfg); err != nil {
panic(err)
}
}
func run(cfg *config.Config) error {
2022-09-04 03:27:02 +00:00
app := new(cfg)
2022-08-30 02:30:36 +00:00
2022-09-04 03:27:02 +00:00
app.setupLogger()
2022-08-30 02:30:36 +00:00
// =========================================================================
// Initialize Database & Repos
c, err := ent.Open(cfg.Database.GetDriver(), cfg.Database.GetUrl())
if err != nil {
2022-09-03 18:38:35 +00:00
log.Fatal().
Err(err).
Str("driver", cfg.Database.GetDriver()).
Str("url", cfg.Database.GetUrl()).
Msg("failed opening connection to sqlite")
2022-08-30 02:30:36 +00:00
}
defer func(c *ent.Client) {
_ = c.Close()
}(c)
if err := c.Schema.Create(context.Background()); err != nil {
2022-09-03 18:38:35 +00:00
log.Fatal().
Err(err).
Msg("failed creating schema resources")
2022-08-30 02:30:36 +00:00
}
app.db = c
app.repos = repo.EntAllRepos(c)
app.services = services.NewServices(app.repos)
// =========================================================================
// Start Server
app.server = server.NewServer(app.conf.Web.Host, app.conf.Web.Port)
routes := app.newRouter(app.repos)
2022-09-04 03:27:02 +00:00
if app.conf.Mode != config.ModeDevelopment {
app.logRoutes(routes)
}
2022-08-30 02:30:36 +00:00
2022-09-03 18:38:35 +00:00
log.Info().Msgf("Starting HTTP Server on %s:%s", app.server.Host, app.server.Port)
2022-08-30 02:30:36 +00:00
// =========================================================================
// Start Reoccurring Tasks
2022-09-04 03:27:02 +00:00
go app.startBgTask(time.Duration(24)*time.Hour, func() {
2022-09-03 09:24:28 +00:00
_, err := app.repos.AuthTokens.PurgeExpiredTokens(context.Background())
if err != nil {
2022-09-03 18:38:35 +00:00
log.Error().
Err(err).
Msg("failed to purge expired tokens")
2022-09-03 09:24:28 +00:00
}
2022-08-30 02:30:36 +00:00
})
return app.server.Start(routes)
}