Newer
Older
Tim Clark
committed
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
230
231
232
233
234
235
236
237
var validation = {"studentid":false, "username":false, "realname":false, "address":false, "contact":false, "email":false, "phone":false};
function validate(){
var valid = true;
for (field in req){
if (!validation[req[field]]){
valid=false;
break;
}
}
if(valid){
$('input#submit').removeAttr("disabled");
}
else{
$('input#submit').attr("disabled","disabled");
}
}
function processPostcode(){
// lookup postcode
$.getJSON("signup/ajax",{key: "postcode",value: $('input#postcode').val().replace(/ /g,'')}, function(j){
//populate dropdown
var options = '';
if (j.length > 1) {
// make dropdown visible
$('div#addseldiv').removeAttr("style");
for (var i = 0; i < j.length; i++) {
options += '<option>' + j[i] + '</option>';
}
$("select#addsel").html(options);
$('select#addsel option:first').attr('selected', 'selected');
}
if (j.length == 1) {
$('div#addseldiv').attr("style","display:none");
$("textarea#address").val(j[0].replace(/, /g,'\n'))
$('div#addressmessage').attr("style","color:green");
$('div#addressmessage').html("OK");
validation["address"]=true;
validate();
}
})
}
function lookupSID(setname){
$.get("signup/ajax",{key:"sid" ,value: $('input#studentid').val()},function(j){
arr=j.split(":");
key=arr.shift();
val=arr.join(":");
if(key=="OK"){
if(setname=true)
$("input#realname").val(val);
$('div#studentidmessage').attr("style","color:green");
$('div#studentidmessage').html(key);
validation['studentid']=true;
processName("realname","realname");
}
else{
$('div#studentidmessage').attr("style","color:red");
$('div#studentidmessage').html(val);
validation['email']=false;
validate();
}
},'text')
}
function processSID(){
lookupSID(true);
}
function processUsername(){
$.get("signup/ajax",{key: "username", value: $('input#username').val()},function(j){
if (j!="OK") {
$('div#usernamemessage').attr("style","color:red");
validation['username']=false;
}
else{
$('div#usernamemessage').attr("style","color:green");
validation['username']=true;
}
$('div#usernamemessage').html(j);
validate();
},'text')
}
function processName(type, input){
$.get("signup/ajax",{key: type, value: $('input#'+input).val()},function(j){
if (j!="OK") {
$('div#'+input+'message').attr("style","color:red");
validation[input]=false;
}
else{
$('div#'+input+'message').attr("style","color:green");
validation[input]=true;
}
$('div#'+input+'message').html(j);
validate();
},'text')
}
function processContact(){
processName('realname','contact');
}
function processAddress(){
$.get("signup/ajax",{key: "address", value: $('textarea#address').val()},function(j){
if (j!="OK") {
$('div#addressmessage').attr("style","color:red");
validation['address']=false;
}
else{
$('div#addressmessage').attr("style","color:green");
validation['address']=true;
}
$('div#addressmessage').html(j);
validate();
},'text')
}
function processEmail(){
$.get("signup/ajax",{key: "email", value: $('input#email').val()},function(j){
if (j!="OK") {
$('div#emailmessage').attr("style","color:red");
validation['email']=false;
}
else{
$('div#emailmessage').attr("style","color:green");
validation['email']=true;
}
$('div#emailmessage').html(j);
validate();
},'text')
}
function processPhone(){
$.get("signup/ajax",{key: "phone", value: $('input#phone').val()},function(j){
if (j!="OK") {
$('div#phonemessage').attr("style","color:red");
validation['phone']=false;
}
else{
$('div#phonemessage').attr("style","color:green");
validation['phone']=true;
}
$('div#phonemessage').html(j);
validate();
},'text')
}
$(function(){
if($('input#studentid').size()==1){
usertype=1;
}
else if($('input#contact').size()==1){
usertype=2;
}
else{
usertype=5;
}
req=new Array("username","realname","email","phone");
switch(usertype){
case "1":
req.push("studentid","address");
break;
case "2":
req.push("contact");
break;
case "5":
req.push("address");
}
//usertype=$('input#usertype').val();
$("document").ready(function(){
// makes script sutff appear
$('div#postcodediv').removeAttr("style");
$('input#submit').attr("disabled","disabled");
// if the fields are not empty validate them
if($('input#username').val()!="") processUsername();
if($('input#email').val()!="") processEmail();
if($('input#phone').val()!="") processPhone();
if(usertype!=2){
if($('input#postcode').val()!="") processPostcode();
if($('textarea#address').val()!="") processAddress();
if($('input#realname').val()!="") processName("realname","realname");
}
else{
if($('input#contact').val()!="") processContact();
if($('input#realname').val()!="") processName("socname","realname");
}
if((usertype==1) && ($('input#studentid').val()!="")){
if($('input#realname').val()=="") lookupSID(true);
else lookupSID(false);
}
validate();
})
// dont do address stuff for societies
if(usertype!=2){
// process postcode when the box changes
$("input#postcode").change(processPostcode);
//populate the address box when an address is selected
$("select#addsel").change(function(){
$("textarea#address").val($('select#addsel').val().replace(/, /g,'\n'));
$('div#addressmessage').attr("style","color:green");
$('div#addressmessage').html("OK");
validation['address']=true;
})
}
//else deal with the contact field
else{
$("input#contact").change(processContact)
}
//if is a student
if(usertype==1){
//lookup the real name from the studentid
$("input#studentid").change(processSID)
}
//validate username
$("input#username").change(processUsername)
//validate personal and society names differntly
if(usertype!=2){
persoc='realname';
}
else{
persoc='socname';
}
//validate real name
$("input#realname").change(function(){
processName(persoc, 'realname');
})
//validate email address
$("input#email").change(processEmail);
//validate phone number
$("input#phone").change(processPhone);
$("textarea#address").change(processAddress);
})