aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/services/UserService.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/services/UserService.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/services/UserService.scala68
1 files changed, 27 insertions, 41 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/services/UserService.scala b/src/main/scala/xyz/driver/pdsuidomain/services/UserService.scala
index 350720e..79e9835 100644
--- a/src/main/scala/xyz/driver/pdsuidomain/services/UserService.scala
+++ b/src/main/scala/xyz/driver/pdsuidomain/services/UserService.scala
@@ -26,8 +26,7 @@ object UserService {
object ActivateExecutorReply {
type Error = ActivateExecutorReply with DomainError
case class Entity(x: User) extends ActivateExecutorReply
- case object NotFoundError
- extends ActivateExecutorReply with DomainError.NotFoundError {
+ case object NotFoundError extends ActivateExecutorReply with DomainError.NotFoundError {
val userMessage = "Info about you is not found on the server"
}
}
@@ -37,18 +36,15 @@ object UserService {
type Error = GetByIdReply with DomainError
case class Entity(x: User) extends GetByIdReply
case object AuthorizationError
- extends GetByIdReply with DomainError.AuthorizationError with DefaultAccessDeniedError
- case object NotFoundError
- extends GetByIdReply with DomainError.NotFoundError with DefaultNotFoundError
- case class CommonError(userMessage: String)
- extends GetByIdReply with DomainError
+ extends GetByIdReply with DomainError.AuthorizationError with DefaultAccessDeniedError
+ case object NotFoundError extends GetByIdReply with DomainError.NotFoundError with DefaultNotFoundError
+ case class CommonError(userMessage: String) extends GetByIdReply with DomainError
}
sealed trait GetByEmailReply
object GetByEmailReply {
case class Entity(x: User) extends GetByEmailReply
- case object NotFoundError
- extends GetByEmailReply with DefaultNotFoundError with DomainError.NotFoundError {
+ case object NotFoundError extends GetByEmailReply with DefaultNotFoundError with DomainError.NotFoundError {
override def userMessage: String = "Incorrect email. Try again."
}
}
@@ -57,30 +53,25 @@ object UserService {
object GetByCredentialsReply {
case class Entity(x: User) extends GetByCredentialsReply
case object AuthenticationError
- extends GetByCredentialsReply with DefaultCredentialsError with DomainError.AuthenticationError
- case object NotFoundError
- extends GetByCredentialsReply with DomainError.NotFoundError with DefaultNotFoundError
+ extends GetByCredentialsReply with DefaultCredentialsError with DomainError.AuthenticationError
+ case object NotFoundError extends GetByCredentialsReply with DomainError.NotFoundError with DefaultNotFoundError
}
sealed trait GetListReply
object GetListReply {
case class EntityList(xs: Seq[User], totalFound: Int) extends GetListReply
- case object AuthorizationError
- extends GetListReply with DomainError.AuthorizationError with DefaultNotFoundError
+ case object AuthorizationError extends GetListReply with DomainError.AuthorizationError with DefaultNotFoundError
}
sealed trait CreateReply
object CreateReply {
type Error = CreateReply with DomainError
- case class Created(x: User) extends CreateReply
- case object AuthorizationError
- extends CreateReply with DefaultNotFoundError with DomainError.AuthorizationError
- case class UserAlreadyExistsError(email: Email)
- extends CreateReply with DomainError {
+ case class Created(x: User) extends CreateReply
+ case object AuthorizationError extends CreateReply with DefaultNotFoundError with DomainError.AuthorizationError
+ case class UserAlreadyExistsError(email: Email) extends CreateReply with DomainError {
val userMessage = s"The user with this email already exists."
}
- case class CommonError(userMessage: String)
- extends CreateReply with DomainError
+ case class CommonError(userMessage: String) extends CreateReply with DomainError
}
sealed trait UpdateReply
@@ -88,9 +79,8 @@ object UserService {
type Error = UpdateReply with DomainError
case class Updated(updated: User) extends UpdateReply
case object AuthorizationError
- extends UpdateReply with DefaultAccessDeniedError with DomainError.AuthorizationError
- case class CommonError(userMessage: String)
- extends UpdateReply with DomainError
+ extends UpdateReply with DefaultAccessDeniedError with DomainError.AuthorizationError
+ case class CommonError(userMessage: String) extends UpdateReply with DomainError
}
sealed trait DeleteReply
@@ -98,15 +88,12 @@ object UserService {
type Error = DeleteReply with DomainError
case object Deleted extends DeleteReply
case class AuthorizationError(user: User)
- extends DeleteReply with DefaultAccessDeniedError with DomainError.AuthorizationError
- case object AssignedToRecordAndDocumentError
- extends DeleteReply with DomainError {
+ extends DeleteReply with DefaultAccessDeniedError with DomainError.AuthorizationError
+ case object AssignedToRecordAndDocumentError extends DeleteReply with DomainError {
val userMessage = "User is can not be deleted because he has record and document in work"
}
- case object NotFoundError
- extends DeleteReply with DefaultNotFoundError with DomainError.NotFoundError
- case class CommonError(userMessage: String)
- extends DeleteReply with DomainError
+ case object NotFoundError extends DeleteReply with DefaultNotFoundError with DomainError.NotFoundError
+ case class CommonError(userMessage: String) extends DeleteReply with DomainError
}
}
@@ -118,26 +105,25 @@ trait UserService extends PhiLogging {
/**
* Utility method for getting request executor.
*/
- def activateExecutor(executorId: LongId[User])
- (implicit requestContext: AnonymousRequestContext): Future[ActivateExecutorReply]
+ def activateExecutor(executorId: LongId[User])(
+ implicit requestContext: AnonymousRequestContext): Future[ActivateExecutorReply]
def getById(userId: LongId[User])(implicit requestContext: AuthenticatedRequestContext): Future[GetByIdReply]
- def getByEmail(email: Email)
- (implicit requestContext: AnonymousRequestContext): Future[GetByEmailReply]
+ def getByEmail(email: Email)(implicit requestContext: AnonymousRequestContext): Future[GetByEmailReply]
- def getByCredentials(email: Email, password: String)
- (implicit requestContext: AnonymousRequestContext): Future[GetByCredentialsReply]
+ def getByCredentials(email: Email, password: String)(
+ implicit requestContext: AnonymousRequestContext): Future[GetByCredentialsReply]
def getAll(filter: SearchFilterExpr = SearchFilterExpr.Empty,
sorting: Option[Sorting] = None,
- pagination: Option[Pagination] = None)
- (implicit requestContext: AuthenticatedRequestContext): Future[GetListReply]
+ pagination: Option[Pagination] = None)(
+ implicit requestContext: AuthenticatedRequestContext): Future[GetListReply]
def create(draftUser: User)(implicit requestContext: AuthenticatedRequestContext): Future[CreateReply]
- def update(origUser: User, draftUser: User)
- (implicit requestContext: AuthenticatedRequestContext): Future[UpdateReply]
+ def update(origUser: User, draftUser: User)(
+ implicit requestContext: AuthenticatedRequestContext): Future[UpdateReply]
def delete(userId: LongId[User])(implicit requestContext: AuthenticatedRequestContext): Future[DeleteReply]
}