mirror of https://github.com/portainer/portainer
91 lines
2.4 KiB
Go
91 lines
2.4 KiB
Go
package edgegroup
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
const (
|
|
// BucketName represents the name of the bucket where this service stores data.
|
|
BucketName = "edgegroups"
|
|
)
|
|
|
|
// Service represents a service for managing Edge group data.
|
|
type Service struct {
|
|
connection portainer.Connection
|
|
}
|
|
|
|
func (service *Service) BucketName() string {
|
|
return BucketName
|
|
}
|
|
|
|
// NewService creates a new instance of a service.
|
|
func NewService(connection portainer.Connection) (*Service, error) {
|
|
err := connection.SetServiceName(BucketName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &Service{
|
|
connection: connection,
|
|
}, nil
|
|
}
|
|
|
|
// EdgeGroups return an array containing all the Edge groups.
|
|
func (service *Service) EdgeGroups() ([]portainer.EdgeGroup, error) {
|
|
var groups = make([]portainer.EdgeGroup, 0)
|
|
|
|
err := service.connection.GetAllWithJsoniter(
|
|
BucketName,
|
|
&portainer.EdgeGroup{},
|
|
func(obj interface{}) (interface{}, error) {
|
|
group, ok := obj.(*portainer.EdgeGroup)
|
|
if !ok {
|
|
logrus.WithField("obj", obj).Errorf("Failed to convert to EdgeGroup object")
|
|
return nil, fmt.Errorf("Failed to convert to EdgeGroup object: %s", obj)
|
|
}
|
|
groups = append(groups, *group)
|
|
return &portainer.EdgeGroup{}, nil
|
|
})
|
|
|
|
return groups, err
|
|
}
|
|
|
|
// EdgeGroup returns an Edge group by ID.
|
|
func (service *Service) EdgeGroup(ID portainer.EdgeGroupID) (*portainer.EdgeGroup, error) {
|
|
var group portainer.EdgeGroup
|
|
identifier := service.connection.ConvertToKey(int(ID))
|
|
|
|
err := service.connection.GetObject(BucketName, identifier, &group)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &group, nil
|
|
}
|
|
|
|
// UpdateEdgeGroup updates an Edge group.
|
|
func (service *Service) UpdateEdgeGroup(ID portainer.EdgeGroupID, group *portainer.EdgeGroup) error {
|
|
identifier := service.connection.ConvertToKey(int(ID))
|
|
return service.connection.UpdateObject(BucketName, identifier, group)
|
|
}
|
|
|
|
// DeleteEdgeGroup deletes an Edge group.
|
|
func (service *Service) DeleteEdgeGroup(ID portainer.EdgeGroupID) error {
|
|
identifier := service.connection.ConvertToKey(int(ID))
|
|
return service.connection.DeleteObject(BucketName, identifier)
|
|
}
|
|
|
|
// CreateEdgeGroup assign an ID to a new Edge group and saves it.
|
|
func (service *Service) Create(group *portainer.EdgeGroup) error {
|
|
return service.connection.CreateObject(
|
|
BucketName,
|
|
func(id uint64) (int, interface{}) {
|
|
group.ID = portainer.EdgeGroupID(id)
|
|
return int(group.ID), group
|
|
},
|
|
)
|
|
}
|