syncthing/cmd/stcli/utils.go

95 lines
2.1 KiB
Go
Raw Normal View History

2019-02-12 07:58:24 +01:00
// Copyright (C) 2019 The Syncthing Authors.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"github.com/syncthing/syncthing/lib/config"
2019-02-12 07:58:24 +01:00
"github.com/urfave/cli"
)
2019-02-12 07:58:24 +01:00
func responseToBArray(response *http.Response) ([]byte, error) {
bytes, err := ioutil.ReadAll(response.Body)
if err != nil {
2019-02-12 07:58:24 +01:00
return nil, err
}
2019-02-12 07:58:24 +01:00
return bytes, response.Body.Close()
}
2019-02-12 07:58:24 +01:00
func emptyPost(url string) cli.ActionFunc {
return func(c *cli.Context) error {
client := c.App.Metadata["client"].(*APIClient)
_, err := client.Post(url, "")
return err
}
}
2019-02-12 07:58:24 +01:00
func dumpOutput(url string) cli.ActionFunc {
return func(c *cli.Context) error {
client := c.App.Metadata["client"].(*APIClient)
response, err := client.Get(url)
if err != nil {
return err
}
2019-02-12 07:58:24 +01:00
return prettyPrintResponse(c, response)
}
}
2019-02-12 07:58:24 +01:00
func getConfig(c *APIClient) (config.Configuration, error) {
cfg := config.Configuration{}
response, err := c.Get("system/config")
if err != nil {
2019-02-12 07:58:24 +01:00
return cfg, err
}
2019-02-12 07:58:24 +01:00
bytes, err := responseToBArray(response)
if err != nil {
2019-02-12 07:58:24 +01:00
return cfg, err
}
2019-02-12 07:58:24 +01:00
err = json.Unmarshal(bytes, &cfg)
if err == nil {
return cfg, err
}
2019-02-12 07:58:24 +01:00
return cfg, nil
}
2019-02-12 07:58:24 +01:00
func expects(n int, actionFunc cli.ActionFunc) cli.ActionFunc {
return func(ctx *cli.Context) error {
if ctx.NArg() != n {
plural := ""
if n != 1 {
plural = "s"
}
return fmt.Errorf("expected %d argument%s, got %d", n, plural, ctx.NArg())
}
return actionFunc(ctx)
}
}
2019-02-12 07:58:24 +01:00
func prettyPrintJSON(data interface{}) error {
enc := json.NewEncoder(os.Stdout)
enc.SetIndent("", " ")
return enc.Encode(data)
}
2019-02-12 07:58:24 +01:00
func prettyPrintResponse(c *cli.Context, response *http.Response) error {
bytes, err := responseToBArray(response)
if err != nil {
2019-02-12 07:58:24 +01:00
return err
}
var data interface{}
if err := json.Unmarshal(bytes, &data); err != nil {
return err
}
2019-02-12 07:58:24 +01:00
// TODO: Check flag for pretty print format
return prettyPrintJSON(data)
}