2016-12-17 11:28:59 +00:00
|
|
|
// Copyright (C) 2014 Audrius Butkevičius
|
|
|
|
|
2016-12-17 00:25:45 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"regexp"
|
|
|
|
"sort"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"text/tabwriter"
|
|
|
|
"unicode"
|
|
|
|
|
|
|
|
"github.com/AudriusButkevicius/cli"
|
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
|
|
|
)
|
|
|
|
|
|
|
|
func responseToBArray(response *http.Response) []byte {
|
|
|
|
defer response.Body.Close()
|
|
|
|
bytes, err := ioutil.ReadAll(response.Body)
|
|
|
|
if err != nil {
|
|
|
|
die(err)
|
|
|
|
}
|
|
|
|
return bytes
|
|
|
|
}
|
|
|
|
|
|
|
|
func die(vals ...interface{}) {
|
|
|
|
if len(vals) > 1 || vals[0] != nil {
|
|
|
|
os.Stderr.WriteString(fmt.Sprintln(vals...))
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-17 00:27:48 +00:00
|
|
|
func wrappedHTTPPost(url string) func(c *cli.Context) {
|
2016-12-17 00:25:45 +00:00
|
|
|
return func(c *cli.Context) {
|
|
|
|
httpPost(c, url, "")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-17 00:27:48 +00:00
|
|
|
func prettyPrintJSON(json map[string]interface{}) {
|
2016-12-17 00:25:45 +00:00
|
|
|
writer := newTableWriter()
|
|
|
|
remap := make(map[string]interface{})
|
|
|
|
for k, v := range json {
|
|
|
|
key, ok := jsonAttributeLabels[k]
|
|
|
|
if !ok {
|
|
|
|
key = firstUpper(k)
|
|
|
|
}
|
|
|
|
remap[key] = v
|
|
|
|
}
|
|
|
|
|
2016-12-17 00:27:48 +00:00
|
|
|
jsonKeys := make([]string, 0, len(remap))
|
2016-12-17 00:25:45 +00:00
|
|
|
for key := range remap {
|
2016-12-17 00:27:48 +00:00
|
|
|
jsonKeys = append(jsonKeys, key)
|
2016-12-17 00:25:45 +00:00
|
|
|
}
|
2016-12-17 00:27:48 +00:00
|
|
|
sort.Strings(jsonKeys)
|
|
|
|
for _, k := range jsonKeys {
|
2016-12-17 09:51:48 +00:00
|
|
|
var value string
|
2016-12-17 00:25:45 +00:00
|
|
|
rvalue := remap[k]
|
|
|
|
switch rvalue.(type) {
|
|
|
|
case int, int16, int32, int64, uint, uint16, uint32, uint64, float32, float64:
|
|
|
|
value = fmt.Sprintf("%.0f", rvalue)
|
|
|
|
default:
|
|
|
|
value = fmt.Sprint(rvalue)
|
|
|
|
}
|
|
|
|
if value == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fmt.Fprintln(writer, k+":\t"+value)
|
|
|
|
}
|
|
|
|
writer.Flush()
|
|
|
|
}
|
|
|
|
|
|
|
|
func firstUpper(str string) string {
|
|
|
|
for i, v := range str {
|
|
|
|
return string(unicode.ToUpper(v)) + str[i+1:]
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func newTableWriter() *tabwriter.Writer {
|
|
|
|
writer := new(tabwriter.Writer)
|
|
|
|
writer.Init(os.Stdout, 0, 8, 0, '\t', 0)
|
|
|
|
return writer
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMyID(c *cli.Context) string {
|
|
|
|
response := httpGet(c, "system/status")
|
|
|
|
data := make(map[string]interface{})
|
|
|
|
json.Unmarshal(responseToBArray(response), &data)
|
|
|
|
return data["myID"].(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getConfig(c *cli.Context) config.Configuration {
|
|
|
|
response := httpGet(c, "system/config")
|
|
|
|
config := config.Configuration{}
|
|
|
|
json.Unmarshal(responseToBArray(response), &config)
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
func setConfig(c *cli.Context, cfg config.Configuration) {
|
|
|
|
body, err := json.Marshal(cfg)
|
|
|
|
die(err)
|
|
|
|
response := httpPost(c, "system/config", string(body))
|
|
|
|
if response.StatusCode != 200 {
|
|
|
|
die("Unexpected status code", response.StatusCode)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseBool(input string) bool {
|
|
|
|
val, err := strconv.ParseBool(input)
|
|
|
|
if err != nil {
|
|
|
|
die(input + " is not a valid value for a boolean")
|
|
|
|
}
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseInt(input string) int {
|
|
|
|
val, err := strconv.ParseInt(input, 0, 64)
|
|
|
|
if err != nil {
|
|
|
|
die(input + " is not a valid value for an integer")
|
|
|
|
}
|
|
|
|
return int(val)
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseUint(input string) int {
|
|
|
|
val, err := strconv.ParseUint(input, 0, 64)
|
|
|
|
if err != nil {
|
|
|
|
die(input + " is not a valid value for an unsigned integer")
|
|
|
|
}
|
|
|
|
return int(val)
|
|
|
|
}
|
|
|
|
|
|
|
|
func parsePort(input string) int {
|
|
|
|
port := parseUint(input)
|
|
|
|
if port < 1 || port > 65535 {
|
|
|
|
die(input + " is not a valid port\nExpected value between 1 and 65535")
|
|
|
|
}
|
2016-12-17 14:37:11 +00:00
|
|
|
return port
|
2016-12-17 00:25:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func validAddress(input string) {
|
|
|
|
tokens := strings.Split(input, ":")
|
|
|
|
if len(tokens) != 2 {
|
|
|
|
die(input + " is not a valid value for an address\nExpected format <ip or hostname>:<port>")
|
|
|
|
}
|
|
|
|
matched, err := regexp.MatchString("^[a-zA-Z0-9]+([-a-zA-Z0-9.]+[-a-zA-Z0-9]+)?$", tokens[0])
|
|
|
|
die(err)
|
|
|
|
if !matched {
|
|
|
|
die(input + " is not a valid value for an address\nExpected format <ip or hostname>:<port>")
|
|
|
|
}
|
|
|
|
parsePort(tokens[1])
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseDeviceID(input string) protocol.DeviceID {
|
|
|
|
device, err := protocol.DeviceIDFromString(input)
|
|
|
|
if err != nil {
|
|
|
|
die(input + " is not a valid device id")
|
|
|
|
}
|
|
|
|
return device
|
|
|
|
}
|