mirror of
https://github.com/Luzifer/go-latestver.git
synced 2024-11-08 15:10:04 +00:00
153 lines
5 KiB
Go
153 lines
5 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/pkg/errors"
|
|
"github.com/robfig/cron/v3"
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/Luzifer/go-latestver/internal/config"
|
|
"github.com/Luzifer/go-latestver/internal/database"
|
|
fileHelper "github.com/Luzifer/go_helpers/v2/file"
|
|
httpHelper "github.com/Luzifer/go_helpers/v2/http"
|
|
"github.com/Luzifer/rconfig/v2"
|
|
)
|
|
|
|
var (
|
|
cfg = struct {
|
|
BaseURL string `flag:"base-url" default:"https://example.com/" description:"Base-URL the application is reachable at"`
|
|
Config string `flag:"config,c" default:"config.yaml" description:"Configuration file with catalog entries"`
|
|
Listen string `flag:"listen" default:":3000" description:"Port/IP to listen on"`
|
|
LogLevel string `flag:"log-level" default:"info" description:"Log level (debug, info, warn, error, fatal)"`
|
|
CheckDistribution time.Duration `flag:"check-distribution" default:"1h" description:"Checks are executed at static times every [value]"`
|
|
Storage string `flag:"storage" default:"sqlite" description:"Storage adapter to use (mysql, postgres, sqlite)"`
|
|
StorageDSN string `flag:"storage-dsn" default:"file::memory:?cache=shared" description:"DSN to connect to the database"`
|
|
VersionAndExit bool `flag:"version" default:"false" description:"Prints current version and exits"`
|
|
WatchConfig bool `flag:"watch-config" default:"true" description:"Whether to watch the config file for changes"`
|
|
}{}
|
|
|
|
configFile = config.New()
|
|
router *mux.Router
|
|
storage *database.Client
|
|
|
|
version = "dev"
|
|
)
|
|
|
|
func initApp() error {
|
|
rconfig.AutoEnv(true)
|
|
if err := rconfig.ParseAndValidate(&cfg); err != nil {
|
|
return errors.Wrap(err, "parsing commandline options")
|
|
}
|
|
|
|
l, err := log.ParseLevel(cfg.LogLevel)
|
|
if err != nil {
|
|
return errors.Wrap(err, "parsing log-level")
|
|
}
|
|
log.SetLevel(l)
|
|
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
var err error
|
|
if err = initApp(); err != nil {
|
|
log.WithError(err).Fatal("initializing app")
|
|
}
|
|
|
|
if cfg.VersionAndExit {
|
|
fmt.Printf("go-latestver %s\n", version) //nolint:forbidigo
|
|
os.Exit(0)
|
|
}
|
|
|
|
if err = configFile.Load(cfg.Config); err != nil {
|
|
log.WithError(err).Fatal("Unable to load configuration")
|
|
}
|
|
|
|
if err = configFile.ValidateCatalog(); err != nil {
|
|
log.WithError(err).Fatal("Configuration is not valid")
|
|
}
|
|
|
|
if cfg.WatchConfig {
|
|
fsWatch, err := fileHelper.NewWatcherWithOpts(
|
|
cfg.Config,
|
|
fileHelper.WatcherOpts{
|
|
FollowSymlinks: true,
|
|
},
|
|
time.Minute,
|
|
fileHelper.WatcherCheckPresence,
|
|
fileHelper.WatcherCheckSize,
|
|
fileHelper.WatcherCheckMtime,
|
|
)
|
|
if err != nil {
|
|
log.WithError(err).Fatal("creating config file watcher")
|
|
}
|
|
go reloadConfigOnChange(fsWatch)
|
|
}
|
|
|
|
storage, err = database.NewClient(cfg.Storage, cfg.StorageDSN)
|
|
if err != nil {
|
|
log.WithError(err).Fatal("Unable to connect to database")
|
|
}
|
|
|
|
scheduler := cron.New()
|
|
if _, err = scheduler.AddFunc(fmt.Sprintf("@every %s", schedulerInterval), schedulerRun); err != nil {
|
|
log.WithError(err).Fatal("registering cron entry")
|
|
}
|
|
scheduler.Start()
|
|
|
|
router = mux.NewRouter()
|
|
router.HandleFunc("/v1/catalog", handleCatalogList).Methods(http.MethodGet)
|
|
router.HandleFunc("/v1/catalog/{name}/{tag}", handleCatalogGet).Methods(http.MethodGet)
|
|
router.HandleFunc("/v1/catalog/{name}/{tag}/log", handleLog).Methods(http.MethodGet)
|
|
router.HandleFunc("/v1/catalog/{name}/{tag}/version", handleCatalogGetVersion).Methods(http.MethodGet)
|
|
router.HandleFunc("/v1/log", handleLog).Methods(http.MethodGet)
|
|
|
|
router.HandleFunc("/{name}/{tag}.svg", handleBadge).Methods(http.MethodGet).Name("catalog-entry-badge")
|
|
router.HandleFunc("/{name}/{tag}/log.rss", handleLogFeed).Methods(http.MethodGet).Name("catalog-entry-rss")
|
|
router.HandleFunc("/log.rss", handleLogFeed).Methods(http.MethodGet).Name("log-rss")
|
|
|
|
router.HandleFunc("/", handleSinglePage).Methods(http.MethodGet).Name("catalog")
|
|
router.HandleFunc("/{name}/{tag}", handleSinglePage).Methods(http.MethodGet).Name("catalog-entry")
|
|
router.PathPrefix("/").HandlerFunc(handleSinglePage)
|
|
|
|
var handler http.Handler = router
|
|
handler = httpHelper.GzipHandler(handler)
|
|
handler = httpHelper.NewHTTPLogHandlerWithLogger(handler, log.StandardLogger())
|
|
|
|
server := &http.Server{
|
|
Addr: cfg.Listen,
|
|
Handler: handler,
|
|
ReadHeaderTimeout: time.Second,
|
|
}
|
|
|
|
if err := server.ListenAndServe(); err != nil {
|
|
log.WithError(err).Fatal("HTTP server exited unclean")
|
|
}
|
|
}
|
|
|
|
func reloadConfigOnChange(fsWatch *fileHelper.Watcher) {
|
|
for evt := range fsWatch.C {
|
|
if evt == fileHelper.WatcherEventFileVanished || evt == fileHelper.WatcherEventInvalid {
|
|
continue
|
|
}
|
|
|
|
tmpCfg := config.New()
|
|
if err := tmpCfg.Load(cfg.Config); err != nil {
|
|
log.WithError(err).Error("loading config on fs-event")
|
|
continue
|
|
}
|
|
|
|
if err := tmpCfg.ValidateCatalog(); err != nil {
|
|
log.WithError(err).Error("validating config on fs-event")
|
|
continue
|
|
}
|
|
|
|
configFile = tmpCfg
|
|
log.Info("reloaded config on fs-event")
|
|
}
|
|
}
|