summaryrefslogtreecommitdiff
path: root/view/recipe.go
blob: 0578107aa6570c6eabfe63566ed694e69207bc4f (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
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
package view

import (
	"net/http"

	"xengineering.eu/ceres/model"

	"github.com/gorilla/mux"
)

func RecipeRead(db *model.DB) func(http.ResponseWriter, *http.Request) {
	return func(w http.ResponseWriter, r *http.Request) {
		recipe := model.Recipe{}
		recipe.Id = mux.Vars(r)[`id`]

		var obj model.Object = &recipe
		err := db.Transaction(obj.Read)
		if err != nil {
			http.Error(w, err.Error(), http.StatusInternalServerError)
			return
		}

		template := "recipe"
		view, ok := r.URL.Query()["view"]
		if ok {
			if len(view) > 1 {
				http.Error(w, "More than one 'view' parameter given in URL", http.StatusBadRequest)
				return
			}
			template = view[0]
		}

		is_valid := false
		valid_templates := []string{
			"recipe",
			"recipe-edit",
			"recipe-confirm-deletion",
		}
		for _, v := range valid_templates {
			if template == v {
				is_valid = true
			}
		}
		if !is_valid {
			http.Error(w, "Unsupported view: "+template, http.StatusBadRequest)
			return
		}

		err = html.ExecuteTemplate(w, template, recipe)
		if err != nil {
			http.Error(w, err.Error(), http.StatusInternalServerError)
			return
		}
	}
}

func RecipeCreate(w http.ResponseWriter, r *http.Request) {
	recipe := model.Recipe{}

	err := html.ExecuteTemplate(w, "recipe-edit", recipe)
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}
}