-
Notifications
You must be signed in to change notification settings - Fork 0
/
brewing.go
493 lines (428 loc) · 13.5 KB
/
brewing.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
package buna
import (
"context"
"errors"
"fmt"
"os"
"strings"
"time"
"github.com/jedib0t/go-pretty/table"
"golang.org/x/crypto/ssh/terminal"
)
type brewing struct {
date string
coffeeName string
coffeeRoaster string
brewingMethodName string
roastDate string
grinderName string
grindSetting int
totalBrewingTimeSec int
coffeeGrams float64
waterGrams float64
v60FilterType string
rating int
recommendedGrindSettingAdjustment string
recommendedCoffeeWeightAdjustmentGrams float64
notes string
}
func addBrewing(ctx context.Context, db DB) error {
fmt.Println("Adding new coffee brewing (Enter # to quit):")
brewingDate, quit := getDateInput(quitStr, false, "Enter brewing ?: ", []date{
{year: time.Now().Year(), month: int(time.Now().Month()), day: time.Now().Day()},
{year: time.Now().Year(), month: int(time.Now().Month()), day: time.Now().Day() - 1},
})
if quit {
fmt.Println(quitMsg)
return nil
}
coffeeName, quit, err := getCoffeeNameWithSuggestions(ctx, db, quitStr, false)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee name: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
coffeeRoaster, quit, err := getCoffeeRoasterWithSuggestions(ctx, db, quitStr, coffeeName)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee roaster: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
brewingMethodName, quit, err := getBrewingMethodNameWithSuggestions(ctx, db, quitStr, false)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get brewing method name: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
roastDate, quit, err := getCoffeeRoastDateWithSuggestions(ctx, db, quitStr, coffeeName)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee roast date: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
grinderName, quit, err := getCoffeeGrinderNameWithSuggestions(ctx, db, quitStr, false)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee grinder name: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
grindSetting, quit := getCoffeeGrindSettingWithSuggestions(quitStr)
if quit {
fmt.Println(quitMsg)
return nil
}
totalBrewingTimeSec, quit := getTotalCoffeeBrewingTimeSecWithSuggestions(quitStr)
if quit {
fmt.Println(quitMsg)
return nil
}
coffeeGrams, quit, err := getCoffeeWeightWithSuggestions(ctx, db, quitStr, brewingMethodName, grinderName, false)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee weight: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
waterGrams, quit, err := getWaterWeightWithSuggestions(ctx, db, quitStr, brewingMethodName, grinderName, false)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get water weight: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
v60FilterType, quit := getV60FilterTypeWithSuggestions(quitStr)
if quit {
fmt.Println(quitMsg)
return nil
}
rating, quit := getCoffeeRatingWithSuggestions(quitStr)
if quit {
fmt.Println(quitMsg)
return nil
}
recommendedGrindSettingAdjustment, quit := getRecommendedGrindSettingAdjustmentWithSuggestions(quitStr)
if quit {
fmt.Println(quitMsg)
return nil
}
recommendedCoffeeWeightAdjustmentGrams, quit := getRecommendedCoffeeWeightAdjustmentGramsWithSuggestions(quitStr)
if quit {
fmt.Println(quitMsg)
return nil
}
notes, quit := getNotes(quitStr, true, "brewing")
if quit {
fmt.Println(quitMsg)
return nil
}
brewing := brewing{
date: createDateString(brewingDate),
coffeeName: coffeeName,
coffeeRoaster: coffeeRoaster,
brewingMethodName: brewingMethodName,
roastDate: createDateString(roastDate),
grinderName: grinderName,
grindSetting: grindSetting,
totalBrewingTimeSec: totalBrewingTimeSec,
coffeeGrams: coffeeGrams,
waterGrams: waterGrams,
v60FilterType: v60FilterType,
rating: rating,
recommendedGrindSettingAdjustment: recommendedGrindSettingAdjustment,
recommendedCoffeeWeightAdjustmentGrams: recommendedCoffeeWeightAdjustmentGrams,
notes: notes,
}
if err := db.insertBrewing(ctx, brewing); err != nil {
return fmt.Errorf("buna: brewing: failed to insert coffee brewing: %w", err)
}
fmt.Println("Added coffee brewing successfully")
return nil
}
func retrieveBrewing(ctx context.Context, db DB) error {
options := map[int]string{
0: "Retrieve brewing suggestions",
1: "Retrieve brewing ordered by last added",
2: "Retrieve brewing ordered by rating",
}
fmt.Println("Retrieving brewing (Enter # to quit):")
if err := displayIntOptions(options); err != nil {
return fmt.Errorf("buna: brewing: failed to display int options: %w", err)
}
selection, quit, err := getIntSelection(options, quitStr)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get int selection: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
if err := runRetrieveBrewingSelection(ctx, selection, db); err != nil {
return fmt.Errorf("buna: brewing: failed to run the retrieve selection: %w", err)
}
return nil
}
func runRetrieveBrewingSelection(ctx context.Context, selection int, db DB) error {
switch selection {
case 0:
if err := displayBrewingSuggestions(ctx, db); err != nil {
return fmt.Errorf("buna: brewing: failed to display brewing suggestions: %w", err)
}
case 1:
if err := displayBrewingsByLastAdded(ctx, db); err != nil {
return fmt.Errorf("buna: brewing: failed to display brewings by last added: %w", err)
}
case 2:
if err := displayBrewingsByRating(ctx, db); err != nil {
return fmt.Errorf("buna: brewing: failed to display brewings by rating: %w", err)
}
default:
return errors.New("buna: brewing: invalid retrieve selection")
}
return nil
}
func displayBrewingsBy(ctx context.Context, db DB, orderByName string) error {
const defaultDisplayAmount = 5
const maxDisplayAmount = 30
const maxNoteFieldWidth = 50
fmt.Print("Enter a limit for the number of brewings to display: ")
limit, quit := validateIntInput(quitStr, true, 1, maxDisplayAmount, []int{})
if quit {
fmt.Println(quitMsg)
return nil
}
if limit == 0 {
limit = defaultDisplayAmount
}
brewings, err := db.getBrewingsOrderByDesc(ctx, limit, orderByName)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get brewings order by desc: %w", err)
}
t := table.NewWriter()
t.AppendHeader(table.Row{
"Date",
"Coffee\nName",
"Method",
"Grind\nSetting",
"Time\n(s)",
"Coffee\nWeight\n(g)",
"Water\nWeight\n(g)",
"Rating",
"Recommended\nGrind\nAdjustment",
"Recommended\nCoffee\nAdjustment\n(g)",
"V60\nFilter\nType",
"Notes",
"Grinder",
"Coffee\nRoaster",
"Roast Date",
})
for _, brewing := range brewings {
coffeeName := strings.ReplaceAll(brewing.coffeeName, " ", "\n")
brewingMethodName := strings.ReplaceAll(brewing.brewingMethodName, " ", "\n")
notes := splitTextIntoField(brewing.notes, maxNoteFieldWidth)
grinderName := strings.ReplaceAll(brewing.grinderName, " ", "\n")
grinderName = strings.ReplaceAll(grinderName, "(", "\n(")
coffeeRoaster := strings.ReplaceAll(brewing.coffeeRoaster, " ", "\n")
row := table.Row{
brewing.date,
coffeeName,
brewingMethodName,
brewing.grindSetting,
brewing.totalBrewingTimeSec,
brewing.coffeeGrams,
brewing.waterGrams,
brewing.rating,
brewing.recommendedGrindSettingAdjustment,
brewing.recommendedCoffeeWeightAdjustmentGrams,
brewing.v60FilterType,
notes,
grinderName,
coffeeRoaster,
brewing.roastDate,
}
t.AppendRow(row)
t.AppendSeparator()
}
terminalWidth, _, err := terminal.GetSize(int(os.Stdin.Fd()))
if err != nil {
return fmt.Errorf("buna: brewing: failed to get terminal width: %w", err)
}
t.SetAllowedRowLength(terminalWidth)
t.SetOutputMirror(os.Stdout)
t.Render()
return nil
}
func displayBrewingsByLastAdded(ctx context.Context, db DB) error {
fmt.Println("Displaying brewings by last added (Enter # to quit):")
if err := displayBrewingsBy(ctx, db, "id"); err != nil {
return fmt.Errorf("buna: brewing: failed to get brewings by last added: %w", err)
}
return nil
}
func displayBrewingsByRating(ctx context.Context, db DB) error {
fmt.Println("Displaying brewings by rating (Enter # to quit):")
if err := displayBrewingsBy(ctx, db, "rating"); err != nil {
return fmt.Errorf("buna: brewing: failed to get brewings by rating: %w", err)
}
return nil
}
func displayBrewingSuggestions(ctx context.Context, db DB) error {
const defaultDisplayAmount = 6
const maxDisplayAmount = 20
const maxNoteFieldWidth = 50
fmt.Println("Displaying brewing suggestions (Enter # to quit):")
fmt.Print("Enter a limit for the number of suggestions to display: ")
limit, quit := validateIntInput(quitStr, true, 1, maxDisplayAmount, []int{})
if quit {
fmt.Println(quitMsg)
return nil
}
if limit == 0 {
limit = defaultDisplayAmount
}
brewingMethodName, quit, err := getBrewingMethodNameWithSuggestions(ctx, db, quitStr, false)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get brewing method name: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
var v60FilterType string
if brewingMethodName == "v60" || brewingMethodName == "V60" {
v60FilterType, quit = getV60FilterTypeWithSuggestions(quitStr)
if quit {
fmt.Println(quitMsg)
return nil
}
}
fmt.Print("Show optional options (true or false): ")
showOptionalOptions, quit := validateBoolInput(quitStr, true)
if quit {
fmt.Println(quitMsg)
return nil
}
var (
coffeeName, coffeeRoaster, grinderName string
coffeeGrams, waterGrams float64
)
if showOptionalOptions {
coffeeName, quit, err = getCoffeeNameWithSuggestions(ctx, db, quitStr, true)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee name: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
if coffeeName != "" {
coffeeRoaster, quit, err = getCoffeeRoasterWithSuggestions(ctx, db, quitStr, coffeeName)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee roaster: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
}
grinderName, quit, err = getCoffeeGrinderNameWithSuggestions(ctx, db, quitStr, true)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee grinder name: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
coffeeGrams, quit, err = getCoffeeWeightWithSuggestions(ctx, db, quitStr, brewingMethodName, grinderName, true)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get coffee weight: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
waterGrams, quit, err = getWaterWeightWithSuggestions(ctx, db, quitStr, brewingMethodName, grinderName, true)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get water weight: %w", err)
}
if quit {
fmt.Println(quitMsg)
return nil
}
}
brewingFilter := brewing{
date: "",
coffeeName: coffeeName,
coffeeRoaster: coffeeRoaster,
brewingMethodName: brewingMethodName,
roastDate: "",
grinderName: grinderName,
grindSetting: 0,
totalBrewingTimeSec: 0,
coffeeGrams: coffeeGrams,
waterGrams: waterGrams,
v60FilterType: v60FilterType,
rating: 0,
recommendedGrindSettingAdjustment: "",
recommendedCoffeeWeightAdjustmentGrams: 0,
notes: "",
}
suggestions, err := db.getBrewingSuggestions(ctx, limit, brewingFilter)
if err != nil {
return fmt.Errorf("buna: brewing: failed to get brewing suggestions: %w", err)
}
t := table.NewWriter()
t.AppendHeader(table.Row{
"Grind\nSetting",
"Time\n(s)",
"Coffee\nWeight\n(g)",
"Water\nWeight\n(g)",
"Recommended\nGrind\nAdjustment",
"Recommended\nCoffee\nAdjustment\n(g)",
"Notes",
"Rating",
"V60\nFilter\nType",
"Coffee\nName",
"Date",
"Grinder",
})
for _, suggestion := range suggestions {
notes := splitTextIntoField(suggestion.notes, maxNoteFieldWidth)
grinder := strings.ReplaceAll(suggestion.grinderName, "(", "\n(")
row := table.Row{
suggestion.grindSetting,
suggestion.totalBrewingTimeSec,
suggestion.coffeeGrams,
suggestion.waterGrams,
suggestion.recommendedGrindSettingAdjustment,
suggestion.recommendedCoffeeWeightAdjustmentGrams,
notes,
suggestion.rating,
suggestion.v60FilterType,
suggestion.coffeeName,
suggestion.date,
grinder,
}
t.AppendRow(row)
t.AppendSeparator()
}
terminalWidth, _, err := terminal.GetSize(int(os.Stdin.Fd()))
if err != nil {
return fmt.Errorf("buna: brewing: failed to get terminal width: %w", err)
}
t.SetAllowedRowLength(terminalWidth)
t.SetOutputMirror(os.Stdout)
t.Render()
return nil
}