status-go/protocol/v1/message.go

72 lines
2.1 KiB
Go
Raw Normal View History

package protocol
2019-07-17 22:25:42 +00:00
import (
"crypto/ecdsa"
"time"
2019-07-17 22:25:42 +00:00
"github.com/golang/protobuf/proto"
2019-08-06 21:50:13 +00:00
"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"
2019-07-17 22:25:42 +00:00
)
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
)
2019-08-06 21:50:13 +00:00
// 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...)))
2019-07-17 22:25:42 +00:00
}
// 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{
2019-07-17 22:25:42 +00:00
Signature: signature,
Payload: payload,
}
return proto.Marshal(message)
}