devices

package
v0.4.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 17, 2026 License: MIT Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrNotFound          = errors.New("device not found")
	ErrConflict          = errors.New("device conflict")
	ErrTransactorMissing = errors.New("device transactor not configured")
)

Functions

This section is empty.

Types

type DeviceRecord

type DeviceRecord struct {
	Device db.NetworkDevice
	VLAN   db.Vlan
}

type PGXTransactor

type PGXTransactor struct {
	// contains filtered or unexported fields
}

func NewPGXTransactor

func NewPGXTransactor(pool *pgxpool.Pool) *PGXTransactor

func (*PGXTransactor) InTx

func (t *PGXTransactor) InTx(ctx context.Context, fn func(q Querier) error) error

type Querier

type Querier interface {
	ListNetworkDevices(ctx context.Context) ([]db.NetworkDevice, error)
	GetNetworkDeviceByID(ctx context.Context, arg db.GetNetworkDeviceByIDParams) (db.NetworkDevice, error)
	CreateNetworkDevice(ctx context.Context, arg db.CreateNetworkDeviceParams) (db.NetworkDevice, error)
	UpdateNetworkDevice(ctx context.Context, arg db.UpdateNetworkDeviceParams) (db.NetworkDevice, error)
	DeleteNetworkDevice(ctx context.Context, arg db.DeleteNetworkDeviceParams) error
	GetVlanByVlanID(ctx context.Context, arg db.GetVlanByVlanIDParams) (db.Vlan, error)
	UpsertRadcheckCleartextPassword(ctx context.Context, arg db.UpsertRadcheckCleartextPasswordParams) error
	DeleteRadcheckCleartextPasswordByUsername(ctx context.Context, arg db.DeleteRadcheckCleartextPasswordByUsernameParams) error
	DeleteRadusergroupsByUsername(ctx context.Context, arg db.DeleteRadusergroupsByUsernameParams) error
	InsertRadusergroup(ctx context.Context, arg db.InsertRadusergroupParams) error
	CreateAuditLog(ctx context.Context, arg db.CreateAuditLogParams) (db.AuditLog, error)
}

type Service

type Service struct {
	// contains filtered or unexported fields
}

func NewService

func NewService(queries Querier, tx Transactor) *Service

func (*Service) Create

func (s *Service) Create(ctx context.Context, actor db.User, input api.NetworkDeviceWrite) (DeviceRecord, error)

func (*Service) Delete

func (s *Service) Delete(ctx context.Context, actor db.User, id uuid.UUID) error

func (*Service) Get

func (s *Service) Get(ctx context.Context, id uuid.UUID) (DeviceRecord, error)

func (*Service) List

func (s *Service) List(ctx context.Context) ([]DeviceRecord, error)

func (*Service) Update

func (s *Service) Update(ctx context.Context, actor db.User, id uuid.UUID, patch api.NetworkDevicePatch) (DeviceRecord, error)

type Transactor

type Transactor interface {
	InTx(ctx context.Context, fn func(q Querier) error) error
}

type ValidationError

type ValidationError struct {
	Message string
}

func (ValidationError) Error

func (e ValidationError) Error() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL