Documentation ¶
Overview ¶
Package productbus provides business access to product domain.
Index ¶
- Constants
- Variables
- type Business
- func (b *Business) Count(ctx context.Context, filter QueryFilter) (int, error)
- func (b *Business) Create(ctx context.Context, np NewProduct) (Product, error)
- func (b *Business) Delete(ctx context.Context, prd Product) error
- func (b *Business) NewWithTx(tx sqldb.CommitRollbacker) (*Business, error)
- func (b *Business) Query(ctx context.Context, filter QueryFilter, orderBy order.By, page page.Page) ([]Product, error)
- func (b *Business) QueryByID(ctx context.Context, productID uuid.UUID) (Product, error)
- func (b *Business) QueryByUserID(ctx context.Context, userID uuid.UUID) ([]Product, error)
- func (b *Business) Update(ctx context.Context, prd Product, up UpdateProduct) (Product, error)
- type NewProduct
- type Product
- type QueryFilter
- type Storer
- type UpdateProduct
Constants ¶
const ( OrderByProductID = "product_id" OrderByUserID = "user_id" OrderByName = "name" OrderByCost = "cost" OrderByQuantity = "quantity" )
Set of fields that the results can be ordered by.
Variables ¶
var ( ErrNotFound = errors.New("product not found") ErrUserDisabled = errors.New("user disabled") ErrInvalidCost = errors.New("cost not valid") )
Set of error variables for CRUD operations.
var DefaultOrderBy = order.NewBy(OrderByProductID, order.ASC)
DefaultOrderBy represents the default way we sort.
Functions ¶
This section is empty.
Types ¶
type Business ¶
type Business struct {
// contains filtered or unexported fields
}
Business manages the set of APIs for product access.
func NewBusiness ¶
func NewBusiness(log *logger.Logger, userBus *userbus.Business, delegate *delegate.Delegate, storer Storer) *Business
NewBusiness constructs a product business API for use.
func (*Business) NewWithTx ¶
func (b *Business) NewWithTx(tx sqldb.CommitRollbacker) (*Business, error)
NewWithTx constructs a new business value that will use the specified transaction in any store related calls.
func (*Business) Query ¶
func (b *Business) Query(ctx context.Context, filter QueryFilter, orderBy order.By, page page.Page) ([]Product, error)
Query retrieves a list of existing products.
func (*Business) QueryByUserID ¶
QueryByUserID finds the products by a specified User ID.
type NewProduct ¶
type NewProduct struct { UserID uuid.UUID Name name.Name Cost money.Money Quantity quantity.Quantity }
NewProduct is what we require from clients when adding a Product.
func TestGenerateNewProducts ¶
func TestGenerateNewProducts(n int, userID uuid.UUID) []NewProduct
TestGenerateNewProducts is a helper method for testing.
type Product ¶
type Product struct { ID uuid.UUID UserID uuid.UUID Name name.Name Cost money.Money Quantity quantity.Quantity DateCreated time.Time DateUpdated time.Time }
Product represents an individual product.
type QueryFilter ¶
QueryFilter holds the available fields a query can be filtered on. We are using pointer semantics because the With API mutates the value.
type Storer ¶
type Storer interface { NewWithTx(tx sqldb.CommitRollbacker) (Storer, error) Create(ctx context.Context, prd Product) error Update(ctx context.Context, prd Product) error Delete(ctx context.Context, prd Product) error Query(ctx context.Context, filter QueryFilter, orderBy order.By, page page.Page) ([]Product, error) Count(ctx context.Context, filter QueryFilter) (int, error) QueryByID(ctx context.Context, productID uuid.UUID) (Product, error) QueryByUserID(ctx context.Context, userID uuid.UUID) ([]Product, error) }
Storer interface declares the behavior this package needs to persist and retrieve data.
type UpdateProduct ¶
UpdateProduct defines what information may be provided to modify an existing Product. All fields are optional so clients can send just the fields they want changed. It uses pointer fields so we can differentiate between a field that was not provided and a field that was provided as explicitly blank. Normally we do not want to use pointers to basic types but we make exceptions around marshalling/unmarshalling.