forked from jpatokal/openflights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
222 lines (202 loc) · 6.65 KB
/
settings.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
/*
* Create new user accounts and modify existing ones
*/
var URL_SETTINGS = "/php/settings.php";
var privacyList = [ 'N', 'Y', 'O' ];
window.onload = function init(){
gt = new Gettext({ 'domain' : 'messages' });
if(window.location.href.indexOf("settings") != -1) {
var form = document.forms['signupform'];
var elite = form.elite.value;
document.getElementById('eliteicon').innerHTML = getEliteIcon(elite, form.validity.value);
if(elite == "G" || elite == "P") {
signupform.guestpw.disabled = false;
for (r=0; r < signupform.startpane.length; r++){
signupform.startpane[r].disabled = false;
}
}
} else {
// TODO document.forms['signupform'].username.value = parent.opener.document.forms['login'].name.value;
}
}
function xmlhttpPost(strURL, type) {
var xmlHttpReq = false;
var self = this;
// Mozilla/Safari
if (window.XMLHttpRequest) {
self.xmlHttpReq = new XMLHttpRequest();
}
// IE
else if (window.ActiveXObject) {
self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}
self.xmlHttpReq.open('POST', strURL, true);
self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
self.xmlHttpReq.onreadystatechange = function() {
if (self.xmlHttpReq.readyState == 4) {
if(strURL == URL_SETTINGS) {
signup(self.xmlHttpReq.responseText);
}
}
}
var query = "";
if(strURL == URL_SETTINGS) {
var form = document.forms['signupform'];
var privacy, editor, units;
for (r=0; r < signupform.privacy.length; r++){
if (signupform.privacy[r].checked) {
privacy = signupform.privacy[r].value;
}
}
for (r=0; r < signupform.editor.length; r++){
if (signupform.editor[r].checked) {
editor = signupform.editor[r].value;
}
}
for (r=0; r < signupform.units.length; r++){
if (signupform.units[r].checked) {
units = signupform.units[r].value;
}
}
query = 'type=' + type + '&' +
'pw=' + encodeURIComponent(hex_md5(form.pw1.value + form.username.value.toLowerCase())) + '&' +
'email=' + encodeURIComponent(form.email.value) + '&' +
'privacy=' + encodeURIComponent(privacy) + '&' +
'editor=' + encodeURIComponent(editor) + '&' +
'units=' + encodeURIComponent(units) + '&' +
'locale=' + encodeURIComponent(form.locale.value);
switch(type) {
case 'NEW':
query += '&name=' + encodeURIComponent(form.username.value);
document.getElementById("miniresultbox").innerHTML = "<I>" + gt.gettext("Creating account...") + "</I>";
break;
case 'EDIT':
for (r=0; r < signupform.startpane.length; r++){
if (signupform.startpane[r].checked) {
startpane = signupform.startpane[r].value;
}
}
if(form.oldpw.value != "") {
query += '&oldpw=' + encodeURIComponent(hex_md5(form.oldpw.value + form.username.value.toLowerCase()));
// Legacy password for case-sensitive days of yore
query += '&oldlpw=' + encodeURIComponent(hex_md5(form.oldpw.value + form.username.value));
}
if(form.guestpw.value != "") {
query += '&guestpw=' + encodeURIComponent(hex_md5(form.guestpw.value + form.username.value.toLowerCase()));
}
query += '&startpane=' + encodeURIComponent(startpane);
document.getElementById("miniresultbox").innerHTML = "<I>" + gt.gettext("Saving changes...") + "</I>";
break;
case 'RESET':
case 'LOAD':
// do nothing
break;
}
}
self.xmlHttpReq.send(query);
}
// Validate form
function validate(type) {
var form = document.forms['signupform'];
var pw1 = form.pw1.value;
var pw2 = form.pw2.value;
var email = form.email.value;
if(type == 'RESET') {
if(! confirm(gt.gettext("This will PERMANENTLY delete ALL YOUR FLIGHTS. Have you exported a backup copy, and are you sure you want to do this?"))) {
document.getElementById("miniresultbox").innerHTML = "<i>" + gt.gettext("Deletion cancelled.") + "</i>";
return;
}
}
if(type == 'NEW') {
var name = form.username.value;
if(name == "") {
showError(gt.gettext("Please enter a username."));
form.username.focus();
return;
}
if(pw1 == "") {
showError(gt.gettext("Please enter a password."));
form.pw1.focus();
return;
}
}
if(type == 'EDIT') {
var oldpw = form.oldpw.value;
if(pw1 != "" && oldpw == "") {
showError(gt.gettext("Please enter your current password if you wish to change to a new password."));
form.oldpw.focus();
return;
}
if(pw1 == "" && oldpw != "") {
showError(gt.gettext("Please enter a new password, or clear current password if you do not wish to change it."));
form.pw1.focus();
return;
}
}
if(pw1 != pw2) {
showError(gt.gettext("Your passwords don't match, please try again."));
form.pw1.focus();
return;
}
if(email != "" && ! /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,6})+$/.test(email)) {
showError(gt.gettext('Invalid e-mail address, it should be "[email protected]"'));
form.email.focus();
return;
}
document.getElementById("miniresultbox").innerHTML = "<i>" + gt.gettext("Processing...") + "</i>";
xmlhttpPost(URL_SETTINGS, type);
}
//
// Check if user creation succeeded
//
function signup(str) {
var code = str.split(";")[0];
var message = str.split(";")[1];
// Operation successful
if(code.length == 1 && code != "0") {
document.getElementById("miniresultbox").innerHTML = message;
// Whether signup, edit or reset, go back to main screen now
location.href = '/';
return;
} else {
showError(message);
}
}
function changeName() {
var name = document.forms['signupform'].username.value;
var url = "http://" + location.host + "/user/" + encodeURIComponent(name);
$('profileurl').innerHTML = gt.gettext("Profile address:") + url;
}
// Swap privacy panes
function changePrivacy(type) {
for(p = 0; p < privacyList.length; p++) {
if(type == privacyList[p]) {
style = "inline";
} else {
style = "none";
}
$('privacy' + privacyList[p]).style.display = style;
}
}
// Swap editor panes
function changeEditor(type) {
switch(type) {
case "B":
$('detaileditor').style.display = "none";
$('basiceditor').style.display = "inline";
break;
case "D":
$('basiceditor').style.display = "none";
$('detaileditor').style.display = "inline";
break;
}
}
function showError(err) {
document.getElementById("miniresultbox").innerHTML = "<font color=red>" + err + "</font>";
location.hash = "top";
}
// Need to duplicate this from openflights.js so that it opens in Settings window, not main, and
// IE does not go nuts
function backupFlights() {
location.href="http://" + location.host + "/php/flights.php?export=backup";
}