aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuicommon/validation/Validators.scala
blob: a41f87a9928723aabf17d40acdd9be22f0eb8d11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package xyz.driver.pdsuicommon.validation

import xyz.driver.pdsuicommon.json.JsonSerializer
import xyz.driver.pdsuicommon.logging._

import scala.util.control.NonFatal

object Validators extends PhiLogging {

  type Validator[Input, Refined] = Input => Either[ValidationError, Refined]

  def generic[T, R](message: String)(f: PartialFunction[T, R]): Validator[T, R] = { value =>
    if (f.isDefinedAt(value)) Right(f(value))
    else Left(ValidationError(message))
  }

  def nonEmpty[T](field: String): Validator[Option[T], T] = generic(s"$field is empty") {
    case Some(x) => x
  }

  def nonEmptyString(field: String): Validator[String, String] = generic(s"$field is empty") {
    case x if x.nonEmpty => x
  }

  def deserializableTo[Refined](field: String)(value: String)(
          implicit m: Manifest[Refined]): Either[ValidationError, Refined] = {
    try {
      Right(JsonSerializer.deserialize[Refined](value))
    } catch {
      case NonFatal(e) =>
        logger.error(phi"Can not deserialize the ${Unsafe(field)}: $e")
        Left(ValidationError(s"$field is invalid"))
    }
  }

  def success[T](result: T): Either[Nothing, T] = Right(result)

  def fail(message: String): Either[ValidationError, Nothing] = Left(ValidationError(message))
}