magic.lambda.validators 17.2.0

dotnet add package magic.lambda.validators --version 17.2.0
NuGet\Install-Package magic.lambda.validators -Version 17.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="magic.lambda.validators" Version="17.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add magic.lambda.validators --version 17.2.0
#r "nuget: magic.lambda.validators, 17.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install magic.lambda.validators as a Cake Addin
#addin nuget:?package=magic.lambda.validators&version=17.2.0

// Install magic.lambda.validators as a Cake Tool
#tool nuget:?package=magic.lambda.validators&version=17.2.0

magic.lambda.validators - Hyperlambda validators

This project contains argument validators for Hyperlambda. More specifically it contains the following slots.

  • [validators.date] - Verifies that some date input is a date, and optionally between [min] and [max] value
  • [validators.email] - Verifies that some input is a legal email address
  • [validators.enum] - Verifies that some input is one of a set of predefined legal values, found as values of children
  • [validators.integer] - Verifies that some integer input (long, int, etc) is between some specified [min] and [max] range
  • [validators.mandatory] - Verifies that some input valus is given (at all)
  • [validators.regex] - Verifies that some input is matching some given [regex] pattern
  • [validators.string] - Verifies that some string input is between [min] and [max] in length
  • [validators.url] - Verifies that some string input is a legal URL, either HTTP or HTTPS type of scheme
  • [validators.recaptcha] - reCAPTCHA validator, to avoid bots from invoking your APIs
  • [validators.default] - Default validator, adding default argument if not specified

All of the above slots takes an expression, or values, as its main input, and will throw exceptions if their input expression's value(s), or its value, does not follow the rules specified by the validator. Some of the above slots takes additional arguments. This makes them perfect fits for "intercepting" the input specified to an HTTP REST endpoint, to verify the input data conforms to some sort of predefined validation scheme.

Commonalities between validators

.foo
   email:foo@bar.com
validators.email:x:@.foo/*/email

Most Hyperlambda validators requires some sort of argument(s) - However, some of these validators does not require arguments, such as the email validator, that simply verifies the input is a valid email address. To use the [validators.regex] validator, you should probably learn regular expression. However, this is beyond the scope of this article.

Notice - No attempt to invoke the type validator logic will be done unless the value is a non null value. If you want to enforce such logic, you'll have to combine the specific type validators with the [validators.mandatory] validator, that enforces that a value must be specified and not have a null value.

How to use [validators.date]

This slot works similarly to the [validator.integer] validator, except instead of providing a min/max integer value, you're expected to provide a min/max date value. Below is an example of how you could use it.

validators.date:x:@.arguments/*/date
   min:date:"2005-01-21T23:59:47"
   max:date:"2023-01-21T23:59:47"

How to use [validators.email]

This slot takes no arguments besides an expression, and will throw an exception unless the value of the node the expression is leading to is a valid email address. Below is example usage.

.arg:foo@bar.com
validators.email:x:@.arg

How to use [validators.enum]

This validator will throw an exception unless the specified string argument is one of the legal values. Usage could be as follows.

validators.enum:x:@.arguments/*/enum_value
   .:val1
   .:val2

If the above [enum_value] is not either val1 or val2 the validator will throw an exception.

How to use [validators.integer]

This value takes a [min] and [max] value, both of which are optional, and declares the minimum, and/or maximum value of the integer input. Usage could be as follows.

validators.integer:x:@.arguments/*/some-integer-argument
   min:50
   max:100

If the specified integer value is not within the range of the min and max value, an exception will be thrown.

How to use [validators.mandatory]

This slot simply throws an exception if the specified argument is not supplied. Below is example usage.

validators.mandatory:x:@.arguments/*/mandatory_arg

How to use [validators.regex]

This validator requires a [regex] argument, that is a regular expression that must match the argument specified. Usage can be found below.

.arguments
   foo:howdy world
validators.regex:x:@.arguments/*/foo
   regex:howdy

If you remove the "howdy" parts of your above argument, an exception will be thrown.

How to use [validators.string]

This works the same way as the [validators.integer] validator, except instead of being a min/max value the min/max arguments declares the minimum and maximum length of the string, allowing you to restrict string length of arguments to a min/max value for your Hyperlambda. Below is example usage that will throw an exception unless the argument is between 5 and 15 characters in length.

validators.string:x:@.some-arg
   min:5
   max:15

How to use [validators.url]

This is similar to the [validators.email] slot, except it requires the argument to be a valid URL instead of a valid email. Below is example usage.

validators.url:x:@.some-url

How to use [validators.recaptcha]

This is probably the most complex validator, and required 3 arguments.

  • [site-key] - Site key as provided to you by Google's reCAPTCHA admin panel
  • [secret] - Secret as provided to you by Google's reCAPTCHA admin panel
  • [min] - Minimum value, a decimal value between 0 and 1. A good value here is typically 0.3

To use this validator you will need a Google reCAPTCHA account, version 3, at which point you can use it as follows.

validators.recaptcha:x:@.arguments/*/recaptcha_value
   site-key:xyz
   secret:qwerty
   min:decimal:0.3

How to use [validators.default]

This validator takes one or more arguments with any name and any value, and if this node does not exist as a child of the node collection specified as its expression value, it appends the node to it. If the node exists but has a null value, it sets its value to the value of the argument.

.arguments
validators.default:x:@.arguments
   foo1:bar1

Validator internals

You can use one invocation to any of the validators to validate multiple nodes, such as the following illustrates.

.arguments
   .
      no:5
   .
      no:10
   .
      // Throws if you remove the "."
      .no:11

validators.integer:x:@.arguments/*/*/no
   min:5
   max:10

First the above expression will be evaluated, then every resulting value will be validated, and if any of them are not validated according to the validator's arguments - Which for the above example is number between 5 and 10 - The validater will throw an exception, providing the invalid value, and the name of the last iterator (effectively being the argument name) to the caller. This allows you to use one single validator to validate multiple arguments, such as the above illustrates. This might be useful if you for instance have an endpoint accepting multiple address fields, and zip code is a mandatory argument, and it needs to be an integer with a [max] and [min] value.

Magic's GitHub project page

Magic is 100% Open Source and you can find the primary project GitHub page here.

Project website for magic.lambda.validators

The source code for this repository can be found at github.com/polterguy/magic.lambda.validators, and you can provide feedback, provide bug reports, etc at the same place.

  • Build status
  • Quality Gate Status
  • Bugs
  • Code Smells
  • Coverage
  • Duplicated Lines (%)
  • Lines of Code
  • Maintainability Rating
  • Reliability Rating
  • Security Rating
  • Technical Debt
  • Vulnerabilities

The projects is copyright Thomas Hansen 2023 - 2024, and professionally maintained by AINIRO.IO.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on magic.lambda.validators:

Package Downloads
magic.library

