65 lines
1.1 KiB
Go
65 lines
1.1 KiB
Go
package serve
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"os/signal"
|
|
|
|
"dynatron.me/x/stillbox/internal/common"
|
|
"dynatron.me/x/stillbox/pkg/config"
|
|
"dynatron.me/x/stillbox/pkg/server"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type ServeOptions struct {
|
|
cfg *config.Config
|
|
}
|
|
|
|
func Command(cfg *config.Config) *cobra.Command {
|
|
opts := makeOptions(cfg)
|
|
serveCmd := &cobra.Command{
|
|
Use: "serve",
|
|
Short: "starts the" + common.AppName + " server",
|
|
PersistentPreRunE: cfg.PreRunE(),
|
|
RunE: common.RunE(opts),
|
|
}
|
|
|
|
return serveCmd
|
|
}
|
|
|
|
func makeOptions(cfg *config.Config) *ServeOptions {
|
|
return &ServeOptions{
|
|
cfg: cfg,
|
|
}
|
|
}
|
|
|
|
func (o *ServeOptions) Options(_ *cobra.Command, args []string) error {
|
|
return nil
|
|
}
|
|
|
|
func (o *ServeOptions) Execute() error {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
sig := make(chan os.Signal, 1)
|
|
signal.Notify(sig, os.Interrupt)
|
|
defer func() {
|
|
signal.Stop(sig)
|
|
cancel()
|
|
}()
|
|
|
|
go func() {
|
|
select {
|
|
case <-sig:
|
|
cancel()
|
|
case <-ctx.Done():
|
|
}
|
|
}()
|
|
|
|
srv, err := server.New(ctx, o.cfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return srv.Go(ctx)
|
|
}
|