mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
fd49b0140e
* Use a single Message type `v1/message.go` and `message.go` are the same now, and they embed `protobuf.ChatMessage` * Use `SendChatMessage` for sending chat messages, this is basically the old `Send` but a bit more flexible so we can send different message types (stickers,commands), and not just text. * Remove dedup from services/shhext. Because now we process in status-protocol, dedup makes less sense, as those messages are going to be processed anyway, so removing for now, we can re-evaluate if bringing it to status-go or not. * Change the various retrieveX method to a single one: `RetrieveAll` will be processing those messages that it can process (Currently only `Message`), and return the rest in `RawMessages` (still transit). The format for the response is: `Chats`: -> The chats updated by receiving the message `Messages`: -> The messages retrieved (already matched to a chat) `Contacts`: -> The contacts updated by the messages `RawMessages` -> Anything else that can't be parsed, eventually as we move everything to status-protocol-go this will go away.
72 lines
2.1 KiB
Go
72 lines
2.1 KiB
Go
package protocol
|
|
|
|
import (
|
|
"crypto/ecdsa"
|
|
"time"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
"github.com/pkg/errors"
|
|
"github.com/status-im/status-go/eth-node/crypto"
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
"github.com/status-im/status-go/protocol/protobuf"
|
|
)
|
|
|
|
var (
|
|
// ErrInvalidDecodedValue means that the decoded message is of wrong type.
|
|
// This might mean that the status message serialization tag changed.
|
|
ErrInvalidDecodedValue = errors.New("invalid decoded value type")
|
|
)
|
|
|
|
// TimestampInMs is a timestamp in milliseconds.
|
|
type TimestampInMs int64
|
|
|
|
// Time returns a time.Time instance.
|
|
func (t TimestampInMs) Time() time.Time {
|
|
ts := int64(t)
|
|
seconds := ts / 1000
|
|
return time.Unix(seconds, (ts%1000)*int64(time.Millisecond))
|
|
}
|
|
|
|
// TimestampInMsFromTime returns a TimestampInMs from a time.Time instance.
|
|
func TimestampInMsFromTime(t time.Time) TimestampInMs {
|
|
return TimestampInMs(t.UnixNano() / int64(time.Millisecond))
|
|
}
|
|
|
|
// Flags define various boolean properties of a message.
|
|
type Flags uint64
|
|
|
|
func (f *Flags) Set(val Flags) { *f = *f | val }
|
|
func (f *Flags) Clear(val Flags) { *f = *f &^ val }
|
|
func (f *Flags) Toggle(val Flags) { *f = *f ^ val }
|
|
func (f Flags) Has(val Flags) bool { return f&val != 0 }
|
|
|
|
// A list of Message flags. By default, a message is unread.
|
|
const (
|
|
MessageRead Flags = 1 << iota
|
|
)
|
|
|
|
// MessageID calculates the messageID from author's compressed public key
|
|
// and not encrypted but encoded payload.
|
|
func MessageID(author *ecdsa.PublicKey, data []byte) types.HexBytes {
|
|
keyBytes := crypto.FromECDSAPub(author)
|
|
return types.HexBytes(crypto.Keccak256(append(keyBytes, data...)))
|
|
}
|
|
|
|
// WrapMessageV1 wraps a payload into a protobuf message and signs it if an identity is provided
|
|
func WrapMessageV1(payload []byte, identity *ecdsa.PrivateKey) ([]byte, error) {
|
|
var signature []byte
|
|
if identity != nil {
|
|
var err error
|
|
signature, err = crypto.Sign(crypto.Keccak256(payload), identity)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
message := &protobuf.ApplicationMetadataMessage{
|
|
Signature: signature,
|
|
Payload: payload,
|
|
}
|
|
return proto.Marshal(message)
|
|
}
|