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
/
details.go
93 lines (79 loc) · 2.63 KB
/
details.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
package cart
import (
"net/http"
"strconv"
"github.com/factly/data-portal-server/model"
"github.com/factly/data-portal-server/util"
"github.com/factly/x/errorx"
"github.com/factly/x/loggerx"
"github.com/factly/x/renderx"
"github.com/go-chi/chi"
)
// userDetails - Get cart by id
// @Summary Show a cart by id
// @Description Get cart by ID
// @Tags Cart
// @ID get-cart-by-id
// @Produce json
// @Param X-User header string true "User ID"
// @Param X-Organisation header string true "Organisation ID"
// @Param cartitem_id path string true "Cart Item ID"
// @Success 200 {object} model.CartItem
// @Failure 400 {array} string
// @Router /cartitems/{cartitem_id} [get]
func userDetails(w http.ResponseWriter, r *http.Request) {
uID, err := util.GetUser(r.Context())
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InvalidID()))
return
}
cartitemID := chi.URLParam(r, "cartitem_id")
id, err := strconv.Atoi(cartitemID)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InvalidID()))
return
}
result := &model.CartItem{}
result.ID = uint(id)
err = model.DB.Model(&model.CartItem{}).Where(&model.CartItem{
UserID: uint(uID),
}).Preload("Product").Preload("Membership").Preload("Membership.Plan").Preload("Product.Currency").Preload("Product.FeaturedMedium").Preload("Product.Tags").Preload("Product.Datasets").First(&result).Error
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.RecordNotFound()))
return
}
renderx.JSON(w, http.StatusOK, result)
}
// adminDetails - Get cart by id
// @Summary Show a cart by id
// @Description Get cart by ID
// @Tags Cart
// @ID get-cart-by-id
// @Produce json
// @Param X-User header string true "User ID"
// @Param X-Organisation header string true "Organisation ID"
// @Param cartitem_id path string true "Cart Item ID"
// @Success 200 {object} model.CartItem
// @Failure 400 {array} string
// @Router /cartitems/{cartitem_id} [get]
func adminDetails(w http.ResponseWriter, r *http.Request) {
cartitemID := chi.URLParam(r, "cartitem_id")
id, err := strconv.Atoi(cartitemID)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InvalidID()))
return
}
result := &model.CartItem{}
result.ID = uint(id)
err = model.DB.Model(&model.CartItem{}).Preload("Product").Preload("Membership").Preload("Membership.Plan").Preload("Product.Currency").Preload("Product.FeaturedMedium").Preload("Product.Tags").Preload("Product.Datasets").First(&result).Error
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.RecordNotFound()))
return
}
renderx.JSON(w, http.StatusOK, result)
}