mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Return 400 when input is invalid instead of server error
This commit is contained in:
parent
d58bf80c46
commit
6063ccef3a
@ -6,7 +6,7 @@
|
||||
|
||||
package docspell.restserver.routes
|
||||
|
||||
import cats.data.NonEmptyList
|
||||
import cats.data.{EitherT, NonEmptyList}
|
||||
import cats.effect._
|
||||
import cats.implicits._
|
||||
|
||||
@ -64,17 +64,29 @@ object NotificationRoutes extends NonEmptyListSupport {
|
||||
case req @ POST -> Root =>
|
||||
for {
|
||||
input <- req.as[NotificationChannel]
|
||||
ch <- Sync[F].pure(NotificationChannel.convert(input)).rethrow
|
||||
res <- backend.notification.createChannel(ch, user.account)
|
||||
resp <- Ok(Conversions.basicResult(res, "Channel created"))
|
||||
ch <- Sync[F].pure(NotificationChannel.convert(input))
|
||||
resp <- EitherT
|
||||
.fromEither[F](ch)
|
||||
.semiflatMap { c =>
|
||||
backend.notification
|
||||
.createChannel(c, user.account)
|
||||
.map(res => Conversions.basicResult(res, "Channel created"))
|
||||
}
|
||||
.foldF(ex => BadRequest(BasicResult(false, ex.getMessage)), Ok(_))
|
||||
} yield resp
|
||||
|
||||
case req @ PUT -> Root =>
|
||||
for {
|
||||
input <- req.as[NotificationChannel]
|
||||
ch <- Sync[F].pure(NotificationChannel.convert(input)).rethrow
|
||||
res <- backend.notification.updateChannel(ch, user.account)
|
||||
resp <- Ok(Conversions.basicResult(res, "Channel created"))
|
||||
ch <- Sync[F].pure(NotificationChannel.convert(input))
|
||||
resp <- EitherT
|
||||
.fromEither[F](ch)
|
||||
.semiflatMap { c =>
|
||||
backend.notification
|
||||
.updateChannel(c, user.account)
|
||||
.map(res => Conversions.basicResult(res, "Channel created"))
|
||||
}
|
||||
.foldF(ex => BadRequest(BasicResult(false, ex.getMessage)), Ok(_))
|
||||
} yield resp
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user