forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
request_handler_admin.go
154 lines (131 loc) · 4.95 KB
/
request_handler_admin.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package handlers
import (
"encoding/json"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"github.com/go-chi/chi"
log "github.com/sirupsen/logrus"
"github.com/stivens13/go/clients/horizon"
"github.com/stivens13/go/protocols/compliance"
"github.com/stivens13/go/services/bridge/internal/db"
"github.com/stivens13/go/services/internal/bridge-compliance-shared/http/helpers"
callback "github.com/stivens13/go/services/internal/bridge-compliance-shared/protocols/compliance"
"github.com/stivens13/go/support/errors"
)
// AdminReceivedPayment implements /admin/received-payments/{id} endpoint
func (rh *RequestHandler) AdminReceivedPayment(w http.ResponseWriter, r *http.Request) {
id, _ := strconv.ParseInt(chi.URLParam(r, "id"), 10, 64)
payment, err := rh.Database.GetReceivedPaymentByID(id)
if err != nil {
log.WithFields(log.Fields{"err": err}).Error("Error getting ReceivedPayments")
helpers.Write(w, helpers.InternalServerError)
return
}
if payment == nil {
w.WriteHeader(http.StatusNotFound)
return
}
paymentResponse, err := rh.Horizon.LoadOperation(payment.OperationID)
if err != nil {
log.WithFields(log.Fields{"err": err}).Error("Error getting operation from Horizon")
helpers.Write(w, helpers.InternalServerError)
return
}
err = rh.Horizon.LoadMemo(&paymentResponse)
if err != nil {
log.WithFields(log.Fields{"err": err}).Error("Error loading memo")
helpers.Write(w, helpers.InternalServerError)
return
}
var authData *compliance.AuthData
if paymentResponse.Memo.Type == "hash" && rh.Config.Compliance != "" {
authData, err = rh.getComplianceData(paymentResponse.Memo.Value)
if err != nil {
log.WithFields(log.Fields{"err": err}).Error("Error loading compliance data")
helpers.Write(w, helpers.InternalServerError)
return
}
}
response := struct {
Payment *db.ReceivedPayment `json:"payment"`
Operation horizon.Payment `json:"operation"`
AuthData *compliance.AuthData `json:"auth_data"`
}{payment, paymentResponse, authData}
encoder := json.NewEncoder(w)
err = encoder.Encode(response)
if err != nil {
log.WithFields(log.Fields{"err": err, "payments": payment}).Error("Error encoding ReceivedPayment")
helpers.Write(w, helpers.InternalServerError)
return
}
}
func (rh *RequestHandler) getComplianceData(memo string) (*compliance.AuthData, error) {
complianceRequestURL := rh.Config.Compliance + "/receive"
complianceRequestBody := url.Values{"memo": {string(memo)}}
log.WithFields(log.Fields{"url": complianceRequestURL, "body": complianceRequestBody}).Info("Sending request to compliance server")
resp, err := rh.Client.PostForm(complianceRequestURL, complianceRequestBody)
if err != nil {
return nil, errors.Wrap(err, "Error sending request to compliance server")
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, errors.Wrap(err, "Error reading compliance server response")
}
if resp.StatusCode == http.StatusNotFound {
return nil, nil
}
if resp.StatusCode != http.StatusOK {
log.WithFields(log.Fields{"status": resp.StatusCode, "body": string(body)}).Error("Error response from compliance server")
return nil, errors.New("Error response from compliance server")
}
var receiveResponse callback.ReceiveResponse
err = json.Unmarshal([]byte(body), &receiveResponse)
if err != nil {
return nil, errors.Wrap(err, "Cannot unmarshal receiveResponse")
}
var authData compliance.AuthData
err = json.Unmarshal([]byte(receiveResponse.Data), &authData)
if err != nil {
return nil, errors.Wrap(err, "Cannot unmarshal authData")
}
return &authData, nil
}
// AdminReceivedPayments implements /admin/received-payments endpoint
func (rh *RequestHandler) AdminReceivedPayments(w http.ResponseWriter, r *http.Request) {
page, _ := strconv.Atoi(r.URL.Query().Get("page"))
limit := 10
payments, err := rh.Database.GetReceivedPayments(uint64(page), uint64(limit))
if err != nil {
log.WithFields(log.Fields{"err": err}).Error("Error loading ReceivedPayments")
helpers.Write(w, helpers.InternalServerError)
return
}
encoder := json.NewEncoder(w)
err = encoder.Encode(payments)
if err != nil {
log.WithFields(log.Fields{"err": err, "payments": payments}).Error("Error encoding ReceivedPayments")
helpers.Write(w, helpers.InternalServerError)
return
}
}
// AdminReceivedPayments implements /admin/sent-transactions endpoint
func (rh *RequestHandler) AdminSentTransactions(w http.ResponseWriter, r *http.Request) {
page, _ := strconv.Atoi(r.URL.Query().Get("page"))
limit := 10
transactions, err := rh.Database.GetSentTransactions(uint64(page), uint64(limit))
if err != nil {
log.WithFields(log.Fields{"err": err}).Error("Error loading SentTransactions")
helpers.Write(w, helpers.InternalServerError)
return
}
encoder := json.NewEncoder(w)
err = encoder.Encode(transactions)
if err != nil {
log.WithFields(log.Fields{"err": err, "transactions": transactions}).Error("Error encoding SentTransactions")
helpers.Write(w, helpers.InternalServerError)
return
}
}