-
Notifications
You must be signed in to change notification settings - Fork 0
/
actions_transaction.go
188 lines (162 loc) · 4.73 KB
/
actions_transaction.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package horizon
import (
"gitlab.com/tokend/horizon/db2"
"gitlab.com/tokend/horizon/db2/history"
"gitlab.com/tokend/horizon/render/hal"
"gitlab.com/tokend/horizon/render/problem"
"gitlab.com/tokend/horizon/render/sse"
"gitlab.com/tokend/horizon/resource"
"gitlab.com/tokend/regources"
)
// This file contains the actions:
//
// TransactionIndexAction: pages of transactions
// TransactionShowAction: single transaction by sequence, by hash or id
// TransactionIndexAction renders a page of ledger resources, identified by
// a normal page query.
type TransactionIndexAction struct {
Action
LedgerFilter int32
AccountFilter string
BalanceFilter string
PagingParams db2.PageQuery
Records []history.Transaction
MetaLedger history.Ledger
Page hal.Page
}
// JSON is a method for actions.JSON
func (action *TransactionIndexAction) JSON() {
action.Do(
action.EnsureHistoryFreshness,
action.loadParams,
action.checkAllowed,
action.ValidateCursorWithinHistory,
action.loadRecords,
action.loadPage,
func() {
hal.Render(action.W, action.Page)
},
)
}
// SSE is a method for actions.SSE
func (action *TransactionIndexAction) SSE(stream sse.Stream) {
action.Setup(
action.EnsureHistoryFreshness,
action.loadParams,
action.checkAllowed,
action.ValidateCursorWithinHistory,
)
action.Do(
func() {
// we will reuse this variable in sse, so re-initializing is required
action.Records = []history.Transaction{}
},
action.loadRecords,
func() {
records := action.Records[:]
for _, record := range records {
res := resource.PopulateTransaction(record)
stream.Send(sse.Event{
ID: res.PagingToken(),
Data: res,
})
action.PagingParams.Cursor = res.PagingToken()
}
},
)
}
const (
maxTxPagSize uint64 = 1000
)
func (action *TransactionIndexAction) loadParams() {
action.ValidateCursorAsDefault()
action.AccountFilter = action.GetString("account_id")
action.LedgerFilter = action.GetInt32("ledger_id")
action.PagingParams = action.GetPageQuery()
limit := action.GetUInt64("limit")
if limit > db2.MaxPageSize {
action.PagingParams.Limit = limit
if limit > maxTxPagSize {
action.PagingParams.Limit = maxTxPagSize
}
}
}
func (action *TransactionIndexAction) loadRecords() {
q := action.HistoryQ()
txs := q.Transactions()
switch {
case action.AccountFilter != "":
txs.ForAccount(action.AccountFilter)
case action.LedgerFilter > 0:
txs.ForLedger(action.LedgerFilter)
}
// memorize ledger sequence before select to prevent data race
latestLedger := int32(action.App.historyLatestLedgerGauge.Value())
err := txs.Page(action.PagingParams).Select(&action.Records)
if err != nil {
action.Log.WithError(err).Error("failed to get transactions")
action.Err = &problem.ServerError
return
}
if uint64(len(action.Records)) == action.PagingParams.Limit {
// we fetched full page, probably there is something ahead
latestLedger = action.Records[len(action.Records)-1].LedgerSequence
}
// load ledger close time
if err := action.HistoryQ().LedgerBySequence(&action.MetaLedger, latestLedger); err != nil {
action.Log.WithError(err).Error("failed to get ledger")
action.Err = &problem.ServerError
return
}
}
func (action *TransactionIndexAction) loadPage() {
for _, record := range action.Records {
res := resource.PopulateTransaction(record)
action.Page.Add(res)
}
action.Page.Embedded.Meta = &hal.PageMeta{
LatestLedger: &hal.LatestLedgerMeta{
Sequence: action.MetaLedger.Sequence,
ClosedAt: action.MetaLedger.ClosedAt,
},
}
action.Page.BaseURL = action.BaseURL()
action.Page.BasePath = action.Path()
action.Page.Limit = action.PagingParams.Limit
action.Page.Cursor = action.PagingParams.Cursor
action.Page.Order = action.PagingParams.Order
action.Page.PopulateLinks()
}
func (action *TransactionIndexAction) checkAllowed() {
action.IsAllowed(action.AccountFilter)
}
// TransactionShowAction renders a ledger found by its sequence number.
type TransactionShowAction struct {
Action
HashOrID string
Record history.Transaction
Resource regources.Transaction
}
func (action *TransactionShowAction) loadParams() {
action.HashOrID = action.GetString("id")
}
func (action *TransactionShowAction) loadRecord() {
action.Err = action.HistoryQ().TransactionByHashOrID(&action.Record, action.HashOrID)
}
func (action *TransactionShowAction) loadResource() {
action.Resource = resource.PopulateTransaction(action.Record)
}
// JSON is a method for actions.JSON
func (action *TransactionShowAction) JSON() {
action.Do(
action.EnsureHistoryFreshness,
action.loadParams,
action.checkAllowed,
action.loadRecord,
action.loadResource,
func() { hal.Render(action.W, action.Resource) },
)
}
func (action *TransactionShowAction) checkAllowed() {
action.IsAllowed("")
}