Skip to content
New issue

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

1.0 validation functions #61

Closed
ftrotter opened this issue May 2, 2020 · 13 comments
Closed

1.0 validation functions #61

ftrotter opened this issue May 2, 2020 · 13 comments
Assignees
Labels
1.0 requirement Things we need in initial release enhancement Ready for QA

Comments

@ftrotter
Copy link
Contributor

ftrotter commented May 2, 2020

Very happy to have Ken demonstrating the depth that using the Laravel Illuminate Validation rules give us. I would like to implement the following validation rules out of the box... I really want to lean into this, since I think it will make lots of data import processes at the company far more effective. Here are the validation functions that I would like to implement out of the gate.

  • Anything that is prefixed with an is_ should 'boolean' and not 'required'
  • Anything that is DECIMAL or FLOAT should be 'numeric'
  • Anything that is TINYINT, SMALLINT, INT should have a 'max' and 'min' (or 'between') that correspond to the largest and smallest numbers that they can contain:
  • Anything that ends with _url should get the 'url' validation
  • Anything that ends with _uuid should get the 'uuid' validation
  • Anything that ends with _alpha should get the 'alpha' validation
  • Anything that ends with _alpha_dash should get the 'alpha_dash' validation
  • Anything that ends with _alpha_num should get the 'alpha_num' validation
  • Anything that ends with _email should get the 'email' validation
  • Anything that ends with _ipv4 should get the 'ipv4' validation
  • Anything that ends with _ipv6 should get the 'ipv6' validation
  • Anything that ends with _json should get the 'json' validation
  • Anything that ends with _timezone should get the 'timezone' validation

This seems reasonable given what is simple to implement from:
https://laravel.com/docs/6.x/validation#available-validation-rules

@ftrotter ftrotter added enhancement 1.0 requirement Things we need in initial release labels May 2, 2020
@ftrotter
Copy link
Contributor Author

ftrotter commented May 2, 2020

I am realizing that we may need to have something that will accept a zero, but not a blank... Which is between 'required' and 'present' in the validatin scheme.

And that our desire to have something that make sense with our HTML form environment might be at odds with our desire to use this for low level data processing...

-FT

@kchapple
Copy link
Contributor

@ftrotter @seanccsmith

One thing that may be throwing us off is a default-enabled middleware that automatically converts empty strings to null. This converts any empty string that comes from the UI to a null before the Request object reaches the controller.

You can see in app/Http/Kernel.php that the following middleware is listed.
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class

Since this middleware is enabled by default, it's not possible to have values be 'present' as you would like. Instead, an Exception is thrown when an empty string (then converted to null) is attempted to be saved into the database. To me, you want to potentially allow these three cases:

  1. If the field can be empty, the default value can be be set to an empty-string by default
  2. If there's no default value, and the field cannot be NULL, the user can still input an empty-string
  3. If there's no default value, and the field cannot be NULL, and the there is the string 'required' in the name, then the field should be explicitly required

I don't know if this is right (allowing point 2) for most cases, as most of the time, if you don't have a default value, and the field cannot be null, the application would expect some value. Like for a 'name' field for example. Should the user be able to enter an empty-string for their name in a real application?

I think that if there is no default value, and the field cannot be null, that the field should be required by the application. That will also ease confusion around the middleware described above.

Let me know if you have different experiences with your use-cases, as I understand that this firstly needs to support your apps.

@kchapple
Copy link
Contributor

I changed present back to required and documented. 'integer' validation allows 0 values. empty strings are converted to nulls by Laravel, so we changed those to required cause that seems to make sense for 99.9% of use-cases.

@seanccsmith
Copy link
Contributor

Closed the wrong issue

@seanccsmith seanccsmith reopened this Jun 1, 2020
@seanccsmith
Copy link
Contributor

*_url fields do not seem to be validated: bad strings entered through the web report interface are placed into the database.

@seanccsmith
Copy link
Contributor

Update:

  • it's *_uri fields that are not correctly validated. *_url fields seem to be fine.
  • the boolean validators do not seem to be catching things.
  • the validators do not seem to be catching values that are too large, as described in Fred's post.
  • the uuid validator is working, but as kind of a nitpick, the error just says "uuid.validator" instead of "not a valid uuid" or similar.

@seanccsmith
Copy link
Contributor

int/numeric floors and ceilings will be difficult to implement, and look unlikely to actually limit input the way we want just based on the data type. This will be moved to a 1.1 issue.

kchapple added a commit that referenced this issue Jun 5, 2020
@seanccsmith
Copy link
Contributor

I verified that I have the updated code, but I'm still getting bad results. The uri validator seems not to be working at all, and the boolean validator is weird too, but I'm not sure if it's the validators (screenshot).

Screen Shot 2020-06-05 at 1 47 12 PM

The original test datum for the is_boolean field is 4321. If I'm understanding this correctly, it looks like that is being evaluated to 1 BEFORE it is passed to the validator - is that true? Or is this a validator problem somehow?

@kchapple
Copy link
Contributor

kchapple commented Jun 5, 2020

@seanccsmith Yes, the boolean thing is something @ftrotter added:

    public static function formatForStorage( $field_name, $field_type, $value, $model = null)
    {


        $formattedValue = $value;
        if ( self::mapColumnDataTypeToInputType( $field_type, $field_name ) == 'boolean' ) {
			//support obvious notions of truth
            if ( $value === 'on' || $value === 'true' || $value === true || $value > 0 ) {
		//this allows us to support the use of 'on'/'true' etc  for trueness
                $formattedValue = 1;
            } else {
		//if it is a boolean and it is not obviously true.. then it is false..
                $formattedValue = 0;
            }

@kchapple
Copy link
Contributor

kchapple commented Jun 5, 2020

@seanccsmith can you verify if you 'cd vendor/careset/durc' and then do 'git log --oneline' that this is the output:

199a159 (HEAD -> master, tag: v0.9, origin/master, origin/HEAD) Added _uri suffix to trigger url validation rule, added is_ and has_ prefix to trigger boolean validation rule (#61)

@seanccsmith
Copy link
Contributor

Hmm, I don't know about this. So if we have a situation where the user has completely misunderstood the purpose of the column, by putting "4321" or "mostly harmless" in a field that should be boolean, we're making a judgement on it instead of throwing an error?

There's no way to get to the validator here, if any input will be evaluated to 0 or 1.

@seanccsmith
Copy link
Contributor

@kchapple Yes that's the output on my server when I run that command

@seanccsmith
Copy link
Contributor

Everything here is now functioning except for the boolean validators, which are being subverted by that boolean converter. I will make a new issue for that with a v1.1 flag.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1.0 requirement Things we need in initial release enhancement Ready for QA
Projects
None yet
Development

No branches or pull requests

3 participants