Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I made a PHP script to auto manage download locations for multiple servers

#1
I have made this script it allows you to set your server's sv_curl_defaulturl setting to a web server and call this script like this
http://[Your Server IP Address Here]/xonoticdl.php?file=
on a Debian system you would need to install libapache2-mod-php, php-curl, and apache2

Code:
sudo apt-get install libapache2-mod-php apache2 php-curl
You can then place this below script in /var/www/html/xonoticdl.php and now when your server's client needs to get a map file it will ask your web server where to get the file, the web server will tell it which server to get it from, and if no server has it it will send it from itself, now you can use maps from multiple servers and not only one, of-course if you have a 100Mbit fiber link you could just host every map yourself anyway, but if you are like me and have a 5Mbps or worse upload speed, this can really help if you need/want maps stored on different servers
Script last updated 11/7/17 (add missing period;prevent downloading server.cfg to protect the rcon_password)
PHP Code:
<?php $CACHE_FILE="/home/evilkittie/.xonotic/urlcache.serial";// create this file and be make sure www-data has write access (you can place this in /var/cache if you prefer) $data="/home/evilkittie/.xonotic/data";// Path to Xonotic's data folder $servers=(object)array(// Game server is used as last resort (pay attention to commas at the end of lines in here)   // true means use a HTTPS connection   // false means use a HTTP connection   "dl.xonotic.co"=>false,   "xonotic.devfull.de/packages"=>true ); function checkRemoteFile($path,$file,$https){   // based on answer here   // https://stackoverflow.com/questions/1363925/check-whether-image-exists-on-remote-url   $cache=(object)$GLOBALS["cache"];   if(isset($cache->{$path}) && isset($cache->{$path}->{$file})){// Is this cached?      return $cache->{$path}->{$file};// looks like it   }   else{// not cached, lets cache it!      /* Caching method is not perfect, there is a chance we could       * delete a small amount of cache doing this (no file lock)       * however it is only a cache we will get it sooner or later.       */      $ch=curl_init();      curl_setopt($ch, CURLOPT_URL,"http".($https?'s':'')."://$path/$file");      // don't download content      curl_setopt($ch, CURLOPT_NOBODY, 1);      curl_setopt($ch, CURLOPT_FAILONERROR, 1);      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);      $result=curl_exec($ch)!==FALSE;      curl_close($ch);      if($GLOBALS["cacheTime"]!=filemtime($GLOBALS["CACHE_FILE"]))// did the cache change on us?         $cache=loadCache();// refresh it      if(!isset($cache->{$path}))         $cache->{$path}=(object)array();      $cache->{$path}->{$file}=$result;      saveCache($cache);      $GLOBALS["cache"]=$cache;//export cache      return $cache->{$path}->{$file};// is the file there?   } } function loadCache(){   $CACHE_FILE=$GLOBALS["CACHE_FILE"];   $cache=file_get_contents($CACHE_FILE);   if(filesize($CACHE_FILE)==0)// Assume file exist (*points at line 2*)      $cache=(object)array();   else{      $cache=false;      $ct=0;// safety      while($cache===false){         if($cache===false){// did it work?            if($ct!==0)               usleep(10000);// wait 0.01 seconds            $cache=file_get_contents($CACHE_FILE);// must have opened while data was being written         }         $cache=@unserialize($cache);// vastly faster than json_parse         $ct++;         if($ct>100){            // cache appears to be broken            $cache=(object)array();            break;         }      }      $GLOBALS["cacheTime"]=filemtime($CACHE_FILE);   }   return $cache; } function saveCache($cache){   $f=fopen($GLOBALS["CACHE_FILE"],"w");// open cache   fwrite($f, serialize($cache));//write cache   fclose($f);//save cache } if(isset($argv)){// cli management   foreach($argv as $key => $val){      if($val=="--dump"){         var_dump(unserialize(file_get_contents($CACHE_FILE)));      }      if($val=="--truncate"){         file_put_contents($CACHE_FILE, "");      }      if($val=="--delete"){         if(!isset($argv[$key+1]))            echo "--delete requires a file name";         else{            $del=$argv[$key+1];            $cache=loadCache();            foreach($cache as $s => $f){               if(isset($cache->{$s}->{$del}))                  unset($cache->{$s}->{$del});            }            saveCache($cache);         }      }      if($val=="--drop"){         if(!isset($argv[$key+1]))            echo "--drop requires a path name";         else{            $del=$argv[$key+1];            $cache=loadCache();            if(isset($cache->{$del}))               unset($cache->{$del});            saveCache($cache);         }      }      if($val=="--help"){         echo "Options:\n\t".            "--dump\n\t\tDump cache in a readable format\n\t".            "--truncate\n\t\tDelete cache file content\n\t".            "--delete\n\t\tDelete a file from cache\n\t".            "--drop\n\t\tRemove a entire server's folder from cache\n\t".            "--help\n\t\tShow this help info";      }   }   die("\n"); } if(!isset($_GET['file']))   die("file parameter is required!"); $file=$_GET['file']; $file=substr($file,strrpos($file,'/'));// SECURITY MEASURE: DO NOT DELETE! $cache=loadCache(); foreach($servers as $key => $val){   if(checkRemoteFile($key,$file,$val))      exit(header("Location: http".($val?'s':'')."://$key/$file")); } if(file_exists("$data/$file")){// guess we better send them our local copy    if(strtolower(substr(strrpos($file,".")))!='.pk3'){// are you trying to get server.cfg?       header('HTTP/1.0 403 Forbidden');// denied       header("Content-Type: text/plain");       die("Where did you get that file name anyway?");   }   header("Content-Type: application/zip");   header("Content-Disposition: attachment; filename=$file");   $file="$data/$file";   header("Content-Length: ".filesize($file));   include("$file"); } else{   header("HTTP/1.0 404 Not Found");   header("Content-Type: text/plain");   echo "Xonotic Server: You need to download $file\n".      "Client: Web server I need you to give me $file\n".      "Web Server: $file does not even exist on this server\n".      "Client: Why would you tell me I need a file you don't have?\n".      "Web Server: The Xonotic Server must be experiencing an ID10T error."; } ?>

