mirror of https://github.com/portainer/portainer
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package tunnelserver
|
|||
|
|||
import (
|
|||
|
portainer "github.com/portainer/portainer/api"
|
||
)
|
|||
|
|||
const (
|
|||
// BucketName represents the name of the bucket where this service stores data.
|
|||
BucketName = "tunnel_server"
|
|||
infoKey = "INFO"
|
|||
)
|
|||
|
|||
// Service represents a service for managing environment(endpoint) 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
|
|||
}
|
|||
|
|||
// Info retrieve the TunnelServerInfo object.
|
|||
func (service *Service) Info() (*portainer.TunnelServerInfo, error) {
|
|||
var info portainer.TunnelServerInfo
|
|||
|
|||
err := service.connection.GetObject(BucketName, []byte(infoKey), &info)
|
|||
if err != nil {
|
|||
return nil, err
|
|||
}
|
|||
|
|||
return &info, nil
|
|||
}
|
|||
|
|||
// UpdateInfo persists a TunnelServerInfo object.
|
|||
func (service *Service) UpdateInfo(settings *portainer.TunnelServerInfo) error {
|
|||
return service.connection.UpdateObject(BucketName, []byte(infoKey), settings)
|
|||
}
|