We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
オブジェクトに対する典型的なバリデーションロジックをシュッと書くためのDSLを提供してくれるやつ。 RailsでいうところのActiveModel::Validation に相当するライブラリ。
辺り。
ただvalidate メソッドを呼ぶだけでは以下のような何のありがたみもないエラーが返ってくる。
{ "errors": [ { "message": "Exception while fetching data (/updateUser) : null", "locations": [ { "line": 2, "column": 3 } ], "path": [ "updateUser" ] } ] }
せめてどの属性がどのバリデーションに引っかかったのかくらいは出すようにしたいので、以下のような拡張を入れ込む。
fun <T> Result<T>.throwOnFailure() { if (this.isFailure) { val errorMessage = (this.exceptionOrNull() as ConstraintViolationException).getMessage() throw IllegalArgumentException(errorMessage) } } fun ConstraintViolationException.getMessage(): String { return this.constraintViolations .mapToMessage(locale = Locale.ENGLISH) .joinToString(separator = ",") { "${it.property}: ${it.message}" } } data class User( val id: Int, val name: String, val createdAt: LocalDateTime, val updatedAt: LocalDateTime ) { init { runCatching { validate(this) { validate(User::id).isPositive() validate(User::name).hasSize(min = 1, max = 20) } }.throwOnFailure() } }
これでMutationクエリなどでUserを無効な値で更新しようとしたら以下のようなエラーが返ってくるようになる。
{ "errors": [ { "message": "Exception while fetching data (/updateUser) : name: Size must be between 1 and 20", "locations": [ { "line": 2, "column": 3 } ], "path": [ "updateUser" ] } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Valiktorとは
オブジェクトに対する典型的なバリデーションロジックをシュッと書くためのDSLを提供してくれるやつ。
RailsでいうところのActiveModel::Validation に相当するライブラリ。
何を依存に追加すればいいの
だけ
使いどころは?
辺り。
バリデーションエラーどう表示されるの?
ただvalidate メソッドを呼ぶだけでは以下のような何のありがたみもないエラーが返ってくる。
せめてどの属性がどのバリデーションに引っかかったのかくらいは出すようにしたいので、以下のような拡張を入れ込む。
これでMutationクエリなどでUserを無効な値で更新しようとしたら以下のようなエラーが返ってくるようになる。
The text was updated successfully, but these errors were encountered: