This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
delete.go
101 lines (82 loc) · 2.39 KB
/
delete.go
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
package product
import (
"errors"
"net/http"
"strconv"
"github.com/factly/mande-server/model"
"github.com/factly/x/errorx"
"github.com/factly/x/loggerx"
"github.com/factly/x/meilisearchx"
"github.com/factly/x/renderx"
"github.com/go-chi/chi"
)
// delete - Delete product by id
// @Summary Delete a product
// @Description Delete product by ID
// @Tags Product
// @ID delete-product-by-id
// @Consume json
// @Param X-User header string true "User ID"
// @Param X-Organisation header string true "Organisation ID"
// @Param product_id path string true "Product ID"
// @Success 200
// @Failure 400 {array} string
// @Router /products/{product_id} [delete]
func delete(w http.ResponseWriter, r *http.Request) {
productID := chi.URLParam(r, "product_id")
id, err := strconv.Atoi(productID)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InvalidID()))
return
}
result := &model.Product{}
result.ID = uint(id)
// check record exists or not
err = model.DB.Preload("Tags").Preload("Datasets").First(&result).Error
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.RecordNotFound()))
return
}
var totAssociated int64
product := new(model.Product)
product.ID = uint(id)
// check if product is associated with catalog
totAssociated = model.DB.Model(product).Association("Catalogs").Count()
if totAssociated != 0 {
loggerx.Error(errors.New("product is associated with catalog"))
errorx.Render(w, errorx.Parser(errorx.CannotSaveChanges()))
return
}
// check if product is associated with order
totAssociated = model.DB.Model(product).Association("Orders").Count()
if totAssociated != 0 {
loggerx.Error(errors.New("product is associated with order"))
errorx.Render(w, errorx.Parser(errorx.CannotSaveChanges()))
return
}
tx := model.DB.Begin()
if len(result.Tags) > 0 {
_ = tx.Model(&result).Association("Tags").Delete(result.Tags)
}
if len(result.Datasets) > 0 {
_ = tx.Model(&result).Association("Datasets").Delete(result.Datasets)
}
err = tx.Delete(&result).Error
if err != nil {
tx.Rollback()
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.DBError()))
return
}
err = meilisearchx.DeleteDocument("mande", result.ID, "product")
if err != nil {
tx.Rollback()
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InternalServerError()))
return
}
tx.Commit()
renderx.JSON(w, http.StatusOK, nil)
}