summaryrefslogtreecommitdiff
path: root/controller/recipe.go
blob: da58d35f8a6b62b9e6bb8b97b739b82581580ec9 (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
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
package controller

import (
	"encoding/json"
	"fmt"
	"io"
	"net/http"
	"time"

	"xengineering.eu/ceres/model"

	"github.com/gorilla/mux"
)

func RecipeCreate(w http.ResponseWriter, r *http.Request) {
	recipe := model.Recipe{}
	recipe.Title = "recipe without title"
	recipe.LastChanged = fmt.Sprint(time.Now().Unix())
	recipe.Created = recipe.LastChanged

	tx, err := model.NewTx()
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	err = recipe.Create(tx)
	if err != nil {
		model.Rollback(tx)
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	err = tx.Commit()
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	http.Redirect(w, r, "/recipe/"+recipe.Id+"?view=recipe-edit", http.StatusSeeOther)
}

func RecipeUpdate(w http.ResponseWriter, r *http.Request) {
	buf, err := io.ReadAll(r.Body)
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	recipe := model.Recipe{}
	err = json.Unmarshal(buf, &recipe)
	if err != nil {
		http.Error(w, err.Error(), http.StatusBadRequest)
		return
	}

	if recipe.Id != mux.Vars(r)[`id`] {
		http.Error(w, "IDs in URL and JSON do not match", http.StatusBadRequest)
		return
	}

	recipe.LastChanged = fmt.Sprint(time.Now().Unix())

	tx, err := model.NewTx()
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	err = recipe.Update(tx)
	if err != nil {
		model.Rollback(tx)
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	err = tx.Commit()
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther)
}

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

	tx, err := model.NewTx()
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	err = recipe.Delete(tx)
	if err != nil {
		model.Rollback(tx)
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	err = tx.Commit()
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	http.Redirect(w, r, "/recipes", http.StatusSeeOther)
}