Documentation ¶
Overview ¶
Package db contains image related CRUD functionality.
Index ¶
- type Image
- type Store
- func (s Store) Create(ctx context.Context, image Image) error
- func (s Store) Delete(ctx context.Context, imageID string) error
- func (s Store) Query(ctx context.Context, pageNumber int, rowsPerPage int) ([]Image, error)
- func (s Store) QueryByID(ctx context.Context, imageID string) (Image, error)
- func (s Store) QueryByUserID(ctx context.Context, userID string) ([]Image, error)
- func (s Store) Tran(tx sqlx.ExtContext) Store
- func (s Store) Update(ctx context.Context, image Image) error
- func (s Store) WithinTran(ctx context.Context, fn func(sqlx.ExtContext) error) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Image ¶
type Image struct { ID string `db:"image_id"` // Unique identifier. ImageURL string `db:"image_url"` // Display image URL to the path on file system containing image. UserID string `db:"user_id"` // ID of the user who created the image. DateUploaded time.Time `db:"date_uploaded"` // When the image was uploaded. }
Image represents an individual image.
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store manages the set of APIs for user access.
func NewStore ¶
func NewStore(log *zap.SugaredLogger, db *sqlx.DB) Store
NewStore constructs a data for api access.
func (Store) Create ¶
Create adds an Image to the database. It returns the created Image with fields like ID and DateUploaded populated.
func (Store) QueryByUserID ¶
QueryByUserID finds the Image identified by a given User ID.
func (Store) Tran ¶
func (s Store) Tran(tx sqlx.ExtContext) Store
Tran return new Store with transaction in it.
func (Store) Update ¶
Update modifies metadata about an Image. It will error if the specified ID is invalid or does not reference an existing Image.
func (Store) WithinTran ¶
WithinTran runs passed function and do commit/rollback at the end.
Click to show internal directories.
Click to hide internal directories.