yats.git

ref: 876360f046a2ffb85b1471b7a13bbea799acdfde

client/main.go


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
 * Yats - yats
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Paolo Lulli <kevwe.com>
 * @copyright Paolo Lulli 2024
 */
package main

import (
	"fmt"
	"os"
	"yats/config"

	flag "github.com/spf13/pflag"
)

type YatsClient struct {
	config config.ClientConfiguration
}

func main() {
	var configPath string

	if len(os.Args) == 1 {
		fmt.Printf("For usage: %s --help\n", os.Args[0])
		os.Exit(1)
	}

	configPath = os.Getenv("HOME") + "/.yats-client.json"

	cfg := config.GetClientConfig(configPath)
	var yatsClient = YatsClient{config: cfg}

	generatePki := flag.BoolP("csr", "c", false, "Create Certificate Signing Request")

	sourceOption := flag.StringP("source", "s", "", "Source Application")

	isMetricOption := flag.BoolP("metric", "m", false, "Metric Mode")
	isPositionOption := flag.BoolP("position", "p", false, "Position Mode")

	isShowPermsOption := flag.BoolP("show-permissions", "S", false, "Show User Permissions")

	writeModeOption := flag.BoolP("write", "w", false, "Write Mode")

	fromOption := flag.Int64("from", 0, "From tstamp")
	toOption := flag.Int64("to", 0, "To tstamp")

	metricNameOption := flag.StringP("metricName", "n", "", "Metric Name")
	metricValueOption := flag.StringP("value", "v", "", "Metric Value")
	timestampOption := flag.Int64("timestamp", 0, "Metric/Event TimeStamp")

	eventNameOption := flag.StringP("eventName", "e", "", "Event Name")
	positionNameOption := flag.StringP("positionName", "x", "", "Position Name")

	longitudeOption := flag.Float64P("longitude", "o", 0, "Longitude")
	latitudeOption := flag.Float64P("latitude", "a", 0, "Latitude")

	flag.Parse()

	if *isShowPermsOption {
		listResponse, err := yatsClient.PermissionsList()
		if err == nil {
			fmt.Printf("%s", listResponse)
		} else {
			fmt.Println(err)
		}
		os.Exit(0)
	}

	if *generatePki {
		yatsClient.CreateCsr()
		os.Exit(0)
	}

	if !*writeModeOption {
		if *isMetricOption {
			//fmt.Printf("metricNameOption: %s", *metricNameOption)
			listResponse, err := yatsClient.MetricList(*sourceOption, *metricNameOption, *fromOption, *toOption)
			if err == nil {
				fmt.Printf("%s", listResponse)
			} else {
				fmt.Println(err)
			}
		} else if *isPositionOption {
			listResponse := yatsClient.PositionList(*sourceOption, *fromOption, *toOption)
			fmt.Printf("%s", listResponse)
		} else {
			listEvents := yatsClient.EventList(*sourceOption, *fromOption, *toOption)
			fmt.Printf("%s", listEvents)
		}
	} else {
		// Write Mode
		if *isMetricOption {
			fmt.Printf("metricNameOption: %s", *metricNameOption)

			listResponse, err := yatsClient.MetricSave(*metricNameOption, *metricValueOption, *timestampOption)
			if err == nil {
				fmt.Printf("%s", listResponse)
			} else {
				fmt.Println(err)
			}
		} else if *isPositionOption {
			savePositionResponse, err := yatsClient.PositionSave(*positionNameOption, *latitudeOption, *longitudeOption, *timestampOption)
			if err == nil {
				fmt.Printf("%s", savePositionResponse)
			} else {
				fmt.Println(err)
			}
		} else {
			saveEventResponse, err := yatsClient.EventSave(*eventNameOption, *timestampOption)
			if err == nil {
				fmt.Printf("%s", saveEventResponse)
			} else {
				fmt.Println(err)
			}
		}
	}
}