2024-08-12 12:03:58 +02:00
|
|
|
package peer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
2024-08-13 14:33:26 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/static"
|
2024-08-12 16:11:25 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/tools"
|
2024-08-12 12:03:58 +02:00
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Peer struct {
|
|
|
|
utils.AbstractObject
|
|
|
|
Url string `json:"url,omitempty" bson:"url,omitempty" validate:"required,base64url"`
|
|
|
|
PublicKey string `json:"public_key,omitempty" bson:"public_key,omitempty"`
|
|
|
|
}
|
|
|
|
|
2024-08-13 14:33:26 +02:00
|
|
|
func (ao *Peer) IsMySelf() bool {
|
|
|
|
id, _ := static.GetMyLocalJsonPeer()
|
|
|
|
return ao.UUID == id
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Peer) LaunchPeerExecution(peerID string, dataID string, url string, dt utils.DataType, method tools.METHOD, body map[string]interface{}, caller *tools.HTTPCaller) (*PeerExecution, error) {
|
2024-08-21 08:54:29 +02:00
|
|
|
p.UUID = peerID
|
|
|
|
return (&PeerCache{}).LaunchPeerExecution(peerID, p.IsMySelf(), dataID, url, dt, method, body, caller)
|
2024-08-13 14:33:26 +02:00
|
|
|
}
|
|
|
|
|
2024-08-12 12:03:58 +02:00
|
|
|
func (ao *Peer) GetID() string {
|
|
|
|
return ao.UUID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Peer) GenerateID() {
|
|
|
|
r.UUID = uuid.New().String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Peer) GetName() string {
|
|
|
|
return d.Name
|
|
|
|
}
|
|
|
|
|
2024-08-12 16:11:25 +02:00
|
|
|
func (d *Peer) GetAccessor(caller *tools.HTTPCaller) utils.Accessor {
|
2024-08-12 12:03:58 +02:00
|
|
|
data := New()
|
2024-08-12 16:11:25 +02:00
|
|
|
data.Init(utils.PEER, caller)
|
2024-08-12 12:03:58 +02:00
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dma *Peer) Deserialize(j map[string]interface{}) utils.DBObject {
|
|
|
|
b, err := json.Marshal(j)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
json.Unmarshal(b, dma)
|
|
|
|
return dma
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dma *Peer) Serialize() map[string]interface{} {
|
|
|
|
var m map[string]interface{}
|
|
|
|
b, err := json.Marshal(dma)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
json.Unmarshal(b, &m)
|
|
|
|
return m
|
|
|
|
}
|