2016-12-01 23:18:18 +01:00
|
|
|
/* Functions to deal with manipulating IP addresses*/
|
|
|
|
|
|
|
|
//Generate a random IP address
|
|
|
|
//Will not return an IP address that already exists in the AllServers array
|
|
|
|
createRandomIp = function() {
|
2017-07-13 18:54:29 +02:00
|
|
|
var ip = createRandomByte(99) +'.' +
|
|
|
|
createRandomByte(9) +'.' +
|
|
|
|
createRandomByte(9) +'.' +
|
|
|
|
createRandomByte(9);
|
2016-12-01 23:18:18 +01:00
|
|
|
|
|
|
|
//If the Ip already exists, recurse to create a new one
|
|
|
|
if (ipExists(ip)) {
|
|
|
|
return createRandomIp();
|
|
|
|
}
|
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Returns true if the IP already exists in one of the game's servers
|
|
|
|
ipExists = function(ip) {
|
|
|
|
for (var property in AllServers) {
|
|
|
|
if (AllServers.hasOwnProperty(property)) {
|
|
|
|
if (property == ip) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-13 18:54:29 +02:00
|
|
|
createRandomByte = function(n=9) {
|
|
|
|
return Math.round(Math.random()*n);
|
2016-12-01 23:18:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
isValidIPAddress = function(ipaddress) {
|
2017-06-09 06:35:03 +02:00
|
|
|
if (/^(25[0-6]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-6]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-6]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-6]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/.test(ipaddress))
|
2016-12-01 23:18:18 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2017-06-09 06:35:03 +02:00
|
|
|
return false;
|
2016-12-01 23:18:18 +01:00
|
|
|
}
|