syncthing/cmd/strelaysrv/pool.go

112 lines
2.5 KiB
Go
Raw Normal View History

2016-06-02 14:16:02 +02:00
// Copyright (C) 2015 Audrius Butkevicius and Contributors.
2015-09-07 10:21:23 +02:00
package main
import (
"bytes"
"crypto/tls"
2015-09-07 10:21:23 +02:00
"encoding/json"
"io"
2015-09-07 10:21:23 +02:00
"log"
"net/http"
2015-09-07 10:21:23 +02:00
"net/url"
"time"
)
const (
httpStatusEnhanceYourCalm = 429
)
func poolHandler(pool string, uri *url.URL, mapping mapping, ownCert tls.Certificate) {
2015-09-21 23:33:29 +02:00
if debug {
log.Println("Joining", pool)
}
2015-09-07 10:21:23 +02:00
for {
uriCopy := *uri
uriCopy.Host = mapping.Address().String()
2015-09-07 10:21:23 +02:00
var b bytes.Buffer
json.NewEncoder(&b).Encode(struct {
URL string `json:"url"`
}{
uriCopy.String(),
2015-09-07 10:21:23 +02:00
})
poolUrl, err := url.Parse(pool)
if err != nil {
log.Printf("Could not parse pool url '%s': %v", pool, err)
}
client := http.DefaultClient
if poolUrl.Scheme == "https" {
// Sent our certificate in join request
client = &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
Certificates: []tls.Certificate{ownCert},
},
},
}
}
resp, err := client.Post(pool, "application/json", &b)
2015-09-07 10:21:23 +02:00
if err != nil {
log.Printf("Error joining pool %v: HTTP request: %v", pool, err)
2015-09-07 10:21:23 +02:00
time.Sleep(time.Minute)
continue
}
bs, err := io.ReadAll(resp.Body)
resp.Body.Close()
if err != nil {
log.Printf("Error joining pool %v: reading response: %v", pool, err)
time.Sleep(time.Minute)
continue
}
switch resp.StatusCode {
case http.StatusOK:
2015-09-07 10:21:23 +02:00
var x struct {
EvictionIn time.Duration `json:"evictionIn"`
}
if err := json.Unmarshal(bs, &x); err == nil {
2015-09-07 10:21:23 +02:00
rejoin := x.EvictionIn - (x.EvictionIn / 5)
log.Printf("Joined pool %s, rejoining in %v", pool, rejoin)
2015-09-07 10:21:23 +02:00
time.Sleep(rejoin)
continue
}
log.Printf("Joined pool %s, failed to deserialize response: %v", pool, err)
case http.StatusInternalServerError:
log.Printf("Failed to join %v: server error", pool)
log.Printf("Response data: %s", bs)
time.Sleep(time.Minute)
continue
case http.StatusBadRequest:
log.Printf("Failed to join %v: request or check error", pool)
log.Printf("Response data: %s", bs)
time.Sleep(time.Minute)
continue
case httpStatusEnhanceYourCalm:
log.Printf("Failed to join %v: under load (rate limiting)", pool)
time.Sleep(time.Minute)
continue
case http.StatusUnauthorized:
log.Printf("Failed to join %v: IP address not matching external address", pool)
log.Println("Aborting")
return
default:
log.Printf("Failed to join %v: unexpected status code from server: %d", pool, resp.StatusCode)
log.Printf("Response data: %s", bs)
time.Sleep(time.Minute)
continue
2015-09-07 10:21:23 +02:00
}
2015-09-07 10:21:23 +02:00
time.Sleep(time.Hour)
}
}