-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcreate.go
155 lines (141 loc) · 3.98 KB
/
create.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package space
import (
"encoding/json"
"errors"
"fmt"
"net/http"
"strconv"
"github.com/factly/kavach-server/model"
"github.com/factly/kavach-server/util"
keto "github.com/factly/kavach-server/util/keto/relationTuple"
"github.com/factly/kavach-server/util/user"
"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.Application true "Application Object"
// @Success 201 {object} model.Application
// @Failure 400 {array} string
// @Router /organisations/{organisation_id}/applications/{application_id}/spaces [post]
func create(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
}
applicationID := chi.URLParam(r, "application_id")
aID, err := strconv.ParseUint(applicationID, 10, 32)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InvalidID()))
return
}
// Check if user is owner of organisation
err = util.CheckOwner(uint(uID), uint(oID))
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.Unauthorized()))
return
}
// VERIFY WHETHER THE USER IS PART OF Application OR NOT
isAuthorised, err := user.IsUserAuthorised(
appNamespace,
fmt.Sprintf("org:%d:app:%d", oID, aID),
fmt.Sprintf("%d", uID),
)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InternalServerError()))
return
}
if !isAuthorised {
loggerx.Error(errors.New("user is not part of the application"))
errorx.Render(w, errorx.Parser(errorx.Unauthorized()))
return
}
appID := uint(aID)
space := &model.Space{}
err = json.NewDecoder(r.Body).Decode(&space)
if err != nil {
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.DecodeError()))
return
}
space.CreatedByID = uint(uID)
space.ApplicationID = appID
space.OrganisationID = uint(oID)
validationError := validationx.Check(space)
if validationError != nil {
loggerx.Error(errors.New("validation error"))
errorx.Render(w, validationError)
return
}
var count int64
tx := model.DB.Begin()
err = tx.Model(&model.Space{}).Where(&model.Space{
ApplicationID: uint(aID),
Slug: space.Slug,
OrganisationID: uint(oID),
}).Count(&count).Error
if err != nil || count > 0 {
if err != nil {
tx.Rollback()
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.DBError()))
} else {
tx.Rollback()
loggerx.Error(errors.New("slug already exists"))
errorx.Render(w, errorx.Parser(errorx.SameNameExist()))
}
return
}
space.Users = append(space.Users, model.User{
Base: model.Base{
ID: uint(uID),
},
})
err = tx.Model(&model.Space{}).Create(&space).Error
if err != nil {
tx.Rollback()
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.DBError()))
return
}
// making the user who created application, owner of it
tuple := &model.KetoRelationTupleWithSubjectID{
KetoSubjectSet: model.KetoSubjectSet{
Namespace: namespace,
Object: fmt.Sprintf("org:%d:app:%d:space:%d", oID, appID, space.ID),
Relation: "owner",
},
SubjectID: fmt.Sprintf("%d", uID),
}
err = keto.CreateRelationTupleWithSubjectID(tuple)
if err != nil {
tx.Rollback()
loggerx.Error(err)
errorx.Render(w, errorx.Parser(errorx.InternalServerError()))
return
}
tx.Commit()
renderx.JSON(w, http.StatusCreated, space)
}