yanic/cmd/serve.go

76 lines
2.0 KiB
Go
Raw Normal View History

2017-09-17 03:26:19 +02:00
package cmd
import (
"os"
"os/signal"
"syscall"
"time"
2019-01-17 13:26:16 +01:00
"github.com/bdlm/log"
"github.com/spf13/cobra"
allDatabase "github.com/FreifunkBremen/yanic/database/all"
allOutput "github.com/FreifunkBremen/yanic/output/all"
2017-09-17 03:26:19 +02:00
"github.com/FreifunkBremen/yanic/respond"
"github.com/FreifunkBremen/yanic/runtime"
"github.com/FreifunkBremen/yanic/webserver"
)
// serveCmd represents the serve command
var serveCmd = &cobra.Command{
Use: "serve",
Short: "Runs the yanic server",
2017-10-02 00:44:21 +02:00
Example: "yanic serve --config /etc/yanic.toml",
2017-09-17 03:26:19 +02:00
Run: func(cmd *cobra.Command, args []string) {
config := loadConfig()
2018-01-03 15:41:40 +01:00
err := allDatabase.Start(config.Database)
2017-09-17 03:26:19 +02:00
if err != nil {
2019-01-17 13:26:16 +01:00
log.Panicf("could not connect to database: %s", err)
2017-09-17 03:26:19 +02:00
}
2018-01-03 15:41:40 +01:00
defer allDatabase.Close()
2017-09-17 03:26:19 +02:00
nodes = runtime.NewNodes(&config.Nodes)
2017-09-17 03:26:19 +02:00
nodes.Start()
2018-01-03 15:41:40 +01:00
err = allOutput.Start(nodes, config.Nodes)
if err != nil {
2019-01-17 13:26:16 +01:00
log.Panicf("error on init outputs: %s", err)
}
2018-01-03 15:41:40 +01:00
defer allOutput.Close()
2017-09-17 03:26:19 +02:00
if config.Webserver.Enable {
2019-01-17 13:26:16 +01:00
log.Infof("starting webserver on %s", config.Webserver.Bind)
2017-09-17 03:26:19 +02:00
srv := webserver.New(config.Webserver.Bind, config.Webserver.Webroot)
go webserver.Start(srv)
defer srv.Close()
2017-09-17 03:26:19 +02:00
}
if config.Respondd.Enable {
// Delaying startup to start at a multiple of `duration` since the zero time.
if duration := config.Respondd.Synchronize.Duration; duration > 0 {
now := time.Now()
delay := duration - now.Sub(now.Truncate(duration))
2019-01-17 13:26:16 +01:00
log.Infof("delaying %0.1f seconds", delay.Seconds())
2017-09-17 03:26:19 +02:00
time.Sleep(delay)
}
collector = respond.NewCollector(allDatabase.Conn, nodes, config.Respondd.SitesDomains(), config.Respondd.Interfaces)
2017-09-17 03:26:19 +02:00
collector.Start(config.Respondd.CollectInterval.Duration)
defer collector.Close()
}
// Wait for INT/TERM
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
sig := <-sigs
2019-01-17 13:26:16 +01:00
log.Infof("received %s", sig)
2017-09-17 03:26:19 +02:00
},
}
func init() {
RootCmd.AddCommand(serveCmd)
serveCmd.Flags().StringVarP(&configPath, "config", "c", "config.toml", "Path to configuration file")
}