PKGBUILD/cmd/cmd.go

65 lines
1.5 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
2019-06-15 13:58:41 +00:00
"github.com/go-flucky/flucky/cmd/daemon"
"github.com/go-flucky/flucky/cmd/rgbled"
2019-06-15 13:58:41 +00:00
"github.com/go-flucky/flucky/cmd/sensor"
"github.com/go-flucky/flucky/pkg/types"
2019-02-22 12:08:58 +00:00
2019-06-15 13:58:41 +00:00
"github.com/go-flucky/flucky/pkg/config"
2019-02-22 12:08:58 +00:00
uuid "github.com/satori/go.uuid"
2018-11-07 19:07:15 +00:00
"github.com/spf13/cobra"
)
var configFile 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(configFile); os.IsNotExist(err) {
2019-02-22 12:08:58 +00:00
hostname, err := os.Hostname()
if err != nil {
return fmt.Errorf("Can not locate the hostname: %v", err)
}
cnf := config.Configuration{
2019-02-22 12:08:58 +00:00
Device: &types.Device{
DeviceID: uuid.NewV4().String(),
DeviceName: hostname,
HumidityLogfile: "/var/log/flucky/humidity.json",
TemperatureLogfile: "/var/log/flucky/temperature.json",
CreationDate: time.Now(),
2019-02-22 12:08:58 +00:00
},
}
err = config.Write(&cnf, configFile)
2019-02-22 12:08:58 +00:00
if err != nil {
return err
}
}
return nil
},
2018-11-07 19:07:15 +00:00
}
// Execute a
func Execute(version string) {
rootCmd.Version = version
rootCmd.PersistentFlags().StringVar(&configFile, "config", "/etc/flucky/config.json", "Config file")
daemon.InitCmd(rootCmd, configFile)
//humidity.InitCmd(rootCmd, configFile)
rgbled.InitCmd(rootCmd, configFile)
sensor.InitCmd(rootCmd, configFile)
//temperature.InitCmd(rootCmd, configFile)
2018-11-07 19:07:15 +00:00
rootCmd.Execute()
}