Added code to fetch the user's location, and send it as a GET/POST variable

php
Aadhavan Srinivasan 2 years ago
parent 70f91c7586
commit ae036686b8

@ -1,74 +1,127 @@
//const submit = document.getElementById("button"); // const submit = document.getElementById("button");
//submit.addEventListener('click', validate); // submit.addEventListener('click', validate);
mycheckbox = document.getElementById("restricted");
mycheckbox.addEventListener('change',checkboxCallback);
function checkboxCallback(event) {
if (event.currentTarget.checked) {
getLocation();
}
}
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
console.log("Your browser does not support geolocation.");
}
}
function showPosition(position) {
console.log(position.coords.latitude);
console.log(position.coords.longitude);
document.getElementById("latitude").value = position.coords.latitude;
document.getElementById("longitude").value = position.coords.longitude;
}
function validate() { function validate() {
// e.preventDefault(); //e.preventDefault();
const url = document.getElementById("URL"); const url = document.getElementById("URL");
const glink = document.getElementById("GLink"); let glink = document.getElementById("GLink");
// if (!url) { const error = document.getElementById("error");
// /* Flag */ // if (!url) {
// } // /* Flag */
let valid = true; // }
const domainExp = new RegExp("http(s)*:\\/\\/[a-zA-Z0-9\\-]+(\\.[a-zA-Z0-9\\-]+)+"); let valid = true;
const filepathExp = new RegExp("[a-zA-Z]+"); const domainExp = new RegExp("^http(s)*:\\/\\/[a-zA-Z0-9\\-]+(\\.[a-zA-Z0-9\\-]+)+$");
let count = 0; const filepathExp = new RegExp("^[a-zA-Z]+$");
let index = -1; const glinkExp = new RegExp("^[a-zA-Z]*$");
let domain = ""; let glinkStr = glink.value;
let filepath = ""; let count = 0;
for (let i=0; i < url.value.length; i++) { let index = -1;
if (url.value.charAt(i) == '/') { let domain = "";
count++; let filepath = "";
for (let i = 0; i < url.value.length; i++) {
if (url.value.charAt(i) == '/') {
count++;
}
if (count == 3) {
index = i;
break;
}
} }
if (count == 3) { if (count >= 3) {
index = i; domain = url.value.substring(0, index);
break; if (index == url.value.length - 1) {
} filepath = url.value.charAt(index);
} } else {
if (count >= 3) { filepath = url.value.substring(index, url.value.length - 1);
domain = url.value.substring(0, index); }
if (index == url.value.length - 1) { alert("Domain is " + domain + " filepath is " + filepath);
filepath = url.value.charAt(index);
} else { } else {
filepath = url.value.substring(index, url.value.length - 1); domain = url.value;
}
alert("Domain is " + domain + " filepath is " + filepath);
} else {
domain = url.value;
}
console.log(domain);
if (domain.match(domainExp)) /** and is available? */{
const error = document.getElementById("error");
if (error.classList.contains("visible")) {
error.classList.remove("visible");
} }
if (url.classList.contains("invalid")) { console.log(domain);
url.classList.remove("invalid");
}
url.classList.add("valid");
error.setAttribute('aria-hidden', true);
error.setAttribute('aria-invalid', false);
console.log("Valid");
return valid; if (glinkStr === "") {
var result = window.confirm("You have left the glink field blank. A random one will be generated for you.");
if (result === false) {
return false;
} else {
glinkStr = getRandomGLink();
}
}
/* var xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET','result.php',true);
xmlhttp.send();
console.log(xmlhttp.responseText);*/
} else {
/*flag*/ if (domain.match(domainExp) && glinkStr.match(glinkExp))/** and is available? */{
const error = document.getElementById("error"); if (error.classList.contains("visible")) {
error.classList.add("visible"); error.classList.remove("visible");
}
if (url.classList.contains("invalid")) {
url.classList.remove("invalid");
}
url.classList.add("valid");
if (glink.classList.contains("invalid")) {
glink.classList.remove("invalid");
}
glink.classList.add("valid");
error.setAttribute('aria-hidden', true);
error.setAttribute('aria-invalid', false);
console.log("Valid with url= " +url.value+ " glink=" +glink);
return valid;
} else {
/*flag*/
error.classList.add("visible");
//error.classList.add("hidden"); //error.classList.add("hidden");
if (url.classList.contains("valid")) { if (!domain.match(domainExp)) {
url.classList.remove("valid"); if (url.classList.contains("valid")) {
url.classList.remove("valid");
}
url.classList.add("invalid");
} else {
if (url.classList.contains("invalid")) {
url.classList.remove("invalid");
}
url.classList.add("valid");
}
if (!glinkStr.match(glinkExp)) {
if (glink.classList.contains("valid")) {
glink.classList.remove("valid");
}
glink.classList.add("invalid");
} else {
if (glink.classList.contains("invalid")) {
glink.classList.remove("invalid");
}
glink.classList.add("valid");
}
error.setAttribute('aria-hidden', false);
error.setAttribute('aria-invalid', true);
return false;
} }
url.classList.add("invalid");
error.setAttribute('aria-hidden', false);
error.setAttribute('aria-invalid', true);
return false;
}
} }

Loading…
Cancel
Save