PKGBUILD/cmd/cmd.go

63 lines
1.3 KiB
Go
Raw Normal View History

2018-11-07 19:07:15 +00:00
package cmd
import (
2019-02-22 12:08:58 +00:00
"fmt"
"os"
2019-02-24 21:46:36 +00:00
"time"
2019-02-22 12:08:58 +00:00
2018-11-19 21:36:21 +00:00
"git.cryptic.systems/fh-trier/go-flucky/cmd/remote"
2019-02-24 21:46:36 +00:00
"git.cryptic.systems/fh-trier/go-flucky/cmd/sensor"
"git.cryptic.systems/fh-trier/go-flucky/cmd/temperature"
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
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{
2019-02-24 21:46:36 +00:00
DeviceID: uuid.NewV4().String(),
DeviceName: &hostname,
CreationDate: time.Now(),
2019-02-22 12:08:58 +00:00
},
}
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-24 21:46:36 +00:00
sensor.InitCmd(rootCmd, cfg)
temperature.InitCmd(rootCmd, cfg)
2018-11-07 19:07:15 +00:00
rootCmd.Execute()
}