OneManager-php/platform/BaiduCFC.php

492 lines
19 KiB
PHP
Raw Normal View History

2020-08-16 03:42:20 +00:00
<?php
2021-12-01 06:29:16 +00:00
// https://cloud.baidu.com/doc/CFC/s/jjwvz45ex
// https://cloud.baidu.com/doc/CFC/s/2jwvz44ns
2020-08-16 03:42:20 +00:00
function printInput($event, $context)
{
if (strlen(json_encode($event['body']))>500) $event['body']=substr($event['body'],0,strpos($event['body'],'base64')+30) . '...Too Long!...' . substr($event['body'],-50);
echo urldecode(json_encode($event, JSON_PRETTY_PRINT)) . '
' . urldecode(json_encode($context, JSON_PRETTY_PRINT)) . '
';
}
function GetGlobalVariable($event)
{
$_GET = $event['queryStringParameters'];
foreach ($_GET as $k => $v) {
if ($v == '') $_GET[$k] = true;
}
$postbody = explode("&",$event['body']);
foreach ($postbody as $postvalues) {
$pos = strpos($postvalues,"=");
$_POST[urldecode(substr($postvalues,0,$pos))]=urldecode(substr($postvalues,$pos+1));
}
$cookiebody = explode("; ",$event['headers']['Cookie']);
foreach ($cookiebody as $cookievalues) {
$pos = strpos($cookievalues,"=");
$_COOKIE[urldecode(substr($cookievalues,0,$pos))]=urldecode(substr($cookievalues,$pos+1));
}
}
function GetPathSetting($event, $context)
{
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($event['headers']['Accept-Language'],';')[0],',')[0]);
$_SERVER['functionBrn'] = $context['functionBrn'];
$_SERVER['base_path'] = '/';
$path = $event['path'];
2021-05-12 08:35:34 +00:00
//$_SERVER['PHP_SELF'] = path_format($_SERVER['base_path'] . $path);
2020-08-16 03:42:20 +00:00
$_SERVER['REMOTE_ADDR'] = $event['requestContext']['sourceIp'];
2020-08-16 12:15:52 +00:00
$_SERVER['HTTP_X_REQUESTED_WITH'] = $event['headers']['X-Requested-With'];
2021-02-23 09:20:19 +00:00
$_SERVER['HTTP_USER_AGENT'] = $event['headers']['User-Agent'];
if (isset($event['headers']['authorization'])) {
$basicAuth = splitfirst(base64_decode(splitfirst($event['headers']['authorization'], 'Basic ')[1]), ':');
$_SERVER['PHP_AUTH_USER'] = $basicAuth[0];
$_SERVER['PHP_AUTH_PW'] = $basicAuth[1];
}
$_SERVER['HTTP_HOST'] = $event['headers']['Host'];
$_SERVER['REQUEST_SCHEME'] = $event['headers']['X-Forwarded-Proto'];
$_SERVER['host'] = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'];
$_SERVER['referhost'] = explode('/', $event['headers']['Referer'])[2];
$_SERVER['HTTP_TRANSLATE'] = $event['headers']['translate'];//'f'
2021-10-06 08:01:31 +00:00
$_SERVER['HTTP_IF_MODIFIED_SINCE'] = $event['headers']['If-Modified-Since'];
2022-01-27 03:53:33 +00:00
$_SERVER['REQUEST_METHOD'] = $event['httpMethod'];
2021-02-23 09:20:19 +00:00
$_SERVER['BCE_CFC_RUNTIME_NAME'] = 'php7';
2020-08-16 03:42:20 +00:00
return $path;
}
function getConfig($str, $disktag = '')
{
2021-01-15 03:10:08 +00:00
if (isInnerEnv($str)) {
2020-08-16 03:42:20 +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-08-16 03:42:20 +00:00
else return $env[$str];
}
} else {
2021-01-15 03:10:08 +00:00
if (isBase64Env($str)) return base64y_decode(getenv($str));
2020-08-16 03:42:20 +00:00
else return getenv($str);
}
return '';
}
function setConfig($arr, $disktag = '')
{
if ($disktag=='') $disktag = $_SERVER['disktag'];
$disktags = explode("|",getConfig('disktag'));
$diskconfig = json_decode(getenv($disktag), true);
$tmp = [];
$indisk = 0;
2020-12-27 06:22:18 +00:00
$operatedisk = 0;
2020-08-16 03:42:20 +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);
2020-08-16 03:42:20 +00:00
else $diskconfig[$k] = $v;
$indisk = 1;
} elseif ($k=='disktag_add') {
array_push($disktags, $v);
2020-12-27 06:22:18 +00:00
$operatedisk = 1;
2020-08-16 03:42:20 +00:00
} elseif ($k=='disktag_del') {
$disktags = array_diff($disktags, [ $v ]);
$tmp[$v] = '';
2020-12-27 06:22:18 +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-08-16 03:42:20 +00:00
} else {
2021-03-01 09:38:15 +00:00
$tmp[$k] = json_encode($v);
2020-08-16 03:42:20 +00:00
}
}
if ($indisk) {
$diskconfig = array_filter($diskconfig, 'array_value_isnot_null');
ksort($diskconfig);
$tmp[$disktag] = json_encode($diskconfig);
}
2020-12-27 06:22:18 +00:00
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-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']] = '';
} 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'] = '';
}
2020-08-16 03:42:20 +00:00
}
// echo '正式设置:'.json_encode($tmp,JSON_PRETTY_PRINT).'
//';
$response = updateEnvironment($tmp, getConfig('SecretId'), getConfig('SecretKey'));
return $response;
}
function install()
{
global $constStr;
if ($_GET['install2']) {
$tmp['admin'] = $_POST['admin'];
$response = setConfigResponse( setConfig($tmp) );
if (api_error($response)) {
$html = api_error_msg($response);
$title = 'Error';
return message($html, $title, 201);
}
if (needUpdate()) {
OnekeyUpate();
return message('update to github version, reinstall.
<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=' . $url . '">', 'Program updating', 201);
}
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);
}
if ($_GET['install1']) {
$tmp['timezone'] = $_COOKIE['timezone'];
2021-12-01 06:29:16 +00:00
//$SecretId = getConfig('SecretId');
//if ($SecretId=='') {
2020-08-16 03:42:20 +00:00
$SecretId = $_POST['SecretId'];
$tmp['SecretId'] = $SecretId;
2021-12-01 06:29:16 +00:00
//}
//$SecretKey = getConfig('SecretKey');
//if ($SecretKey=='') {
2020-08-16 03:42:20 +00:00
$SecretKey = $_POST['SecretKey'];
$tmp['SecretKey'] = $SecretKey;
2021-12-01 06:29:16 +00:00
//}
2020-08-16 03:42:20 +00:00
$response = setConfigResponse(SetbaseConfig($tmp, $SecretId, $SecretKey));
if (api_error($response)) {
$html = api_error_msg($response);
$title = 'Error';
return message($html, $title, 201);
} else {
$html .= '
<form action="?install2" method="post" onsubmit="return notnull(this);">
<label>'.getconstStr('SetAdminPassword').':<input name="admin" type="password" placeholder="' . getconstStr('EnvironmentsDescription')['admin'] . '" size="' . strlen(getconstStr('EnvironmentsDescription')['admin']) . '"></label><br>
<input type="submit" value="'.getconstStr('Submit').'">
</form>
<script>
function notnull(t)
{
if (t.admin.value==\'\') {
alert(\''.getconstStr('SetAdminPassword').'\');
return false;
}
return true;
}
</script>';
$title = getconstStr('SetAdminPassword');
return message($html, $title, 201);
}
}
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:29:16 +00:00
//if (getConfig('SecretId')==''||getConfig('SecretKey')=='')
$html .= '
<a href="https://console.bce.baidu.com/iam/#/iam/accesslist" target="_blank">' . getconstStr('Create') . ' Access Key & Secret Key</a><br>
2020-08-16 03:42:20 +00:00
<label>Access Key:<input name="SecretId" type="text" placeholder="" size=""></label><br>
2021-12-01 06:29:16 +00:00
<label>Secret Key:<input name="SecretKey" type="password" placeholder="" size=""></label><br>';
2020-08-16 03:42:20 +00:00
$html .= '
2021-12-01 06:29:16 +00:00
<input type="submit" value="' . getconstStr('Submit') . '">
2020-08-16 03:42:20 +00:00
</form>
<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;
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)
{';
2021-12-01 06:29:16 +00:00
//if (getConfig('SecretId')==''||getConfig('SecretKey')=='')
$html .= '
2020-08-16 03:42:20 +00:00
if (t.SecretId.value==\'\') {
alert(\'input Access Key\');
return false;
}
if (t.SecretKey.value==\'\') {
alert(\'input Secret Key\');
return false;
}';
$html .= '
return true;
}
</script>';
$title = getconstStr('SelectLanguage');
return message($html, $title, 201);
}
$html .= '<a href="?install0">'.getconstStr('ClickInstall').'</a>, '.getconstStr('LogintoBind');
2021-01-15 03:10:08 +00:00
$title = 'Install';
2020-08-16 03:42:20 +00:00
return message($html, $title, 201);
}
function CFCAPIv1($Brn, $AccessKey, $SecretKey, $Method, $End, $data = '')
{
// brn:bce:cfc:bj:c094b1ca1XXXXXXXXb8dea6ab482:function:fdsa:$LATEST
$BRN = explode(':', $Brn);
if ( !($BRN[0]=='brn' && $BRN[1]=='bce' && $BRN[2]=='cfc') ) {
$tmp['code'] = 'BRN Error';
$tmp['message'] = 'The BRN expect start with "brn:bce:cfc:", given: ' . $Brn . ' .';
return json_encode($tmp);
}
$Region = $BRN[3];
//$project_id = $BRN[4];
$FunctionName = $BRN[6];
$host = 'cfc.' . $Region . '.baidubce.com';
date_default_timezone_set('UTC'); // unset last timezone setting
$timestamp = date('Y-m-d\TH:i:s\Z');
//date_default_timezone_set(get_timezone($_SERVER['timezone']));
$authStringPrefix = 'bce-auth-v1/' . $AccessKey . '/' . $timestamp . '/1800' ;
$path = '/v1/functions/' . $FunctionName . '/' . $End;
$CanonicalURI = spurlencode($path, '/');
$CanonicalQueryString = '';
$CanonicalHeaders = 'host:' . $host;
$CanonicalRequest = $Method . "\n" . $CanonicalURI . "\n" . $CanonicalQueryString . "\n" . $CanonicalHeaders;
$SigningKey = hash_hmac('sha256', $authStringPrefix, $SecretKey);
$Signature = hash_hmac('sha256', $CanonicalRequest, $SigningKey);
$authorization = $authStringPrefix . '/host/' . $Signature;
$p = 0;
while ($response['stat']==0 && $p<3) {
$response = curl(
$Method,
'https://' . $host . $path,
$data,
[
'Authorization' => $authorization,
'Content-type' => 'application/json'
]
);
$p++;
}
if ($response['stat']==0) {
$tmp['code'] = 'Network Error';
$tmp['message'] = 'Can not connect ' . $host;
return json_encode($tmp);
}
if ($response['stat']!=200) {
$tmp = json_decode($response['body'], true);
$tmp['message'] .= '<br>' . $response['stat'] . '<br>' . $timestamp . PHP_EOL;
return json_encode($tmp);
}
return $response['body'];
}
function getfunctioninfo($SecretId, $SecretKey)
{
return CFCAPIv1($_SERVER['functionBrn'], $SecretId, $SecretKey, 'GET', 'configuration');
}
function updateEnvironment($Envs, $SecretId, $SecretKey)
{
$FunctionConfig = json_decode(getfunctioninfo($SecretId, $SecretKey), true);
$tmp_env = $FunctionConfig['Environment']['Variables'];
foreach ($Envs as $key1 => $value1) {
$tmp_env[$key1] = $value1;
}
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
2021-01-15 03:10:08 +00:00
//ksort($tmp_env);
sortConfig($tmp_env);
2020-08-16 03:42:20 +00:00
$tmp['Environment']['Variables'] = $tmp_env;
$data = json_encode($tmp);
return CFCAPIv1($_SERVER['functionBrn'], $SecretId, $SecretKey, 'PUT', 'configuration', $data);
}
function SetbaseConfig($Envs, $SecretId, $SecretKey)
{
$FunctionConfig = json_decode(getfunctioninfo($SecretId, $SecretKey), true);
$tmp_env = $FunctionConfig['Environment']['Variables'];
foreach ($Envs as $key1 => $value1) {
$tmp_env[$key1] = $value1;
}
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
ksort($tmp_env);
$tmp['Timeout'] = 30;
$tmp['Description'] = 'Onedrive index and manager in Baidu CFC.';
$tmp['Environment']['Variables'] = $tmp_env;
$data = json_encode($tmp);
return CFCAPIv1($_SERVER['functionBrn'], $SecretId, $SecretKey, 'PUT', 'configuration', $data);
}
function updateProgram($SecretId, $SecretKey, $source)
{
$tmp['ZipFile'] = base64_encode( file_get_contents($source) );
$data = json_encode($tmp);
return CFCAPIv1($_SERVER['functionBrn'], $SecretId, $SecretKey, 'PUT', 'code', $data);
}
function api_error($response)
{
//return isset($response['code']);
return !(isset($response['FunctionBrn']) && $response['FunctionBrn'] == $_SERVER['functionBrn']);
}
function api_error_msg($response)
{
if (isset($response['code'])) $html = $response['code'] . '<br>
' . $response['message'];
2021-08-04 07:17:17 +00:00
else $html = json_encode($response, JSON_PRETTY_PRINT);
2020-08-16 03:42:20 +00:00
return $html . '<br><br>
BRN: ' . $_SERVER['functionBrn'] . '<br>
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
}
function setConfigResponse($response)
{
//return $response;
return json_decode( $response, true );
}
2021-12-20 02:41:37 +00:00
function OnekeyUpate($GitSource = 'Github', $auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
2020-08-16 03:42:20 +00:00
{
$source = '/tmp/code.zip';
$outPath = '/tmp/';
2021-12-20 02:41:37 +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(['FunctionBrn'=>$_SERVER['functionBrn'], 'code'=>'Git Source input Error!']);
2020-08-16 03:42:20 +00:00
$tarfile = '/tmp/github.tar.gz';
file_put_contents($tarfile, file_get_contents($url));
$phar = new PharData($tarfile);
$html = $phar->extractTo($outPath, null, true);//路径 要解压的文件 是否覆盖
2021-12-20 02:41:37 +00:00
// 获取解压出的目录名
$outPath = findIndexPath($outPath);
2020-08-16 03:42:20 +00:00
// 将目录中文件打包成zip
//$zip=new ZipArchive();
$zip=new PharData($source);
//if($zip->open($source, ZipArchive::CREATE)){
addFileToZip($zip, $outPath); //调用方法对要打包的根目录进行操作并将ZipArchive的对象传递给方法
// $zip->close(); //关闭处理的zip文件
//}
return updateProgram(getConfig('SecretId'), getConfig('SecretKey'), $source);
}
function addFileToZip($zip, $rootpath, $path = '')
{
if (substr($rootpath,-1)=='/') $rootpath = substr($rootpath, 0, -1);
if (substr($path,0,1)=='/') $path = substr($path, 1);
$handler=opendir(path_format($rootpath.'/'.$path)); //打开当前文件夹由$path指定。
while($filename=readdir($handler)){
if($filename != "." && $filename != ".."){//文件夹文件名字为'.'和‘..’,不要对他们进行操作
$nowname = path_format($rootpath.'/'.$path."/".$filename);
if(is_dir($nowname)){// 如果读取的某个对象是文件夹,则递归
$zip->addEmptyDir($path."/".$filename);
addFileToZip($zip, $rootpath, $path."/".$filename);
}else{ //将文件加入zip对象
$newname = $path."/".$filename;
if (substr($newname,0,1)=='/') $newname = substr($newname, 1);
$zip->addFile($nowname, $newname);
//$zip->renameName($nowname, $newname);
}
}
}
2021-12-20 02:41:37 +00:00
@closedir($handler);
2020-08-16 03:42:20 +00:00
}
2021-08-17 11:51:17 +00:00
function WaitFunction() {
return true;
}
2021-12-01 06:29:16 +00:00
function changeAuthKey() {
if ($_POST['SecretId']!=''&&$_POST['SecretKey']!='') {
$SecretId = $_POST['SecretId'];
$tmp['SecretId'] = $SecretId;
$SecretKey = $_POST['SecretKey'];
$tmp['SecretKey'] = $SecretKey;
$response = setConfigResponse(SetbaseConfig($tmp, $SecretId, $SecretKey));
if (api_error($response)) {
$html = api_error_msg($response);
$title = 'Error';
return message($html, $title, 400);
} else {
$html = getconstStr('Success') . '
<script>
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://console.bce.baidu.com/iam/#/iam/accesslist" target="_blank">' . getconstStr('Create') . ' Access Key & Secret Key</a><br>
<label>Access Key:<input name="SecretId" type="text" placeholder="" size=""></label><br>
<label>Secret Key:<input name="SecretKey" type="password" placeholder="" size=""></label><br>
<input type="submit" value="' . getconstStr('Submit') . '">
</form>
<script>
function notnull(t)
{
if (t.SecretId.value==\'\') {
alert(\'input Access Key\');
return false;
}
if (t.SecretKey.value==\'\') {
alert(\'input Secret Key\');
return false;
}
return true;
}
</script>';
return message($html, 'Change platform Auth token or key', 200);
}
2022-04-16 02:42:42 +00:00
function smallfileupload($drive, $path) {
return output('Can not upload through CFC.', 400);
}