Mainflux.mainflux/users/service.go

113 lines
3.1 KiB
Go

// Copyright (c) Mainflux
// SPDX-License-Identifier: Apache-2.0
package users
import (
"context"
"errors"
)
var (
// ErrConflict indicates usage of the existing email during account
// registration.
ErrConflict = errors.New("email already taken")
// ErrMalformedEntity indicates malformed entity specification (e.g.
// invalid username or password).
ErrMalformedEntity = errors.New("malformed entity specification")
// ErrUnauthorizedAccess indicates missing or invalid credentials provided
// when accessing a protected resource.
ErrUnauthorizedAccess = errors.New("missing or invalid credentials provided")
// ErrNotFound indicates a non-existent entity request.
ErrNotFound = errors.New("non-existent entity")
// ErrScanMetadata indicates problem with metadata in db
ErrScanMetadata = errors.New("Failed to scan metadata")
)
// Service specifies an API that must be fullfiled by the domain service
// implementation, and all of its decorators (e.g. logging & metrics).
type Service interface {
// Register creates new user account. In case of the failed registration, a
// non-nil error value is returned.
Register(context.Context, User) error
// Login authenticates the user given its credentials. Successful
// authentication generates new access token. Failed invocations are
// identified by the non-nil error values in the response.
Login(context.Context, User) (string, error)
// Identify validates user's token. If token is valid, user's id
// is returned. If token is invalid, or invocation failed for some
// other reason, non-nil error values are returned in response.
Identify(string) (string, error)
// Get authenticated user info for the given token.
UserInfo(ctx context.Context, token string) (User, error)
}
var _ Service = (*usersService)(nil)
type usersService struct {
users UserRepository
hasher Hasher
idp IdentityProvider
}
// New instantiates the users service implementation.
func New(users UserRepository, hasher Hasher, idp IdentityProvider) Service {
return &usersService{users: users, hasher: hasher, idp: idp}
}
func (svc usersService) Register(ctx context.Context, user User) error {
hash, err := svc.hasher.Hash(user.Password)
if err != nil {
return ErrMalformedEntity
}
user.Password = hash
return svc.users.Save(ctx, user)
}
func (svc usersService) Login(ctx context.Context, user User) (string, error) {
dbUser, err := svc.users.RetrieveByID(ctx, user.Email)
if err != nil {
return "", ErrUnauthorizedAccess
}
if err := svc.hasher.Compare(user.Password, dbUser.Password); err != nil {
return "", ErrUnauthorizedAccess
}
return svc.idp.TemporaryKey(user.Email)
}
func (svc usersService) Identify(token string) (string, error) {
id, err := svc.idp.Identity(token)
if err != nil {
return "", ErrUnauthorizedAccess
}
return id, nil
}
func (svc usersService) UserInfo(ctx context.Context, token string) (User, error) {
id, err := svc.idp.Identity(token)
if err != nil {
return User{}, ErrUnauthorizedAccess
}
dbUser, err := svc.users.RetrieveByID(ctx, id)
if err != nil {
return User{}, ErrUnauthorizedAccess
}
return User{
Email: id,
Password: "",
Metadata: dbUser.Metadata,
}, nil
}