mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
66 lines
1.7 KiB
Go
66 lines
1.7 KiB
Go
// Copyright (C) 2015 Audrius Butkevicius and Contributors.
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/url"
|
|
"time"
|
|
)
|
|
|
|
func poolHandler(pool string, uri *url.URL, mapping mapping) {
|
|
if debug {
|
|
log.Println("Joining", pool)
|
|
}
|
|
for {
|
|
uriCopy := *uri
|
|
uriCopy.Host = mapping.Address().String()
|
|
|
|
var b bytes.Buffer
|
|
json.NewEncoder(&b).Encode(struct {
|
|
URL string `json:"url"`
|
|
}{
|
|
uriCopy.String(),
|
|
})
|
|
|
|
resp, err := httpClient.Post(pool, "application/json", &b)
|
|
if err != nil {
|
|
log.Println("Error joining pool", pool, err)
|
|
} else if resp.StatusCode == 500 {
|
|
bs, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
log.Println("Failed to join", pool, "due to an internal server error. Could not read response:", err)
|
|
} else {
|
|
log.Println("Failed to join", pool, "due to an internal server error:", string(bs))
|
|
}
|
|
resp.Body.Close()
|
|
} else if resp.StatusCode == 429 {
|
|
log.Println(pool, "under load, will retry in a minute")
|
|
time.Sleep(time.Minute)
|
|
continue
|
|
} else if resp.StatusCode == 401 {
|
|
log.Println(pool, "failed to join due to IP address not matching external address. Aborting")
|
|
return
|
|
} else if resp.StatusCode == 200 {
|
|
var x struct {
|
|
EvictionIn time.Duration `json:"evictionIn"`
|
|
}
|
|
err := json.NewDecoder(resp.Body).Decode(&x)
|
|
if err == nil {
|
|
rejoin := x.EvictionIn - (x.EvictionIn / 5)
|
|
log.Println("Joined", pool, "rejoining in", rejoin)
|
|
time.Sleep(rejoin)
|
|
continue
|
|
} else {
|
|
log.Println("Failed to deserialize response", err)
|
|
}
|
|
} else {
|
|
log.Println(pool, "unknown response type from server", resp.StatusCode)
|
|
}
|
|
time.Sleep(time.Hour)
|
|
}
|
|
}
|