OneManager-php/platform/Heroku.php

424 lines
17 KiB
PHP
Raw Permalink Normal View History

2020-01-18 12:12:21 +00:00
<?php
2021-08-17 11:51:17 +00:00
// https://devcenter.heroku.com/articles/platform-api-reference#build-create
2020-01-18 12:12:21 +00:00
function getpath()
{
2021-03-01 09:38:15 +00:00
if (getConfig('function_name') && getConfig('APIKey')) {
$APIKey = getConfig('APIKey');
$res = HerokuAPI('GET', 'https://api.heroku.com/apps/' . getConfig('function_name'), '', $APIKey);
$response = json_decode($res['body'], true);
if (isset($response['build_stack'])) {
$tmp['HerokuappId'] = $response['id'];
$tmp['function_name'] = null;
} else {
error_log1('Something error' . 'Get Heroku app id: ' . json_encode($res, JSON_PRETTY_PRINT));
//return message('Get Heroku app id: ' . json_encode($res, JSON_PRETTY_PRINT), 'Something error', 500);
}
$response = json_decode(setHerokuConfig($tmp, $tmp['HerokuappId'], $APIKey)['body'], true);
$title = 'Change function_name to HerokuappId';
if (api_error($response)) {
$html = api_error_msg($response);
$stat = 500;
error_log1('Change function_name to HerokuappId' . $html);
} else {
$html = getconstStr('Wait') . ' 5s, jump to index.
<meta http-equiv="refresh" content="5;URL=/">';
$stat = 201;
}
//return message($html, $title, $stat);
}
2020-04-02 10:19:31 +00:00
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($_SERVER['HTTP_ACCEPT_LANGUAGE'],';')[0],',')[0]);
2020-01-18 12:12:21 +00:00
$_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_X_FORWARDED_FOR'];
2021-02-23 09:20:19 +00:00
$_SERVER['REQUEST_SCHEME'] = $_SERVER['HTTP_X_FORWARDED_PROTO'];
$_SERVER['host'] = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'];
$_SERVER['referhost'] = explode('/', $_SERVER['HTTP_REFERER'])[2];
2020-01-18 12:12:21 +00: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-20 04:10:55 +00:00
return substr($path, 1);
2020-01-18 12:12:21 +00:00
//return spurlencode($path, '/');
}
function getGET()
{
//error_log1('POST' . json_encode($_POST));
2020-12-15 04:52:03 +00:00
if (!$_POST) {
if (!!$HTTP_RAW_POST_DATA) {
$tmpdata = $HTTP_RAW_POST_DATA;
//error_log1('RAW' . $tmpdata);
2020-12-15 04:52:03 +00:00
} else {
$tmpdata = file_get_contents('php://input');
//error_log1('PHPINPUT' . $tmpdata);
2020-12-15 04:52:03 +00:00
}
if (!!$tmpdata) {
$postbody = explode("&", $tmpdata);
foreach ($postbody as $postvalues) {
$pos = strpos($postvalues,"=");
$_POST[urldecode(substr($postvalues,0,$pos))]=urldecode(substr($postvalues,$pos+1));
}
//error_log1('POSTformPHPINPUT' . json_encode($_POST));
2020-12-15 04:52:03 +00:00
}
}
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:10:55 +00:00
function getConfig($str, $disktag = '')
{
2021-01-15 03:10:08 +00:00
if (isInnerEnv($str)) {
2020-03-13 13:26:48 +00:00
if ($disktag=='') $disktag = $_SERVER['disktag'];
$env = json_decode(getenv($disktag), true);
if (isset($env[$str])) {
2021-01-15 03:10:08 +00:00
if (isBase64Env($str)) return base64y_decode($env[$str]);
2020-03-13 13:26:48 +00:00
else return $env[$str];
}
} else {
2021-01-15 03:10:08 +00:00
if (isBase64Env($str)) return base64y_decode(getenv($str));
2020-03-13 13:26:48 +00:00
else return getenv($str);
2020-02-20 04:10:55 +00:00
}
2020-03-13 13:26:48 +00:00
return '';
2020-02-20 04:10:55 +00:00
}
function setConfig($arr, $disktag = '')
{
if ($disktag=='') $disktag = $_SERVER['disktag'];
$disktags = explode("|",getConfig('disktag'));
2021-04-07 12:07:30 +00:00
if ($disktag!='') $diskconfig = json_decode(getenv($disktag), true);
2020-02-20 04:10:55 +00:00
$tmp = [];
$indisk = 0;
2021-01-03 09:10:20 +00:00
$operatedisk = 0;
2020-02-20 04:10:55 +00:00
foreach ($arr as $k => $v) {
2021-03-01 09:38:15 +00:00
if (isCommonEnv($k)) {
if (isBase64Env($k)) $tmp[$k] = base64y_encode($v);
else $tmp[$k] = $v;
} elseif (isInnerEnv($k)) {
2021-01-15 03:10:08 +00:00
if (isBase64Env($k)) $diskconfig[$k] = base64y_encode($v);
else $diskconfig[$k] = $v;
2020-02-20 04:10:55 +00:00
$indisk = 1;
} elseif ($k=='disktag_add') {
array_push($disktags, $v);
2021-01-03 09:10:20 +00:00
$operatedisk = 1;
2020-02-20 04:10:55 +00:00
} elseif ($k=='disktag_del') {
$disktags = array_diff($disktags, [ $v ]);
$tmp[$v] = '';
2021-01-03 09:10:20 +00:00
$operatedisk = 1;
2021-01-18 07:59:39 +00:00
} elseif ($k=='disktag_copy') {
$newtag = $v . '_' . date("Ymd_His");
$tmp[$newtag] = getConfig($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:10:55 +00:00
} else {
2021-03-01 09:38:15 +00:00
$tmp[$k] = json_encode($v);
2020-02-20 04:10:55 +00:00
}
}
if ($indisk) {
$diskconfig = array_filter($diskconfig, 'array_value_isnot_null');
ksort($diskconfig);
$tmp[$disktag] = json_encode($diskconfig);
}
2021-01-03 09:10:20 +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);
}
$tmp['disktag'] = implode('|', $tags);
2021-01-03 08:29:33 +00:00
$tmp[$arr['disktag_newname']] = getConfig($arr['disktag_rename']);
2020-12-27 06:22:18 +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;
}
2020-02-20 04:10:55 +00:00
}
2020-03-19 10:46:53 +00:00
foreach ($tmp as $key => $val) if ($val=='') $tmp[$key]=null;
2021-03-01 09:38:15 +00:00
return setHerokuConfig($tmp, getConfig('HerokuappId'), getConfig('APIKey'));
error_log1(json_encode($arr, JSON_PRETTY_PRINT) . ' => tmp' . json_encode($tmp, JSON_PRETTY_PRINT));
2020-02-20 04:10:55 +00:00
}
function install()
{
global $constStr;
2020-01-18 12:12:21 +00:00
if ($_GET['install1']) {
if ($_POST['admin']!='') {
$tmp['admin'] = $_POST['admin'];
2020-05-03 10:21:57 +00:00
//$tmp['language'] = $_POST['language'];
2020-04-05 05:47:07 +00:00
$tmp['timezone'] = $_COOKIE['timezone'];
2021-12-01 06:30:36 +00:00
$APIKey = $_POST['APIKey'];
$tmp['APIKey'] = $APIKey;
2021-03-01 09:38:15 +00:00
$HerokuappId = getConfig('HerokuappId');
if ($HerokuappId=='') {
$function_name = getConfig('function_name');
if ($function_name=='') {
$tmp1 = substr($_SERVER['HTTP_HOST'], 0, strrpos($_SERVER['HTTP_HOST'], '.'));
$maindomain = substr($tmp1, strrpos($tmp1, '.')+1);
if ($maindomain=='herokuapp') $function_name = substr($tmp1, 0, strrpos($tmp1, '.'));
else return message('Please visit from xxxx.herokuapp.com', '', 500);
$res = HerokuAPI('GET', 'https://api.heroku.com/apps/' . $function_name, '', $APIKey);
$response = json_decode($res['body'], true);
if (isset($response['build_stack'])) {
$HerokuappId = $response['id'];
} else {
return message('Get Heroku app id: ' . json_encode($res, JSON_PRETTY_PRINT), 'Something error', 500);
}
}
}
$tmp['HerokuappId'] = $HerokuappId;
$response = json_decode(setHerokuConfig($tmp, $HerokuappId, $APIKey)['body'], true);
if (api_error($response)) {
$html = api_error_msg($response);
2020-01-18 12:12:21 +00:00
$title = 'Error';
2021-12-01 06:30:36 +00:00
return message($html, $title, 400);
2020-01-18 12:12:21 +00:00
} else {
2021-12-01 06:30:36 +00:00
$html = getconstStr('Success') . '
2020-07-13 09:39:45 +00:00
<script>
var expd = new Date();
2021-03-01 09:38:15 +00:00
expd.setTime(expd.getTime()+1000);
2020-07-13 09:39:45 +00:00
var expires = "expires="+expd.toGMTString();
document.cookie=\'language=; path=/; \'+expires;
2021-12-01 06:30:36 +00:00
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);
2020-01-18 12:12:21 +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-12-01 06:30:36 +00:00
$html .= '
<a href="https://dashboard.heroku.com/account" target="_blank">' . getconstStr('Create') . ' API Key</a><br>
<label>API Key:<input name="APIKey" type="password" placeholder="" size=""></label><br>';
2020-01-18 12:12:21 +00:00
$html .= '
2020-02-20 04:10:55 +00:00
<label>Set admin password:<input name="admin" type="password" placeholder="' . getconstStr('EnvironmentsDescription')['admin'] . '" size="' . strlen(getconstStr('EnvironmentsDescription')['admin']) . '"></label><br>';
2020-01-18 12:12:21 +00:00
$html .= '
<input type="submit" value="'.getconstStr('Submit').'">
</form>
<script>
2020-04-05 05:47:07 +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-01-18 12:12:21 +00:00
function changelanguage(str)
{
2020-07-13 09:39:45 +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;
}
function notnull(t)
{
if (t.admin.value==\'\') {
alert(\'input admin\');
return false;
}';
2021-12-01 06:30:36 +00:00
$html .= '
2020-02-20 04:10:55 +00:00
if (t.APIKey.value==\'\') {
alert(\'input API Key\');
2020-01-18 12:12:21 +00:00
return false;
}';
$html .= '
return true;
}
</script>';
$title = getconstStr('SelectLanguage');
return message($html, $title, 201);
}
2020-02-20 04:10:55 +00:00
$html .= '<a href="?install0">'.getconstStr('ClickInstall').'</a>, '.getconstStr('LogintoBind');
2021-01-15 03:10:08 +00:00
$title = 'Install';
2020-01-18 12:12:21 +00:00
return message($html, $title, 201);
}
function HerokuAPI($method, $url, $data = '', $apikey)
{
2020-02-20 04:10:55 +00:00
if ($method=='PATCH'||$method=='POST') {
2020-01-18 12:12:21 +00:00
$headers['Content-Type'] = 'application/json';
}
$headers['Authorization'] = 'Bearer ' . $apikey;
$headers['Accept'] = 'application/vnd.heroku+json; version=3';
//if (!isset($headers['Accept'])) $headers['Accept'] = '*/*';
//if (!isset($headers['Referer'])) $headers['Referer'] = $url;
$sendHeaders = array();
foreach ($headers as $headerName => $headerVal) {
$sendHeaders[] = $headerName . ': ' . $headerVal;
}
error_log1($method . $url . $data . $apikey);
2020-01-18 12:12:21 +00:00
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST,$method);
curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, $sendHeaders);
$response['body'] = curl_exec($ch);
$response['stat'] = curl_getinfo($ch,CURLINFO_HTTP_CODE);
curl_close($ch);
error_log1($response['stat'].'
2020-01-18 12:12:21 +00:00
'.$response['body'].'
');
return $response;
}
2021-03-01 09:38:15 +00:00
function getHerokuConfig($HerokuappId, $apikey)
2020-01-18 12:12:21 +00:00
{
2021-03-01 09:38:15 +00:00
return HerokuAPI('GET', 'https://api.heroku.com/apps/' . $HerokuappId . '/config-vars', '', $apikey);
2020-01-18 12:12:21 +00:00
}
2021-03-01 09:38:15 +00:00
function setHerokuConfig($env, $HerokuappId, $apikey)
2020-01-18 12:12:21 +00:00
{
$data = json_encode($env);
2021-03-01 09:38:15 +00:00
if (substr($data, 0, 1)=='{') return HerokuAPI('PATCH', 'https://api.heroku.com/apps/' . $HerokuappId . '/config-vars', $data, $apikey);
2020-01-18 12:12:21 +00:00
}
2021-03-01 09:38:15 +00:00
function updateHerokuapp($HerokuappId, $apikey, $source)
2020-02-20 04:10:55 +00:00
{
$tmp['source_blob']['url'] = $source;
2020-02-20 04:10:55 +00:00
$data = json_encode($tmp);
2021-08-23 05:18:54 +00:00
$response = HerokuAPI('POST', 'https://api.heroku.com/apps/' . $HerokuappId . '/builds', $data, $apikey);
$result = json_decode( $response['body'], true );
2021-08-26 10:09:57 +00:00
$result['DplStatus'] = $result['id'];
2021-08-23 05:18:54 +00:00
$response['body'] = json_encode($result);
return $response;
2020-02-20 04:10:55 +00:00
}
function api_error($response)
2020-01-18 12:12:21 +00:00
{
return isset($response['id'])&&isset($response['message']);
}
function api_error_msg($response)
{
return $response['id'] . '<br>
2020-02-20 04:10:55 +00:00
' . $response['message'] . '<br><br>
2020-01-18 12:12:21 +00:00
function_name:' . $_SERVER['function_name'] . '<br>
2020-03-02 09:26:31 +00:00
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
}
2021-12-20 02:42:11 +00:00
function OnekeyUpate($GitSource = 'Github', $auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
{
2021-12-20 02:42:11 +00:00
if ($GitSource=='Github') {
//'https://github.com/qkqpttgf/OneManager-php/tarball/master/';
$source = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
} elseif ($GitSource=='HITGitlab') {
$source = 'https://git.hit.edu.cn/' . $auth . '/' . $project . '/-/archive/' . urlencode($branch) . '/' . $project . '-' . urlencode($branch) . '.tar.gz';
} else return ['stat'=>403, 'body'=>json_encode(['id'=>'Error', 'message'=>'Git Source input Error!'])];
2021-03-01 09:38:15 +00:00
return updateHerokuapp(getConfig('HerokuappId'), getConfig('APIKey'), $source);
}
function setConfigResponse($response)
{
return json_decode( $response['body'], true );
2020-01-18 12:12:21 +00:00
}
2021-08-17 11:51:17 +00:00
2021-08-26 10:09:57 +00:00
function WaitFunction($buildId = '') {
2021-08-23 05:18:54 +00:00
// GET /apps/{app_id_or_name}/builds/{build_id}
2021-08-26 10:09:57 +00:00
if ($buildId=='1') return true;
2021-08-23 05:18:54 +00:00
$response = HerokuAPI('GET', 'https://api.heroku.com/apps/' . getConfig('HerokuappId') . '/builds/' . $buildId, '', getConfig('APIKey'));
if ($response['stat']==200) {
$result = json_decode($response['body'], true);
if ($result['status']=="succeeded") return true;
else return false;
} else {
$response['body'] .= $url;
return $response;
}
2021-08-17 11:51:17 +00:00
}
2021-12-01 06:30:36 +00:00
function changeAuthKey() {
if ($_POST['APIKey']!='') {
$APIKey = $_POST['APIKey'];
$tmp['APIKey'] = $APIKey;
$response = setConfigResponse( setHerokuConfig($tmp, getConfig('HerokuappId'), $APIKey) );
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://dashboard.heroku.com/account" target="_blank">'.getconstStr('Create').' API Key</a><br>
<label>API Key:<input name="APIKey" type="password" placeholder="" size=""></label><br>
<input type="submit" value="' . getconstStr('Submit') . '">
</form>
<script>
function notnull(t)
{
if (t.APIKey.value==\'\') {
alert(\'input API Key\');
return false;
}
return true;
}
</script>';
return message($html, 'Change platform Auth token or key', 200);
}
2022-04-16 02:43:39 +00:00
function smallfileupload($drive, $path) {
if ($_FILES['file1']['error']) return output($_FILES['file1']['error'], 400);
if ($_FILES['file1']['size']>4*1024*1024) return output('File too large', 400);
return $drive->smallfileupload($path, $_FILES['file1']);
}