This script also has a command line interface so you can manage the cached metadata, run (your systems current user must have write access to edit the cache)
Code:
~$ php /var/www/html/xonoticdl.php --help Options:     --dump         Dump cache in a readable format     --truncate         Delete cache file content     --delete         Delete a file from cache     --drop         Remove a entire server's folder from cache     --help         Show this help info
for the .serial file i use permissions set to 664 and have www-data as the group while i am the owner
You will need to forward port 80 to the server from your router, some crappy ISP prevent you from receiving port 80, you can bypass this by using port 81 (or any other port for that matter), see /etc/apache/ports.conf and /etc/apache/sites-available/000-default.conf
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  Let's make our servers community-like! xord86_64 3 4,396 02-03-2023, 05:36 PM
Last Post: xord86_64
  [META] Deploying Xonotic using GKE Game Servers? FAF 4 5,180 09-14-2022, 08:32 AM
Last Post: cushinga
  [NEED HELP] Getting rid of Auto Balancing Teams DoomTheEpic 1 3,556 04-18-2022, 03:43 PM
Last Post: Mario
  [ MoFo ] Servers Master Thread end user 5 7,510 11-27-2020, 09:33 PM
Last Post: end user
  Game servers in Kazakhstan. Mysyk 4 5,911 07-17-2020, 09:38 AM
Last Post: Mysyk
  Stazille.com | Quality Xonotic Servers djinn- 0 2,800 04-17-2020, 10:18 AM
Last Post: djinn-
  My Xonotic servers - more wanted? MarisaG 2 4,324 02-20-2019, 05:36 AM
Last Post: MarisaG
  Deploying a server across multiple machines ar5n1c 1 3,174 11-21-2018, 11:08 AM
Last Post: martin-t
  New servers, interested to see what times people get to them... MarisaG 0 4,123 10-06-2018, 04:06 AM
Last Post: MarisaG
  Free hosting for Xonotic servers MarisaG 8 10,158 09-18-2018, 07:06 PM
Last Post: MarisaG

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum software by © MyBB original theme © iAndrew 2016, remixed by -z-