2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU General Public License as published by the Free
|
|
|
|
// Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
// more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program. If not, see <http://www.gnu.org/licenses/>.
|
2014-07-31 10:30:19 +00:00
|
|
|
|
2014-07-13 19:07:24 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
2014-07-13 19:39:35 +00:00
|
|
|
"os"
|
2014-07-13 19:07:24 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type event struct {
|
2014-07-13 19:39:35 +00:00
|
|
|
ID int `json:"id"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Time time.Time `json:"time"`
|
|
|
|
Data map[string]interface{} `json:"data"`
|
2014-07-13 19:07:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2014-07-13 19:39:35 +00:00
|
|
|
log.SetOutput(os.Stdout)
|
|
|
|
log.SetFlags(0)
|
|
|
|
|
2014-07-13 19:07:24 +00:00
|
|
|
target := flag.String("target", "localhost:8080", "Target Syncthing instance")
|
|
|
|
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 19:39:35 +00:00
|
|
|
res.Body.Close()
|
2014-07-13 19:07:24 +00:00
|
|
|
|
|
|
|
for _, event := range events {
|
2014-07-13 19:39:35 +00:00
|
|
|
bs, _ := json.MarshalIndent(event, "", " ")
|
|
|
|
log.Printf("%s", bs)
|
2014-07-13 19:07:24 +00:00
|
|
|
since = event.ID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|