Documentation ¶
Overview ¶
Package user contains user related CRUD functionality.
Index ¶
- type NewUser
- type Store
- func (s Store) Authenticate(ctx context.Context, now time.Time, email, password string) (auth.Claims, error)
- func (s Store) Create(ctx context.Context, nu NewUser, now time.Time) (User, error)
- func (s Store) Delete(ctx context.Context, claims auth.Claims, userID string) error
- func (s Store) Query(ctx context.Context, pageNumber int, rowsPerPage int) ([]User, error)
- func (s Store) QueryByEmail(ctx context.Context, claims auth.Claims, email string) (User, error)
- func (s Store) QueryByID(ctx context.Context, claims auth.Claims, userID string) (User, error)
- func (s Store) Update(ctx context.Context, claims auth.Claims, userID string, uu UpdateUser, ...) error
- type UpdateUser
- type User
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NewUser ¶
type NewUser struct { Name string `json:"name" validate:"required"` Email string `json:"email" validate:"required,email"` Roles []string `json:"roles" validate:"required"` Password string `json:"password" validate:"required"` PasswordConfirm string `json:"password_confirm" validate:"eqfield=Password"` }
NewUser contains information needed to create a new User.
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store manages the set of API's for user access.
func NewStore ¶
func NewStore(log *zap.SugaredLogger, db *sqlx.DB) Store
NewStore constructs a user store for api access.
func (Store) Authenticate ¶
func (s Store) Authenticate(ctx context.Context, now time.Time, email, password string) (auth.Claims, error)
Authenticate finds a user by their email and verifies their password. On success it returns a Claims User representing this user. The claims can be used to generate a token for future authentication.
func (Store) QueryByEmail ¶
QueryByEmail gets the specified user from the database by email.
type UpdateUser ¶
type UpdateUser struct { Name *string `json:"name"` Email *string `json:"email" validate:"omitempty,email"` Roles []string `json:"roles"` Password *string `json:"password"` PasswordConfirm *string `json:"password_confirm" validate:"omitempty,eqfield=Password"` }
UpdateUser defines what information may be provided to modify an existing User. 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.