-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommons.js
183 lines (146 loc) · 5.4 KB
/
commons.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
const MAIN_URL_API = "https://api.queuemail.dev/api";
let isRecaptchaValidated = false;
let captchatoken = '';
function signUp()
{
let email = document.getElementById("email").value;
let email2 = document.getElementById("email2").value;
document.getElementById("msgsignUp").style.display = 'block';
if(email.length==0 || email2.length==0)
{
document.getElementById("msgsignUp").innerHTML = 'You must enter and repeat your email.';
return;
}
if(!validateEmail(email))
{
document.getElementById("msgsignUp").innerHTML = 'Please, enter a valid email address.';
return;
}
if(email.trim().toLowerCase() != email2.trim().toLowerCase())
{
document.getElementById("msgsignUp").innerHTML = 'Emails do no match.';
return;
}
if(!isRecaptchaValidated)
{
document.getElementById("msgsignUp").innerHTML = 'Please, validate catcha!.';
return;
}
email = email.trim().toLowerCase();
document.getElementById('wp-submit').disabled = true;
const oldvalue = document.getElementById('wp-submit').value;
document.getElementById('wp-submit').value = ". . .";
let formData = new FormData();
formData.append("email", email);
formData.append("captchatoken", captchatoken);
let r = new XMLHttpRequest();
r.open("POST", MAIN_URL_API + "/auth/signup", true);
r.send(formData);
r.onreadystatechange = function ()
{
if (r.readyState == 4)
{
document.getElementById('wp-submit').disabled = false;
document.getElementById('wp-submit').value = oldvalue;
if (r.status == 200)
{
document.getElementById("msgsignUp").innerHTML = 'We have sent you an email with instructions. Please, check your <b>junk mail / SPAM folder</b> too!.';
}
else if (r.status == 406)
{
document.getElementById("msgsignUp").innerHTML = 'This email is already registered. If you don\'t remember your password, please, <a href="/xrequestnewpassword">try to request a new password</a>.';
}
else
{
document.getElementById("msgsignUp").innerHTML = 'Sorry, can not sign up at this time. Please, try <a href="#" onclick="javascript:location.reload();">reloading this page</a> and revalidating captcha.';
}
}
};
}
function requestNewPassword()
{
let email = document.getElementById("email").value;
let email2 = document.getElementById("email2").value;
document.getElementById("msgsignUp").style.display = 'block';
if(email.length==0 || email2.length==0)
{
document.getElementById("msgsignUp").innerHTML = 'You must enter and repeat your email.';
return;
}
if(!validateEmail(email))
{
document.getElementById("msgsignUp").innerHTML = 'Please, enter a valid email address.';
return;
}
if(email.trim().toLowerCase() != email2.trim().toLowerCase())
{
document.getElementById("msgsignUp").innerHTML = 'Emails do no match.';
return;
}
if(!isRecaptchaValidated)
{
document.getElementById("msgsignUp").innerHTML = 'Please, validate catcha!.';
return;
}
email = email.trim().toLowerCase();
document.getElementById('wp-submit').disabled = true;
const oldvalue = document.getElementById('wp-submit').value;
document.getElementById('wp-submit').value = ". . .";
let formData = new FormData();
formData.append("username", email);
formData.append("captchatoken", captchatoken);
let r = new XMLHttpRequest();
r.open("POST", MAIN_URL_API + "/auth/requestRememberPassword", true);
r.send(formData);
r.onreadystatechange = function ()
{
if (r.readyState == 4)
{
document.getElementById('wp-submit').disabled = false;
document.getElementById('wp-submit').value = oldvalue;
if (r.status == 200)
{
document.getElementById("msgsignUp").innerHTML = 'We have sent you an email with instructions. Please, check your <b>junk mail / SPAM folder</b> too!.';
}
else if (r.status == 406)
{
document.getElementById("msgsignUp").innerHTML = 'This user must be activated first.';
}
else
{
document.getElementById("msgsignUp").innerHTML = 'Sorry, can not sign up at this time. Please, try <a href="#" onclick="javascript:location.reload();">reloading this page</a> and revalidating captcha.';
}
}
};
}
function validateEmail(email) {
const re =
/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(String(email).toLowerCase());
}
function onRecaptchaSuccess() {
captchatoken = grecaptcha.getResponse();
isRecaptchaValidated = true;
document.getElementById("msgsignUp").style.display = 'block';
document.getElementById("msgsignUp").innerHTML = 'Captcha validated correctly.';
}
function onRecaptchaError() {
isRecaptchaValidated = false;
document.getElementById("msgsignUp").style.display = 'block';
document.getElementById("msgsignUp").innerHTML = 'You must validate captcha.';
}
function onRecaptchaResponseExpiry() {
isRecaptchaValidated = false;
document.getElementById("msgsignUp").style.display = 'block';
document.getElementById("msgsignUp").innerHTML = 'Captcha expired. Try again, please.';
}
function reloadCaptcha()
{
grecaptcha.render('idrecap', {
'sitekey' : '6LcIhKImAAAAADT1PcVk7CNyLn5goUuOKuUOj5Tb',
'callback' : onRecaptchaSuccess,
'expired-callback' : onRecaptchaResponseExpiry,
'error-callback' : onRecaptchaError
});
document.getElementById("msgrecap").style.display = 'none';
}