Skip to content
Snippets Groups Projects
main.go 1.48 KiB
Newer Older
Gabriel Zachmann's avatar
Gabriel Zachmann committed
package main

import (
	"os"
	"os/signal"
	"syscall"

	log "github.com/sirupsen/logrus"

	"github.com/oidc-mytoken/server/internal/config"
	"github.com/oidc-mytoken/server/internal/db"
	configurationEndpoint "github.com/oidc-mytoken/server/internal/endpoints/configuration"
	"github.com/oidc-mytoken/server/internal/jws"
	"github.com/oidc-mytoken/server/internal/oidc/authcode"
	"github.com/oidc-mytoken/server/internal/server"
	"github.com/oidc-mytoken/server/internal/utils/geoip"
	loggerUtils "github.com/oidc-mytoken/server/internal/utils/logger"
	"github.com/oidc-mytoken/server/shared/httpClient"
Gabriel Zachmann's avatar
Gabriel Zachmann committed
)

func main() {
	handleSignals()
Gabriel Zachmann's avatar
Gabriel Zachmann committed
	config.Load()
	loggerUtils.Init()
	server.Init()
Gabriel Zachmann's avatar
Gabriel Zachmann committed
	configurationEndpoint.Init()
	authcode.Init()
	if err := db.Connect(); err != nil {
		log.WithError(err).Fatal()
Gabriel Zachmann's avatar
Gabriel Zachmann committed
	}
	jws.LoadKey()
	httpClient.Init(config.Get().IssuerURL)
	geoip.Init()
Gabriel Zachmann's avatar
Gabriel Zachmann committed

	server.Start()
Gabriel Zachmann's avatar
Gabriel Zachmann committed
}

func handleSignals() {
	signals := make(chan os.Signal)
	signal.Notify(signals, syscall.SIGHUP, syscall.SIGUSR1)
	go func() {
		for {
			sig := <-signals
			switch sig {
			case syscall.SIGHUP:
				reload()
			case syscall.SIGUSR1:
				reloadLogFiles()
			}
		}
	}()
}

func reload() {
	log.Info("Reloading config")
	config.Load()
	loggerUtils.SetOutput()
	loggerUtils.MustUpdateAccessLogger()
	if err := db.Connect(); err != nil {
		log.WithError(err).Fatal()
	}
	jws.LoadKey()
	geoip.Init()
}

func reloadLogFiles() {
	log.Debug("Reloading log files")
	loggerUtils.SetOutput()
	loggerUtils.MustUpdateAccessLogger()
}