80 lines
2.3 KiB
Go
80 lines
2.3 KiB
Go
package resourcecontrol
|
|
|
|
import (
|
|
"errors"
|
|
"slices"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/dataservices"
|
|
)
|
|
|
|
// BucketName represents the name of the bucket where this service stores data.
|
|
const BucketName = "resource_control"
|
|
|
|
// Service represents a service for managing environment(endpoint) data.
|
|
type Service struct {
|
|
dataservices.BaseDataService[portainer.ResourceControl, portainer.ResourceControlID]
|
|
}
|
|
|
|
// 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{
|
|
BaseDataService: dataservices.BaseDataService[portainer.ResourceControl, portainer.ResourceControlID]{
|
|
Bucket: BucketName,
|
|
Connection: connection,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (service *Service) Tx(tx portainer.Transaction) ServiceTx {
|
|
return ServiceTx{
|
|
BaseDataServiceTx: dataservices.BaseDataServiceTx[portainer.ResourceControl, portainer.ResourceControlID]{
|
|
Bucket: BucketName,
|
|
Connection: service.Connection,
|
|
Tx: tx,
|
|
},
|
|
}
|
|
}
|
|
|
|
// ResourceControlByResourceIDAndType returns a ResourceControl object by checking if the resourceID is equal
|
|
// to the main ResourceID or in SubResourceIDs. It also performs a check on the resource type. Return nil
|
|
// if no ResourceControl was found.
|
|
func (service *Service) ResourceControlByResourceIDAndType(resourceID string, resourceType portainer.ResourceControlType) (*portainer.ResourceControl, error) {
|
|
var found portainer.ResourceControl
|
|
|
|
err := service.Connection.GetAll(
|
|
BucketName,
|
|
&portainer.ResourceControl{},
|
|
dataservices.FirstFn(&found, func(rc portainer.ResourceControl) bool {
|
|
return (rc.ResourceID == resourceID && rc.Type == resourceType) ||
|
|
slices.Contains(rc.SubResourceIDs, resourceID)
|
|
}),
|
|
)
|
|
|
|
if errors.Is(err, dataservices.ErrStop) {
|
|
return &found, nil
|
|
}
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
// CreateResourceControl creates a new ResourceControl object
|
|
func (service *Service) Create(resourceControl *portainer.ResourceControl) error {
|
|
return service.Connection.CreateObject(
|
|
BucketName,
|
|
func(id uint64) (int, any) {
|
|
resourceControl.ID = portainer.ResourceControlID(id)
|
|
return int(resourceControl.ID), resourceControl
|
|
},
|
|
)
|
|
}
|