summaryrefslogtreecommitdiff
path: root/controller
diff options
context:
space:
mode:
Diffstat (limited to 'controller')
-rw-r--r--controller/recipe.go48
1 files changed, 6 insertions, 42 deletions
diff --git a/controller/recipe.go b/controller/recipe.go
index da58d35..9427b0d 100644
--- a/controller/recipe.go
+++ b/controller/recipe.go
@@ -18,20 +18,8 @@ func RecipeCreate(w http.ResponseWriter, r *http.Request) {
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()
+ var obj model.Object = &recipe
+ err := model.SafeCrud(obj.Create)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
@@ -61,20 +49,8 @@ func RecipeUpdate(w http.ResponseWriter, r *http.Request) {
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()
+ var obj model.Object = &recipe
+ err = model.SafeCrud(obj.Update)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
@@ -87,20 +63,8 @@ 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()
+ var obj model.Object = &recipe
+ err := model.SafeCrud(obj.Delete)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return