Skip to content

Instantly share code, notes, and snippets.

@srsgores
Created May 11, 2014 01:14
Show Gist options
  • Save srsgores/30d86254316eaea4114c to your computer and use it in GitHub Desktop.
Save srsgores/30d86254316eaea4114c to your computer and use it in GitHub Desktop.
Validator custom class for validating a jQuery form
class Validator
constructor: (@$form, @$isTabbed) ->
checkStrength: (password) ->
characters = 0
capitalletters = 0
loweletters = 0
number = 0
special = 0
total = 0
upperCase= new RegExp("[A-Z]")
lowerCase= new RegExp("[a-z]")
numbers = new RegExp("[0-9]")
specialchars = new RegExp("([!,%,&,@,#,$,^,*,?,_,~])");
characters = if password.length > 8 then 1 else 0
capitalletters = if password.match(number) then 1 else 0
loweletters = if password.match(lowerCase) then 1 else 0
number = if password.match(number) then 1 else 0
special = if password.match(specialchars) then 1 else 0
total
isValidEmailAddress: (emailAddress) ->
pattern = new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i)
pattern.test emailAddress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment