-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcost.sql.go
260 lines (241 loc) · 5.51 KB
/
cost.sql.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
// Code generated by sqlc. DO NOT EDIT.
// source: cost.sql
package gensql
import (
"context"
"github.com/jackc/pgx/v5/pgtype"
"github.com/nais/api/internal/slug"
)
const dailyCostForApp = `-- name: DailyCostForApp :many
SELECT
id, environment, team_slug, app, cost_type, date, daily_cost
FROM
cost
WHERE
date >= $1::date
AND date <= $2::date
AND environment = $3::text
AND team_slug = $4::slug
AND app = $5
ORDER BY
date, cost_type ASC
`
type DailyCostForAppParams struct {
FromDate pgtype.Date
ToDate pgtype.Date
Environment string
TeamSlug slug.Slug
App string
}
// DailyCostForApp will fetch the daily cost for a specific team app in a specific environment, across all cost types
// in a date range.
func (q *Queries) DailyCostForApp(ctx context.Context, arg DailyCostForAppParams) ([]*Cost, error) {
rows, err := q.db.Query(ctx, dailyCostForApp,
arg.FromDate,
arg.ToDate,
arg.Environment,
arg.TeamSlug,
arg.App,
)
if err != nil {
return nil, err
}
defer rows.Close()
items := []*Cost{}
for rows.Next() {
var i Cost
if err := rows.Scan(
&i.ID,
&i.Environment,
&i.TeamSlug,
&i.App,
&i.CostType,
&i.Date,
&i.DailyCost,
); err != nil {
return nil, err
}
items = append(items, &i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const dailyCostForTeam = `-- name: DailyCostForTeam :many
SELECT
id, environment, team_slug, app, cost_type, date, daily_cost
FROM
cost
WHERE
date >= $1::date
AND date <= $2::date
AND team_slug = $3::slug
ORDER BY
date, environment, app, cost_type ASC
`
type DailyCostForTeamParams struct {
FromDate pgtype.Date
ToDate pgtype.Date
TeamSlug slug.Slug
}
// DailyCostForTeam will fetch the daily cost for a specific team across all apps and envs in a date range.
func (q *Queries) DailyCostForTeam(ctx context.Context, arg DailyCostForTeamParams) ([]*Cost, error) {
rows, err := q.db.Query(ctx, dailyCostForTeam, arg.FromDate, arg.ToDate, arg.TeamSlug)
if err != nil {
return nil, err
}
defer rows.Close()
items := []*Cost{}
for rows.Next() {
var i Cost
if err := rows.Scan(
&i.ID,
&i.Environment,
&i.TeamSlug,
&i.App,
&i.CostType,
&i.Date,
&i.DailyCost,
); err != nil {
return nil, err
}
items = append(items, &i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const dailyEnvCostForTeam = `-- name: DailyEnvCostForTeam :many
SELECT team_slug, app, environment, date, daily_cost
FROM cost_daily_team
WHERE
date >= $1::date
AND date <= $2::date
AND team_slug = $3::slug
AND environment = $4
ORDER BY
date, app ASC
`
type DailyEnvCostForTeamParams struct {
FromDate pgtype.Date
ToDate pgtype.Date
TeamSlug slug.Slug
Environment *string
}
// DailyEnvCostForTeam will fetch the daily cost for a specific team and environment across all apps in a date range.
func (q *Queries) DailyEnvCostForTeam(ctx context.Context, arg DailyEnvCostForTeamParams) ([]*CostDailyTeam, error) {
rows, err := q.db.Query(ctx, dailyEnvCostForTeam,
arg.FromDate,
arg.ToDate,
arg.TeamSlug,
arg.Environment,
)
if err != nil {
return nil, err
}
defer rows.Close()
items := []*CostDailyTeam{}
for rows.Next() {
var i CostDailyTeam
if err := rows.Scan(
&i.TeamSlug,
&i.App,
&i.Environment,
&i.Date,
&i.DailyCost,
); err != nil {
return nil, err
}
items = append(items, &i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const lastCostDate = `-- name: LastCostDate :one
SELECT
MAX(date)::date AS date
FROM
cost
`
// LastCostDate will return the last date that has a cost.
func (q *Queries) LastCostDate(ctx context.Context) (pgtype.Date, error) {
row := q.db.QueryRow(ctx, lastCostDate)
var date pgtype.Date
err := row.Scan(&date)
return date, err
}
const monthlyCostForApp = `-- name: MonthlyCostForApp :many
SELECT team_slug, app, environment, month, last_recorded_date, daily_cost
FROM cost_monthly_app
WHERE team_slug = $1::slug
AND app = $2
AND environment = $3::text
ORDER BY month DESC
LIMIT 12
`
type MonthlyCostForAppParams struct {
TeamSlug slug.Slug
App string
Environment string
}
func (q *Queries) MonthlyCostForApp(ctx context.Context, arg MonthlyCostForAppParams) ([]*CostMonthlyApp, error) {
rows, err := q.db.Query(ctx, monthlyCostForApp, arg.TeamSlug, arg.App, arg.Environment)
if err != nil {
return nil, err
}
defer rows.Close()
items := []*CostMonthlyApp{}
for rows.Next() {
var i CostMonthlyApp
if err := rows.Scan(
&i.TeamSlug,
&i.App,
&i.Environment,
&i.Month,
&i.LastRecordedDate,
&i.DailyCost,
); err != nil {
return nil, err
}
items = append(items, &i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const monthlyCostForTeam = `-- name: MonthlyCostForTeam :many
SELECT team_slug, month, last_recorded_date, daily_cost
FROM cost_monthly_team
WHERE team_slug = $1::slug
ORDER BY month DESC
LIMIT 12
`
func (q *Queries) MonthlyCostForTeam(ctx context.Context, teamSlug slug.Slug) ([]*CostMonthlyTeam, error) {
rows, err := q.db.Query(ctx, monthlyCostForTeam, teamSlug)
if err != nil {
return nil, err
}
defer rows.Close()
items := []*CostMonthlyTeam{}
for rows.Next() {
var i CostMonthlyTeam
if err := rows.Scan(
&i.TeamSlug,
&i.Month,
&i.LastRecordedDate,
&i.DailyCost,
); err != nil {
return nil, err
}
items = append(items, &i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}