db

package
v2.16.0 Latest Latest
Warning

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

Go to latest
Published: Aug 26, 2023 License: MIT Imports: 8 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 (a Service) Create(ctx context.Context, o model.User) (uint64, error)

Create a user

func (Service) Delete added in v2.16.0

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

Delete an user

func (Service) DoAtomic added in v2.16.0

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

DoAtomic do things in a transaction

func (Service) Get added in v2.16.0

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

Get a user

func (Service) IsAuthorized added in v2.16.0

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

IsAuthorized checks user on profile

func (Service) Login added in v2.16.0

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

Login checks given credentials

func (Service) Update added in v2.16.0

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

Update user

func (Service) UpdatePassword added in v2.16.0

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

UpdatePassword of a user

Jump to

Keyboard shortcuts

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