-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
executable file
·253 lines (206 loc) · 7.88 KB
/
main.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
// Adding prevent default to prevent the page from reloading.
document.addEventListener('DOMContentLoaded', () => {
if (document.getElementById('bi0sForm')) {
document.getElementById('bi0sForm').addEventListener('submit', (event) => {
event.preventDefault(); // Prevents the default behaviour
upload(); // Calling the upload function
});
}
if (document.getElementById('loginForm')) {
document.getElementById('loginForm').addEventListener('submit', (event) => {
event.preventDefault();
login();
});
}
if (document.getElementById('file') && document.getElementById('username')) {
document.getElementById('file').addEventListener('change', () => {
preview();
});
}
if (document.getElementById('registerForm')) {
document.getElementById('registerForm').addEventListener('submit', (event) => {
event.preventDefault();
register();
});
}
})
function login() {
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const error = document.getElementById('error');
const form = new FormData();
form.append('username', username);
form.append('password', password);
form.append('login', 123);
const xhr = new XMLHttpRequest();
xhr.open('POST', 'http://localhost/bi0s/login.php');
xhr.onreadystatechange = () => {
if (xhr.readyState === 4) {
console.log(xhr.status);
if (xhr.status === 200) {
location.href = "http://localhost/bi0s/bios.php";
} else if (xhr.status === 401) {
console.log("Login failed");
error.style.display = 'block';
error.innerText = 'Invalid Username Or Password';
} else if (xhr.status === 301) {
location.href = "http://localhost/bi0s/admin.php";
} else {
console.log("Login failed");
error.style.display = 'block';
error.innerText = 'Login Failed';
}
}
}
xhr.send(form);
}
function register() {
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const file = document.getElementById('file').files[0];
const error = document.getElementById('error');
const form = new FormData();
form.append('username', username);
form.append('password', password);
form.append('file', file);
form.append('register', 123);
const xhr = new XMLHttpRequest();
xhr.open('POST', 'http://localhost/bi0s/register.php');
xhr.onreadystatechange = () => {
if (xhr.readyState === 4) {
console.log(xhr.status);
if (xhr.status === 200) {
location.href = "http://localhost/bi0s/login.php";
} else if (xhr.status === 401) {
console.log("Registration failed");
error.style.display = 'block';
error.innerText = 'Username Already Exists';
} else if (xhr.status === 413) {
console.log("File size exceeded");
error.style.display = 'block';
error.innerText = 'File size exceeded (500kB)';
} else if (xhr.status === 406) {
console.log("Password Not Strong");
error.style.display = 'block';
error.innerText = 'Password Not Strong';
} else if (xhr.status === 415) {
console.log("Invalid Image File");
error.style.display = 'block';
error.innerText = 'Invalid Image File';
} else {
console.log("Registration failed");
error.style.display = 'block';
error.innerText = 'Registration failed';
}
}
}
xhr.send(form);
}
function upload() {
const fileName = document.getElementById('name').value;
const file = document.getElementById('file').files[0];
const error = document.getElementById('error');
const form = new FormData();
form.append('file', file);
form.append('fileName', fileName);
form.append('submitFile', 'upload');
const xhr = new XMLHttpRequest();
xhr.open('POST', 'http://localhost/bi0s/bios.php');
xhr.onreadystatechange = () => {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
console.log("Uploaded the file");
error.setAttribute('class', "para upload");
error.innerText = xhr.responseText;
} else {
console.log("Failed");
error.setAttribute('class', "para error");
error.innerText = xhr.responseText;
}
}
}
xhr.send(form);
}
function registerPage() {
location.href = 'http://localhost/bi0s/register.php';
}
function loginPage() {
location.href = 'http://localhost/bi0s/login.php';
}
function preview() {
const file = document.getElementById('file');
const previewImg = document.getElementById('preview');
const reader = new FileReader();
reader.readAsDataURL(file.files[0])
reader.onload = () => {
previewImg.setAttribute('src', reader.result);
}
}
function notes() {
const all = document.querySelectorAll('button');
const notes = document.querySelector('.notes');
const iframe = document.querySelectorAll('iframe')[0];
const show = document.getElementById('fetch_display');
iframe.style.display = 'block';
all.forEach(btn => {
btn.classList.remove('active');
});
show.style.display = 'none';
notes.setAttribute('class', 'notes active')
iframe.setAttribute('src', 'https://kidshealth.org/en/teens/take-notes.html');
}
function format() {
const all = document.querySelectorAll('button');
const format = document.querySelector('.format');
const iframe = document.querySelectorAll('iframe')[0];
const show = document.getElementById('fetch_display');
show.style.display = 'none';
iframe.style.display = 'block';
all.forEach(btn => {
btn.classList.remove('active');
});
format.setAttribute('class', 'format active')
iframe.setAttribute('src', 'https://becomeawritertoday.com/note-taking-cornell-method/');
}
function fetchTop() {
const all = document.querySelectorAll('button');
const btn = document.querySelector('.fetch');
const iframe = document.querySelectorAll('iframe')[0];
const show = document.getElementById('fetch_display');
const xhr = new XMLHttpRequest;
show.style.display = 'flex';
iframe.style.display = 'none';
all.forEach(button => {
button.classList.remove('active');
});
btn.setAttribute('class', 'fetch active')
if (!show.querySelectorAll('p')[0]) {
const p = document.createElement('p');
p.innerText = 'Loading....';
show.appendChild(p);
const form = new FormData();
form.append('fetch', 'fetch');
xhr.open('POST', 'http://localhost/bi0s/fetch.php');
xhr.onreadystatechange = () => {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
console.log("Fetched");
let top = xhr.responseText;
let parsed = JSON.parse(top);
show.removeChild(p);
for (let index = 1; index <= Object.keys(parsed).length; index++) {
const p = document.createElement('p');
p.innerText = parsed[`${index}`];
show.appendChild(p);
}
} else {
console.log("Failed:", xhr.status);
}
}
}
xhr.send(form);
}
}
function home() {
document.location.href = "http://localhost/bi0s/login.php";
}