-
Notifications
You must be signed in to change notification settings - Fork 2
/
messages.go
79 lines (69 loc) · 2.63 KB
/
messages.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package toolslib
import (
"bytes"
"encoding/json"
"github.com/btcsuite/btcd/btcec"
"github.com/deso-smart/deso-backend/v2/routes"
"github.com/deso-smart/deso-core/v2/lib"
"github.com/pkg/errors"
"io/ioutil"
"net/http"
)
func _generateUnsignedMessage(senderPubKey *btcec.PublicKey, recipientPubKey *btcec.PublicKey, message string,
params *lib.DeSoParams, node string) (*routes.SendMessageStatelessResponse, error) {
endpoint := node + routes.RoutePathSendMessageStateless
// Setup request
payload := &routes.SendMessageStatelessRequest{
SenderPublicKeyBase58Check: lib.PkToString(senderPubKey.SerializeCompressed(), params),
RecipientPublicKeyBase58Check: lib.PkToString(recipientPubKey.SerializeCompressed(), params),
MessageText: message,
MinFeeRateNanosPerKB: 1000,
}
postBody, err := json.Marshal(payload)
if err != nil {
return nil, errors.Wrap(err, "_generateUnsignedMessage() failed to marshal struct")
}
postBuffer := bytes.NewBuffer(postBody)
// Execute request
resp, err := http.Post(endpoint, "application/json", postBuffer)
if err != nil {
return nil, errors.Wrap(err, "_generateUnsignedMessage() failed to execute request")
}
if resp.StatusCode != 200 {
bodyBytes, _ := ioutil.ReadAll(resp.Body)
return nil, errors.Errorf("_generateUnsignedMessage(): Received non 200 response code: "+
"Status Code: %v Body: %v", resp.StatusCode, string(bodyBytes))
}
// Process response
sendMessageResponse := routes.SendMessageStatelessResponse{}
err = json.NewDecoder(resp.Body).Decode(&sendMessageResponse)
if err != nil {
return nil, errors.Wrap(err, "_generateUnsignedMessage(): failed decoding body")
}
err = resp.Body.Close()
if err != nil {
return nil, errors.Wrap(err, "_generateUnsignedMessage(): failed closing body")
}
return &sendMessageResponse, nil
}
func SendMessage(senderPubKey *btcec.PublicKey, senderPrivKey *btcec.PrivateKey,
recipientPubKey *btcec.PublicKey, message string, params *lib.DeSoParams, node string) error {
// Request an unsigned transaction from the node
unsignedMessage, err := _generateUnsignedMessage(senderPubKey, recipientPubKey, message, params, node)
if err != nil {
return errors.Wrap(err, "SendMessage() failed to call _generateSendDeSo()")
}
txn := unsignedMessage.Transaction
// Sign the transaction
signature, err := txn.Sign(senderPrivKey)
if err != nil {
return errors.Wrap(err, "SendMessage() failed to sign transaction")
}
txn.Signature = signature
// Submit the transaction to the node
err = SubmitTransactionToNode(txn, node)
if err != nil {
return errors.Wrap(err, "SendMessage() failed to submit transaction")
}
return nil
}