summaryrefslogtreecommitdiff
path: root/model/recipe_step.go
blob: 980d312cf3c9f7fa5c732243c85c94bb4da3b46e (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
package model

import (
	"log"
)

type RecipeStep struct {
	Id       string  // FIXME has to be uint
	RecipeId string  // FIXME has to be uint
	Index    string  // FIXME has to be uint
	Text     string
}

func (d *RecipeStep) String() string {
	return d.Text
}

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

	err = db.QueryRow(query, d.Id).Scan(
		&d.Id,
		&d.RecipeId,
		&d.Index,
		&d.Text,
	)

	log.Printf("d.Text: %s %s %s %s\n", d.Id, d.RecipeId, d.Index, d.Text)
	return err
}