2024-08-12 12:03:58 +02:00
|
|
|
package peer
|
|
|
|
|
|
|
|
import (
|
2024-08-23 09:53:37 +02:00
|
|
|
"fmt"
|
2024-08-12 12:03:58 +02:00
|
|
|
|
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
2024-08-12 16:11:25 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/tools"
|
2024-08-12 12:03:58 +02:00
|
|
|
)
|
|
|
|
|
2024-10-15 16:37:18 +02:00
|
|
|
// now write a go enum for the state partner with self, blacklist, partner
|
|
|
|
|
|
|
|
type PeerState int
|
|
|
|
|
|
|
|
const (
|
|
|
|
NONE PeerState = iota
|
|
|
|
SELF
|
|
|
|
PARTNER
|
|
|
|
BLACKLIST
|
|
|
|
)
|
|
|
|
|
2024-10-30 11:17:52 +01:00
|
|
|
func (m PeerState) String() string {
|
|
|
|
return [...]string{"NONE", "SELF", "PARTNER", "BLACKLIST"}[m]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m PeerState) EnumIndex() int {
|
|
|
|
return int(m)
|
|
|
|
}
|
|
|
|
|
2024-08-30 14:50:48 +02:00
|
|
|
// Peer is a struct that represents a peer
|
2024-08-12 12:03:58 +02:00
|
|
|
type Peer struct {
|
|
|
|
utils.AbstractObject
|
2024-11-15 09:07:52 +01:00
|
|
|
Url string `json:"url,omitempty" bson:"url,omitempty" validate:"required"` // Url is the URL of the peer (base64url)
|
|
|
|
PublicKey string `json:"public_key,omitempty" bson:"public_key,omitempty"` // PublicKey is the public key of the peer
|
2024-10-15 16:37:18 +02:00
|
|
|
Services map[string]int `json:"services,omitempty" bson:"services,omitempty"`
|
|
|
|
State PeerState `json:"state" bson:"state" default:"0"`
|
|
|
|
FailedExecution []PeerExecution `json:"failed_execution" bson:"failed_execution"` // FailedExecution is the list of failed executions, to be retried
|
2024-08-23 09:53:37 +02:00
|
|
|
}
|
|
|
|
|
2024-08-30 14:50:48 +02:00
|
|
|
// AddExecution adds an execution to the list of failed executions
|
2024-08-23 09:53:37 +02:00
|
|
|
func (ao *Peer) AddExecution(exec PeerExecution) {
|
|
|
|
found := false
|
2024-08-30 14:50:48 +02:00
|
|
|
for _, v := range ao.FailedExecution { // Check if the execution is already in the list
|
2024-08-23 09:53:37 +02:00
|
|
|
if v.Url == exec.Url && v.Method == exec.Method && fmt.Sprint(v.Body) == fmt.Sprint(exec.Body) {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
ao.FailedExecution = append(ao.FailedExecution, exec)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-30 14:50:48 +02:00
|
|
|
// RemoveExecution removes an execution from the list of failed executions
|
2024-08-23 09:53:37 +02:00
|
|
|
func (ao *Peer) RemoveExecution(exec PeerExecution) {
|
|
|
|
new := []PeerExecution{}
|
|
|
|
for i, v := range ao.FailedExecution {
|
|
|
|
if !(v.Url == exec.Url && v.Method == exec.Method && fmt.Sprint(v.Body) == fmt.Sprint(exec.Body)) {
|
|
|
|
new = append(new, ao.FailedExecution[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ao.FailedExecution = new
|
2024-08-12 12:03:58 +02:00
|
|
|
}
|
|
|
|
|
2024-08-30 14:50:48 +02:00
|
|
|
// IsMySelf checks if the peer is the local peer
|
2024-10-30 11:17:52 +01:00
|
|
|
func (ao *Peer) IsMySelf() (bool, string) {
|
2024-11-28 11:05:54 +01:00
|
|
|
d, code, err := New().Search(nil, SELF.String())
|
2024-10-30 11:17:52 +01:00
|
|
|
if code != 200 || err != nil || len(d) == 0 {
|
|
|
|
return false, ""
|
|
|
|
}
|
|
|
|
id := d[0].GetID()
|
|
|
|
return ao.UUID == id, id
|
2024-08-13 14:33:26 +02:00
|
|
|
}
|
|
|
|
|
2024-08-30 14:50:48 +02:00
|
|
|
// LaunchPeerExecution launches an execution on a peer
|
2024-10-02 10:45:52 +02:00
|
|
|
func (p *Peer) LaunchPeerExecution(peerID string, dataID string, dt tools.DataType, method tools.METHOD, body map[string]interface{}, caller *tools.HTTPCaller) (*PeerExecution, error) {
|
2024-08-21 08:54:29 +02:00
|
|
|
p.UUID = peerID
|
2024-08-30 14:50:48 +02:00
|
|
|
return cache.LaunchPeerExecution(peerID, dataID, dt, method, body, caller) // Launch the execution on the peer through the cache
|
2024-08-13 14:33:26 +02:00
|
|
|
}
|
2024-11-28 11:05:54 +01:00
|
|
|
func (d *Peer) GetAccessor(peerID string, groups []string, caller *tools.HTTPCaller) utils.Accessor {
|
|
|
|
data := New() // Create a new instance of the accessor
|
|
|
|
data.Init(tools.PEER, peerID, groups, caller) // Initialize the accessor with the PEER model type
|
2024-08-12 12:03:58 +02:00
|
|
|
return data
|
|
|
|
}
|