Documentation ¶
Overview ¶
Package pg provides memory storage functionality for users.
Index ¶
- type Store
- func (s Store) Create(ctx context.Context, u user.User) error
- func (s Store) Delete(ctx context.Context, userID string) error
- func (s Store) Query(ctx context.Context, pageNumber int, rowsPerPage int) ([]user.User, error)
- func (s Store) QueryByEmail(ctx context.Context, email string) (user.User, error)
- func (s Store) QueryByID(ctx context.Context, userID string) (user.User, error)
- func (s Store) Tran(tx sqlx.ExtContext) Store
- func (s Store) Update(ctx context.Context, u user.User) error
- func (s Store) WithinTran(ctx context.Context, fn func(sqlx.ExtContext) error) error
- type User
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
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) QueryByEmail ¶
QueryByEmail gets the specified user from the database by email.
func (Store) Tran ¶
func (s Store) Tran(tx sqlx.ExtContext) Store
Tran return new Store with transaction in it.
func (Store) WithinTran ¶
WithinTran runs passed function and do commit/rollback at the end.
type User ¶
type User struct { ID string `db:"user_id"` Name string `db:"name"` Email string `db:"email"` PasswordHash []byte `db:"password_hash"` Roles pq.StringArray `db:"roles"` DateCreated time.Time `db:"date_created"` DateUpdated time.Time `db:"date_updated"` }
User represent the structure we need for moving data between the app and the database.
Click to show internal directories.
Click to hide internal directories.