2018-11-07 19:07:15 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2019-02-22 12:08:58 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"git.cryptic.systems/fh-trier/go-flucky-server/pkg/types"
|
2018-11-19 21:36:21 +00:00
|
|
|
"git.cryptic.systems/fh-trier/go-flucky/cmd/remote"
|
2019-02-22 12:08:58 +00:00
|
|
|
|
|
|
|
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
|
|
uuid "github.com/satori/go.uuid"
|
2018-11-07 19:07:15 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2019-02-17 17:23:59 +00:00
|
|
|
var cfg string
|
2018-11-19 21:36:21 +00:00
|
|
|
|
2018-11-07 19:07:15 +00:00
|
|
|
var rootCmd = &cobra.Command{
|
|
|
|
Use: "flucky",
|
|
|
|
Short: "Read from sensors",
|
2019-02-22 12:08:58 +00:00
|
|
|
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
|
|
|
|
// check if config file exists
|
|
|
|
if _, err := os.Stat(cfg); os.IsNotExist(err) {
|
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Can not locate the hostname: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fc := config.FluckyConfig{
|
|
|
|
Device: &types.Device{
|
|
|
|
DeviceID: uuid.NewV4().String(),
|
|
|
|
DeviceName: &hostname,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
err = config.Write(&fc, cfg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
2018-11-07 19:07:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Execute a
|
|
|
|
func Execute(version string) {
|
|
|
|
rootCmd.Version = version
|
|
|
|
|
2019-02-17 17:23:59 +00:00
|
|
|
rootCmd.PersistentFlags().StringVar(&cfg, "config", "/etc/flucky/config.json", "Config file")
|
2018-11-19 21:36:21 +00:00
|
|
|
|
2019-02-17 17:23:59 +00:00
|
|
|
// humidity.InitCmd(rootCmd, configDir)
|
|
|
|
remote.InitCmd(rootCmd, cfg)
|
2019-02-22 12:08:58 +00:00
|
|
|
// sensor.InitCmd(rootCmd, cfg)
|
2019-02-17 17:23:59 +00:00
|
|
|
// temperature.InitCmd(rootCmd, configDir)
|
2018-11-07 19:07:15 +00:00
|
|
|
|
|
|
|
rootCmd.Execute()
|
|
|
|
}
|