Giter Club home page Giter Club logo

validate's Introduction

Build Status

validate

typesafe Validation DSL

Usage

class User(val name: String, val age: Int)

val bob = User("Bob", 21)
val bill = User("Bill", 20)

val isOldEnoughToDrink = validate<String, User> {
    User::age.validate("is not old enough to drink") { it >= 21 }
}

bob.isOldEnoughToDrink()
        .fold({ errors -> errors.forEach { println(it) } }, { user -> println("${user.name} is old enough to drink!") })
// prints 'Bob is old enough to drink!'

bill.isOldEnoughToDrink()
        .fold({ errors -> errors.forEach { println(it) } }, { user -> println("${user.name} is old enough to drink!") })
// prints 'is not old enough to drink'

Complex Error Types

sealed class ValidationError {
    object NameIsBlank : ValidationError()
    object NotOldEnough : ValidationError()
}

val validate = validate<ValidationError, User> {
    User::age.validate(ValidationError.NotOldEnough) { it >= 18 }
    User::name.validate(ValidationError.NameIsBlank) { it.isNotBlank() }
}

bob.validate()
        .fold(::handleValidationErrors, ::printIsOldEnoughToDrink)
// prints 'Bob is old enough to drink!'

blank.validate()
        .fold(::handleValidationErrors, ::printIsOldEnoughToDrink)
// prints 'ValidationError$NotOldEnough'
// prints 'ValidationError$NameIsBlank'

blankName.validate()
        .fold(::handleValidationErrors, ::printIsOldEnoughToDrink)
// prints 'ValidationError$NameIsBlank'

Download

gradle

implementation 'dev.wengelef:validate:0.1.3'

maven

<dependency>
  <groupId>dev.wengelef</groupId>
  <artifactId>validate</artifactId>
  <version>0.1.4</version>
  <type>pom</type>
</dependency>

validate's People

Contributors

wengelef avatar

Stargazers

Dinesh Gangatharan avatar Sven Jacobs avatar

Watchers

James Cloos avatar  avatar

validate's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.