OneManager-php/platform/normal.php

256 lines
9.0 KiB
PHP
Raw Normal View History

2020-01-18 04:12:21 -08:00
<?php
function getpath()
{
2020-04-02 03:20:19 -07:00
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($_SERVER['HTTP_ACCEPT_LANGUAGE'],';')[0],',')[0]);
2020-01-18 04:12:21 -08:00
$_SERVER['base_path'] = path_format(substr($_SERVER['SCRIPT_NAME'], 0, -10) . '/');
$p = strpos($_SERVER['REQUEST_URI'],'?');
if ($p>0) $path = substr($_SERVER['REQUEST_URI'], 0, $p);
else $path = $_SERVER['REQUEST_URI'];
$path = path_format( substr($path, strlen($_SERVER['base_path'])) );
2020-02-19 20:13:36 -08:00
return substr($path, 1);
2020-01-18 04:12:21 -08:00
//return spurlencode($path, '/');
}
function getGET()
{
$p = strpos($_SERVER['REQUEST_URI'],'?');
if ($p>0) {
$getstr = substr($_SERVER['REQUEST_URI'], $p+1);
$getstrarr = explode("&",$getstr);
foreach ($getstrarr as $getvalues) {
if ($getvalues != '') {
$pos = strpos($getvalues, "=");
//echo $pos;
if ($pos > 0) {
$getarry[urldecode(substr($getvalues, 0, $pos))] = urldecode(substr($getvalues, $pos + 1));
} else {
$getarry[urldecode($getvalues)] = true;
}
}
}
}
if (isset($getarry)) {
return $getarry;
} else {
return [];
}
}
2020-02-19 20:13:36 -08:00
function getConfig($str, $disktag = '')
{
2020-02-24 06:52:11 -08:00
global $InnerEnv;
global $Base64Env;
2020-02-19 20:13:36 -08:00
//include 'config.php';
$s = file_get_contents('config.php');
$configs = substr($s, 18, -2);
if ($configs!='') {
$envs = json_decode($configs, true);
2020-02-24 06:52:11 -08:00
if (in_array($str, $InnerEnv)) {
2020-03-13 05:50:05 -07:00
if ($disktag=='') $disktag = $_SERVER['disktag'];
if (isset($envs[$disktag][$str])) {
if (in_array($str, $Base64Env)) return equal_replace($envs[$disktag][$str],1);
else return $envs[$disktag][$str];
}
} else {
2020-03-13 05:50:05 -07:00
if (isset($envs[$str])) {
if (in_array($str, $Base64Env)) return equal_replace($envs[$str],1);
else return $envs[$str];
}
}
2020-02-19 20:13:36 -08:00
}
return '';
}
function setConfig($arr, $disktag = '')
{
2020-02-24 06:52:11 -08:00
global $InnerEnv;
global $Base64Env;
2020-02-19 20:13:36 -08:00
if ($disktag=='') $disktag = $_SERVER['disktag'];
//include 'config.php';
$s = file_get_contents('config.php');
$configs = substr($s, 18, -2);
if ($configs!='') $envs = json_decode($configs, true);
$disktags = explode("|",getConfig('disktag'));
//$indisk = 0;
$operatedisk = 0;
foreach ($arr as $k => $v) {
2020-02-24 06:52:11 -08:00
if (in_array($k, $InnerEnv)) {
2020-02-28 21:59:50 -08:00
if (in_array($k, $Base64Env)) $envs[$disktag][$k] = equal_replace($v);
else $envs[$disktag][$k] = $v;
2020-02-19 20:13:36 -08:00
/*$diskconfig[$k] = $v;
$indisk = 1;*/
} elseif ($k=='disktag_add') {
array_push($disktags, $v);
$operatedisk = 1;
} elseif ($k=='disktag_del') {
$disktags = array_diff($disktags, [ $v ]);
$envs[$v] = '';
$operatedisk = 1;
} else {
2020-02-29 02:57:33 -08:00
if (in_array($k, $Base64Env)) $envs[$k] = equal_replace($v);
else $envs[$k] = $v;
2020-02-19 20:13:36 -08:00
}
}
/*if ($indisk) {
$diskconfig = array_filter($diskconfig, 'array_value_isnot_null');
ksort($diskconfig);
$tmp[$disktag] = json_encode($diskconfig);
}*/
if ($operatedisk) {
$disktags = array_unique($disktags);
foreach ($disktags as $disktag) if ($disktag!='') $disktag_s .= $disktag . '|';
if ($disktag_s!='') $envs['disktag'] = substr($disktag_s, 0, -1);
else $envs['disktag'] = '';
}
$envs = array_filter($envs, 'array_value_isnot_null');
ksort($envs);
//echo '<pre>'. json_encode($envs, JSON_PRETTY_PRINT).'</pre>';
$prestr = '<?php $configs = \'
';
$aftstr = '
\';';
return file_put_contents('config.php', $prestr . json_encode($envs, JSON_PRETTY_PRINT) . $aftstr);
}
function install()
{
global $constStr;
2020-03-21 19:19:59 -07:00
if ($_GET['install2']) {
2020-02-19 20:13:36 -08:00
if ($_POST['admin']!='') {
$tmp['admin'] = $_POST['admin'];
$tmp['language'] = $_POST['language'];
2020-02-19 20:13:36 -08:00
$response = setConfig($tmp);
if (api_error($response)) {
$html = api_error_msg($response);
2020-02-19 20:13:36 -08:00
$title = 'Error';
return message($html, $title, 201);
} else {
2020-03-21 19:28:20 -07:00
return output('Jump<script>document.cookie=\'language=; path=/\';</script><meta http-equiv="refresh" content="3;URL=' . path_format($_SERVER['base_path'] . '/') . '">', 302);
2020-02-19 20:13:36 -08:00
}
2020-01-18 04:12:21 -08:00
}
}
2020-03-21 19:19:59 -07:00
if ($_GET['install1']) {
2020-01-18 04:12:21 -08:00
if (!ConfigWriteable()) {
2020-02-19 20:13:36 -08:00
$html .= getconstStr('MakesuerWriteable');
2020-01-18 04:12:21 -08:00
$title = 'Error';
return message($html, $title, 201);
}
2020-03-21 19:19:59 -07:00
/*if (!RewriteEngineOn()) {
2020-02-19 20:13:36 -08:00
$html .= getconstStr('MakesuerRewriteOn');
2020-01-18 04:12:21 -08:00
$title = 'Error';
return message($html, $title, 201);
2020-03-21 19:19:59 -07:00
}*/
$html .= '<button id="checkrewritebtn" onclick="checkrewrite();">'.getconstStr('MakesuerRewriteOn').'</button>
<div id="formdiv" style="display: none">
<form action="?install2" method="post" onsubmit="return notnull(this);">
<input name="admin" type="password" placeholder="' . getconstStr('EnvironmentsDescription')['admin'] . '" size="' . strlen(getconstStr('EnvironmentsDescription')['admin']) . '"><br>
<input id="submitbtn" type="submit" value="'.getconstStr('Submit').'" disabled>
</form>
</div>
<script>
function notnull(t)
{
if (t.admin.value==\'\') {
alert(\''.getconstStr('SetAdminPassword').'\');
return false;
}
return true;
}
function checkrewrite()
{
url=location.protocol + "//" + location.host;
2020-03-24 01:27:24 -07:00
//if (location.port!="") url += ":" + location.port;
2020-03-21 19:19:59 -07:00
url += location.pathname;
if (url.substr(-1)!="/") url += "/";
url += "config.php";
//alert(url);
var xhr4 = new XMLHttpRequest();
xhr4.open("GET", url);
xhr4.setRequestHeader("x-requested-with","XMLHttpRequest");
xhr4.send(null);
xhr4.onload = function(e){
console.log(xhr4.responseText+","+xhr4.status);
if (xhr4.status==201) {
document.getElementById("checkrewritebtn").style.display = "none";
document.getElementById("submitbtn").disabled = false;
document.getElementById("formdiv").style.display = "";
} else {
2020-03-24 01:30:19 -07:00
alert(url+"\n"+xhr4.status);
2020-03-21 19:19:59 -07:00
}
}
2020-01-18 04:12:21 -08:00
}
2020-03-21 19:19:59 -07:00
</script>';
$title = getconstStr('SetAdminPassword');
return message($html, $title, 201);
}
if ($_GET['install0']) {
2020-01-18 04:12:21 -08:00
$html .= '
2020-03-21 19:19:59 -07:00
<form action="?install1" method="post">
2020-01-18 04:12:21 -08:00
language:<br>';
foreach ($constStr['languages'] as $key1 => $value1) {
$html .= '
<label><input type="radio" name="language" value="'.$key1.'" '.($key1==$constStr['language']?'checked':'').' onclick="changelanguage(\''.$key1.'\')">'.$value1.'</label><br>';
}
2020-02-19 20:13:36 -08:00
$html .= '
2020-01-18 04:12:21 -08:00
<input type="submit" value="'.getconstStr('Submit').'">
</form>
<script>
function changelanguage(str)
{
document.cookie=\'language=\'+str+\'; path=/\';
location.href = location.href;
}
</script>';
$title = getconstStr('SelectLanguage');
return message($html, $title, 201);
}
2020-02-19 20:13:36 -08:00
$html .= '<a href="?install0">'.getconstStr('ClickInstall').'</a>, '.getconstStr('LogintoBind');
2020-01-18 04:12:21 -08:00
$title = 'Error';
return message($html, $title, 201);
}
function ConfigWriteable()
{
$t = md5( md5(time()).rand(1000,9999) );
$r = setConfig([ 'tmp' => $t ]);
2020-01-18 04:12:21 -08:00
$tmp = getConfig('tmp');
setConfig([ 'tmp' => '' ]);
if ($tmp == $t) return true;
if ($r) return true;
2020-01-18 04:12:21 -08:00
return false;
}
function RewriteEngineOn()
{
$http_type = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') || (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) ? 'https://' : 'http://';
2020-02-19 20:13:36 -08:00
$tmpurl = $http_type . $_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'];
$tmpurl .= path_format($_SERVER['base_path'] . '/config.php');
2020-01-18 04:12:21 -08:00
$tmp = curl_request($tmpurl);
if ($tmp['stat']==200) return false;
2020-01-18 04:12:21 -08:00
if ($tmp['stat']==201) return true; //when install return 201, after installed return 404 or 200;
return false;
}
function api_error($response)
2020-01-18 04:12:21 -08:00
{
return !$response;
}
function api_error_msg($response)
{
return $response . '<br>
Can not write config to file.<br>
2020-03-02 01:27:01 -08:00
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
}
function OnekeyUpate()
{
return json_decode(updateHerokuapp(getConfig('function_name'), getConfig('APIKey'))['body'], true);
}
function setConfigResponse($response)
{
return $response;
2020-01-18 04:12:21 -08:00
}