syncthing/cmd/stevents/main.go

64 lines
1.3 KiB
Go
Raw Normal View History

2014-11-16 21:13:20 +01:00
// Copyright (C) 2014 The Syncthing Authors.
2014-09-29 21:43:32 +02:00
//
2015-03-07 21:36:35 +01:00
// 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/.
2014-07-13 21:07:24 +02:00
package main
import (
"encoding/json"
"flag"
"fmt"
"log"
"net/http"
2014-07-13 21:39:35 +02:00
"os"
2014-07-13 21:07:24 +02:00
"time"
)
type event struct {
2014-07-13 21:39:35 +02:00
ID int `json:"id"`
Type string `json:"type"`
Time time.Time `json:"time"`
Data map[string]interface{} `json:"data"`
2014-07-13 21:07:24 +02:00
}
func main() {
2014-07-13 21:39:35 +02:00
log.SetOutput(os.Stdout)
log.SetFlags(0)
target := flag.String("target", "localhost:8384", "Target Syncthing instance")
2014-07-13 21:07:24 +02:00
apikey := flag.String("apikey", "", "Syncthing API key")
flag.Parse()
if *apikey == "" {
log.Fatal("Must give -apikey argument")
}
since := 0
for {
req, err := http.NewRequest("GET", fmt.Sprintf("http://%s/rest/events?since=%d", *target, since), nil)
if err != nil {
log.Fatal(err)
}
req.Header.Set("X-API-Key", *apikey)
res, err := http.DefaultClient.Do(req)
if err != nil {
log.Fatal(err)
}
var events []event
err = json.NewDecoder(res.Body).Decode(&events)
if err != nil {
log.Fatal(err)
}
2014-07-13 21:39:35 +02:00
res.Body.Close()
2014-07-13 21:07:24 +02:00
for _, event := range events {
2014-07-13 21:39:35 +02:00
bs, _ := json.MarshalIndent(event, "", " ")
log.Printf("%s", bs)
2014-07-13 21:07:24 +02:00
since = event.ID
}
}
}