diff --git a/platform/alifc.php b/platform/alifc.php new file mode 100644 index 0000000..f021dd4 --- /dev/null +++ b/platform/alifc.php @@ -0,0 +1,407 @@ +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['queryString']; + 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'][0]); + foreach ($cookiebody as $cookievalues) { + $pos = strpos($cookievalues,"="); + $_COOKIE[urldecode(substr($cookievalues,0,$pos))]=urldecode(substr($cookievalues,$pos+1)); + } + $_SERVER['FC_SERVER_PATH'] = '/var/fc/runtime/php7.2'; +} + +function GetPathSetting($event, $context) +{ + $_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($event['headers']['Accept-Language'][0],';')[0],',')[0]); + $_SERVER['accountId'] = $context['accountId']; + $_SERVER['region'] = $context['region']; + $_SERVER['service_name'] = $context['service']['name']; + $_SERVER['function_name'] = $context['function']['name']; + + $_SERVER['base_path'] = '/'; + $path = $event['path']; + //$path = spurlencode($path, '/'); + + if (substr($path,-1)=='/') $path=substr($path,0,-1); + $_SERVER['is_guestup_path'] = is_guestup_path($path); + $_SERVER['PHP_SELF'] = path_format($_SERVER['base_path'] . $path); + $_SERVER['REMOTE_ADDR'] = $event['clientIP']; + $_SERVER['HTTP_X_REQUESTED_WITH'] = $event['headers']['X-Requested-With'][0]; + return $path; +} + +function getConfig($str, $disktag = '') +{ + global $InnerEnv; + global $Base64Env; + if (in_array($str, $InnerEnv)) { + if ($disktag=='') $disktag = $_SERVER['disktag']; + $env = json_decode(getenv($disktag), true); + if (isset($env[$str])) { + if (in_array($str, $Base64Env)) return equal_replace($env[$str],1); + else return $env[$str]; + } + } else { + if (in_array($str, $Base64Env)) return equal_replace(getenv($str),1); + else return getenv($str); + } + return ''; +} + +function setConfig($arr, $disktag = '') +{ + global $InnerEnv; + global $Base64Env; + if ($disktag=='') $disktag = $_SERVER['disktag']; + $disktags = explode("|",getConfig('disktag')); + $diskconfig = json_decode(getenv($disktag), true); + $tmp = []; + $indisk = 0; + $oparetdisk = 0; + foreach ($arr as $k => $v) { + if (in_array($k, $InnerEnv)) { + if (in_array($k, $Base64Env)) $diskconfig[$k] = equal_replace($v); + else $diskconfig[$k] = $v; + $indisk = 1; + } elseif ($k=='disktag_add') { + array_push($disktags, $v); + $oparetdisk = 1; + } elseif ($k=='disktag_del') { + $disktags = array_diff($disktags, [ $v ]); + $tmp[$v] = ''; + $oparetdisk = 1; + } else { + if (in_array($k, $Base64Env)) $tmp[$k] = equal_replace($v); + else $tmp[$k] = $v; + } + } + if ($indisk) { + $diskconfig = array_filter($diskconfig, 'array_value_isnot_null'); + ksort($diskconfig); + $tmp[$disktag] = json_encode($diskconfig); + } + if ($oparetdisk) { + $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'] = ''; + } +// echo '正式设置:'.json_encode($tmp,JSON_PRETTY_PRINT).' +//'; + $response = updateEnvironment($tmp, $_SERVER['accountId'], $_SERVER['region'], $_SERVER['service_name'], $_SERVER['function_name'], getConfig('AccessKeyID'), getConfig('AccessKeySecret')); + //WaitSCFStat(); + return $response; +} + +function WaitSCFStat() +{ + $trynum = 0; + while( getfunctioninfo($_SERVER['accountId'], $_SERVER['region'], $_SERVER['service_name'], $_SERVER['function_name'], getConfig('AccessKeyID'), getConfig('AccessKeySecret')) ) echo ' +'.++$trynum; +} + +function install() +{ + global $constStr; + if ($_GET['install2']) { + $tmp['admin'] = $_POST['admin']; + setConfig($tmp); + if (needUpdate()) { + OnekeyUpate(); + return message('update to github version, reinstall.', 'Program updating', 201); + } + return output('Jump', 302); + } + if ($_GET['install1']) { + //if ($_POST['admin']!='') { + $tmp['timezone'] = $_COOKIE['timezone']; + $AccessKeyID = getConfig('AccessKeyID'); + if ($AccessKeyID=='') { + $AccessKeyID = $_POST['AccessKeyID']; + $tmp['AccessKeyID'] = $AccessKeyID; + } + $AccessKeySecret = getConfig('AccessKeySecret'); + if ($AccessKeySecret=='') { + $AccessKeySecret = $_POST['AccessKeySecret']; + $tmp['AccessKeySecret'] = $AccessKeySecret; + } + $response = json_decode(SetbaseConfig($tmp, $_SERVER['accountId'], $_SERVER['region'], $_SERVER['service_name'], $_SERVER['function_name'], $AccessKeyID, $AccessKeySecret), true); + if (api_error($response)) { + $html = api_error_msg($response); + $title = 'Error'; + return message($html, $title, 201); + } else { + $html .= ' +
+ '; + $title = getconstStr('SetAdminPassword'); + return message($html, $title, 201); + } + //} + } + if ($_GET['install0']) { + $html .= ' + + '; + $title = getconstStr('SelectLanguage'); + return message($html, $title, 201); + } + $html .= ''.getconstStr('ClickInstall').', '.getconstStr('LogintoBind'); + $title = 'Error'; + return message($html, $title, 201); +} + +function getfunctioninfo($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret) +{ + $fcClient = new Client([ + "endpoint" => 'https://'.$accountId.'.'.$region.'.fc.aliyuncs.com', + "accessKeyID" => $AccessKeyID, + "accessKeySecret" => $AccessKeySecret + ]); + return $fcClient->getFunction($service_name, $function_name); +} + +function updateEnvironment($Envs, $accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret) +{ + //print_r($Envs); + //WaitSCFStat(); + $fcClient = new Client([ + "endpoint" => 'https://'.$accountId.'.'.$region.'.fc.aliyuncs.com', + "accessKeyID" => $AccessKeyID, + "accessKeySecret" => $AccessKeySecret + ]); + + $tmp = getfunctioninfo($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)['data']; + foreach ($tmp['environmentVariables'] as $key => $value ) { + $tmp_env[$key] = $value; + } + foreach ($Envs as $key1 => $value1) { + $tmp_env[$key1] = $value1; + } + $tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值 + ksort($tmp_env); + + $tmpdata['functionName'] = $function_name; + $tmpdata['description'] = 'Onedrive index and manager in Ali FC.'; + $tmpdata['memorySize'] = 128; + $tmpdata['timeout'] = 30; + $tmpdata['runtime'] = 'php7.2'; + $tmpdata['handler'] = 'index.handler'; + $tmpdata['environmentVariables'] = $tmp_env; + $tmpdata['code']['zipFile'] = base64_encode( file_get_contents($fcClient->getFunctionCode($service_name, $function_name)['data']['url']) ); + return $fcClient->updateFunction($service_name, $function_name, $tmpdata); +} + +function SetbaseConfig($Envs, $accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret) +{ + //echo json_encode($Envs,JSON_PRETTY_PRINT); + $fcClient = new Client([ + "endpoint" => 'https://'.$accountId.'.'.$region.'.fc.aliyuncs.com', + "accessKeyID" => $AccessKeyID, + "accessKeySecret" => $AccessKeySecret + ]); + //return $fcClient->getFunction($service_name, $function_name); + + $tmp = getfunctioninfo($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)['data']; + foreach ($tmp['environmentVariables'] as $key => $value ) { + $tmp_env[$key] = $value; + } + foreach ($Envs as $key1 => $value1) { + $tmp_env[$key1] = $value1; + } + $tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值 + ksort($tmp_env); + + $tmpdata['functionName'] = $function_name; + $tmpdata['description'] = 'Onedrive index and manager in Ali FC.'; + $tmpdata['memorySize'] = 128; + $tmpdata['timeout'] = 30; + $tmpdata['runtime'] = 'php7.2'; + $tmpdata['handler'] = 'index.handler'; + $tmpdata['environmentVariables'] = $tmp_env; + $tmpdata['code']['zipFile'] = base64_encode( file_get_contents($fcClient->getFunctionCode($service_name, $function_name)['data']['url']) ); + return $fcClient->updateFunction($service_name, $function_name, $tmpdata); +} + +function updateProgram($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret, $source) +{ + //WaitSCFStat(); + $fcClient = new Client([ + "endpoint" => 'https://'.$accountId.'.'.$region.'.fc.aliyuncs.com', + "accessKeyID" => $AccessKeyID, + "accessKeySecret" => $AccessKeySecret + ]); + + $tmp_env = getfunctioninfo($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)['data']['environmentVariables']; + + $tmpdata['functionName'] = $function_name; + $tmpdata['description'] = 'Onedrive index and manager in Ali FC.'; + $tmpdata['memorySize'] = 128; + $tmpdata['timeout'] = 30; + $tmpdata['runtime'] = 'php7.2'; + $tmpdata['handler'] = 'index.handler'; + $tmpdata['environmentVariables'] = $tmp_env; + $tmpdata['code']['zipFile'] = base64_encode( file_get_contents($source) ); + + return $fcClient->updateFunction($service_name, $function_name, $tmpdata); +} + +function api_error($response) +{ + return isset($response['Error']); +} + +function api_error_msg($response) +{ + return $response; + return $response['Error']['Code'] . '