2019-02-03 20:56:58 +01:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-02-22 17:35:49 +01:00
|
|
|
"crypto/rsa"
|
2019-02-03 20:56:58 +01:00
|
|
|
"crypto/sha256"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2019-05-10 13:44:29 +02:00
|
|
|
jwt "github.com/dgrijalva/jwt-go"
|
2019-02-03 20:56:58 +01:00
|
|
|
|
|
|
|
peering "forge.cadoles.com/wpetit/go-http-peering"
|
|
|
|
"forge.cadoles.com/wpetit/go-http-peering/crypto"
|
|
|
|
"forge.cadoles.com/wpetit/go-http-peering/server"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
ErrInvalidPrivateKey = errors.New("invalid private key")
|
|
|
|
ErrUnexpectedResponse = errors.New("unexpected response")
|
|
|
|
ErrUnauthorized = errors.New("unauthorized")
|
|
|
|
ErrRejected = errors.New("rejected")
|
2019-02-22 17:35:49 +01:00
|
|
|
ErrInvalidServerToken = errors.New("invalid server token")
|
2019-02-03 20:56:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type Client struct {
|
|
|
|
options *Options
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Advertise(attrs peering.PeerAttributes) error {
|
|
|
|
url := c.options.BaseURL + peering.AdvertisePath
|
|
|
|
|
|
|
|
publicKey, err := crypto.EncodePublicKeyToPEM(c.options.PrivateKey.Public())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
data := &peering.AdvertisingRequest{
|
|
|
|
Attributes: attrs,
|
|
|
|
PublicKey: publicKey,
|
|
|
|
}
|
|
|
|
|
2019-02-22 17:35:49 +01:00
|
|
|
res, err := c.Post(url, data)
|
2019-02-03 20:56:58 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch res.StatusCode {
|
|
|
|
case http.StatusCreated:
|
|
|
|
return nil
|
|
|
|
case http.StatusConflict:
|
|
|
|
return peering.ErrPeerExists
|
|
|
|
default:
|
|
|
|
return ErrUnexpectedResponse
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UpdateAttributes(attrs peering.PeerAttributes) error {
|
|
|
|
url := c.options.BaseURL + peering.UpdatePath
|
|
|
|
|
|
|
|
data := &peering.UpdateRequest{
|
|
|
|
Attributes: attrs,
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.Post(url, data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch res.StatusCode {
|
|
|
|
case http.StatusNoContent:
|
|
|
|
return nil
|
|
|
|
case http.StatusUnauthorized:
|
|
|
|
return ErrUnauthorized
|
|
|
|
case http.StatusForbidden:
|
|
|
|
return ErrRejected
|
|
|
|
default:
|
|
|
|
return ErrUnexpectedResponse
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Ping() error {
|
|
|
|
url := c.options.BaseURL + peering.PingPath
|
|
|
|
|
|
|
|
res, err := c.Post(url, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch res.StatusCode {
|
|
|
|
case http.StatusNoContent:
|
|
|
|
return nil
|
|
|
|
case http.StatusUnauthorized:
|
|
|
|
return ErrUnauthorized
|
|
|
|
case http.StatusForbidden:
|
|
|
|
return ErrRejected
|
|
|
|
default:
|
|
|
|
return ErrUnexpectedResponse
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Get(url string) (*http.Response, error) {
|
|
|
|
req, err := http.NewRequest(http.MethodGet, url, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-02-22 17:35:49 +01:00
|
|
|
if err := c.addClientToken(req, nil); err != nil {
|
2019-02-03 20:56:58 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return c.options.HTTPClient.Do(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Post(url string, data interface{}) (*http.Response, error) {
|
|
|
|
req, body, err := c.createPostRequest(url, data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-02-22 17:35:49 +01:00
|
|
|
if err := c.addClientToken(req, body); err != nil {
|
2019-02-03 20:56:58 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return c.options.HTTPClient.Do(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) createPostRequest(url string, data interface{}) (*http.Request, []byte, error) {
|
|
|
|
body, err := json.Marshal(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := http.NewRequest(http.MethodPost, url, bytes.NewReader(body))
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
|
|
|
|
return req, body, nil
|
|
|
|
}
|
|
|
|
|
2019-02-22 17:35:49 +01:00
|
|
|
func (c *Client) addServerToken(r *http.Request) {
|
|
|
|
r.Header.Set(
|
|
|
|
server.ServerTokenHeader,
|
|
|
|
c.options.ServerToken,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) addClientToken(r *http.Request, body []byte) error {
|
2019-02-03 20:56:58 +01:00
|
|
|
bodySum, err := c.createBodySum(body)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-02-22 17:35:49 +01:00
|
|
|
token := jwt.NewWithClaims(jwt.SigningMethodRS256, peering.ClientTokenClaims{
|
2019-02-03 20:56:58 +01:00
|
|
|
StandardClaims: jwt.StandardClaims{
|
2019-05-10 13:44:29 +02:00
|
|
|
NotBefore: time.Now().Add(time.Minute * -1).Unix(),
|
|
|
|
ExpiresAt: time.Now().Add(time.Minute * 5).Unix(),
|
2019-02-03 20:56:58 +01:00
|
|
|
},
|
|
|
|
BodySum: bodySum,
|
|
|
|
})
|
|
|
|
|
|
|
|
tokenStr, err := token.SignedString(c.options.PrivateKey)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-02-22 17:35:49 +01:00
|
|
|
r.Header.Set(server.ClientTokenHeader, tokenStr)
|
|
|
|
|
|
|
|
c.addServerToken(r)
|
2019-02-03 20:56:58 +01:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) createBodySum(body []byte) ([]byte, error) {
|
|
|
|
if body == nil || len(body) == 0 {
|
2019-04-07 15:55:36 +02:00
|
|
|
body = []byte("")
|
2019-02-03 20:56:58 +01:00
|
|
|
}
|
|
|
|
sha := sha256.New()
|
|
|
|
_, err := sha.Write(body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return sha.Sum(nil), nil
|
|
|
|
}
|
|
|
|
|
2019-02-22 17:35:49 +01:00
|
|
|
func (c *Client) PeerID(serverPublicKey *rsa.PublicKey) (peering.PeerID, error) {
|
|
|
|
token, err := jwt.ParseWithClaims(
|
|
|
|
c.options.ServerToken,
|
|
|
|
&peering.ServerTokenClaims{},
|
|
|
|
func(token *jwt.Token) (interface{}, error) {
|
|
|
|
return serverPublicKey, nil
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if !token.Valid {
|
|
|
|
return "", ErrInvalidServerToken
|
|
|
|
}
|
|
|
|
serverClaims, ok := token.Claims.(*peering.ServerTokenClaims)
|
|
|
|
if !ok {
|
|
|
|
return "", ErrInvalidServerToken
|
|
|
|
}
|
|
|
|
return serverClaims.PeerID, nil
|
|
|
|
}
|
|
|
|
|
2019-02-03 20:56:58 +01:00
|
|
|
func New(funcs ...OptionFunc) *Client {
|
|
|
|
options := createOptions(funcs...)
|
|
|
|
return &Client{options}
|
|
|
|
}
|