summaryrefslogtreecommitdiff
path: root/model/recipe.go
blob: 2b3953fa5ec82aed85ece2fdac981656080da79e (plain)
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
package model

type Recipe struct {
	Id       string  // FIXME has to be uint
	Title    string
	Portions string  // FIXME has to be uint
	URL      string
	Notes    string
}

func (d *Recipe) FromDB() error {
	query, err := GetSql(`recipe-select`)
	if err != nil {
		return err
	}

	return db.QueryRow(query, d.Id).Scan(
		&d.Id,
		&d.Title,
		&d.Portions,
		&d.URL,
		&d.Notes,
	)
}

func (d *Recipe) ToDB() error {
	query, err := GetSql(`recipe-update`)
	if err != nil {
		return err
	}

	_, err = db.Exec(query, d.Title, d.Portions, d.URL, d.Notes, d.Id)

	return err
}