2017-06-30 21:10:25 +05:30
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-04-19 05:01:09 +05:30
|
|
|
"log"
|
2017-06-30 21:10:25 +05:30
|
|
|
"os"
|
2018-02-15 16:50:17 +05:30
|
|
|
"strings"
|
2017-06-30 21:10:25 +05:30
|
|
|
|
2023-12-13 21:59:12 +05:30
|
|
|
. "github.com/defval/di"
|
2017-06-30 21:10:25 +05:30
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
2020-01-03 03:21:57 +05:30
|
|
|
|
2020-04-19 05:01:09 +05:30
|
|
|
"github.com/elyby/chrly/di"
|
|
|
|
"github.com/elyby/chrly/http"
|
2020-01-03 03:21:57 +05:30
|
|
|
"github.com/elyby/chrly/version"
|
2017-06-30 21:10:25 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
var RootCmd = &cobra.Command{
|
2018-02-15 02:19:22 +05:30
|
|
|
Use: "chrly",
|
|
|
|
Short: "Implementation of Minecraft skins system server",
|
2020-01-03 03:21:57 +05:30
|
|
|
Version: version.Version(),
|
2017-06-30 21:10:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Execute adds all child commands to the root command and sets flags appropriately.
|
|
|
|
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
|
|
|
func Execute() {
|
|
|
|
if err := RootCmd.Execute(); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-19 05:01:09 +05:30
|
|
|
func shouldGetContainer() *Container {
|
|
|
|
container, err := di.New()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return container
|
|
|
|
}
|
|
|
|
|
|
|
|
func startServer(modules []string) {
|
|
|
|
container := shouldGetContainer()
|
|
|
|
|
|
|
|
var config *viper.Viper
|
|
|
|
err := container.Resolve(&config)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
config.Set("modules", modules)
|
|
|
|
|
|
|
|
err = container.Invoke(http.StartServer)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-24 04:09:40 +05:30
|
|
|
func init() {
|
2017-06-30 21:10:25 +05:30
|
|
|
cobra.OnInitialize(initConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
func initConfig() {
|
2017-08-15 03:13:31 +05:30
|
|
|
viper.AutomaticEnv()
|
2018-02-15 16:50:17 +05:30
|
|
|
replacer := strings.NewReplacer(".", "_")
|
|
|
|
viper.SetEnvKeyReplacer(replacer)
|
2017-06-30 21:10:25 +05:30
|
|
|
}
|