mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
119 lines
2.8 KiB
Go
119 lines
2.8 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
ociscfg "github.com/owncloud/ocis/ocis-pkg/config"
|
|
"github.com/owncloud/ocis/ocis-pkg/log"
|
|
"github.com/owncloud/ocis/ocis-pkg/version"
|
|
"github.com/owncloud/ocis/thumbnails/pkg/config"
|
|
"github.com/thejerf/suture/v4"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Execute is the entry point for the ocis-thumbnails command.
|
|
func Execute(cfg *config.Config) error {
|
|
app := &cli.App{
|
|
Name: "ocis-thumbnails",
|
|
Version: version.String,
|
|
Usage: "Example usage",
|
|
Compiled: version.Compiled(),
|
|
|
|
Authors: []*cli.Author{
|
|
{
|
|
Name: "ownCloud GmbH",
|
|
Email: "support@owncloud.com",
|
|
},
|
|
},
|
|
|
|
Before: func(c *cli.Context) error {
|
|
cfg.Server.Version = version.String
|
|
return nil
|
|
},
|
|
|
|
Commands: []*cli.Command{
|
|
Server(cfg),
|
|
Health(cfg),
|
|
PrintVersion(cfg),
|
|
},
|
|
}
|
|
|
|
cli.HelpFlag = &cli.BoolFlag{
|
|
Name: "help,h",
|
|
Usage: "Show the help",
|
|
}
|
|
|
|
cli.VersionFlag = &cli.BoolFlag{
|
|
Name: "version,v",
|
|
Usage: "Print the version",
|
|
}
|
|
|
|
return app.Run(os.Args)
|
|
}
|
|
|
|
// NewLogger initializes a service-specific logger instance.
|
|
func NewLogger(cfg *config.Config) log.Logger {
|
|
return log.NewLogger(
|
|
log.Name("thumbnails"),
|
|
log.Level(cfg.Log.Level),
|
|
log.Pretty(cfg.Log.Pretty),
|
|
log.Color(cfg.Log.Color),
|
|
log.File(cfg.Log.File),
|
|
)
|
|
}
|
|
|
|
// ParseConfig loads configuration from Viper known paths.
|
|
// ParseConfig loads glauth configuration from known paths.
|
|
func ParseConfig(c *cli.Context, cfg *config.Config) error {
|
|
conf, err := ociscfg.BindSourcesToStructs("thumbnails", cfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// load all env variables relevant to the config in the current context.
|
|
conf.LoadOSEnv(config.GetEnv(), false)
|
|
|
|
if err = cfg.UnmapEnv(conf); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SutureService allows for the thumbnails command to be embedded and supervised by a suture supervisor tree.
|
|
type SutureService struct {
|
|
cfg *config.Config
|
|
}
|
|
|
|
// NewSutureService creates a new thumbnails.SutureService
|
|
func NewSutureService(cfg *ociscfg.Config) suture.Service {
|
|
inheritLogging(cfg)
|
|
if cfg.Mode == 0 {
|
|
cfg.Thumbnails.Supervised = true
|
|
}
|
|
cfg.Thumbnails.Log.File = cfg.Log.File
|
|
return SutureService{
|
|
cfg: cfg.Thumbnails,
|
|
}
|
|
}
|
|
|
|
func (s SutureService) Serve(ctx context.Context) error {
|
|
s.cfg.Context = ctx
|
|
if err := Execute(s.cfg); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// inheritLogging is a poor man's global logging state tip-toeing around circular dependencies. It sets the logging
|
|
// of the service to whatever is in the higher config (in this case coming from ocis.yaml) and sets them as defaults,
|
|
// being overwritten when the extension parses its config file / env variables.
|
|
func inheritLogging(cfg *ociscfg.Config) {
|
|
cfg.Thumbnails.Log.File = cfg.Log.File
|
|
cfg.Thumbnails.Log.Color = cfg.Log.Color
|
|
cfg.Thumbnails.Log.Pretty = cfg.Log.Pretty
|
|
cfg.Thumbnails.Log.Level = cfg.Log.Level
|
|
}
|