db

package
v2.18.2 Latest Latest
Warning

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

Go to latest
Published: Jan 19, 2024 License: MIT Imports: 11 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Database added in v2.11.11

type Database interface {
	Get(context.Context, func(pgx.Row) error, string, ...any) error
	Create(context.Context, string, ...any) (uint64, error)
	One(context.Context, string, ...any) error
	DoAtomic(context.Context, func(context.Context) error) error
}

type Service added in v2.16.0

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

func New

func New(db Database) Service

func (Service) Create added in v2.16.0

func (s Service) Create(ctx context.Context, o model.User) (uint64, error)

func (Service) Delete added in v2.16.0

func (s Service) Delete(ctx context.Context, o model.User) error

func (Service) DoAtomic added in v2.16.0

func (s Service) DoAtomic(ctx context.Context, action func(context.Context) error) error

func (Service) Get added in v2.16.0

func (s Service) Get(ctx context.Context, id uint64) (model.User, error)

func (Service) IsAuthorized added in v2.16.0

func (s Service) IsAuthorized(ctx context.Context, user model.User, profile string) bool

func (Service) Login added in v2.16.0

func (s Service) Login(ctx context.Context, login, password string) (model.User, error)

func (Service) Update added in v2.16.0

func (s Service) Update(ctx context.Context, o model.User) error

func (Service) UpdatePassword added in v2.16.0

func (s Service) UpdatePassword(ctx context.Context, o model.User) error

Jump to

Keyboard shortcuts

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