OneManager-php/platform/Normal.php

395 lines
16 KiB
PHP
Raw Permalink Normal View History

2020-01-18 12:12:21 +00:00
<?php
function getpath()
{
2020-04-02 10:20:19 +00:00
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($_SERVER['HTTP_ACCEPT_LANGUAGE'],';')[0],',')[0]);
2020-05-11 07:17:05 +00:00
if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_X_FORWARDED_FOR'];
if (isset($_SERVER['HTTP_FLY_CLIENT_IP'])) $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_FLY_CLIENT_IP'];
2021-05-12 08:35:34 +00:00
if ($_SERVER['REQUEST_SCHEME']!='http'&&$_SERVER['REQUEST_SCHEME']!='https') {
if ($_SERVER['HTTP_X_FORWARDED_PROTO']!='') {
$tmp = explode(',', $_SERVER['HTTP_X_FORWARDED_PROTO'])[0];
if ($tmp=='http'||$tmp=='https') $_SERVER['REQUEST_SCHEME'] = $tmp;
}
if ($_SERVER['HTTP_FLY_FORWARDED_PROTO']!='') $_SERVER['REQUEST_SCHEME'] = $_SERVER['HTTP_FLY_FORWARDED_PROTO'];
2021-05-12 08:35:34 +00:00
}
2021-02-23 09:20:19 +00:00
$_SERVER['host'] = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'];
$_SERVER['referhost'] = explode('/', $_SERVER['HTTP_REFERER'])[2];
2020-11-06 10:32:11 +00:00
if (isset($_SERVER['DOCUMENT_ROOT'])&&$_SERVER['DOCUMENT_ROOT']==='/app') $_SERVER['base_path'] = '/';
else $_SERVER['base_path'] = path_format(substr($_SERVER['SCRIPT_NAME'], 0, -10) . '/');
2020-08-28 02:28:42 +00:00
if (isset($_SERVER['UNENCODED_URL'])) $_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];
2020-01-18 12:12:21 +00:00
$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'])) );
return $path;
//return substr($path, 1);
2020-01-18 12:12:21 +00:00
//return spurlencode($path, '/');
}
function getGET()
{
2020-12-15 05:06:15 +00:00
if (!$_POST) {
if (!!$HTTP_RAW_POST_DATA) {
$tmpdata = $HTTP_RAW_POST_DATA;
} else {
$tmpdata = file_get_contents('php://input');
}
if (!!$tmpdata) {
$postbody = explode("&", $tmpdata);
foreach ($postbody as $postvalues) {
$pos = strpos($postvalues,"=");
$_POST[urldecode(substr($postvalues,0,$pos))]=urldecode(substr($postvalues,$pos+1));
}
}
}
2020-08-28 02:28:42 +00:00
if (isset($_SERVER['UNENCODED_URL'])) $_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];
2020-01-18 12:12:21 +00:00
$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-20 04:13:36 +00:00
function getConfig($str, $disktag = '')
{
2021-01-15 03:10:08 +00:00
global $slash;
$projectPath = splitlast(__DIR__, $slash)[0];
$configPath = $projectPath . $slash . '.data' . $slash . 'config.php';
$s = file_get_contents($configPath);
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
2020-02-20 04:13:36 +00:00
if ($configs!='') {
$envs = json_decode($configs, true);
2021-01-15 03:10:08 +00:00
if (isInnerEnv($str)) {
2020-03-13 12:50:05 +00:00
if ($disktag=='') $disktag = $_SERVER['disktag'];
if (isset($envs[$disktag][$str])) {
2021-01-15 03:10:08 +00:00
if (isBase64Env($str)) return base64y_decode($envs[$disktag][$str]);
2020-03-13 12:50:05 +00:00
else return $envs[$disktag][$str];
}
} else {
2020-03-13 12:50:05 +00:00
if (isset($envs[$str])) {
2021-01-15 03:10:08 +00:00
if (isBase64Env($str)) return base64y_decode($envs[$str]);
2020-03-13 12:50:05 +00:00
else return $envs[$str];
}
}
2020-02-20 04:13:36 +00:00
}
return '';
}
function setConfig($arr, $disktag = '')
{
2021-01-15 03:10:08 +00:00
global $slash;
2020-02-20 04:13:36 +00:00
if ($disktag=='') $disktag = $_SERVER['disktag'];
$projectPath = splitlast(__DIR__, $slash)[0];
$configPath = $projectPath . $slash . '.data' . $slash . 'config.php';
$s = file_get_contents($configPath);
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
2020-02-20 04:13:36 +00:00
if ($configs!='') $envs = json_decode($configs, true);
2020-12-27 06:22:18 +00:00
$disktags = explode("|", getConfig('disktag'));
2020-05-03 10:23:05 +00:00
$indisk = 0;
2020-02-20 04:13:36 +00:00
$operatedisk = 0;
foreach ($arr as $k => $v) {
2021-03-01 09:38:15 +00:00
if (isCommonEnv($k)) {
if (isBase64Env($k)) $envs[$k] = base64y_encode($v);
else $envs[$k] = $v;
} elseif (isInnerEnv($k)) {
2021-01-15 03:10:08 +00:00
if (isBase64Env($k)) $envs[$disktag][$k] = base64y_encode($v);
else $envs[$disktag][$k] = $v;
2020-05-03 10:23:05 +00:00
$indisk = 1;
2020-02-20 04:13:36 +00:00
} elseif ($k=='disktag_add') {
array_push($disktags, $v);
$operatedisk = 1;
} elseif ($k=='disktag_del') {
$disktags = array_diff($disktags, [ $v ]);
$envs[$v] = '';
$operatedisk = 1;
2021-01-18 07:59:39 +00:00
} elseif ($k=='disktag_copy') {
$newtag = $v . '_' . date("Ymd_His");
$envs[$newtag] = $envs[$v];
array_push($disktags, $newtag);
$operatedisk = 1;
2020-12-27 06:22:18 +00:00
} elseif ($k=='disktag_rename' || $k=='disktag_newname') {
if ($arr['disktag_rename']!=$arr['disktag_newname']) $operatedisk = 1;
2020-02-20 04:13:36 +00:00
} else {
2021-03-01 09:38:15 +00:00
//$tmpdisk = json_decode($v, true);
//var_dump($tmpdisk);
//error_log(json_encode($tmpdisk));
//if ($tmpdisk===null)
$envs[$k] = $v;
//else $envs[$k] = $tmpdisk;
2020-02-20 04:13:36 +00:00
}
}
2020-05-03 10:23:05 +00:00
if ($indisk) {
$diskconfig = $envs[$disktag];
2020-02-20 04:13:36 +00:00
$diskconfig = array_filter($diskconfig, 'array_value_isnot_null');
ksort($diskconfig);
2020-05-03 10:23:05 +00:00
$envs[$disktag] = $diskconfig;
}
2020-02-20 04:13:36 +00:00
if ($operatedisk) {
2020-12-27 06:22:18 +00:00
if (isset($arr['disktag_newname']) && $arr['disktag_newname']!='') {
$tags = [];
foreach ($disktags as $tag) {
if ($tag==$arr['disktag_rename']) array_push($tags, $arr['disktag_newname']);
else array_push($tags, $tag);
}
$envs['disktag'] = implode('|', $tags);
2020-12-27 06:22:18 +00:00
$envs[$arr['disktag_newname']] = $envs[$arr['disktag_rename']];
unset($envs[$arr['disktag_rename']]);
} else {
$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'] = '';
}
2020-02-20 04:13:36 +00:00
}
$envs = array_filter($envs, 'array_value_isnot_null');
2021-01-15 03:10:08 +00:00
//ksort($envs);
sortConfig($envs);
2020-12-27 06:22:18 +00:00
2020-02-20 04:13:36 +00:00
//echo '<pre>'. json_encode($envs, JSON_PRETTY_PRINT).'</pre>';
$prestr = '<?php $configs = \'' . PHP_EOL;
$aftstr = PHP_EOL . '\';';
$response = file_put_contents($configPath, $prestr . json_encode($envs, JSON_PRETTY_PRINT) . $aftstr);
2020-08-21 07:47:34 +00:00
if ($response>0) return json_encode( [ 'response' => 'success' ] );
return json_encode( [ 'message' => 'Failed to write config.', 'code' => 'failed' ] );
2020-02-20 04:13:36 +00:00
}
function install()
{
global $constStr;
2020-03-22 02:19:59 +00:00
if ($_GET['install2']) {
2020-02-20 04:13:36 +00:00
if ($_POST['admin']!='') {
$tmp['admin'] = $_POST['admin'];
2020-05-03 10:23:05 +00:00
//$tmp['language'] = $_COOKIE['language'];
2020-04-05 05:47:32 +00:00
$tmp['timezone'] = $_COOKIE['timezone'];
2020-08-21 07:47:34 +00:00
$response = setConfigResponse( setConfig($tmp) );
if (api_error($response)) {
$html = api_error_msg($response);
2020-02-20 04:13:36 +00:00
$title = 'Error';
return message($html, $title, 201);
} else {
2020-07-13 09:40:30 +00:00
return output('Jump
<script>
var expd = new Date();
expd.setTime(expd.getTime()+(2*60*60*1000));
var expires = "expires="+expd.toGMTString();
document.cookie=\'language=; path=/; \'+expires;
</script>
<meta http-equiv="refresh" content="3;URL=' . path_format($_SERVER['base_path'] . '/') . '">', 302);
2020-02-20 04:13:36 +00:00
}
2020-01-18 12:12:21 +00:00
}
}
2020-03-22 02:19:59 +00:00
if ($_GET['install1']) {
2020-01-18 12:12:21 +00:00
if (!ConfigWriteable()) {
2020-02-20 04:13:36 +00:00
$html .= getconstStr('MakesuerWriteable');
2020-01-18 12:12:21 +00:00
$title = 'Error';
return message($html, $title, 201);
}
2020-03-22 02:19:59 +00:00
/*if (!RewriteEngineOn()) {
2020-02-20 04:13:36 +00:00
$html .= getconstStr('MakesuerRewriteOn');
2020-01-18 12:12:21 +00:00
$title = 'Error';
return message($html, $title, 201);
2020-03-22 02:19:59 +00: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>
2020-04-05 05:47:32 +00:00
var nowtime= new Date();
var timezone = 0-nowtime.getTimezoneOffset()/60;
var expd = new Date();
expd.setTime(expd.getTime()+(2*60*60*1000));
var expires = "expires="+expd.toGMTString();
document.cookie="timezone="+timezone+"; path=/; "+expires;
2020-03-22 02:19:59 +00:00
function notnull(t)
{
if (t.admin.value==\'\') {
alert(\''.getconstStr('SetAdminPassword').'\');
return false;
}
return true;
}
function checkrewrite()
{
url=location.protocol + "//" + location.host;
2020-03-24 08:27:24 +00:00
//if (location.port!="") url += ":" + location.port;
2020-03-22 02:19:59 +00:00
url += location.pathname;
if (url.substr(-1)!="/") url += "/";
url += "app.json";
url += "?" + Date.now();
2020-03-22 02:19:59 +00:00
var xhr4 = new XMLHttpRequest();
xhr4.open("GET", url);
2020-03-22 02:19:59 +00:00
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 {
2021-08-17 11:51:17 +00:00
alert("' . getconstStr('MakesuerRewriteOn') . '?\nfalse\n\nUrl: " + url + "\nExpect http code 201, but received " + xhr4.status);
2020-03-22 02:19:59 +00:00
}
}
2020-01-18 12:12:21 +00:00
}
2020-03-22 02:19:59 +00:00
</script>';
$title = getconstStr('SetAdminPassword');
return message($html, $title, 201);
}
if ($_GET['install0']) {
2020-01-18 12:12:21 +00:00
$html .= '
2020-03-22 02:19:59 +00:00
<form action="?install1" method="post">
2020-01-18 12:12:21 +00: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-20 04:13:36 +00:00
$html .= '
2020-01-18 12:12:21 +00:00
<input type="submit" value="'.getconstStr('Submit').'">
</form>
<script>
function changelanguage(str)
{
2020-07-13 09:40:30 +00:00
var expd = new Date();
expd.setTime(expd.getTime()+(2*60*60*1000));
var expires = "expires="+expd.toGMTString();
document.cookie=\'language=\'+str+\'; path=/; \'+expires;
2020-01-18 12:12:21 +00:00
location.href = location.href;
}
</script>';
$title = getconstStr('SelectLanguage');
return message($html, $title, 201);
}
2021-11-01 10:45:49 +00:00
$title = 'Install';
$html = '<a href="?install0">' . getconstStr('ClickInstall') . '</a>, ' . getconstStr('LogintoBind');
2020-01-18 12:12:21 +00:00
return message($html, $title, 201);
}
function ConfigWriteable()
{
$t = md5( md5(time()).rand(1000,9999) );
$r = setConfig([ 'tmp' => $t ]);
2020-01-18 12:12:21 +00:00
$tmp = getConfig('tmp');
setConfig([ 'tmp' => '' ]);
if ($tmp == $t) return true;
if ($r) return true;
2020-01-18 12:12:21 +00:00
return false;
}
function api_error($response)
2020-01-18 12:12:21 +00:00
{
2020-08-21 07:47:34 +00:00
return isset($response['message']);
}
function api_error_msg($response)
{
2020-08-21 07:47:34 +00:00
return $response['code'] . '<br>
' . $response['message'] . '<br>
2020-03-02 09:27:01 +00:00
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
}
function setConfigResponse($response)
{
2020-08-21 07:47:34 +00:00
return json_decode($response, true);
}
2021-12-20 02:44:51 +00:00
function OnekeyUpate($GitSource = 'Github', $auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
{
2021-12-20 02:44:51 +00:00
global $slash;
// __DIR__ is xxx/platform
2020-08-27 01:19:20 +00:00
$projectPath = splitlast(__DIR__, $slash)[0];
2021-12-20 02:44:51 +00:00
if ($GitSource=='Github') {
// 从github下载对应tar.gz并解压
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
} elseif ($GitSource=='HITGitlab') {
$url = 'https://git.hit.edu.cn/' . $auth . '/' . $project . '/-/archive/' . urlencode($branch) . '/' . $project . '-' . urlencode($branch) . '.tar.gz';
} else return 0;
2020-08-27 01:19:20 +00:00
$tarfile = $projectPath . $slash .'github.tar.gz';
$githubfile = file_get_contents($url);
if (!$githubfile) return 0;
file_put_contents($tarfile, $githubfile);
2021-12-20 02:44:51 +00:00
2021-03-14 08:42:31 +00:00
if (splitfirst(PHP_VERSION, '.')[0] > '5') {
$phar = new PharData($tarfile); // need php5.3, 7, 8
$phar->extractTo($projectPath, null, true);//路径 要解压的文件 是否覆盖
} else {
ob_start();
2020-08-27 01:19:20 +00:00
passthru('tar -xzvf ' . $tarfile, $stat);
ob_get_clean();
}
unlink($tarfile);
$outPath = '';
2021-12-20 02:44:51 +00:00
$outPath = findIndexPath($projectPath);
//error_log1($outPath);
if ($outPath=='') return 0;
//unlink($outPath.'/config.php');
2020-11-06 10:02:03 +00:00
$response = rename($projectPath . $slash . '.data' . $slash . 'config.php', $outPath . $slash . '.data' . $slash . 'config.php');
2020-08-27 01:19:20 +00:00
if (!$response) {
$tmp1['code'] = "Move Failed";
2020-11-06 10:02:03 +00:00
$tmp1['message'] = "Can not move " . $projectPath . $slash . '.data' . $slash . 'config.php' . " to " . $outPath . $slash . '.data' . $slash . 'config.php';
2020-08-27 01:19:20 +00:00
return json_encode($tmp1);
}
2021-12-20 02:44:51 +00:00
return moveFolder($outPath, $projectPath);
}
2021-12-20 02:44:51 +00:00
function moveFolder($from, $to)
{
2021-12-20 02:44:51 +00:00
global $slash;
2020-08-27 01:19:20 +00:00
if (substr($from, -1)==$slash) $from = substr($from, 0, -1);
if (substr($to, -1)==$slash) $to = substr($to, 0, -1);
if (!file_exists($to)) mkdir($to, 0777);
$handler=opendir($from);
while($filename=readdir($handler)) {
if($filename != '.' && $filename != '..'){
2020-08-27 01:19:20 +00:00
$fromfile = $from . $slash . $filename;
$tofile = $to . $slash . $filename;
if(is_dir($fromfile)){// 如果读取的某个对象是文件夹,则递归
2021-12-20 02:44:51 +00:00
$response = moveFolder($fromfile, $tofile);
2020-08-21 07:47:34 +00:00
if (api_error(setConfigResponse($response))) return $response;
}else{
//if (file_exists($tofile)) unlink($tofile);
2020-08-21 07:47:34 +00:00
$response = rename($fromfile, $tofile);
if (!$response) {
$tmp['code'] = "Move Failed";
$tmp['message'] = "Can not move " . $fromfile . " to " . $tofile;
return json_encode($tmp);
}
if (file_exists($fromfile)) unlink($fromfile);
}
}
}
closedir($handler);
rmdir($from);
2020-08-21 07:47:34 +00:00
return json_encode( [ 'response' => 'success' ] );
2020-01-18 12:12:21 +00:00
}
2021-08-17 11:51:17 +00:00
function WaitFunction() {
return true;
}
2021-12-01 06:39:21 +00:00
function changeAuthKey() {
return message("Not need.", 'Change platform Auth token or key', 404);
}