|
|
|
@@ -6,7 +6,6 @@ import (
|
|
|
|
|
"slices"
|
|
|
|
|
|
|
|
|
|
oclib "cloud.o-forge.io/core/oc-lib"
|
|
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
|
|
|
|
"cloud.o-forge.io/core/oc-lib/tools"
|
|
|
|
|
beego "github.com/beego/beego/v2/server/web"
|
|
|
|
|
)
|
|
|
|
@@ -16,6 +15,24 @@ type CollaborativeAreaController struct {
|
|
|
|
|
beego.Controller
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var paths = map[tools.DataType]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
tools.COLLABORATIVE_AREA: {
|
|
|
|
|
tools.DELETE: "/oc/shared/workspace/:id?is_remote=true",
|
|
|
|
|
tools.POST: "/oc/shared/workspace/?is_remote=true",
|
|
|
|
|
},
|
|
|
|
|
tools.WORKSPACE: {
|
|
|
|
|
tools.DELETE: "/oc/workspace/:id?is_remote=true",
|
|
|
|
|
tools.POST: "/oc/workspace/?is_remote=true",
|
|
|
|
|
},
|
|
|
|
|
tools.WORKFLOW: {
|
|
|
|
|
tools.DELETE: "/oc/workflow/:id?is_remote=true",
|
|
|
|
|
tools.POST: "/oc/workflow/?is_remote=true",
|
|
|
|
|
},
|
|
|
|
|
tools.PEER: {
|
|
|
|
|
tools.POST: "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @Title Search
|
|
|
|
|
// @Description search shared workspace
|
|
|
|
|
// @Param search path string true "the word search you want to get"
|
|
|
|
@@ -24,7 +41,7 @@ type CollaborativeAreaController struct {
|
|
|
|
|
func (o *CollaborativeAreaController) Search() {
|
|
|
|
|
// store and return Id or post with UUID
|
|
|
|
|
search := o.Ctx.Input.Param(":search")
|
|
|
|
|
o.Data["json"] = oclib.Search(nil, search, oclib.LibDataEnum(utils.COLLABORATIVE_AREA))
|
|
|
|
|
o.Data["json"] = oclib.Search(nil, search, oclib.LibDataEnum(tools.COLLABORATIVE_AREA))
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -36,29 +53,13 @@ func (o *CollaborativeAreaController) Search() {
|
|
|
|
|
// @router /:id [put]
|
|
|
|
|
func (o *CollaborativeAreaController) Put() {
|
|
|
|
|
// store and return Id or post with UUID
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to send to peers
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
var res map[string]interface{}
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
json.Unmarshal(o.Ctx.Input.CopyBody(10000), &res)
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
fmt.Println("UPDATE", res)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), res, id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), res, id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -68,28 +69,11 @@ func (o *CollaborativeAreaController) Put() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router / [post]
|
|
|
|
|
func (o *CollaborativeAreaController) Post() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
var res map[string]interface{}
|
|
|
|
|
json.Unmarshal(o.Ctx.Input.CopyBody(10000), &res)
|
|
|
|
|
|
|
|
|
|
o.Data["json"] = oclib.StoreOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), res, caller)
|
|
|
|
|
o.Data["json"] = oclib.StoreOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), res, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -98,7 +82,7 @@ func (o *CollaborativeAreaController) Post() {
|
|
|
|
|
// @Success 200 {shared_workspace} models.shared_workspace
|
|
|
|
|
// @router / [get]
|
|
|
|
|
func (o *CollaborativeAreaController) GetAll() {
|
|
|
|
|
o.Data["json"] = oclib.LoadAll(oclib.LibDataEnum(utils.COLLABORATIVE_AREA))
|
|
|
|
|
o.Data["json"] = oclib.LoadAll(oclib.LibDataEnum(tools.COLLABORATIVE_AREA))
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -109,7 +93,7 @@ func (o *CollaborativeAreaController) GetAll() {
|
|
|
|
|
// @router /:id [get]
|
|
|
|
|
func (o *CollaborativeAreaController) Get() {
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
o.Data["json"] = oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
o.Data["json"] = oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -120,27 +104,11 @@ func (o *CollaborativeAreaController) Get() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router /:id/workspace/:id2 [delete]
|
|
|
|
|
func (o *CollaborativeAreaController) RemoveWorkspace() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
id2 := o.Ctx.Input.Param(":id2")
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
shared := r.ToCollaborativeArea()
|
|
|
|
|
newWorkspace := []string{}
|
|
|
|
|
if slices.Contains(shared.Workspaces, id2) {
|
|
|
|
@@ -151,7 +119,7 @@ func (o *CollaborativeAreaController) RemoveWorkspace() {
|
|
|
|
|
}
|
|
|
|
|
shared.Workspaces = newWorkspace
|
|
|
|
|
}
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -162,27 +130,11 @@ func (o *CollaborativeAreaController) RemoveWorkspace() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router /:id/workflow/:id2 [delete]
|
|
|
|
|
func (o *CollaborativeAreaController) RemoveWorkflow() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
id2 := o.Ctx.Input.Param(":id2")
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
fmt.Println("RemoveWorkflow", r)
|
|
|
|
|
shared := r.ToCollaborativeArea()
|
|
|
|
|
newWorkflows := []string{}
|
|
|
|
@@ -194,7 +146,7 @@ func (o *CollaborativeAreaController) RemoveWorkflow() {
|
|
|
|
|
}
|
|
|
|
|
shared.Workflows = newWorkflows
|
|
|
|
|
}
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -205,27 +157,11 @@ func (o *CollaborativeAreaController) RemoveWorkflow() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router /:id/peer/:id2 [delete]
|
|
|
|
|
func (o *CollaborativeAreaController) RemovePeer() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
id2 := o.Ctx.Input.Param(":id2")
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
shared := r.ToCollaborativeArea()
|
|
|
|
|
newPeers := []string{}
|
|
|
|
|
if shared.CreatorID != id2 {
|
|
|
|
@@ -245,7 +181,7 @@ func (o *CollaborativeAreaController) RemovePeer() {
|
|
|
|
|
}
|
|
|
|
|
shared.Peers = newPeers
|
|
|
|
|
}
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -256,27 +192,11 @@ func (o *CollaborativeAreaController) RemovePeer() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router /:id/rule/:id2 [delete]
|
|
|
|
|
func (o *CollaborativeAreaController) RemoveRule() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
id2 := o.Ctx.Input.Param(":id2")
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
shared := r.ToCollaborativeArea()
|
|
|
|
|
newRules := []string{}
|
|
|
|
|
if shared != nil && slices.Contains(shared.Rules, id2) {
|
|
|
|
@@ -287,7 +207,7 @@ func (o *CollaborativeAreaController) RemoveRule() {
|
|
|
|
|
}
|
|
|
|
|
shared.Rules = newRules
|
|
|
|
|
}
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -298,27 +218,11 @@ func (o *CollaborativeAreaController) RemoveRule() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router /:id/workspace/:id2 [post]
|
|
|
|
|
func (o *CollaborativeAreaController) AddWorkspace() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
id2 := o.Ctx.Input.Param(":id2")
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
if r.Code != 200 {
|
|
|
|
|
o.Data["json"] = r
|
|
|
|
|
o.ServeJSON()
|
|
|
|
@@ -328,7 +232,7 @@ func (o *CollaborativeAreaController) AddWorkspace() {
|
|
|
|
|
if shared != nil && !slices.Contains(shared.Workspaces, id2) {
|
|
|
|
|
shared.Workspaces = append(shared.Workspaces, id2)
|
|
|
|
|
}
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -339,35 +243,16 @@ func (o *CollaborativeAreaController) AddWorkspace() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router /:id/workflow/:id2 [post]
|
|
|
|
|
func (o *CollaborativeAreaController) AddWorkflow() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
id2 := o.Ctx.Input.Param(":id2")
|
|
|
|
|
fmt.Println("AddWorkflow", id, id2)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
shared := r.ToCollaborativeArea()
|
|
|
|
|
if shared != nil && !slices.Contains(shared.Workflows, id2) {
|
|
|
|
|
shared.Workflows = append(shared.Workflows, id2)
|
|
|
|
|
}
|
|
|
|
|
fmt.Println("AddWorkflow", shared.Workflows)
|
|
|
|
|
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -378,32 +263,16 @@ func (o *CollaborativeAreaController) AddWorkflow() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router /:id/peer/:id2 [post]
|
|
|
|
|
func (o *CollaborativeAreaController) AddPeer() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to call other OC services
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
id2 := o.Ctx.Input.Param(":id2")
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
shared := r.ToCollaborativeArea()
|
|
|
|
|
if shared != nil && !slices.Contains(shared.Peers, id2) {
|
|
|
|
|
shared.Peers = append(shared.Peers, id2)
|
|
|
|
|
}
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -414,32 +283,16 @@ func (o *CollaborativeAreaController) AddPeer() {
|
|
|
|
|
// @Success 200 {shared workspace} models.shared_workspace
|
|
|
|
|
// @router /:id/rule/:id2 [post]
|
|
|
|
|
func (o *CollaborativeAreaController) AddRule() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to send to peers
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
id2 := o.Ctx.Input.Param(":id2")
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id)
|
|
|
|
|
r := oclib.LoadOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id)
|
|
|
|
|
shared := r.ToCollaborativeArea()
|
|
|
|
|
if shared != nil && !slices.Contains(shared.Rules, id2) {
|
|
|
|
|
shared.Rules = append(shared.Rules, id2)
|
|
|
|
|
}
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.Data["json"] = oclib.UpdateOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), shared.Serialize(), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -449,25 +302,9 @@ func (o *CollaborativeAreaController) AddRule() {
|
|
|
|
|
// @Success 200 {shared workspace} delete success!
|
|
|
|
|
// @router /:id [delete]
|
|
|
|
|
func (o *CollaborativeAreaController) Delete() {
|
|
|
|
|
var paths = map[string]map[tools.METHOD]string{ // paths used to send to peers
|
|
|
|
|
utils.COLLABORATIVE_AREA.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(utils.COLLABORATIVE_AREA)) + "/oc/shared/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKSPACE.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKSPACE)) + "/oc/workspace/",
|
|
|
|
|
},
|
|
|
|
|
utils.WORKFLOW.String(): {
|
|
|
|
|
tools.DELETE: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/:id",
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.WORKFLOW)) + "/oc/workflow/",
|
|
|
|
|
},
|
|
|
|
|
utils.PEER.String(): {
|
|
|
|
|
tools.POST: oclib.GetPath(oclib.LibDataEnum(oclib.PEER)) + "/oc/peer",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
id := o.Ctx.Input.Param(":id")
|
|
|
|
|
caller := tools.NewHTTPCaller(paths) // caller used to send to peers
|
|
|
|
|
o.Data["json"] = oclib.DeleteOne(oclib.LibDataEnum(utils.COLLABORATIVE_AREA), id, caller)
|
|
|
|
|
caller.Disabled = oclib.IsQueryParamsEquals(o.Ctx.Input, "is_remote", true)
|
|
|
|
|
o.Data["json"] = oclib.DeleteOne(oclib.LibDataEnum(tools.COLLABORATIVE_AREA), id, caller)
|
|
|
|
|
o.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|