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