mirror of https://github.com/portainer/portainer
41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
package snapshot
|
|
|
|
import (
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/dataservices"
|
|
)
|
|
|
|
const BucketName = "snapshots"
|
|
|
|
type Service struct {
|
|
dataservices.BaseDataService[portainer.Snapshot, portainer.EndpointID]
|
|
}
|
|
|
|
func NewService(connection portainer.Connection) (*Service, error) {
|
|
err := connection.SetServiceName(BucketName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &Service{
|
|
BaseDataService: dataservices.BaseDataService[portainer.Snapshot, portainer.EndpointID]{
|
|
Bucket: BucketName,
|
|
Connection: connection,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (service *Service) Tx(tx portainer.Transaction) ServiceTx {
|
|
return ServiceTx{
|
|
BaseDataServiceTx: dataservices.BaseDataServiceTx[portainer.Snapshot, portainer.EndpointID]{
|
|
Bucket: BucketName,
|
|
Connection: service.Connection,
|
|
Tx: tx,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (service *Service) Create(snapshot *portainer.Snapshot) error {
|
|
return service.Connection.CreateObjectWithId(BucketName, int(snapshot.EndpointID), snapshot)
|
|
}
|