shared peer conn
This commit is contained in:
parent
6fe862a9b5
commit
e71bd3544f
@ -88,7 +88,6 @@ func (m Operator) ToMongoEOperator(k string, value interface{}) bson.E {
|
|||||||
default:
|
default:
|
||||||
return defaultValue
|
return defaultValue
|
||||||
}
|
}
|
||||||
return defaultValue
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m Operator) ToMongoOperator(k string, value interface{}) bson.M {
|
func (m Operator) ToMongoOperator(k string, value interface{}) bson.M {
|
||||||
@ -142,7 +141,6 @@ func (m Operator) ToMongoOperator(k string, value interface{}) bson.M {
|
|||||||
default:
|
default:
|
||||||
return defaultValue
|
return defaultValue
|
||||||
}
|
}
|
||||||
return defaultValue
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func StringToOperator(s string) Operator {
|
func StringToOperator(s string) Operator {
|
||||||
|
@ -7,6 +7,7 @@ import (
|
|||||||
|
|
||||||
"cloud.o-forge.io/core/oc-lib/dbs"
|
"cloud.o-forge.io/core/oc-lib/dbs"
|
||||||
"cloud.o-forge.io/core/oc-lib/logs"
|
"cloud.o-forge.io/core/oc-lib/logs"
|
||||||
|
"cloud.o-forge.io/core/oc-lib/static"
|
||||||
"github.com/rs/zerolog"
|
"github.com/rs/zerolog"
|
||||||
|
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
@ -104,6 +105,10 @@ func (m *MongoDB) prepareDB(list_collection []string, config MongoConf) {
|
|||||||
new_collection := mngoDB.Collection(collection_name)
|
new_collection := mngoDB.Collection(collection_name)
|
||||||
if _, exists := collectionMap[collection_name]; !exists {
|
if _, exists := collectionMap[collection_name]; !exists {
|
||||||
m.createCollection(collection_name, new_collection)
|
m.createCollection(collection_name, new_collection)
|
||||||
|
if collection_name == "peer" {
|
||||||
|
id, p := static.GetMyLocalBsonPeer()
|
||||||
|
m.StoreOne(p, id, collection_name)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
CollectionMap[collection_name] = new_collection
|
CollectionMap[collection_name] = new_collection
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,9 @@ func (dma *AbstractObject) Serialize() map[string]interface{} {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *AbstractObject) GenerateID() {
|
func (r *AbstractObject) GenerateID() {
|
||||||
|
if r.UUID == "" {
|
||||||
r.UUID = uuid.New().String()
|
r.UUID = uuid.New().String()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type AbstractAccessor struct {
|
type AbstractAccessor struct {
|
||||||
|
@ -8,6 +8,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"cloud.o-forge.io/core/oc-lib/models/peer"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/resources"
|
"cloud.o-forge.io/core/oc-lib/models/resources"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/resources/datacenter"
|
"cloud.o-forge.io/core/oc-lib/models/resources/datacenter"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/resources/workflow/graph"
|
"cloud.o-forge.io/core/oc-lib/models/resources/workflow/graph"
|
||||||
@ -55,11 +56,18 @@ func (wfa *Workflow) CheckBooking(subPath string) (bool, error) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// CHECK BOOKING
|
// CHECK BOOKING
|
||||||
url := dc.(*datacenter.DatacenterResource).SourceUrl
|
peerID := dc.(*datacenter.DatacenterResource).PeerID
|
||||||
caller := tools.NewHTTPCaller("", "", "", "")
|
if peerID == "" {
|
||||||
|
return false, errors.New("no peer id")
|
||||||
|
}
|
||||||
|
p, code, err := (&peer.Peer{}).GetAccessor(nil).LoadOne(peerID)
|
||||||
|
if code != 200 {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
caller := tools.NewHTTPCaller(map[string]map[tools.METHOD]string{})
|
||||||
subPath = strings.ReplaceAll(subPath, ":start_date", wfa.getFormat(wfa.Schedule.Start))
|
subPath = strings.ReplaceAll(subPath, ":start_date", wfa.getFormat(wfa.Schedule.Start))
|
||||||
subPath = strings.ReplaceAll(subPath, ":end_date", wfa.getFormat(&e))
|
subPath = strings.ReplaceAll(subPath, ":end_date", wfa.getFormat(&e))
|
||||||
resp, err := caller.CallGet(url, subPath)
|
resp, err := caller.CallGet(p.(*peer.Peer).Url, subPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
@ -8,11 +8,13 @@ import (
|
|||||||
|
|
||||||
"cloud.o-forge.io/core/oc-lib/dbs"
|
"cloud.o-forge.io/core/oc-lib/dbs"
|
||||||
"cloud.o-forge.io/core/oc-lib/dbs/mongo"
|
"cloud.o-forge.io/core/oc-lib/dbs/mongo"
|
||||||
|
"cloud.o-forge.io/core/oc-lib/models/peer"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/resources"
|
"cloud.o-forge.io/core/oc-lib/models/resources"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/resources/datacenter"
|
"cloud.o-forge.io/core/oc-lib/models/resources/datacenter"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/utils"
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/workflow_execution"
|
"cloud.o-forge.io/core/oc-lib/models/workflow_execution"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/workspace"
|
"cloud.o-forge.io/core/oc-lib/models/workspace"
|
||||||
|
"cloud.o-forge.io/core/oc-lib/tools"
|
||||||
cron "github.com/robfig/cron/v3"
|
cron "github.com/robfig/cron/v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -82,9 +84,13 @@ func (wfa *workflowMongoAccessor) DeleteOne(id string) (utils.DBObject, int, err
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (wfa *workflowMongoAccessor) book(id string, realData *Workflow, execs []*workflow_execution.WorkflowExecution) error {
|
func (wfa *workflowMongoAccessor) book(id string, realData *Workflow, execs []*workflow_execution.WorkflowExecution) error {
|
||||||
if wfa.Caller == nil {
|
if wfa.Caller == nil || wfa.Caller.URLS == nil || wfa.Caller.URLS[utils.WORKFLOW_EXECUTION.String()] == nil {
|
||||||
return errors.New("no caller defined")
|
return errors.New("no caller defined")
|
||||||
}
|
}
|
||||||
|
methods := wfa.Caller.URLS[utils.WORKFLOW_EXECUTION.String()]
|
||||||
|
if _, ok := methods[tools.POST]; !ok {
|
||||||
|
return errors.New("no path found")
|
||||||
|
}
|
||||||
if realData.Schedule == nil {
|
if realData.Schedule == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -103,8 +109,15 @@ func (wfa *workflowMongoAccessor) book(id string, realData *Workflow, execs []*w
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// CHECK BOOKING
|
// CHECK BOOKING
|
||||||
url := dc.(*datacenter.DatacenterResource).SourceUrl
|
peerID := dc.(*datacenter.DatacenterResource).PeerID
|
||||||
resp, err := wfa.Caller.CallPost(url, wfa.Caller.DestSubPath, (&workflow_execution.WorkflowExecutions{
|
if peerID == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
p, code, _ := (&peer.Peer{}).GetAccessor(nil).LoadOne(peerID)
|
||||||
|
if code != 200 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
resp, err := wfa.Caller.CallPost(p.(*peer.Peer).Url, methods[tools.POST], (&workflow_execution.WorkflowExecutions{
|
||||||
Executions: execs,
|
Executions: execs,
|
||||||
}).Serialize())
|
}).Serialize())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -24,7 +24,9 @@ func (ao *SharedWorkspace) GetID() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *SharedWorkspace) GenerateID() {
|
func (r *SharedWorkspace) GenerateID() {
|
||||||
|
if r.UUID == "" {
|
||||||
r.UUID = uuid.New().String()
|
r.UUID = uuid.New().String()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *SharedWorkspace) GetName() string {
|
func (d *SharedWorkspace) GetName() string {
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
package shared_workspace
|
package shared_workspace
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"slices"
|
"slices"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"cloud.o-forge.io/core/oc-lib/dbs"
|
"cloud.o-forge.io/core/oc-lib/dbs"
|
||||||
"cloud.o-forge.io/core/oc-lib/dbs/mongo"
|
"cloud.o-forge.io/core/oc-lib/dbs/mongo"
|
||||||
|
"cloud.o-forge.io/core/oc-lib/models/peer"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/utils"
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
||||||
w "cloud.o-forge.io/core/oc-lib/models/workflow"
|
w "cloud.o-forge.io/core/oc-lib/models/workflow"
|
||||||
"cloud.o-forge.io/core/oc-lib/models/workspace"
|
"cloud.o-forge.io/core/oc-lib/models/workspace"
|
||||||
|
"cloud.o-forge.io/core/oc-lib/tools"
|
||||||
)
|
)
|
||||||
|
|
||||||
type sharedWorkspaceMongoAccessor struct {
|
type sharedWorkspaceMongoAccessor struct {
|
||||||
@ -26,18 +30,63 @@ func (wfa *sharedWorkspaceMongoAccessor) DeleteOne(id string) (utils.DBObject, i
|
|||||||
|
|
||||||
func (wfa *sharedWorkspaceMongoAccessor) sharedWorkspace(shared *SharedWorkspace, id string) {
|
func (wfa *sharedWorkspaceMongoAccessor) sharedWorkspace(shared *SharedWorkspace, id string) {
|
||||||
eldest, code, _ := wfa.LoadOne(id)
|
eldest, code, _ := wfa.LoadOne(id)
|
||||||
|
accessor := (&workspace.Workspace{}).GetAccessor(nil)
|
||||||
if code == 200 {
|
if code == 200 {
|
||||||
eld := eldest.(*SharedWorkspace)
|
eld := eldest.(*SharedWorkspace)
|
||||||
accessor := (&workspace.Workspace{}).GetAccessor(nil)
|
|
||||||
if eld.Workspaces != nil {
|
if eld.Workspaces != nil {
|
||||||
for _, v := range eld.Workspaces {
|
for _, v := range eld.Workspaces {
|
||||||
accessor.UpdateOne(&workspace.Workspace{Shared: false}, v)
|
accessor.UpdateOne(&workspace.Workspace{Shared: false}, v)
|
||||||
|
if wfa.Caller != nil || wfa.Caller.URLS == nil || wfa.Caller.URLS[utils.WORKSPACE.String()] == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
methods := wfa.Caller.URLS[utils.WORKSPACE.String()]
|
||||||
|
if _, ok := methods[tools.DELETE]; !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
for _, p := range shared.Peers {
|
||||||
|
pp, code, _ := (&peer.Peer{}).GetAccessor(nil).LoadOne(p)
|
||||||
|
if code == 200 {
|
||||||
|
resp, err := wfa.Caller.CallDelete(pp.(*peer.Peer).Url, strings.ReplaceAll(methods[tools.DELETE], ":id", v))
|
||||||
|
if err != nil {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + pp.(*peer.Peer).Url + ". Error: " + err.Error())
|
||||||
|
}
|
||||||
|
var r map[string]interface{}
|
||||||
|
json.Unmarshal(resp, &r)
|
||||||
|
if e, ok := r["error"]; ok && e != "" {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + pp.(*peer.Peer).Url + ". Error" + e.(string))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if shared.Workspaces != nil {
|
if shared.Workspaces != nil {
|
||||||
for _, v := range shared.Workspaces {
|
for _, v := range shared.Workspaces {
|
||||||
wfa.UpdateOne(&workspace.Workspace{Shared: false}, v)
|
workspace, code, _ := accessor.UpdateOne(&workspace.Workspace{Shared: true}, v)
|
||||||
|
if wfa.Caller != nil || wfa.Caller.URLS == nil || wfa.Caller.URLS[utils.WORKSPACE.String()] == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
methods := wfa.Caller.URLS[utils.WORKSPACE.String()]
|
||||||
|
if _, ok := methods[tools.POST]; !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
for _, p := range shared.Peers {
|
||||||
|
if code != 200 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
pp, code, _ := (&peer.Peer{}).GetAccessor(nil).LoadOne(p)
|
||||||
|
if code == 200 {
|
||||||
|
resp, err := wfa.Caller.CallPost(pp.(*peer.Peer).Url, methods[tools.POST], workspace.Serialize())
|
||||||
|
if err != nil {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + pp.(*peer.Peer).Url + ". Error: " + err.Error())
|
||||||
|
}
|
||||||
|
var r map[string]interface{}
|
||||||
|
json.Unmarshal(resp, &r)
|
||||||
|
if e, ok := r["error"]; ok && e != "" {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + pp.(*peer.Peer).Url + ". Error" + e.(string))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -61,6 +110,27 @@ func (wfa *sharedWorkspaceMongoAccessor) sharedWorkflow(shared *SharedWorkspace,
|
|||||||
n := &w.Workflow{}
|
n := &w.Workflow{}
|
||||||
n.Shared = new
|
n.Shared = new
|
||||||
accessor.UpdateOne(n, v)
|
accessor.UpdateOne(n, v)
|
||||||
|
if wfa.Caller != nil || wfa.Caller.URLS == nil || wfa.Caller.URLS[utils.WORKFLOW.String()] == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
methods := wfa.Caller.URLS[utils.WORKFLOW.String()]
|
||||||
|
if _, ok := methods[tools.DELETE]; !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
for _, p := range shared.Peers {
|
||||||
|
pp, code, _ := (&peer.Peer{}).GetAccessor(nil).LoadOne(p)
|
||||||
|
if code == 200 {
|
||||||
|
resp, err := wfa.Caller.CallDelete(pp.(*peer.Peer).Url, strings.ReplaceAll(methods[tools.DELETE], ":id", v))
|
||||||
|
if err != nil {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + pp.(*peer.Peer).Url + ". Error: " + err.Error())
|
||||||
|
}
|
||||||
|
var r map[string]interface{}
|
||||||
|
json.Unmarshal(resp, &r)
|
||||||
|
if e, ok := r["error"]; ok && e != "" {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + pp.(*peer.Peer).Url + ". Error" + e.(string))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -72,24 +142,102 @@ func (wfa *sharedWorkspaceMongoAccessor) sharedWorkflow(shared *SharedWorkspace,
|
|||||||
s := data.(*w.Workflow)
|
s := data.(*w.Workflow)
|
||||||
if !slices.Contains(s.Shared, id) {
|
if !slices.Contains(s.Shared, id) {
|
||||||
s.Shared = append(s.Shared, id)
|
s.Shared = append(s.Shared, id)
|
||||||
accessor.UpdateOne(s, v)
|
workflow, code, _ := accessor.UpdateOne(s, v)
|
||||||
|
if wfa.Caller != nil || wfa.Caller.URLS == nil || wfa.Caller.URLS[utils.WORKFLOW.String()] == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
methods := wfa.Caller.URLS[utils.WORKFLOW.String()]
|
||||||
|
if _, ok := methods[tools.POST]; !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
for _, p := range shared.Peers {
|
||||||
|
if code != 200 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
pp, code, _ := (&peer.Peer{}).GetAccessor(nil).LoadOne(p)
|
||||||
|
if code == 200 {
|
||||||
|
resp, err := wfa.Caller.CallPost(pp.(*peer.Peer).Url, methods[tools.POST], workflow.Serialize())
|
||||||
|
if err != nil {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + pp.(*peer.Peer).Url + ". Error: " + err.Error())
|
||||||
|
}
|
||||||
|
var r map[string]interface{}
|
||||||
|
json.Unmarshal(resp, &r)
|
||||||
|
if e, ok := r["error"]; ok && e != "" {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + pp.(*peer.Peer).Url + ". Error" + e.(string))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (wfa *sharedWorkspaceMongoAccessor) deleteToPeer(shared *SharedWorkspace) {
|
||||||
|
if wfa.Caller != nil || wfa.Caller.URLS == nil || wfa.Caller.URLS[utils.SHARED_WORKSPACE.String()] == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
methods := wfa.Caller.URLS[utils.SHARED_WORKSPACE.String()]
|
||||||
|
if _, ok := methods[tools.DELETE]; !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for _, v := range shared.Peers {
|
||||||
|
p, code, _ := (&peer.Peer{}).GetAccessor(nil).LoadOne(v)
|
||||||
|
if code != 200 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
resp, err := wfa.Caller.CallDelete(p.(*peer.Peer).Url, strings.ReplaceAll(methods[tools.DELETE], ":id", shared.GetID()))
|
||||||
|
if err != nil {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + p.(*peer.Peer).Url + ". Error: " + err.Error())
|
||||||
|
}
|
||||||
|
var r map[string]interface{}
|
||||||
|
json.Unmarshal(resp, &r)
|
||||||
|
if e, ok := r["error"]; ok && e != "" {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + p.(*peer.Peer).Url + ". Error" + e.(string))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (wfa *sharedWorkspaceMongoAccessor) sendToPeer(shared *SharedWorkspace) {
|
||||||
|
if wfa.Caller != nil || wfa.Caller.URLS == nil || wfa.Caller.URLS[utils.SHARED_WORKSPACE.String()] == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
methods := wfa.Caller.URLS[utils.SHARED_WORKSPACE.String()]
|
||||||
|
if _, ok := methods[tools.POST]; !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for _, v := range shared.Peers {
|
||||||
|
p, code, _ := (&peer.Peer{}).GetAccessor(nil).LoadOne(v)
|
||||||
|
if code != 200 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
resp, err := wfa.Caller.CallPost(p.(*peer.Peer).Url, methods[tools.POST], shared.Serialize())
|
||||||
|
if err != nil {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + p.(*peer.Peer).Url + ". Error: " + err.Error())
|
||||||
|
}
|
||||||
|
var r map[string]interface{}
|
||||||
|
json.Unmarshal(resp, &r)
|
||||||
|
if e, ok := r["error"]; ok && e != "" {
|
||||||
|
wfa.Logger.Error().Msg("Could not send to peer " + p.(*peer.Peer).Url + ". Error" + e.(string))
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (wfa *sharedWorkspaceMongoAccessor) UpdateOne(set utils.DBObject, id string) (utils.DBObject, int, error) {
|
func (wfa *sharedWorkspaceMongoAccessor) UpdateOne(set utils.DBObject, id string) (utils.DBObject, int, error) {
|
||||||
|
wfa.deleteToPeer(set.(*SharedWorkspace))
|
||||||
wfa.sharedWorkflow(set.(*SharedWorkspace), id)
|
wfa.sharedWorkflow(set.(*SharedWorkspace), id)
|
||||||
wfa.sharedWorkspace(set.(*SharedWorkspace), id)
|
wfa.sharedWorkspace(set.(*SharedWorkspace), id)
|
||||||
|
wfa.sendToPeer(set.(*SharedWorkspace))
|
||||||
return wfa.GenericUpdateOne(set.(*SharedWorkspace), id, wfa, &SharedWorkspace{})
|
return wfa.GenericUpdateOne(set.(*SharedWorkspace), id, wfa, &SharedWorkspace{})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (wfa *sharedWorkspaceMongoAccessor) StoreOne(data utils.DBObject) (utils.DBObject, int, error) {
|
func (wfa *sharedWorkspaceMongoAccessor) StoreOne(data utils.DBObject) (utils.DBObject, int, error) {
|
||||||
data, code, err := wfa.GenericStoreOne(data.(*SharedWorkspace), wfa)
|
wfa.deleteToPeer(data.(*SharedWorkspace))
|
||||||
|
d, code, err := wfa.GenericStoreOne(data.(*SharedWorkspace), wfa)
|
||||||
if code == 200 {
|
if code == 200 {
|
||||||
wfa.sharedWorkflow(data.(*SharedWorkspace), data.GetID())
|
wfa.sharedWorkflow(d.(*SharedWorkspace), d.GetID())
|
||||||
wfa.sharedWorkspace(data.(*SharedWorkspace), data.GetID())
|
wfa.sharedWorkspace(d.(*SharedWorkspace), d.GetID())
|
||||||
|
wfa.sendToPeer(d.(*SharedWorkspace))
|
||||||
}
|
}
|
||||||
return data, code, err
|
return data, code, err
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,9 @@ func (ao *Workspace) GetID() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *Workspace) GenerateID() {
|
func (r *Workspace) GenerateID() {
|
||||||
|
if r.UUID == "" {
|
||||||
r.UUID = uuid.New().String()
|
r.UUID = uuid.New().String()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *Workspace) GetName() string {
|
func (d *Workspace) GetName() string {
|
||||||
|
21
static/peer_static.go
Normal file
21
static/peer_static.go
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
package static
|
||||||
|
|
||||||
|
func GetMyLocalBsonPeer() (string, map[string]interface{}) {
|
||||||
|
return "6fd0134c-fefc-427e-94c2-e01365fc5fb0", map[string]interface{}{
|
||||||
|
"abstractobject": map[string]interface{}{
|
||||||
|
"uuid": "6fd0134c-fefc-427e-94c2-e01365fc5fb0",
|
||||||
|
"name": "local_peer",
|
||||||
|
},
|
||||||
|
"url": "http://localhost",
|
||||||
|
"public_key": "public_key_lulz",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetMyLocalJsonPeer() (string, map[string]interface{}) {
|
||||||
|
return "6fd0134c-fefc-427e-94c2-e01365fc5fb0", map[string]interface{}{
|
||||||
|
"uuid": "6fd0134c-fefc-427e-94c2-e01365fc5fb0",
|
||||||
|
"name": "local_peer",
|
||||||
|
"url": "http://localhost",
|
||||||
|
"public_key": "public_key_lulz",
|
||||||
|
}
|
||||||
|
}
|
@ -7,19 +7,24 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type METHOD int
|
||||||
|
|
||||||
|
const (
|
||||||
|
GET METHOD = iota
|
||||||
|
PUT
|
||||||
|
POST
|
||||||
|
DELETE
|
||||||
|
)
|
||||||
|
|
||||||
var HTTPCallerInstance = &HTTPCaller{}
|
var HTTPCallerInstance = &HTTPCaller{}
|
||||||
|
|
||||||
type HTTPCaller struct {
|
type HTTPCaller struct {
|
||||||
Origin string
|
URLS map[string]map[METHOD]string
|
||||||
OriginSubPath string
|
|
||||||
DestSubPath string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewHTTPCaller(url string, origin string, originSubPath string, destSubPath string) *HTTPCaller {
|
func NewHTTPCaller(urls map[string]map[METHOD]string) *HTTPCaller {
|
||||||
return &HTTPCaller{
|
return &HTTPCaller{
|
||||||
Origin: origin,
|
URLS: urls,
|
||||||
OriginSubPath: originSubPath,
|
|
||||||
DestSubPath: destSubPath,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -32,6 +37,15 @@ func (caller *HTTPCaller) CallGet(url string, subpath string) ([]byte, error) {
|
|||||||
return io.ReadAll(resp.Body)
|
return io.ReadAll(resp.Body)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (caller *HTTPCaller) CallDelete(url string, subpath string) ([]byte, error) {
|
||||||
|
resp, err := http.NewRequest("DELETE", url+subpath, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
return io.ReadAll(resp.Body)
|
||||||
|
}
|
||||||
|
|
||||||
func (caller *HTTPCaller) CallPost(url string, subpath string, body map[string]interface{}) ([]byte, error) {
|
func (caller *HTTPCaller) CallPost(url string, subpath string, body map[string]interface{}) ([]byte, error) {
|
||||||
postBody, _ := json.Marshal(body)
|
postBody, _ := json.Marshal(body)
|
||||||
responseBody := bytes.NewBuffer(postBody)
|
responseBody := bytes.NewBuffer(postBody)
|
||||||
|
Loading…
Reference in New Issue
Block a user