-
Notifications
You must be signed in to change notification settings - Fork 22
/
volume_discount_program.go
84 lines (70 loc) · 3.29 KB
/
volume_discount_program.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
// Copyright (C) 2023 Gobalsky Labs Limited
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package sqlstore
import (
"context"
"time"
"code.vegaprotocol.io/vega/datanode/entities"
"code.vegaprotocol.io/vega/datanode/metrics"
"github.com/georgysavva/scany/pgxscan"
)
type VolumeDiscountPrograms struct {
*ConnectionSource
}
func NewVolumeDiscountPrograms(connectionSource *ConnectionSource) *VolumeDiscountPrograms {
return &VolumeDiscountPrograms{
ConnectionSource: connectionSource,
}
}
func (rp *VolumeDiscountPrograms) AddVolumeDiscountProgram(ctx context.Context, program *entities.VolumeDiscountProgram) error {
defer metrics.StartSQLQuery("VolumeDiscountPrograms", "AddVolumeDiscountProgram")()
return rp.insertVolumeDiscountProgram(ctx, program)
}
func (rp *VolumeDiscountPrograms) insertVolumeDiscountProgram(ctx context.Context, program *entities.VolumeDiscountProgram) error {
_, err := rp.Connection.Exec(ctx,
`INSERT INTO volume_discount_programs (id, version, benefit_tiers, end_of_program_timestamp, window_length, vega_time, seq_num)
VALUES ($1, $2, $3, $4, $5, $6, $7)`,
program.ID,
program.Version,
program.BenefitTiers,
program.EndOfProgramTimestamp,
program.WindowLength,
program.VegaTime,
program.SeqNum,
)
return err
}
func (rp *VolumeDiscountPrograms) UpdateVolumeDiscountProgram(ctx context.Context, program *entities.VolumeDiscountProgram) error {
defer metrics.StartSQLQuery("VolumeDiscountPrograms", "UpdateVolumeDiscountProgram")()
return rp.insertVolumeDiscountProgram(ctx, program)
}
func (rp *VolumeDiscountPrograms) EndVolumeDiscountProgram(ctx context.Context, version uint64, endedAt time.Time, vegaTime time.Time, seqNum uint64) error {
defer metrics.StartSQLQuery("VolumeDiscountPrograms", "EndVolumeDiscountProgram")()
_, err := rp.Connection.Exec(ctx,
`INSERT INTO volume_discount_programs (id, version, benefit_tiers, end_of_program_timestamp, window_length, ended_at, vega_time, seq_num)
SELECT id, $1, benefit_tiers, end_of_program_timestamp, window_length, $2, $3, $4
FROM current_volume_discount_program`, version, endedAt, vegaTime, seqNum,
)
return err
}
func (rp *VolumeDiscountPrograms) GetCurrentVolumeDiscountProgram(ctx context.Context) (entities.VolumeDiscountProgram, error) {
defer metrics.StartSQLQuery("VolumeDiscountPrograms", "GetCurrentVolumeDiscountProgram")()
var programProgram entities.VolumeDiscountProgram
query := `SELECT id, version, benefit_tiers, end_of_program_timestamp, window_length, vega_time, ended_at, seq_num FROM current_volume_discount_program`
if err := pgxscan.Get(ctx, rp.Connection, &programProgram, query); err != nil {
return programProgram, err
}
return programProgram, nil
}