portainer/portainer

View on GitHub
api/dataservices/role/role.go

Summary

Maintainability
A
0 mins
Test Coverage
package role

import (
    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 = "roles"

// Service represents a service for managing environment(endpoint) data.
type Service struct {
    dataservices.BaseDataService[portainer.Role, portainer.RoleID]
}

// 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.Role, portainer.RoleID]{
            Bucket:     BucketName,
            Connection: connection,
        },
    }, nil
}

func (service *Service) Tx(tx portainer.Transaction) ServiceTx {
    return ServiceTx{
        BaseDataServiceTx: dataservices.BaseDataServiceTx[portainer.Role, portainer.RoleID]{
            Bucket:     BucketName,
            Connection: service.Connection,
            Tx:         tx,
        },
    }
}

// CreateRole creates a new Role.
func (service *Service) Create(role *portainer.Role) error {
    return service.Connection.CreateObject(
        BucketName,
        func(id uint64) (int, interface{}) {
            role.ID = portainer.RoleID(id)
            return int(role.ID), role
        },
    )
}