package lightpush import ( "context" "encoding/hex" "errors" "fmt" logging "github.com/ipfs/go-log" "github.com/libp2p/go-libp2p-core/host" "github.com/libp2p/go-libp2p-core/network" libp2pProtocol "github.com/libp2p/go-libp2p-core/protocol" "github.com/libp2p/go-msgio/protoio" "github.com/status-im/go-waku/waku/v2/metrics" "github.com/status-im/go-waku/waku/v2/protocol" "github.com/status-im/go-waku/waku/v2/protocol/pb" "github.com/status-im/go-waku/waku/v2/protocol/relay" ) var log = logging.Logger("waku_lightpush") const LightPushID_v20beta1 = libp2pProtocol.ID("/vac/waku/lightpush/2.0.0-beta1") var ( ErrNoPeersAvailable = errors.New("no suitable remote peers") ErrInvalidId = errors.New("invalid request id") ) type WakuLightPush struct { h host.Host relay *relay.WakuRelay ctx context.Context } func NewWakuLightPush(ctx context.Context, h host.Host, relay *relay.WakuRelay) *WakuLightPush { wakuLP := new(WakuLightPush) wakuLP.relay = relay wakuLP.ctx = ctx wakuLP.h = h return wakuLP } func (wakuLP *WakuLightPush) Start() error { if wakuLP.IsClientOnly() { return errors.New("relay is required, without it, it is only a client and cannot be started") } wakuLP.h.SetStreamHandlerMatch(LightPushID_v20beta1, protocol.PrefixTextMatch(string(LightPushID_v20beta1)), wakuLP.onRequest) log.Info("Light Push protocol started") return nil } func (wakuLp *WakuLightPush) IsClientOnly() bool { return wakuLp.relay == nil } func (wakuLP *WakuLightPush) onRequest(s network.Stream) { defer s.Close() requestPushRPC := &pb.PushRPC{} writer := protoio.NewDelimitedWriter(s) reader := protoio.NewDelimitedReader(s, 64*1024) err := reader.ReadMsg(requestPushRPC) if err != nil { log.Error("error reading request", err) metrics.RecordLightpushError(wakuLP.ctx, "decodeRpcFailure") return } log.Info(fmt.Sprintf("%s: lightpush message received from %s", s.Conn().LocalPeer(), s.Conn().RemotePeer())) if requestPushRPC.Query != nil { log.Info("lightpush push request") response := new(pb.PushResponse) if !wakuLP.IsClientOnly() { pubSubTopic := relay.Topic(requestPushRPC.Query.PubsubTopic) message := requestPushRPC.Query.Message // TODO: Assumes success, should probably be extended to check for network, peers, etc // It might make sense to use WithReadiness option here? _, err := wakuLP.relay.Publish(wakuLP.ctx, message, &pubSubTopic) if err != nil { response.IsSuccess = false response.Info = "Could not publish message" } else { response.IsSuccess = true response.Info = "Totally" // TODO: ask about this } } else { log.Debug("no relay protocol present, unsuccessful push") response.IsSuccess = false response.Info = "No relay protocol" } responsePushRPC := &pb.PushRPC{} responsePushRPC.RequestId = requestPushRPC.RequestId responsePushRPC.Response = response err = writer.WriteMsg(responsePushRPC) if err != nil { log.Error("error writing response", err) _ = s.Reset() } else { log.Info(fmt.Sprintf("%s: response sent to %s", s.Conn().LocalPeer().String(), s.Conn().RemotePeer().String())) } } if requestPushRPC.Response != nil { if requestPushRPC.Response.IsSuccess { log.Info("lightpush message success") } else { log.Info(fmt.Sprintf("lightpush message failure. info=%s", requestPushRPC.Response.Info)) } } } func (wakuLP *WakuLightPush) request(ctx context.Context, req *pb.PushRequest, opts ...LightPushOption) (*pb.PushResponse, error) { params := new(LightPushParameters) params.host = wakuLP.h optList := DefaultOptions(wakuLP.h) optList = append(optList, opts...) for _, opt := range optList { opt(params) } if params.selectedPeer == "" { metrics.RecordLightpushError(wakuLP.ctx, "dialError") return nil, ErrNoPeersAvailable } if len(params.requestId) == 0 { return nil, ErrInvalidId } connOpt, err := wakuLP.h.NewStream(ctx, params.selectedPeer, LightPushID_v20beta1) if err != nil { log.Info("failed to connect to remote peer", err) metrics.RecordLightpushError(wakuLP.ctx, "dialError") return nil, err } defer connOpt.Close() defer func() { err := connOpt.Reset() if err != nil { metrics.RecordLightpushError(wakuLP.ctx, "dialError") log.Error("failed to reset connection", err) } }() pushRequestRPC := &pb.PushRPC{RequestId: hex.EncodeToString(params.requestId), Query: req} writer := protoio.NewDelimitedWriter(connOpt) reader := protoio.NewDelimitedReader(connOpt, 64*1024) err = writer.WriteMsg(pushRequestRPC) if err != nil { log.Error("could not write request", err) return nil, err } pushResponseRPC := &pb.PushRPC{} err = reader.ReadMsg(pushResponseRPC) if err != nil { log.Error("could not read response", err) metrics.RecordLightpushError(wakuLP.ctx, "decodeRPCFailure") return nil, err } return pushResponseRPC.Response, nil } func (wakuLP *WakuLightPush) Stop() { wakuLP.h.RemoveStreamHandler(LightPushID_v20beta1) } func (wakuLP *WakuLightPush) Publish(ctx context.Context, message *pb.WakuMessage, topic *relay.Topic, opts ...LightPushOption) ([]byte, error) { if message == nil { return nil, errors.New("message can't be null") } req := new(pb.PushRequest) req.Message = message req.PubsubTopic = string(relay.GetTopic(topic)) response, err := wakuLP.request(ctx, req, opts...) if err != nil { return nil, err } if response.IsSuccess { hash, _ := message.Hash() return hash, nil } else { return nil, errors.New(response.Info) } }