NATS4 Form Validation

From TMM Wiki
Revision as of 21:03, 2 December 2016 by TMMNick (talk | contribs) (Created page with "{{NATS4 Manual | show_sites_admin_section = true }} NATS forms have built in validation checks on form fields. These require that the form be submitted for NATS to valid...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
Sites Admin
The Sites Admin
Sites
Site Setup
Site Templates
Tour Setup
Join Options
No Cost Registration
Special Pricing Options
Join Option Rules
Post URL Usage
Post URLs in NATS4
Approval/Upgrade/Denial Variables
Approval/Upgrade/Denial Template Variables
Mobile Tours
Token Sites
ID Numbers
Site Partner
Site User Management
Example Postbacks for Site User Management
Configure Redirects
Split A-B Testing
Username Checking
Form Validation
Post-Biller Templates
Send Information To Special Biller
Join Option Box vs Button
Qualified Join Page Hits
Allowed languages
Customize Join Form
Package Plus
Token Plus
Signup Plus
Type-In Traffic
Coupon Codes
Setting Rules
Site Groups
Options Simulator
ATVOD Verification Process

NATS forms have built in validation checks on form fields. These require that the form be submitted for NATS to validate them. For example, on the join form, you will see that the input names look like: signup[username:1:6:16:::username_check]

"signup" is the array that contains all submitted inputs. The format for each is:

  1. name of the input - In this example: username
  2. required flag - If set to 1, this input must be submitted
  3. minimum - the minimum length of the input
  4. maximum - the maximum length of the input
  5. compare - you can specify another input name here to compare the values. If set, the two inputs must match
  6. session compare - you can specify a session variable name here to compare to the input value. If set, the input must match the session variable's value
  7. special check - you can specify a check function for NATS to run on the input. The following are the avaialble check functions:

username_check_detailed

You can set detailed limitations on usernames by passing arguments to the special check function. For example: [username:1:6:16:::username_check_detailed;1|4|9|||]

The details after the "username_check_detailed;" separated by a pipe "|" define the arguments:

  1. (Flag 1 or 0) - Defines whether or not the first character MUST be a letter
  2. (Numeric) - Defines the minimum number of upper case characters there needs to be
  3. (Numeric) - Defines the minimum number of lower case characters there needs to be
  4. (Numeric) - Defines the minimum number of Numbers (0-9) there needs to be
  5. (Flag 1 or 0) - Defines whether or not all characters MUST be upper case (This overrides the numeric lower case check)
  6. (Flag 1 or 0) - Defines whether or not all characters MUST be lower case (This overrides the numeric upper case check)



In the example:
[username:1:6:16:::username_check_detailed;1|4|9|||]

The limitations set here say that for the Username:

  1. The first character must be a letter
  2. There must be at least 4 upper case letters
  3. There must be at least 9 lower case


password_check_detailed

You can set detailed limitations on passwords by passing arguments to the special check function. For example: [password:1:6:16:::password_check_detailed;1|||5|3|1|]

The details after the "password_check_detailed;" separated by a pipe "|" define the arguments:

  1. (Flag 1 or 0) - Defines whether or not the first character MUST be a letter.
  2. (Numeric) - Defines the minimum number of upper case characters there needs to be.
  3. (Numeric) - Defines the minimum number of lower case characters there needs to be.
  4. (Numeric) - Defines the minimum number of Numbers (0-9) there needs to be.
  5. (Numeric) - Defines the minimum number of Special Characters there needs to be (Anything that is not a letter or a number).
  6. (Flag 1 or 0) - Defines whether or not all characters MUST be upper case (This overrides the numeric lower case check).
  7. (Flag 1 or 0) - Defines whether or not all characters MUST be lower case (This overrides the numeric upper case check).



In the example abpve, the limitations set for the Password are:

  1. The first character must be a letter
  2. There must be at least 5 Numeric Characters
  3. There must be at least 3 Special Characters
  4. Any Alphabetic characters must be uppercase

strong_email_check

You can add the check "strong_email_check" to have the domain of the email (everything after the @) checked for MX records using the PHP function getmxrr: http://php.net/manual/en/function.getmxrr.php

This check does not take additional arguments.

If you are using this check, you will want to ensure the "dns-search" directive on your server is turned off. This can create issues with the function