Veli

Data validation library for Elixir.

Installation

the package can be installed by adding veli to your list of dependencies in mix.exs:

def deps do
  [
    {:veli, "~> 0.2.6"}
  ]
end

Documentation

Documentation is avaible at HexDocs.

Examples

Simple Example

Veli.valid("hello", type: :string, match: ~r/^(h|H)/) |> Veli.error()

Form Validation

form_validator = %Veli.Types.Map{
  rule: %{
    "username" => [
      # Validation
      nullable: false,
      type: :string,
      min: 3,
      max: 32,
      match: ~r/^[a-zA-Z0-9_]*$/,
      # Errors
      _nullable: "Username field not found.",
      _type: "Username must be a string.",
      _min: "Username is too short.",
      _max: "Username is too long.",
      _match: "Username must only contains alphanumeric characters."
    ],
    "age" => [
      # Validation
      nullable: false,
      type: :integer,
      min: 13,
      # Errors
      _nullable: "Age field not found.",
      _type: "Age must be an integer.",
      _min: "Age must be at least 13."
    ]
  },
  strict: true,
  error: "Form must be an object."
}

form = %{"username" => "john", "age" => 16}
Veli.valid(form, form_validator) |> Veli.error()

With Builder

defmodule Validators.Users do
  use Veli.Build, %Veli.Types.Map{
    rule: %{
      "username" => [type: :string, min: 3, max: 32],
      "age" => [type: :integer, min: 13]
    },
    strict: true
  }
end

Validators.Users.valid(%{"username" => "yeah", "age" => 17})
|> Veli.error()

More examples can be found in test files.

Community Validators

This list contains validators built for Veli.

Contributing

License

Released under the MIT License.