2021-08-04 07:30:19 +00:00
|
|
|
|
<?php
|
|
|
|
|
// https://vercel.com/docs/api#endpoints/deployments/create-a-new-deployment
|
|
|
|
|
|
|
|
|
|
function getpath()
|
|
|
|
|
{
|
|
|
|
|
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($_SERVER['HTTP_ACCEPT_LANGUAGE'],';')[0],',')[0]);
|
|
|
|
|
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'];
|
|
|
|
|
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'];
|
|
|
|
|
}
|
|
|
|
|
$_SERVER['host'] = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'];
|
|
|
|
|
$_SERVER['referhost'] = explode('/', $_SERVER['HTTP_REFERER'])[2];
|
2021-08-05 08:05:37 +00:00
|
|
|
|
$_SERVER['base_path'] = "/";
|
2021-08-04 07:30:19 +00:00
|
|
|
|
if (isset($_SERVER['UNENCODED_URL'])) $_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];
|
|
|
|
|
$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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getGET()
|
|
|
|
|
{
|
|
|
|
|
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));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (isset($_SERVER['UNENCODED_URL'])) $_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];
|
|
|
|
|
$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 [];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getConfig($str, $disktag = '')
|
|
|
|
|
{
|
|
|
|
|
if (isInnerEnv($str)) {
|
|
|
|
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
2021-08-05 08:05:37 +00:00
|
|
|
|
$tmp = getenv($disktag);
|
|
|
|
|
if (is_array($tmp)) $env = $tmp;
|
|
|
|
|
else $env = json_decode($tmp, true);
|
2021-08-04 07:30:19 +00:00
|
|
|
|
if (isset($env[$str])) {
|
|
|
|
|
if (isBase64Env($str)) return base64y_decode($env[$str]);
|
|
|
|
|
else return $env[$str];
|
2021-08-18 05:14:16 +00:00
|
|
|
|
}
|
2021-08-04 07:30:19 +00:00
|
|
|
|
} else {
|
|
|
|
|
if (isBase64Env($str)) return base64y_decode(getenv($str));
|
|
|
|
|
else return getenv($str);
|
|
|
|
|
}
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setConfig($arr, $disktag = '')
|
|
|
|
|
{
|
|
|
|
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
2021-08-05 10:13:37 +00:00
|
|
|
|
$disktags = explode("|", getenv('disktag'));
|
|
|
|
|
if ($disktag!='') {
|
|
|
|
|
$tmp = getenv($disktag);
|
|
|
|
|
if (is_array($tmp)) $diskconfig = $tmp;
|
|
|
|
|
else $diskconfig = json_decode($tmp, true);
|
|
|
|
|
}
|
2021-08-04 07:30:19 +00:00
|
|
|
|
$tmp = [];
|
|
|
|
|
$indisk = 0;
|
|
|
|
|
$operatedisk = 0;
|
|
|
|
|
foreach ($arr as $k => $v) {
|
|
|
|
|
if (isCommonEnv($k)) {
|
|
|
|
|
if (isBase64Env($k)) $tmp[$k] = base64y_encode($v);
|
|
|
|
|
else $tmp[$k] = $v;
|
|
|
|
|
} elseif (isInnerEnv($k)) {
|
|
|
|
|
if (isBase64Env($k)) $diskconfig[$k] = base64y_encode($v);
|
|
|
|
|
else $diskconfig[$k] = $v;
|
|
|
|
|
$indisk = 1;
|
|
|
|
|
} elseif ($k=='disktag_add') {
|
|
|
|
|
array_push($disktags, $v);
|
|
|
|
|
$operatedisk = 1;
|
|
|
|
|
} elseif ($k=='disktag_del') {
|
|
|
|
|
$disktags = array_diff($disktags, [ $v ]);
|
|
|
|
|
$tmp[$v] = '';
|
|
|
|
|
$operatedisk = 1;
|
|
|
|
|
} elseif ($k=='disktag_copy') {
|
|
|
|
|
$newtag = $v . '_' . date("Ymd_His");
|
2021-08-18 05:14:16 +00:00
|
|
|
|
$tagvalue = getenv($v);
|
2021-08-17 11:51:17 +00:00
|
|
|
|
if (is_array($tagvalue)) $tmp[$newtag] = json_encode($tagvalue);
|
|
|
|
|
else $tmp[$newtag] = $tagvalue;
|
2021-08-04 07:30:19 +00:00
|
|
|
|
array_push($disktags, $newtag);
|
|
|
|
|
$operatedisk = 1;
|
|
|
|
|
} elseif ($k=='disktag_rename' || $k=='disktag_newname') {
|
|
|
|
|
if ($arr['disktag_rename']!=$arr['disktag_newname']) $operatedisk = 1;
|
|
|
|
|
} else {
|
|
|
|
|
$tmp[$k] = json_encode($v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ($indisk) {
|
|
|
|
|
$diskconfig = array_filter($diskconfig, 'array_value_isnot_null');
|
|
|
|
|
ksort($diskconfig);
|
|
|
|
|
$tmp[$disktag] = json_encode($diskconfig);
|
|
|
|
|
}
|
|
|
|
|
if ($operatedisk) {
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
$tmp['disktag'] = implode('|', $tags);
|
2021-08-18 05:14:16 +00:00
|
|
|
|
$tagvalue = getenv($arr['disktag_rename']);
|
2021-08-17 11:51:17 +00:00
|
|
|
|
if (is_array($tagvalue)) $tmp[$arr['disktag_newname']] = json_encode($tagvalue);
|
|
|
|
|
else $tmp[$arr['disktag_newname']] = $tagvalue;
|
2021-08-04 07:30:19 +00:00
|
|
|
|
$tmp[$arr['disktag_rename']] = null;
|
|
|
|
|
} else {
|
|
|
|
|
$disktags = array_unique($disktags);
|
|
|
|
|
foreach ($disktags as $disktag) if ($disktag!='') $disktag_s .= $disktag . '|';
|
|
|
|
|
if ($disktag_s!='') $tmp['disktag'] = substr($disktag_s, 0, -1);
|
|
|
|
|
else $tmp['disktag'] = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
foreach ($tmp as $key => $val) if ($val=='') $tmp[$key]=null;
|
|
|
|
|
|
2021-08-18 05:14:16 +00:00
|
|
|
|
//error_log1(json_encode($arr, JSON_PRETTY_PRINT) . ' => tmp:' . json_encode($tmp, JSON_PRETTY_PRINT));
|
|
|
|
|
//echo json_encode($arr, JSON_PRETTY_PRINT) . ' => tmp:' . json_encode($tmp, JSON_PRETTY_PRINT);
|
2021-08-04 07:30:19 +00:00
|
|
|
|
return setVercelConfig($tmp, getConfig('HerokuappId'), getConfig('APIKey'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function install()
|
|
|
|
|
{
|
|
|
|
|
global $constStr;
|
|
|
|
|
if ($_GET['install1']) {
|
|
|
|
|
if ($_POST['admin']!='') {
|
|
|
|
|
$tmp['admin'] = $_POST['admin'];
|
|
|
|
|
//$tmp['language'] = $_POST['language'];
|
|
|
|
|
$tmp['timezone'] = $_COOKIE['timezone'];
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$APIKey = $_POST['APIKey'];
|
|
|
|
|
$tmp['APIKey'] = $APIKey;
|
2021-08-04 07:30:19 +00:00
|
|
|
|
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$token = $APIKey;
|
|
|
|
|
$header["Authorization"] = "Bearer " . $token;
|
|
|
|
|
$header["Content-Type"] = "application/json";
|
|
|
|
|
$aliases = json_decode(curl("GET", "https://api.vercel.com/v3/now/aliases", "", $header)['body'], true);
|
|
|
|
|
$host = splitfirst($_SERVER["host"], "//")[1];
|
|
|
|
|
foreach ($aliases["aliases"] as $key => $aliase) {
|
|
|
|
|
if ($host==$aliase["alias"]) $projectId = $aliase["projectId"];
|
|
|
|
|
}
|
2021-08-04 07:30:19 +00:00
|
|
|
|
$tmp['HerokuappId'] = $projectId;
|
2021-08-17 11:51:17 +00:00
|
|
|
|
|
|
|
|
|
$response = json_decode(setVercelConfig($tmp, $projectId, $APIKey), true);
|
2021-08-04 07:30:19 +00:00
|
|
|
|
if (api_error($response)) {
|
|
|
|
|
$html = api_error_msg($response);
|
|
|
|
|
$title = 'Error';
|
2021-08-17 11:51:17 +00:00
|
|
|
|
return message($html, $title, 400);
|
2021-08-04 07:30:19 +00:00
|
|
|
|
} else {
|
2021-12-01 06:55:41 +00:00
|
|
|
|
$html = getconstStr('Success') . '
|
|
|
|
|
<script>
|
2021-08-26 10:09:57 +00:00
|
|
|
|
var status = "' . $response['DplStatus'] . '";
|
2021-12-01 06:55:41 +00:00
|
|
|
|
var i = 0;
|
2021-08-04 07:30:19 +00:00
|
|
|
|
var expd = new Date();
|
|
|
|
|
expd.setTime(expd.getTime()+1000);
|
|
|
|
|
var expires = "expires="+expd.toGMTString();
|
|
|
|
|
document.cookie=\'language=; path=/; \'+expires;
|
2021-12-01 06:55:41 +00:00
|
|
|
|
var uploadList = setInterval(function(){
|
|
|
|
|
if (document.getElementById("dis").style.display=="none") {
|
|
|
|
|
console.log(i++);
|
|
|
|
|
} else {
|
|
|
|
|
clearInterval(uploadList);
|
|
|
|
|
location.href = "' . path_format($_SERVER['base_path'] . '/') . '";
|
|
|
|
|
}
|
|
|
|
|
}, 1000);
|
2021-08-17 11:51:17 +00:00
|
|
|
|
</script>';
|
2021-12-01 06:55:41 +00:00
|
|
|
|
return message($html, $title, 201, 1);
|
2021-08-04 07:30:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ($_GET['install0']) {
|
|
|
|
|
$html .= '
|
|
|
|
|
<form action="?install1" method="post" onsubmit="return notnull(this);">
|
|
|
|
|
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>';
|
|
|
|
|
}
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$html .= '<br>
|
2021-08-04 07:30:19 +00:00
|
|
|
|
<a href="https://vercel.com/account/tokens" target="_blank">' . getconstStr('Create') . ' token</a><br>
|
2021-12-01 06:55:41 +00:00
|
|
|
|
<label>Token:<input name="APIKey" type="password" placeholder="" value=""></label><br>';
|
2021-08-04 07:30:19 +00:00
|
|
|
|
$html .= '<br>
|
|
|
|
|
<label>Set admin password:<input name="admin" type="password" placeholder="' . getconstStr('EnvironmentsDescription')['admin'] . '" size="' . strlen(getconstStr('EnvironmentsDescription')['admin']) . '"></label><br>';
|
|
|
|
|
$html .= '
|
|
|
|
|
<input type="submit" value="'.getconstStr('Submit').'">
|
|
|
|
|
</form>
|
2021-08-17 11:51:17 +00:00
|
|
|
|
<div id="showerror"></div>
|
2021-08-04 07:30:19 +00:00
|
|
|
|
<script>
|
|
|
|
|
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;
|
2021-08-17 11:51:17 +00:00
|
|
|
|
var errordiv = document.getElementById("showerror");
|
2021-08-04 07:30:19 +00:00
|
|
|
|
function changelanguage(str)
|
|
|
|
|
{
|
|
|
|
|
var expd = new Date();
|
|
|
|
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
|
|
|
|
var expires = "expires="+expd.toGMTString();
|
|
|
|
|
document.cookie=\'language=\'+str+\'; path=/; \'+expires;
|
|
|
|
|
location.href = location.href;
|
|
|
|
|
}
|
|
|
|
|
function notnull(t)
|
|
|
|
|
{
|
|
|
|
|
if (t.admin.value==\'\') {
|
|
|
|
|
alert(\'input admin\');
|
|
|
|
|
return false;
|
2021-08-17 11:51:17 +00:00
|
|
|
|
}
|
2021-08-04 07:30:19 +00:00
|
|
|
|
if (t.APIKey.value==\'\') {
|
2021-08-17 11:51:17 +00:00
|
|
|
|
alert(\'input Token\');
|
2021-08-04 07:30:19 +00:00
|
|
|
|
return false;
|
2021-08-17 11:51:17 +00:00
|
|
|
|
}
|
2021-12-01 06:55:41 +00:00
|
|
|
|
return true;
|
2021-08-04 07:30:19 +00:00
|
|
|
|
}
|
|
|
|
|
</script>';
|
|
|
|
|
$title = getconstStr('SelectLanguage');
|
|
|
|
|
return message($html, $title, 201);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 11:51:17 +00:00
|
|
|
|
if (substr($_SERVER["host"], -10)=="vercel.app") {
|
|
|
|
|
$html .= '<a href="?install0">' . getconstStr('ClickInstall') . '</a>, ' . getconstStr('LogintoBind');
|
|
|
|
|
$html .= "<br>Remember: you MUST wait 30-60s after each operate / do some change, that make sure Vercel has done the building<br>" ;
|
|
|
|
|
} else {
|
|
|
|
|
$html.= "Please visit form *.vercel.app";
|
|
|
|
|
}
|
2021-08-04 07:30:19 +00:00
|
|
|
|
$title = 'Install';
|
|
|
|
|
return message($html, $title, 201);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// POST /v8/projects/:id/env
|
|
|
|
|
function setVercelConfig($envs, $appId, $token)
|
|
|
|
|
{
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$url = "https://api.vercel.com/v8/projects/" . $appId . "/env";
|
|
|
|
|
$header["Authorization"] = "Bearer " . $token;
|
|
|
|
|
$header["Content-Type"] = "application/json";
|
|
|
|
|
$response = curl("GET", $url, "", $header);
|
|
|
|
|
$result = json_decode($response['body'], true);
|
|
|
|
|
foreach ($result["envs"] as $key => $value) {
|
|
|
|
|
$existEnvs[$value["key"]] = $value["id"];
|
|
|
|
|
}
|
|
|
|
|
foreach ($envs as $key => $value) {
|
2021-08-19 01:27:03 +00:00
|
|
|
|
$response = null;
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$tmp = null;
|
|
|
|
|
$tmp["type"] = "encrypted";
|
|
|
|
|
$tmp["key"] = $key;
|
|
|
|
|
$tmp["value"] = $value;
|
|
|
|
|
$tmp["target"] = [ "development", "production", "preview" ];
|
|
|
|
|
if (isset($existEnvs[$key])) {
|
|
|
|
|
if ($value) $response = curl("PATCH", $url . "/" . $existEnvs[$key], json_encode($tmp), $header);
|
|
|
|
|
else $response = curl("DELETE", $url . "/" . $existEnvs[$key], "", $header);
|
|
|
|
|
} else {
|
|
|
|
|
if ($value) $response = curl("POST", $url, json_encode($tmp), $header);
|
|
|
|
|
}
|
2021-08-19 01:27:03 +00:00
|
|
|
|
//echo $key . " = " . $value . ", <br>" . $response . json_encode($response, JSON_PRETTY_PRINT) . "<br>";
|
|
|
|
|
if (!!$response && $response['stat']!=200) return $response['body'];
|
2021-08-17 11:51:17 +00:00
|
|
|
|
}
|
|
|
|
|
return VercelUpdate($appId, $token);
|
2021-08-04 07:30:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function VercelUpdate($appId, $token, $sourcePath = "")
|
|
|
|
|
{
|
2021-12-01 06:55:41 +00:00
|
|
|
|
if (checkBuilding($appId, $token)) return '{"error":{"message":"Another building is in progress."}}';
|
|
|
|
|
$url = "https://api.vercel.com/v13/deployments";
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$header["Authorization"] = "Bearer " . $token;
|
|
|
|
|
$header["Content-Type"] = "application/json";
|
|
|
|
|
$data["name"] = "OneManager";
|
|
|
|
|
$data["project"] = $appId;
|
|
|
|
|
$data["target"] = "production";
|
|
|
|
|
$data["routes"][0]["src"] = "/(.*)";
|
|
|
|
|
$data["routes"][0]["dest"] = "/api/index.php";
|
|
|
|
|
$data["functions"]["api/index.php"]["runtime"] = "vercel-php@0.4.0";
|
|
|
|
|
if ($sourcePath=="") $sourcePath = splitlast(splitlast(__DIR__, "/")[0], "/")[0];
|
|
|
|
|
//echo $sourcePath . "<br>";
|
|
|
|
|
getEachFiles($file, $sourcePath);
|
|
|
|
|
$data["files"] = $file;
|
2021-08-04 07:30:19 +00:00
|
|
|
|
|
2021-08-17 11:51:17 +00:00
|
|
|
|
//echo json_encode($data, JSON_PRETTY_PRINT) . " ,data<br>";
|
|
|
|
|
$response = curl("POST", $url, json_encode($data), $header);
|
2021-08-19 01:27:03 +00:00
|
|
|
|
//echo json_encode($response, JSON_PRETTY_PRINT) . " ,res<br>";
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$result = json_decode($response["body"], true);
|
2021-08-26 10:09:57 +00:00
|
|
|
|
$result['DplStatus'] = $result['id'];
|
2021-08-17 11:51:17 +00:00
|
|
|
|
return json_encode($result);
|
2021-08-04 07:30:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-01 06:55:41 +00:00
|
|
|
|
function checkBuilding($projectId, $token)
|
|
|
|
|
{
|
|
|
|
|
$r = 0;
|
|
|
|
|
$url = "https://api.vercel.com/v6/deployments/?projectId=" . $projectId;
|
|
|
|
|
$header["Authorization"] = "Bearer " . $token;
|
|
|
|
|
$header["Content-Type"] = "application/json";
|
|
|
|
|
$response = curl("GET", $url, '', $header);
|
|
|
|
|
//echo json_encode($response, JSON_PRETTY_PRINT) . " ,res<br>";
|
|
|
|
|
$result = json_decode($response["body"], true);
|
|
|
|
|
foreach ( $result['deployments'] as $deployment ) {
|
|
|
|
|
if ($deployment['state']!=="READY") $r++;
|
|
|
|
|
}
|
|
|
|
|
return $r;
|
|
|
|
|
//if ($r===0) return true;
|
|
|
|
|
//else return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-04 07:30:19 +00:00
|
|
|
|
function getEachFiles(&$file, $base, $path = "")
|
|
|
|
|
{
|
|
|
|
|
//if (substr($base, -1)=="/") $base = substr($base, 0, -1);
|
|
|
|
|
//if (substr($path, -1)=="/") $path = substr($path, 0, -1);
|
|
|
|
|
$handler=opendir(path_format($base . "/" . $path));
|
|
|
|
|
while($filename=readdir($handler)) {
|
|
|
|
|
if($filename != '.' && $filename != '..' && $filename != '.git'){
|
|
|
|
|
$fromfile = path_format($base . "/" . $path . "/" . $filename);
|
2021-08-17 11:51:17 +00:00
|
|
|
|
//echo $fromfile . "<br>";
|
2021-08-04 07:30:19 +00:00
|
|
|
|
if(is_dir($fromfile)){// 如果读取的某个对象是文件夹,则递归
|
|
|
|
|
$response = getEachFiles($file, $base, path_format($path . "/" . $filename));
|
|
|
|
|
if (api_error(setConfigResponse($response))) return $response;
|
|
|
|
|
}else{
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$tmp['file'] = path_format($path . "/" . $filename);
|
|
|
|
|
$tmp['data'] = file_get_contents($fromfile);
|
2021-08-04 07:30:19 +00:00
|
|
|
|
$file[] = $tmp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
closedir($handler);
|
|
|
|
|
|
|
|
|
|
return json_encode( [ 'response' => 'success' ] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function api_error($response)
|
|
|
|
|
{
|
|
|
|
|
return isset($response['error']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function api_error_msg($response)
|
|
|
|
|
{
|
|
|
|
|
return $response['error']['code'] . '<br>
|
|
|
|
|
' . $response['error']['message'] . '<br>
|
|
|
|
|
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setConfigResponse($response)
|
|
|
|
|
{
|
|
|
|
|
return json_decode($response, true);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-20 02:49:11 +00:00
|
|
|
|
function OnekeyUpate($GitSource = 'Github', $auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
2021-08-04 07:30:19 +00:00
|
|
|
|
{
|
|
|
|
|
$tmppath = '/tmp';
|
|
|
|
|
|
2021-12-20 02:49:11 +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 json_encode(['error'=>['code'=>'Git Source input Error!']]);
|
|
|
|
|
|
2021-08-04 07:30:19 +00:00
|
|
|
|
$tarfile = $tmppath . '/github.tar.gz';
|
2021-12-20 02:49:11 +00:00
|
|
|
|
file_put_contents($tarfile, file_get_contents($url));
|
|
|
|
|
$phar = new PharData($tarfile);
|
|
|
|
|
$html = $phar->extractTo($tmppath, null, true);//路径 要解压的文件 是否覆盖
|
2021-08-04 07:30:19 +00:00
|
|
|
|
unlink($tarfile);
|
|
|
|
|
|
2021-12-20 02:49:11 +00:00
|
|
|
|
// 获取解压出的目录名
|
|
|
|
|
$outPath = findIndexPath($tmppath);
|
|
|
|
|
|
|
|
|
|
if ($outPath=='') return '{"error":{"message":"no outpath"}}';
|
|
|
|
|
$name = $project . 'CODE';
|
|
|
|
|
mkdir($tmppath . "/" . $name, 0777, 1);
|
|
|
|
|
rename($outPath, $tmppath . "/" . $name . '/api');
|
|
|
|
|
$outPath = $tmppath . "/" . $name;
|
2021-08-17 11:51:17 +00:00
|
|
|
|
//echo $outPath . "<br>";
|
2021-08-04 07:30:19 +00:00
|
|
|
|
//error_log1($outPath);
|
|
|
|
|
|
|
|
|
|
return VercelUpdate(getConfig('HerokuappId'), getConfig('APIKey'), $outPath);
|
|
|
|
|
}
|
2021-08-17 11:51:17 +00:00
|
|
|
|
|
|
|
|
|
function WaitFunction($deployid) {
|
2021-08-26 10:09:57 +00:00
|
|
|
|
if ($buildId=='1') {
|
|
|
|
|
$tmp['stat'] = 400;
|
|
|
|
|
$tmp['body'] = 'id must provided.';
|
|
|
|
|
return $tmp;
|
|
|
|
|
}
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$header["Authorization"] = "Bearer " . getConfig('APIKey');
|
|
|
|
|
$header["Content-Type"] = "application/json";
|
2021-12-01 06:55:41 +00:00
|
|
|
|
$url = "https://api.vercel.com/v11/deployments/" . $deployid;
|
2021-08-17 11:51:17 +00:00
|
|
|
|
$response = curl("GET", $url, "", $header);
|
|
|
|
|
if ($response['stat']==200) {
|
|
|
|
|
$result = json_decode($response['body'], true);
|
|
|
|
|
if ($result['readyState']=="READY") return true;
|
|
|
|
|
if ($result['readyState']=="ERROR") return $response;
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
$response['body'] .= $url;
|
|
|
|
|
return $response;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-01 06:55:41 +00:00
|
|
|
|
|
|
|
|
|
function changeAuthKey() {
|
|
|
|
|
if ($_POST['APIKey']!='') {
|
|
|
|
|
$APIKey = $_POST['APIKey'];
|
|
|
|
|
$tmp['APIKey'] = $APIKey;
|
|
|
|
|
$response = json_decode(setVercelConfig($tmp, getConfig('HerokuappId'), $APIKey), true);
|
|
|
|
|
if (api_error($response)) {
|
|
|
|
|
$html = api_error_msg($response);
|
|
|
|
|
$title = 'Error';
|
|
|
|
|
return message($html, $title, 400);
|
|
|
|
|
} else {
|
|
|
|
|
$html = getconstStr('Success') . '
|
|
|
|
|
<script>
|
|
|
|
|
var status = "' . $response['DplStatus'] . '";
|
|
|
|
|
var i = 0;
|
|
|
|
|
var uploadList = setInterval(function(){
|
|
|
|
|
if (document.getElementById("dis").style.display=="none") {
|
|
|
|
|
console.log(i++);
|
|
|
|
|
} else {
|
|
|
|
|
clearInterval(uploadList);
|
|
|
|
|
location.href = "' . path_format($_SERVER['base_path'] . '/') . '";
|
|
|
|
|
}
|
|
|
|
|
}, 1000);
|
|
|
|
|
</script>';
|
|
|
|
|
return message($html, $title, 201, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$html = '
|
|
|
|
|
<form action="" method="post" onsubmit="return notnull(this);">
|
|
|
|
|
<a href="https://vercel.com/account/tokens" target="_blank">' . getconstStr('Create') . ' token</a><br>
|
|
|
|
|
<label>Token:<input name="APIKey" type="password" placeholder="" value=""></label><br>
|
|
|
|
|
<input type="submit" value="' . getconstStr('Submit') . '">
|
|
|
|
|
</form>
|
|
|
|
|
<script>
|
|
|
|
|
function notnull(t)
|
|
|
|
|
{
|
|
|
|
|
if (t.APIKey.value==\'\') {
|
|
|
|
|
alert(\'Input Token\');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
</script>';
|
|
|
|
|
return message($html, 'Change platform Auth token or key', 200);
|
|
|
|
|
}
|