mirror of
https://github.com/elyby/chrly.git
synced 2024-12-23 05:30:06 +05:30
100 lines
3.2 KiB
PHP
100 lines
3.2 KiB
PHP
|
<?php
|
|||
|
|
|||
|
/**
|
|||
|
* Add your routes here
|
|||
|
*/
|
|||
|
$app->get('/skins/{nickname}', function ($nickname) use ($app) {
|
|||
|
$nickname = strtolower($nickname);
|
|||
|
$systemVersion = $app->request->get("version", "int");
|
|||
|
$minecraftVersion = $app->request->get("minecraft_version", "string");
|
|||
|
|
|||
|
// На всякий случай проверка на наличие .png для файла
|
|||
|
if (strrpos($nickname, ".png") != -1) {
|
|||
|
$nickname = explode(".", $nickname)[0];
|
|||
|
}
|
|||
|
|
|||
|
// TODO: восстановить функцию деградации скинов
|
|||
|
|
|||
|
$skin = Skins::findFirst(array(array(
|
|||
|
"nickname" => $nickname
|
|||
|
)));
|
|||
|
|
|||
|
if (!$skin || $skin->skinId == 0)
|
|||
|
return $app->response->redirect("http://skins.minecraft.net/MinecraftSkins/".$nickname.".png", true);
|
|||
|
|
|||
|
return $app->response->redirect($skin->url);
|
|||
|
})->setName("skinSystem");
|
|||
|
|
|||
|
$app->get("/minecraft.php", function() use ($app) {
|
|||
|
$nickname = $app->request->get("name", "string");
|
|||
|
$type = $app->request->get("type", "string");
|
|||
|
$minecraft_version = str_replace('_', '.', $app->request->get("mine_ver", "string", NULL));
|
|||
|
$authlib_version = $app->request->get("auth_lib", "string", NULL);
|
|||
|
$version = $app->request->get("ver", "string");
|
|||
|
|
|||
|
if ($version == "1_0_0")
|
|||
|
$version = "1";
|
|||
|
|
|||
|
if ($type === "cloack" || $type === "cloak")
|
|||
|
return $app->response->redirect('http://skins.minecraft.net/MinecraftCloaks/'.$nickname.'.png');
|
|||
|
|
|||
|
// Если запрос идёт через authlib, то мы не знаем версию Minecraft
|
|||
|
if ($authlib_version && !$minecraft_version) {
|
|||
|
$auth_to_mine = array(
|
|||
|
"1.3" => "1.7.2",
|
|||
|
"1.2" => "1.7.4",
|
|||
|
"1.3.1" => "1.7.5",
|
|||
|
"1.5.13" => "1.7.9",
|
|||
|
"1.5.16" => "1.7.10",
|
|||
|
"1.5.17" => "1.8.1"
|
|||
|
);
|
|||
|
|
|||
|
if (array_key_exists($authlib_version, $auth_to_mine))
|
|||
|
$minecraft_version = $auth_to_mine[$authlib_version];
|
|||
|
}
|
|||
|
|
|||
|
// Отправляем на новую систему скинов в правильном формате
|
|||
|
return $app->response->redirect($app->url->get(
|
|||
|
array(
|
|||
|
"for" => "skinSystem",
|
|||
|
"nickname" => $nickname
|
|||
|
), array(
|
|||
|
"minecraft_version" => $minecraft_version,
|
|||
|
"version" => $version
|
|||
|
)
|
|||
|
), true);
|
|||
|
})->setName("fallbackSkinSystem");
|
|||
|
|
|||
|
$app->post("/system/setSkin", function() use ($app) {
|
|||
|
$request = $app->request;
|
|||
|
$skin = Skins::findFirst(array(array(
|
|||
|
"userId" => $request->getPost("userId", "int")
|
|||
|
)));
|
|||
|
|
|||
|
if (!$skin) {
|
|||
|
$skin = new Skins();
|
|||
|
$skin->userId = $request->getPost("userId", "int");
|
|||
|
}
|
|||
|
|
|||
|
$skin->hash = $request->getPost("hash", "string");
|
|||
|
$skin->nickname = $request->getPost("nickname", "string");
|
|||
|
$skin->is1_8 = (bool) $request->getPost("is1_8", "int");
|
|||
|
$skin->isSlim = (bool) $request->getPost("isSlim", "int");
|
|||
|
$skin->url = $request->getPost("url", "string");
|
|||
|
|
|||
|
if ($skin->save())
|
|||
|
echo "OK";
|
|||
|
else
|
|||
|
echo "ERROR";
|
|||
|
});
|
|||
|
|
|||
|
/**
|
|||
|
* Not found handler
|
|||
|
*/
|
|||
|
$app->notFound(function () use ($app) {
|
|||
|
$app->response
|
|||
|
->setStatusCode(404, "Not Found")
|
|||
|
->setContent("Not Found")
|
|||
|
->send();
|
|||
|
});
|