reflector.go/reflector/blocklist.go

177 lines
3.6 KiB
Go
Raw Normal View History

2018-09-01 01:50:22 +02:00
package reflector
import (
"encoding/hex"
"encoding/json"
"net/http"
"strconv"
"strings"
2018-09-20 17:24:36 +02:00
"time"
2018-09-01 01:50:22 +02:00
2018-09-20 17:24:36 +02:00
"github.com/lbryio/reflector.go/store"
2018-09-01 01:50:22 +02:00
"github.com/lbryio/reflector.go/wallet"
2019-11-14 01:11:35 +01:00
"github.com/lbryio/lbry.go/v2/extras/errors"
types1 "github.com/lbryio/types/v1/go"
types2 "github.com/lbryio/types/v2/go"
2018-09-01 01:50:22 +02:00
"github.com/golang/protobuf/proto"
2018-09-20 17:24:36 +02:00
log "github.com/sirupsen/logrus"
2018-09-01 01:50:22 +02:00
)
2019-07-31 00:02:32 +02:00
const blocklistURL = "https://api.lbry.com/file/list_blocked"
2018-09-01 01:50:22 +02:00
2018-09-20 17:24:36 +02:00
func (s *Server) enableBlocklist(b store.Blocklister) {
2019-01-16 17:41:58 +01:00
// TODO: updateBlocklist should be killed when server is shutting down
2018-09-20 17:24:36 +02:00
updateBlocklist(b)
t := time.NewTicker(12 * time.Hour)
for {
select {
case <-s.grp.Ch():
return
case <-t.C:
updateBlocklist(b)
}
}
2018-09-01 01:50:22 +02:00
}
2018-09-20 17:24:36 +02:00
func updateBlocklist(b store.Blocklister) {
values, err := blockedSdHashes()
if err != nil {
log.Error(err)
return
}
for _, v := range values {
if v.Err != nil {
continue
}
err = b.Block(v.Value)
if err != nil {
log.Error(err)
}
}
}
2018-09-20 20:24:30 +02:00
func blockedSdHashes() (map[string]valOrErr, error) {
2018-09-01 01:50:22 +02:00
resp, err := http.Get(blocklistURL)
if err != nil {
return nil, errors.Err(err)
}
2018-09-24 16:31:14 +02:00
defer func() {
err := resp.Body.Close()
if err != nil {
log.Errorln(err)
}
}()
2018-09-01 01:50:22 +02:00
2018-09-20 17:24:36 +02:00
var r struct {
Success bool `json:"success"`
Error string `json:"error"`
Data struct {
Outpoints []string `json:"outpoints"`
} `json:"data"`
}
2018-09-01 01:50:22 +02:00
if err = json.NewDecoder(resp.Body).Decode(&r); err != nil {
return nil, errors.Err(err)
}
if !r.Success {
return nil, errors.Prefix("list_blocked API call", r.Error)
}
2018-09-11 13:41:29 +02:00
return sdHashesForOutpoints(r.Data.Outpoints)
}
2018-09-01 01:50:22 +02:00
2018-09-20 20:24:30 +02:00
type valOrErr struct {
2018-09-11 13:41:29 +02:00
Value string
Err error
2018-09-01 01:50:22 +02:00
}
2018-09-11 13:41:29 +02:00
// sdHashesForOutpoints queries wallet server for the sd hashes in a given outpoints
2018-09-20 20:24:30 +02:00
func sdHashesForOutpoints(outpoints []string) (map[string]valOrErr, error) {
values := make(map[string]valOrErr)
2018-09-01 01:50:22 +02:00
node := wallet.NewNode()
2019-01-16 17:41:58 +01:00
defer node.Shutdown()
2018-09-20 17:24:36 +02:00
err := node.Connect([]string{
2019-07-30 23:06:35 +02:00
"spv1.lbry.com:50001",
"spv2.lbry.com:50001",
"spv3.lbry.com:50001",
"spv4.lbry.com:50001",
"spv5.lbry.com:50001",
2018-09-20 17:24:36 +02:00
}, nil)
2018-09-01 01:50:22 +02:00
if err != nil {
return nil, err
}
2018-09-11 13:41:29 +02:00
for _, outpoint := range outpoints {
parts := strings.Split(outpoint, ":")
if len(parts) != 2 {
2018-09-20 20:24:30 +02:00
values[outpoint] = valOrErr{Err: errors.Err("invalid outpoint format")}
2018-09-11 13:41:29 +02:00
continue
}
nout, err := strconv.Atoi(parts[1])
if err != nil {
2018-09-20 20:24:30 +02:00
values[outpoint] = valOrErr{Err: errors.Prefix("invalid nout", err)}
2018-09-11 13:41:29 +02:00
continue
}
resp, err := node.GetClaimsInTx(parts[0])
if err != nil {
2018-09-20 20:24:30 +02:00
values[outpoint] = valOrErr{Err: err}
2018-09-11 13:41:29 +02:00
continue
}
var value []byte
for _, tx := range resp.Result {
if tx.Nout != nout {
continue
}
2018-09-01 01:50:22 +02:00
2018-09-11 13:41:29 +02:00
value, err = hex.DecodeString(tx.Value)
break
2018-09-01 01:50:22 +02:00
}
2018-09-11 13:41:29 +02:00
if err != nil {
2018-09-20 20:24:30 +02:00
values[outpoint] = valOrErr{Err: err}
2018-09-11 13:41:29 +02:00
continue
} else if value == nil {
values[outpoint] = valOrErr{Err: errors.Err("outpoint not found")}
2018-09-11 13:41:29 +02:00
continue
}
hash, err := hashFromClaim(value)
values[outpoint] = valOrErr{Value: hash, Err: err}
2018-09-01 01:50:22 +02:00
}
2018-09-11 13:41:29 +02:00
return values, nil
2018-09-01 01:50:22 +02:00
}
func hashFromClaim(value []byte) (string, error) {
claim := &types1.Claim{}
err := proto.Unmarshal(value, claim)
if err != nil {
return "", err
}
if claim.GetStream().GetSource().GetSourceType() == types1.Source_lbry_sd_hash && claim.GetStream().GetSource().GetSource() != nil {
return hex.EncodeToString(claim.GetStream().GetSource().GetSource()), nil
}
claim2 := &types2.Claim{}
err = proto.Unmarshal(value, claim2)
if err != nil {
return "", err
}
stream, ok := claim2.GetType().(*types2.Claim_Stream)
if !ok || stream == nil {
return "", errors.Err("not a stream claim")
}
return hex.EncodeToString(claim2.GetStream().GetSource().GetSdHash()), nil
}