Helper project for Magic to wire up everything easily by simply adding one package, and invoking two simple methods. When using Magic, this is (probably) the only package you should actually add, since this package pulls in everything else you'll need automatically, and wires up everything sanely by default. To use package go to https://polterguy.github.io

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
17.2.0 266 1/22/2024
17.1.7 147 1/12/2024
17.1.6 123 1/11/2024
17.1.5 144 1/5/2024
17.0.1 184 1/1/2024
17.0.0 334 12/14/2023
16.11.5 295 11/12/2023
16.9.0 296 10/9/2023
16.7.0 504 7/11/2023
16.4.1 357 7/2/2023
16.4.0 367 6/22/2023
16.3.1 320 6/7/2023
16.3.0 336 5/28/2023
16.1.9 594 4/30/2023
15.10.11 467 4/13/2023
15.9.1 604 3/27/2023
15.9.0 477 3/24/2023
15.8.2 508 3/20/2023
15.7.0 384 3/6/2023
15.5.0 1,519 1/28/2023
15.2.0 656 1/18/2023
15.1.0 1,119 12/28/2022
14.5.7 699 12/13/2022
14.5.5 777 12/6/2022
14.5.1 628 11/23/2022
14.5.0 575 11/18/2022
14.4.5 689 10/22/2022
14.4.1 751 10/22/2022
14.4.0 639 10/17/2022
14.3.1 1,230 9/12/2022
14.3.0 616 9/10/2022
14.1.3 901 8/7/2022
14.1.2 640 8/7/2022
14.1.1 640 8/7/2022
14.0.14 669 7/26/2022
14.0.12 645 7/24/2022
14.0.11 630 7/23/2022
14.0.10 642 7/23/2022
14.0.9 633 7/23/2022
14.0.8 723 7/17/2022
14.0.5 764 7/11/2022
14.0.4 740 7/6/2022
14.0.3 702 7/2/2022
14.0.2 654 7/2/2022
14.0.0 818 6/25/2022
13.4.0 2,014 5/31/2022
13.3.4 1,412 5/9/2022
13.3.0 922 5/1/2022
13.2.0 1,119 4/21/2022
13.1.1 714 4/20/2022
13.1.0 795 4/7/2022
13.0.0 720 4/5/2022
11.0.5 1,379 3/2/2022
11.0.4 749 2/22/2022
11.0.3 730 2/9/2022
11.0.2 801 2/6/2022
11.0.1 740 2/5/2022
10.0.21 729 1/28/2022
10.0.20 749 1/27/2022
10.0.19 731 1/23/2022
10.0.18 704 1/17/2022
10.0.15 898 12/31/2021
10.0.14 548 12/28/2021
10.0.7 1,409 12/22/2021
10.0.5 725 12/18/2021
9.9.9 1,632 11/29/2021
9.9.3 891 11/9/2021
9.9.2 633 11/4/2021
9.9.0 725 10/30/2021
9.8.9 663 10/29/2021
9.8.7 617 10/27/2021
9.8.6 619 10/27/2021
9.8.5 686 10/26/2021
9.8.0 1,316 10/20/2021
9.7.9 601 10/19/2021
9.7.5 1,432 10/14/2021
9.7.0 816 10/9/2021
9.6.6 1,180 8/14/2021
9.2.0 360 5/26/2021
9.1.7 6,755 5/3/2021
9.1.4 645 4/21/2021
9.1.0 1,016 4/14/2021
9.0.0 869 4/5/2021
8.9.9 977 3/30/2021
8.9.3 1,516 3/19/2021
8.9.2 984 1/29/2021
8.9.1 985 1/24/2021
8.9.0 1,066 1/22/2021
8.6.9 2,949 11/8/2020
8.6.6 1,941 11/2/2020
8.6.0 3,973 10/28/2020
8.5.0 1,866 10/23/2020
8.4.1 4,789 10/15/2020
8.4.0 1,284 10/13/2020
8.3.1 2,623 10/5/2020
8.3.0 1,234 10/3/2020
8.2.2 1,985 9/26/2020
8.2.1 1,304 9/25/2020
8.2.0 1,357 9/25/2020
8.1.17 6,724 9/13/2020
8.1.16 622 9/13/2020
8.1.15 1,865 9/12/2020
8.1.11 2,461 9/11/2020
8.1.10 1,266 9/6/2020
8.1.9 1,299 9/3/2020
8.1.8 1,273 9/2/2020
8.1.7 1,174 8/28/2020
8.1.4 1,183 8/25/2020
8.1.3 1,228 8/18/2020
8.1.2 1,184 8/16/2020
8.1.1 1,235 8/15/2020
8.1.0 555 8/15/2020
8.0.1 2,632 8/7/2020
8.0.0 1,205 8/7/2020
7.0.1 1,346 6/28/2020
7.0.0 1,325 6/28/2020
5.0.0 7,403 2/25/2020
4.0.4 7,896 1/27/2020
4.0.3 1,215 1/27/2020
4.0.2 1,383 1/16/2020
4.0.1 1,377 1/11/2020
4.0.0 1,310 1/5/2020
3.1.1 4,158 12/4/2019
3.1.0 2,724 11/10/2019
3.0.0 3,846 10/23/2019
2.0.0 6,537 10/18/2019