-
Notifications
You must be signed in to change notification settings - Fork 0
/
browser.js
239 lines (202 loc) · 7.29 KB
/
browser.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
230
231
232
233
234
235
236
237
238
239
'use strict'
//модель данных
var user = { };
//режим отправки
var transport = 0;
var xhr;
var socket;
var sse;
//Проверка поддержки Вебсокет
if ( !window.WebSocket ) {
document.getElementById("b-w").classList.remove("active");
document.getElementById("b-w").setAttribute('disabled', 'disabled');
document.getElementById("allert-w").classList.remove("hidden");
}
//Инициализация траспорта по умолчанию
XHR();
//Дальше секция функций
function XHR () {
document.getElementById("b-xhr").classList.add("active");
document.getElementById("b-w").classList.remove("active");
document.getElementById("b-sse").classList.remove("active");
document.getElementById("b-push").removeAttribute('disabled');
document.getElementById("b-pull").removeAttribute('disabled');
transport = 0;
if ( socket ) socket.close();
if ( sse && sse.readyState !== 2 ) closeSSE();
}
function WS () {
document.getElementById("b-xhr").classList.remove("active");
document.getElementById("b-w").classList.add("active");
document.getElementById("b-sse").classList.remove("active");
document.getElementById("b-push").setAttribute('disabled', 'disabled');
document.getElementById("b-pull").removeAttribute('disabled');
transport = 1;
if ( sse && sse.readyState !== 2 ) closeSSE();
log("Websocket установка соединения...");
socket = new WebSocket("ws://localhost:8081");
socket.onopen = function() {
log("Websocket соединение установлено!");
};
socket.onclose = function(event) {
if (event.wasClean) {
log('Websocket cоединение закрыто. Код: ' + event.code);
} else {
log('Websocket обрыв соединения. Код: ' + event.code);
}
};
socket.onmessage = function(event) {
var incomingMessage = event.data;
log("Websocket принято сообщение: "+incomingMessage);
pushForm(incomingMessage);
};
}
function SSE () {
document.getElementById("b-xhr").classList.remove("active");
document.getElementById("b-w").classList.remove("active");
document.getElementById("b-sse").classList.add("active");
document.getElementById("b-push").setAttribute('disabled', 'disabled');
document.getElementById("b-pull").setAttribute('disabled', 'disabled');
transport = 2;
if (socket) socket.close();
log("SSE установка соединения...");
sse = new EventSource("/push/sse");
sse.onmessage = function(e) {
log("SSE принято сообщение: " + e.data);
pushForm(e.data);
};
sse.onopen = function(e) {
log("SSE соединение открыто.");
};
var count = 1;
sse.onerror = function(e) {
if (count > 5) {
closeSSE();
count = 1;
}
if ( this.readyState == EventSource.CONNECTING ) {
log("SSE обрыв соединения, пересоединяемся...попытка " + count);
count++;
} else {
log("SSE ошибка, состояние: " + this.readyState);
}
};
}
function closeSSE () {
sse.close();
log("SSE соединение закрыто. Статус: "+sse.readyState);
xhr = new XMLHttpRequest();
xhr.open("GET", '/push/close', true);
xhr.send();
}
// отправить сообщение из формы pullform
document.forms.pullform.onsubmit = function() {
log("Подготовка к отправке. Валидация формы...");
var errFlag = false;
for (var i=0; i < this.elements.length-2; i++) {
resetError(this.elements[i].parentNode);
if (!this.elements[i].value) {
showError(this.elements[i].parentNode, 'Укажите данные.');
errFlag = true;
} else if (this.elements[i].value.length > 15 ) {
showError(this.elements[i].parentNode, 'Длина не более 15 символов.');
errFlag = true;
} else {
user[i] = this.elements[i].value;
}
}
resetError(this.age.parentNode);
if ( !this.age.value ) {
showError( this.age.parentNode, 'Укажите возраст.' );
errFlag = true;
} else if ( this.age.value <18 || this.age.value >50 ) {
showError( this.age.parentNode, 'От 18 до 50.' );
errFlag = true;
} else {
user[i]= this.age.value;
}
if (errFlag) {
log("ERROR. Валидация не пройдена!");
return false;
}
var data = JSON.stringify(user);
switch (transport) {
case 0: {
log("XHR POST запрос...");
xhr = new XMLHttpRequest();
xhr.open("POST", '/pull', true);
xhr.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
xhr.send(data);
xhr.onreadystatechange = function() {
if (xhr.readyState != 4) {
log("Ожидаем ответа сервера...")
return false;
}
if (xhr.status) {
log("Статус ответа: "+xhr.status + ': ' + xhr.statusText);
log("Тело ответа: "+xhr.responseText);
pushForm(xhr.responseText);
} else {
log("Сервер не отвечает...");
}
}
}; break;
case 1: {
log("Websocket отправлено сообщение: "+data);
socket.send(data);
} ; break;
case 2: { } ; break;
}
return false;
};
// отправить запрос обновление данных pushform
document.forms.pushform.onsubmit = function() {
log("XHR GET запрос...");
xhr = new XMLHttpRequest();
xhr.open("GET", '/push', true);
xhr.send();
xhr.onreadystatechange = function() {
if (xhr.readyState != 4) {
log("Ожидаем ответа сервера...")
return false;
}
if (xhr.status) {
log("Статус ответа: "+xhr.status + ': ' + xhr.statusText);
log("Тело ответа: "+xhr.responseText);
pushForm(xhr.responseText);
} else {
log("Сервер не отвечает...");
}
}
return false;
}
// вывод принятых данных в форму pushform
function pushForm(message) {
var data = JSON.parse(message);
var form = document.forms.pushform;
for (var i=0; i < form.elements.length-1; i++) {
form.elements[i].value = data[i];
}
}
// логирование событий + вывод ошибок в textarea#log
function log(message) {
var log = document.getElementById("log");
var time = new Date ();
log.value +=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds()+" "+message+"\n";
log.scrollTop = log.scrollHeight;
}
//показ ошибки валидации формы pullform
function showError(container, errorMessage) {
container.classList.add("error");
var msgElem = document.createElement('span');
msgElem.className = "error-message";
msgElem.innerHTML = errorMessage;
container.appendChild(msgElem);
}
//удаление ошибки валидации формы pullform
function resetError(container) {
container.classList.remove("error");
if (container.lastChild.className == "error-message") {
container.removeChild(container.lastChild);
}
}