1.6 IS WORKING? WANNA TRY IT OUT?
This commit is contained in:
parent
a5835e3b4b
commit
520f4f8115
5 changed files with 269 additions and 82 deletions
|
@ -5,7 +5,26 @@ Copyright (C) Ad5001 2016 All rights reserved.
|
|||
Do not attemped to modify this file if you're not sure on how it works.
|
||||
This file process 404, 403 requests, custom index and some other stuff.
|
||||
*/
|
||||
$cfg = yaml_parse(file_get_contents(__DIR__ . "/config.yml"));
|
||||
|
||||
// Definitions
|
||||
$cfg = yaml_parse(file_get_contents(__DIR__ . "/../config.yml"));
|
||||
$args = json_decode(file_get_contents(__DIR__ . "/args"), true);
|
||||
$_POCKETMINE = $args["POCKETMINE"];
|
||||
$_PLUGINS = $args["PLUGINS"];
|
||||
$_PLAYERS = $args["PLAYERS"];
|
||||
$_LEVELS = $args["LEVELS"];
|
||||
|
||||
|
||||
// Calling handlers.
|
||||
foreach($args["HANDLERS"] as $handler) {
|
||||
// echo $handler;
|
||||
if((include $handler) == false) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Domains parsing
|
||||
$host = $_SERVER["HTTP_HOST"];
|
||||
if(isset($cfg["Parked domains"][$host])) {
|
||||
$host = $cfg["Parked domains"][$host];
|
||||
|
@ -16,21 +35,27 @@ if(in_array($host, $cfg["Domains"])) {
|
|||
unallowedDomain();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
// Removing GET from the request
|
||||
$uri = $_SERVER["REQUEST_URI"];
|
||||
if(strpos($uri, "?") !== false) {
|
||||
$uri = explode("?", $uri)[0];
|
||||
}
|
||||
if(!file_exists(__DIR__ . "/" . $uri)) {
|
||||
echo file_get_contents(__DIR__ . "/" . $host . "/" . $cfg[404]);
|
||||
} elseif(in_array($uri, yaml_parse(file_get_contents(__DIR__ . "/config.yml"))["denied-pages"])) {
|
||||
echo file_get_contents(__DIR__ . "/" . $host . "/" . $cfg[403]);
|
||||
} elseif(is_dir(__DIR__ . "/" .$uri)) {
|
||||
if(file_exists(__DIR__ . "/" . $uri . "index.html")) {
|
||||
include(__DIR__ . "/" . $uri . "index.html");
|
||||
} elseif(file_exists(__DIR__ . "/" . $uri . "index.php")) {
|
||||
include(__DIR__ . "/" . $uri . "index.php");
|
||||
} elseif(file_exists(__DIR__ . "/" . $uri . $cfg["index"])) {
|
||||
include(__DIR__ . "/" . $uri . $cfg["index"]);
|
||||
|
||||
|
||||
// Getting the file & output it if possible.
|
||||
if(!file_exists(__DIR__ . "/../" . $uri)) {
|
||||
echo file_get_contents(__DIR__ . "/../" . $host . "/" . $cfg[404]);
|
||||
} elseif(in_array($uri, $cfg["denied-pages"])) {
|
||||
echo file_get_contents(__DIR__ . "/../" . $host . "/" . $cfg[403]);
|
||||
} elseif(is_dir(__DIR__ . "/../" .$uri)) {
|
||||
if(file_exists(__DIR__ . "/../" . $uri . "index.html")) {
|
||||
include(__DIR__ . "/../" . $uri . "index.html");
|
||||
} elseif(file_exists(__DIR__ . "/../" . $uri . "index.php")) {
|
||||
include(__DIR__ . "/../" . $uri . "index.php");
|
||||
} elseif(file_exists(__DIR__ . "/../" . $uri . $cfg["index"])) {
|
||||
include(__DIR__ . "/../" . $uri . $cfg["index"]);
|
||||
}
|
||||
} else {
|
||||
include(__DIR__ . "/" . $uri);
|
||||
|
@ -42,28 +67,29 @@ function unallowedDomain() {
|
|||
echo <<<A
|
||||
<html>
|
||||
<head>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
padding: 60px;
|
||||
}
|
||||
div.container {
|
||||
padding: 40px;
|
||||
border: 3px solid white;
|
||||
border: 3px solid lightgray;
|
||||
border-radius: 8px;
|
||||
background-color: gray;
|
||||
background: linear-gradient(45deg, gray, grey);
|
||||
height: 70%;
|
||||
}
|
||||
h1, h2, h3, p {
|
||||
font-family: Arial;
|
||||
font-family: 'Roboto Condensed', sans-serif;
|
||||
}
|
||||
</style>
|
||||
<link rel="icon" src="http://ad5001.ga/Online/icon.ico" href="http://ad5001.ga/Online/icon.ico" />
|
||||
<link rel="icon" src="http://serveur.cf/Online/icon.ico" href="http://serveur.cf/Online/icon.ico" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1><img src="http://ad5001.ga/Online/icon.png" style="width: 30px; height: 30px;"></img>Unallowed domain</h1><hr>
|
||||
<h1><img src="http://serveur.cf/Online/icon.png" style="width: 30px; height: 30px;"></img>Unallowed domain</h1><hr>
|
||||
<p>This IP does not have any domain on this machine. Please refer to your server administartor if you think it's an error.</p>
|
||||
<h2 style="float: right;"><a href="http://projects.ad5001.ga/Online">Online 1.5 - Eclipse edition</a></h2>
|
||||
<h2 style="float: right;">Online 1.6 - Eclipse edition</a></h2>
|
||||
</body>
|
||||
</style>
|
||||
A;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue