-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathupdate.go
123 lines (112 loc) · 3.08 KB
/
update.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package space
import (
"encoding/json"
"errors"
"net/http"
"strconv"
"github.com/factly/kavach-server/model"
"github.com/factly/kavach-server/util"
"github.com/factly/x/errorx"
"github.com/factly/x/loggerx"
"github.com/factly/x/renderx"
"github.com/factly/x/validationx"
"github.com/go-chi/chi"
)
// create - Create organisation application
// @Summary Create organisation application
// @Description Create organisation application
// @Tags OrganisationApplications
// @ID add-organisation-application
// @Consume json
// @Produce json
// @Param X-User header string true "User ID"
// @Param organisation_id path string true "Organisation ID"
// @Param Application body model.SpaceRole true "Application Object"
// @Success 201 {object} model.Application
// @Failure 400 {array} string
// @Router /organisations/{organisation_id}/applications/{application_id}/spaces/{space_id} [post]
func update(w http.ResponseWriter, r *http.Request) {
uID, err := strconv.Atoi(r.Header.Get("X-User"))
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InvalidID()))
return
}
organisationID := chi.URLParam(r, "organisation_id")
oID, err := strconv.Atoi(organisationID)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InvalidID()))
return
}
spaceID := chi.URLParam(r, "space_id")
sID, err := strconv.Atoi(spaceID)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InvalidID()))
return
}
space := &model.Space{}
space.ID = uint(sID)
err = json.NewDecoder(r.Body).Decode(space)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.DecodeError()))
return
}
space.UpdatedByID = uint(uID)
validationError := validationx.Check(space)
if validationError != nil {
loggerx.Error(errors.New("validation error"))
errorx.Render(w, validationError)
return
}
// check if the user is owner or not
err = util.CheckOwner(uint(uID), uint(oID))
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.Unauthorized()))
return
}
tx := model.DB.Begin()
// Check if record exist or not
var count int64
err = tx.Model(&model.Space{}).Where(&model.Space{
Base: model.Base{
ID: space.ID,
},
}).Count(&count).Error
if err != nil {
tx.Rollback()
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.RecordNotFound()))
return
}
if count > 1 {
tx.Rollback()
loggerx.Error(errors.New("space already exists"))
errorx.Render(w, errorx.Parser(errorx.RecordNotFound()))
return
}
updateMap := map[string]interface{}{
"name": space.Name,
"slug": space.Slug,
"description": space.Description,
"meta_fields": space.MetaFields,
}
if space.MediumID == nil {
updateMap["medium_id"] = nil
} else {
updateMap["medium_id"] = *space.MediumID
}
updatedSpace := new(model.Space)
err = tx.Model(&model.Space{}).Where("id = ?", space.ID).Updates(updateMap).First(updatedSpace).Error
if err != nil {
tx.Rollback()
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.DBError()))
return
}
tx.Commit()
renderx.JSON(w, http.StatusOK, updatedSpace)
}