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
|
package model
import (
"database/sql"
"errors"
"fmt"
)
type Ingredient struct {
Id string `json:"id"`
Index string `json:"index"`
Amount string `json:"amount"`
Unit string `json:"unit"`
Type string `json:"type"`
Step string `json:"step"`
}
func (i *Ingredient) Create(tx *sql.Tx) error {
if i.Id != "" {
return fmt.Errorf("Cannot create ingredient if ID is given")
}
cmd := `
INSERT INTO ingredients
('index', amount, unit, 'type', step)
VALUES
(?, ?, ?, ?, ?)
`
result, err := tx.Exec(cmd, i.Index, i.Amount, i.Unit, i.Type, i.Step)
if err != nil {
return err
}
id, err := result.LastInsertId()
if err != nil {
return err
}
i.Id = fmt.Sprint(id)
return nil
}
func (i *Ingredient) Read(tx *sql.Tx) error {
cmd := `
SELECT
"index", amount, unit, "type", step
FROM
ingredients
WHERE
id = ?
`
rows, err := tx.Query(cmd, i.Id)
if err != nil {
return err
}
defer rows.Close()
if !rows.Next() {
return sql.ErrNoRows
}
err = rows.Scan(&i.Index, &i.Amount, &i.Unit, &i.Type, &i.Step)
if err != nil {
return err
}
return nil
}
func (i *Ingredient) Update(tx *sql.Tx) error {
cmd := `
UPDATE
ingredients
SET
index = ?,
amount = ?,
unit = ?,
type = ?,
step = ?
WHERE
id = ?`
res, err := tx.Exec(cmd, i.Index, i.Amount, i.Unit, i.Type, i.Step, i.Id)
if err != nil {
return err
}
affected, err := res.RowsAffected()
if err != nil {
return err
}
if affected != 1 {
return fmt.Errorf("Ingredient update affected %d rows instead of 1", affected)
}
return nil
}
func (i *Ingredient) Delete(tx *sql.Tx) error {
cmd := `
DELETE FROM
ingredients
WHERE
id = ?
`
result, err := tx.Exec(cmd, i.Id)
if err != nil {
return err
}
rows, err := result.RowsAffected()
if rows != 1 {
return errors.New("Ingredient deletion did not affect exactly one row")
}
return nil
}
|