-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormCheck.js
230 lines (195 loc) · 5.51 KB
/
FormCheck.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
// JavaScript Document
/*
FormCheck.js - Provides for input validation
Copyright (C) 2002-2004 Stephen Lawrence Jr., Khoa Nguyen
Copyright (C) 2005-2010 Stephen Lawrence Jr.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
function checkforblanks()
{
for (var i = 0; i < arguments.length; i += 2)
{
if (!arguments[i])
{
alert("Please enter " + arguments[i+1] + ".");
return false;
}
}
return true;
}
function validateEmail(FormName){
/************************************************
DESCRIPTION: Validates that a string contains a
valid email pattern.
PARAMETERS:
strValue - String to be tested for validity
RETURNS:
True if valid, otherwise false.
REMARKS: Accounts for email with country appended
does not validate that email contains valid URL
type (.com, .gov, etc.) or valid country suffix.
*************************************************/
var strValue = FormName.Email.value;
var objRegExp = /^([a-zA-Z0-9_\.\-\&])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
//check for valid email
if(!objRegExp.test(strValue))
{
alert("E-mail address contain invalid format");
//field.focus();
//field.select();
return false;
}
else
{
return true;
}
}
function validatePhone(FormName) {
/************************************************
DESCRIPTION: Validates that a string contains valid
US phone pattern.
Ex. 999 9999999 or 9999999999 or (999) 999-9999
PARAMETERS:
strValue - String to be tested for validity
RETURNS:
True if valid, otherwise false.
*************************************************/
var strValue = FormName.phonenumber.value;
var objRegExp = /^[1-9]\d{2}\s?\d{3}\d{4}$/;
var obj2RegExp = /^\([1-9]\d{2}\)\s?\d{3}\-\d{4}$/;
//check for valid us phone with or without space between
//area code
if(objRegExp.test(strValue) || obj2RegExp.test(strValue))
{
return true;
}
else
{
alert("Phone number is in valid must in the form of 999 9999999 or (999) 999-9999");
// field.focus();
//field.select();
return false;
}
}
function validatePassword(FormName){
/***************************************************
DESCRIPTION: Validates the two password string for equality
PARAMETERS: Str1 - String of the password field in the html form name
Str2 - String of the confirm password field (form name)
RETURNS:
True if valid, otherwise false
************************************************/
if(FormName.password.value == "")
{
alert("Password field cannot be empty");
return false;
}
if(FormName.password.value == FormName.conf_password.value)
{
return true;
}
else
{
alert("Password and Confirm Password fields do not match, Please check it again.");
return false;
}
}
/***************************************
add or remove fields to check for certain fields are empty or not
the best way is to find fixed amount of field to check that way this file can be reused
****************************************/
function isEmpty(FormName)
{
var isFull = checkforblanks(FormName.last_name.value, "Last Name", FormName.first_name.value, "First Name",
FormName.username.value, "User Name");
if(isFull)
{
return true;
}
else
{
return false;
}
}
/****************************************************************
function that validate every field that the functions above uses
function returns true if all the functions are pass without a problem
other wise false will returned;
****************************************************************/
function validate(FormName){
if(validatePassword(FormName) && validatePhone(FormName) && validateEmail(FormName) && isEmpty(FormName))
{
return true;
}
else
{
return false;
}
}
function validatemod(FormName)
{
if(/*validatePhone(FormName) && */validateEmail(FormName) && validatePassword(FormName))
{
if(isEmpty(FormName))
{
return true;
}
else
{
return false;
}
}
else
{
return false;
}
}
/********************************************
field checking for department and category
********************************************/
function checkdepart(FormName)
{
if(!FormName.department.value)
{
alert("Department Can Not Be Empty");
return false;
}
else
{
return true;
}
}
function checkcategory(FormName)
{
if(!FormName.category.value)
{
alert("Category Can Not Be Empty");
return false;
}
else
{
return true;
}
}
function checkforempty($var)
{
if(!$var)
{
alert("Error, Field Can Not Be Empty");
return false;
}
else
{
return true;
}
}