Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d48854791f | ||
|
|
6bf9e7e843 | ||
|
|
86a083e196 | ||
|
|
f4d7c354ea | ||
|
|
00d61d6118 | ||
|
|
f4a11d5312 | ||
|
|
56fe3f3c5f | ||
|
|
53c122937d | ||
|
|
1b2c468d7e | ||
|
|
187a43e073 | ||
|
|
2f01d6c3f7 | ||
|
|
6b0e5bf8d5 | ||
|
|
f86f713679 | ||
|
|
473769c693 | ||
|
|
179fa24c4a | ||
|
|
d479ac6662 | ||
|
|
1b04aafd95 | ||
|
|
3939317b1b | ||
|
|
739f42e24f | ||
|
|
6abedbafd5 | ||
|
|
05bbb1b861 | ||
|
|
3842fb7952 | ||
|
|
4ef20bdf50 | ||
|
|
7a86da6764 | ||
|
|
378a59eda6 | ||
|
|
3571c47671 | ||
|
|
1bee94cf43 | ||
|
|
f57ddf02db | ||
|
|
bc12e82c74 | ||
|
|
e67ff8736b | ||
|
|
fe765192e1 | ||
|
|
36df71a77c | ||
|
|
a1381e7fcc | ||
|
|
93b713b508 | ||
|
|
3a95027a06 | ||
|
|
cfda210fdc | ||
|
|
0a7887409c | ||
|
|
ce4fc41443 | ||
|
|
8cc9efa43c | ||
|
|
267b17102c | ||
|
|
127febb75d | ||
|
|
b0bee473ff | ||
|
|
91c6583d70 | ||
|
|
02745e7742 | ||
|
|
92d17d389d | ||
|
|
85741cae27 | ||
|
|
f926b37ae5 | ||
|
|
96cad800b7 | ||
|
|
55f267092d | ||
|
|
52a47fbd05 | ||
|
|
f6a8243a83 | ||
|
|
43ce495d76 | ||
|
|
eb12b784d3 | ||
|
|
1f4552bb73 | ||
|
|
d83bdcbf94 | ||
|
|
4e806bb8bd | ||
|
|
f10a5d3c1a | ||
|
|
6c4d20083f | ||
|
|
4cdc02ec7f | ||
|
|
0f9cc9451e | ||
|
|
2e94fb6502 | ||
|
|
e9ceedbd50 | ||
|
|
268c6e8be7 | ||
|
|
3619a611a7 | ||
|
|
2887a7026e | ||
|
|
08c790690d | ||
|
|
c653abf457 | ||
|
|
87654f35ce | ||
|
|
fe4f4e50d7 | ||
|
|
0dac337037 | ||
|
|
a18eb9f9f6 | ||
|
|
4962a90795 | ||
|
|
5e0626e469 | ||
|
|
9b88ee17cc | ||
|
|
ab538a0d2f | ||
|
|
cd4f2efc42 | ||
|
|
9fc6c02ca4 | ||
|
|
eac15d83f8 | ||
|
|
2e8e29a35e | ||
|
|
e3e0f7f27d | ||
|
|
a3b1430041 | ||
|
|
097254f084 | ||
|
|
b5f6032e2b | ||
|
|
c016841216 | ||
|
|
7ddd30036d | ||
|
|
fe293a6254 | ||
|
|
f90fbf4d58 | ||
|
|
d2e68b3ce3 | ||
|
|
10ba4218af | ||
|
|
9bf62b0af8 | ||
|
|
50d78ee6df | ||
|
|
acdb4640bd | ||
|
|
f018448441 | ||
|
|
dee127ef64 | ||
|
|
d4d4c4e739 | ||
|
|
8f4c5d2d30 | ||
|
|
e8ea8dfb93 | ||
|
|
e8280db8c3 | ||
|
|
d2cdce4277 | ||
|
|
243f08f0fa | ||
|
|
e0fc287a45 | ||
|
|
d5e9ee6103 | ||
|
|
56b4ab43d9 | ||
|
|
34829639f8 | ||
|
|
f8bc8f5ee8 | ||
|
|
f7cd9e8483 | ||
|
|
3bab14d3ea | ||
|
|
d5ea792034 | ||
|
|
7a7342201f | ||
|
|
28e2f7b564 | ||
|
|
ac2a9910b0 | ||
|
|
23729cc564 | ||
|
|
562ee87eef | ||
|
|
79c0b002c0 |
@@ -1,15 +1,16 @@
|
|||||||
# apache
|
# # Apache
|
||||||
# LoadModule rewrite_module modules/mod_rewrite.so
|
# # LoadModule rewrite_module modules/mod_rewrite.so
|
||||||
# AllowOverride All
|
# # AllowOverride All
|
||||||
RewriteEngine On
|
RewriteEngine On
|
||||||
|
# RewriteCond $1 !^(.well-known)
|
||||||
RewriteRule ^(.*) index.php?/$1 [L]
|
RewriteRule ^(.*) index.php?/$1 [L]
|
||||||
|
|
||||||
#-----------------------------------
|
###-----------------------------------
|
||||||
# nginx
|
### nginx
|
||||||
# rewrite ^(.*) /index.php?/$1 last;
|
# rewrite ^/(?!.well-known)(.*)$ /index.php?/$1 last;
|
||||||
#
|
#
|
||||||
# caddy
|
### caddy
|
||||||
# rewrite {
|
# rewrite {
|
||||||
# to index.php?/$1
|
# to index.php?/$1
|
||||||
# }
|
# }
|
||||||
#-----------------------------------
|
###-----------------------------------
|
||||||
|
|||||||
+365
-161
@@ -1,17 +1,30 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
global $Base64Env;
|
||||||
|
global $CommonEnv;
|
||||||
|
global $ShowedCommonEnv;
|
||||||
|
global $InnerEnv;
|
||||||
|
global $ShowedInnerEnv;
|
||||||
|
global $Base64Env;
|
||||||
|
global $timezones;
|
||||||
|
|
||||||
$Base64Env = [
|
$Base64Env = [
|
||||||
//'APIKey', // used in heroku.
|
//'APIKey', // used in heroku.
|
||||||
//'Region', // used in SCF.
|
|
||||||
//'SecretId', // used in SCF.
|
//'SecretId', // used in SCF.
|
||||||
//'SecretKey', // used in SCF.
|
//'SecretKey', // used in SCF.
|
||||||
//'AccessKeyID', // used in FC.
|
//'AccessKeyID', // used in FC.
|
||||||
//'AccessKeySecret', // used in FC.
|
//'AccessKeySecret', // used in FC.
|
||||||
|
//'HW_urn', // used in FG.
|
||||||
|
//'HW_key', // used in FG.
|
||||||
|
//'HW_secret', // used in FG.
|
||||||
//'admin',
|
//'admin',
|
||||||
//'adminloginpage',
|
//'adminloginpage',
|
||||||
|
//'autoJumpFirstDisk',
|
||||||
'background',
|
'background',
|
||||||
|
'backgroundm',
|
||||||
'diskname',
|
'diskname',
|
||||||
//'disableShowThumb',
|
//'disableShowThumb',
|
||||||
|
//'disableChangeTheme',
|
||||||
//'disktag',
|
//'disktag',
|
||||||
//'downloadencrypt',
|
//'downloadencrypt',
|
||||||
//'function_name', // used in heroku.
|
//'function_name', // used in heroku.
|
||||||
@@ -43,16 +56,21 @@ $Base64Env = [
|
|||||||
|
|
||||||
$CommonEnv = [
|
$CommonEnv = [
|
||||||
'APIKey', // used in heroku.
|
'APIKey', // used in heroku.
|
||||||
'Region', // used in SCF.
|
|
||||||
'SecretId', // used in SCF.
|
'SecretId', // used in SCF.
|
||||||
'SecretKey', // used in SCF.
|
'SecretKey', // used in SCF.
|
||||||
'AccessKeyID', // used in FC.
|
'AccessKeyID', // used in FC.
|
||||||
'AccessKeySecret', // used in FC.
|
'AccessKeySecret', // used in FC.
|
||||||
|
'HW_urn', // used in FG.
|
||||||
|
'HW_key', // used in FG.
|
||||||
|
'HW_secret', // used in FG.
|
||||||
'admin',
|
'admin',
|
||||||
'adminloginpage',
|
'adminloginpage',
|
||||||
|
'autoJumpFirstDisk',
|
||||||
'background',
|
'background',
|
||||||
|
'backgroundm',
|
||||||
'disktag',
|
'disktag',
|
||||||
'disableShowThumb',
|
'disableShowThumb',
|
||||||
|
'disableChangeTheme',
|
||||||
'function_name', // used in heroku.
|
'function_name', // used in heroku.
|
||||||
'hideFunctionalityFile',
|
'hideFunctionalityFile',
|
||||||
'timezone',
|
'timezone',
|
||||||
@@ -66,16 +84,21 @@ $CommonEnv = [
|
|||||||
|
|
||||||
$ShowedCommonEnv = [
|
$ShowedCommonEnv = [
|
||||||
//'APIKey', // used in heroku.
|
//'APIKey', // used in heroku.
|
||||||
//'Region', // used in SCF.
|
|
||||||
//'SecretId', // used in SCF.
|
//'SecretId', // used in SCF.
|
||||||
//'SecretKey', // used in SCF.
|
//'SecretKey', // used in SCF.
|
||||||
//'AccessKeyID', // used in FC.
|
//'AccessKeyID', // used in FC.
|
||||||
//'AccessKeySecret', // used in FC.
|
//'AccessKeySecret', // used in FC.
|
||||||
|
//'HW_urn', // used in FG.
|
||||||
|
//'HW_key', // used in FG.
|
||||||
|
//'HW_secret', // used in FG.
|
||||||
//'admin',
|
//'admin',
|
||||||
'adminloginpage',
|
'adminloginpage',
|
||||||
|
'autoJumpFirstDisk',
|
||||||
'background',
|
'background',
|
||||||
|
'backgroundm',
|
||||||
//'disktag',
|
//'disktag',
|
||||||
'disableShowThumb',
|
'disableShowThumb',
|
||||||
|
'disableChangeTheme',
|
||||||
//'function_name', // used in heroku.
|
//'function_name', // used in heroku.
|
||||||
'hideFunctionalityFile',
|
'hideFunctionalityFile',
|
||||||
'timezone',
|
'timezone',
|
||||||
@@ -182,9 +205,6 @@ function main($path)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isset($_COOKIE['language'])&&$_COOKIE['language']!='') $constStr['language'] = $_COOKIE['language'];
|
if (isset($_COOKIE['language'])&&$_COOKIE['language']!='') $constStr['language'] = $_COOKIE['language'];
|
||||||
//if (!$constStr['language']) $constStr['language'] = getConfig('language');
|
|
||||||
/*echo 'firstacceptlanguage:'.$_SERVER['firstacceptlanguage'].'
|
|
||||||
'.'lan:'.$constStr['language'];*/
|
|
||||||
if ($constStr['language']=='') $constStr['language'] = 'en-us';
|
if ($constStr['language']=='') $constStr['language'] = 'en-us';
|
||||||
$_SERVER['language'] = $constStr['language'];
|
$_SERVER['language'] = $constStr['language'];
|
||||||
$_SERVER['timezone'] = getConfig('timezone');
|
$_SERVER['timezone'] = getConfig('timezone');
|
||||||
@@ -206,14 +226,13 @@ function main($path)
|
|||||||
}
|
}
|
||||||
if (getConfig('admin')!='') {
|
if (getConfig('admin')!='') {
|
||||||
if ($_POST['password1']==getConfig('admin')) {
|
if ($_POST['password1']==getConfig('admin')) {
|
||||||
return adminform('admin',md5($_POST['password1']),$url);
|
return adminform('admin', pass2cookie('admin', $_POST['password1']), $url);
|
||||||
} else return adminform();
|
} else return adminform();
|
||||||
} else {
|
} else {
|
||||||
return output('', 302, [ 'Location' => $url ]);
|
return output('', 302, [ 'Location' => $url ]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (getConfig('admin')!='')
|
if ( isset($_COOKIE['admin'])&&$_COOKIE['admin']==pass2cookie('admin', getConfig('admin')) ) {
|
||||||
if ( isset($_COOKIE['admin'])&&$_COOKIE['admin']==md5(getConfig('admin')) ) {
|
|
||||||
$_SERVER['admin']=1;
|
$_SERVER['admin']=1;
|
||||||
$_SERVER['needUpdate'] = needUpdate();
|
$_SERVER['needUpdate'] = needUpdate();
|
||||||
} else {
|
} else {
|
||||||
@@ -228,21 +247,45 @@ function main($path)
|
|||||||
return output('<script>alert(\''.getconstStr('SetSecretsFirst').'\');</script>', 302, [ 'Location' => $url ]);
|
return output('<script>alert(\''.getconstStr('SetSecretsFirst').'\');</script>', 302, [ 'Location' => $url ]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$_SERVER['sitename'] = getConfig('sitename');
|
||||||
|
if (empty($_SERVER['sitename'])) $_SERVER['sitename'] = getconstStr('defaultSitename');
|
||||||
$_SERVER['base_disk_path'] = $_SERVER['base_path'];
|
$_SERVER['base_disk_path'] = $_SERVER['base_path'];
|
||||||
$disktags = explode("|",getConfig('disktag'));
|
$disktags = explode("|", getConfig('disktag'));
|
||||||
// echo 'count$disk:'.count($disktags);
|
// echo 'count$disk:'.count($disktags);
|
||||||
if (count($disktags)>1) {
|
if (count($disktags)>1) {
|
||||||
if ($path=='/'||$path=='') return output('', 302, [ 'Location' => path_format($_SERVER['base_path'].'/'.$disktags[0].'/') ]);
|
if ($path=='/'||$path=='') {
|
||||||
|
if (getConfig('autoJumpFirstDisk')) return output('', 302, [ 'Location' => path_format($_SERVER['base_path'].'/'.$disktags[0].'/') ]);
|
||||||
|
$files['showname'] = 'root';
|
||||||
|
$files['folder']['childCount'] = count($disktags);
|
||||||
|
foreach ($disktags as $disktag) {
|
||||||
|
$files['children'][$disktag]['folder'] = 1;
|
||||||
|
$files['children'][$disktag]['name'] = $disktag;
|
||||||
|
$files['children'][$disktag]['showname'] = getConfig('diskname', $disktag);
|
||||||
|
}
|
||||||
|
if ($_GET['json']) {
|
||||||
|
// return a json
|
||||||
|
return files_json($files);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
$_SERVER['disktag'] = splitfirst( substr(path_format($path), 1), '/' )[0];
|
$_SERVER['disktag'] = splitfirst( substr(path_format($path), 1), '/' )[0];
|
||||||
//$pos = strpos($path, '/');
|
//$pos = strpos($path, '/');
|
||||||
//if ($pos>1) $_SERVER['disktag'] = substr($path, 0, $pos);
|
//if ($pos>1) $_SERVER['disktag'] = substr($path, 0, $pos);
|
||||||
if (!in_array($_SERVER['disktag'], $disktags)) {
|
if (!in_array($_SERVER['disktag'], $disktags)) {
|
||||||
$tmp = path_format($_SERVER['base_path'].'/'.$disktags[0].'/'.$path);
|
$tmp = path_format($_SERVER['base_path'] . '/' . $disktags[0] . '/' . $path);
|
||||||
return output('Please visit <a href="'.$tmp.'">'.$tmp.'</a>.', 302, [ 'Location' => $tmp ]);
|
if (!!$_GET) {
|
||||||
|
$tmp .= '?';
|
||||||
|
foreach ($_GET as $k => $v) {
|
||||||
|
if ($v === true) $tmp .= $k . '&';
|
||||||
|
else $tmp .= $k . '=' . $v . '&';
|
||||||
|
}
|
||||||
|
$tmp = substr($tmp, 0, -1);
|
||||||
|
}
|
||||||
|
return output('Please visit <a href="' . $tmp . '">' . $tmp . '</a>.', 302, [ 'Location' => $tmp ]);
|
||||||
//return message('<meta http-equiv="refresh" content="2;URL='.$_SERVER['base_path'].'">Please visit from <a href="'.$_SERVER['base_path'].'">Home Page</a>.', 'Error', 404);
|
//return message('<meta http-equiv="refresh" content="2;URL='.$_SERVER['base_path'].'">Please visit from <a href="'.$_SERVER['base_path'].'">Home Page</a>.', 'Error', 404);
|
||||||
}
|
}
|
||||||
$path = substr($path, strlen('/'.$_SERVER['disktag']));
|
$path = substr($path, strlen('/' . $_SERVER['disktag']));
|
||||||
if ($_SERVER['disktag']!='') $_SERVER['base_disk_path'] = path_format($_SERVER['base_disk_path']. '/' . $_SERVER['disktag'] . '/');
|
if ($_SERVER['disktag']!='') $_SERVER['base_disk_path'] = path_format($_SERVER['base_disk_path'] . '/' . $_SERVER['disktag'] . '/');
|
||||||
|
}
|
||||||
} else $_SERVER['disktag'] = $disktags[0];
|
} else $_SERVER['disktag'] = $disktags[0];
|
||||||
// echo 'main.disktag:'.$_SERVER['disktag'].',path:'.$path.'
|
// echo 'main.disktag:'.$_SERVER['disktag'].',path:'.$path.'
|
||||||
//';
|
//';
|
||||||
@@ -252,15 +295,17 @@ function main($path)
|
|||||||
$_SERVER['ajax']=0;
|
$_SERVER['ajax']=0;
|
||||||
if (isset($_SERVER['HTTP_X_REQUESTED_WITH'])) if ($_SERVER['HTTP_X_REQUESTED_WITH']=='XMLHttpRequest') $_SERVER['ajax']=1;
|
if (isset($_SERVER['HTTP_X_REQUESTED_WITH'])) if ($_SERVER['HTTP_X_REQUESTED_WITH']=='XMLHttpRequest') $_SERVER['ajax']=1;
|
||||||
|
|
||||||
|
if ($_SERVER['admin']) if (isset($_GET['AddDisk'])) return get_refresh_token();
|
||||||
|
|
||||||
|
if ($files['showname'] == 'root') return render_list($path, $files);
|
||||||
config_oauth();
|
config_oauth();
|
||||||
if ($_SERVER['admin']) if (isset($_GET['AddDisk'])||isset($_GET['authorization_code'])) return get_refresh_token();
|
|
||||||
$refresh_token = getConfig('refresh_token');
|
$refresh_token = getConfig('refresh_token');
|
||||||
//if (!$refresh_token) return get_refresh_token();
|
|
||||||
if (!$refresh_token) {
|
if (!$refresh_token) {
|
||||||
return render_list();
|
return render_list();
|
||||||
} else {
|
} else {
|
||||||
if (!($_SERVER['access_token'] = getcache('access_token'))) {
|
if (!($_SERVER['access_token'] = getcache('access_token'))) {
|
||||||
get_access_token($refresh_token);
|
$response = get_access_token($refresh_token);
|
||||||
|
if (isset($response['stat'])) return message($response['body'], 'Error', $response['stat']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($_SERVER['ajax']) {
|
if ($_SERVER['ajax']) {
|
||||||
@@ -359,7 +404,11 @@ function main($path)
|
|||||||
$url = proxy_replace_domain($url, $domainforproxy);
|
$url = proxy_replace_domain($url, $domainforproxy);
|
||||||
}
|
}
|
||||||
if ( strtolower(splitlast($files['name'],'.')[1])=='html' ) return output($files['content']['body'], $files['content']['stat']);
|
if ( strtolower(splitlast($files['name'],'.')[1])=='html' ) return output($files['content']['body'], $files['content']['stat']);
|
||||||
else return output('', 302, [ 'Location' => $url ]);
|
else {
|
||||||
|
if ($_SERVER['HTTP_RANGE']!='') $header['Range'] = $_SERVER['HTTP_RANGE'];
|
||||||
|
$header['Location'] = $url;
|
||||||
|
return output('', 302, $header);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( isset($files['folder']) || isset($files['file']) ) {
|
if ( isset($files['folder']) || isset($files['file']) ) {
|
||||||
@@ -375,6 +424,11 @@ function main($path)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function pass2cookie($name, $pass)
|
||||||
|
{
|
||||||
|
return md5($name . ':' . md5($pass));
|
||||||
|
}
|
||||||
|
|
||||||
function proxy_replace_domain($url, $domainforproxy)
|
function proxy_replace_domain($url, $domainforproxy)
|
||||||
{
|
{
|
||||||
$tmp = splitfirst($url, '//');
|
$tmp = splitfirst($url, '//');
|
||||||
@@ -419,8 +473,8 @@ function files_json($files)
|
|||||||
$tmp1['mime'] = $file['file']['mimeType'];
|
$tmp1['mime'] = $file['file']['mimeType'];
|
||||||
array_push($tmp['list'], $tmp1);
|
array_push($tmp['list'], $tmp1);
|
||||||
}
|
}
|
||||||
} else return output('', 404);
|
} else return output(var_dump($files), 404);
|
||||||
return output(json_encode($tmp));
|
return output(json_encode($tmp), 200, ['Content-Type' => 'application/json']);
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_access_token($refresh_token)
|
function get_access_token($refresh_token)
|
||||||
@@ -443,26 +497,40 @@ function get_access_token($refresh_token)
|
|||||||
if (!$_SERVER['access_token']) {
|
if (!$_SERVER['access_token']) {
|
||||||
error_log($domain . "/personal/" . $account . "/_api/web/GetListUsingPath(DecodedUrl=@a1)/RenderListDataAsStream?@a1='" . urlencode("/personal/" . $account . "/Documents") . "'&RootFolder=" . urlencode("/personal/" . $account . "/Documents/") . "&TryNewExperienceSingle=TRUE");
|
error_log($domain . "/personal/" . $account . "/_api/web/GetListUsingPath(DecodedUrl=@a1)/RenderListDataAsStream?@a1='" . urlencode("/personal/" . $account . "/Documents") . "'&RootFolder=" . urlencode("/personal/" . $account . "/Documents/") . "&TryNewExperienceSingle=TRUE");
|
||||||
error_log('failed to get share access_token. response' . json_encode($ret));
|
error_log('failed to get share access_token. response' . json_encode($ret));
|
||||||
throw new Exception($response['stat'].', failed to get share access_token.'.$response['body']);
|
$response['body'] .= '\nfailed to get shareurl access_token.';
|
||||||
|
return $response;
|
||||||
|
//throw new Exception($response['stat'].', failed to get share access_token.'.$response['body']);
|
||||||
}
|
}
|
||||||
error_log('['.$_SERVER['disktag'].'] Get access token:'.json_encode($ret, JSON_PRETTY_PRINT));
|
$tmp = $ret;
|
||||||
|
$tmp['access_token'] = '******';
|
||||||
|
error_log('['.$_SERVER['disktag'].'] Get access token:'.json_encode($tmp, JSON_PRETTY_PRINT));
|
||||||
savecache('access_token', $_SERVER['access_token']);
|
savecache('access_token', $_SERVER['access_token']);
|
||||||
$tmp = [];
|
$tmp1 = [];
|
||||||
$tmp['shareapiurl'] = $_SERVER['api_url'];
|
$tmp1['shareapiurl'] = $_SERVER['api_url'];
|
||||||
if (getConfig('shareapiurl')=='') setConfig($tmp);
|
if (getConfig('shareapiurl')=='') setConfig($tmp1);
|
||||||
} else {
|
} else {
|
||||||
|
$p=0;
|
||||||
|
while ($response['stat']==0&&$p<3) {
|
||||||
$response = curl_request( $_SERVER['oauth_url'] . 'token', 'client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . $refresh_token );
|
$response = curl_request( $_SERVER['oauth_url'] . 'token', 'client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . $refresh_token );
|
||||||
|
$p++;
|
||||||
|
}
|
||||||
if ($response['stat']==200) $ret = json_decode($response['body'], true);
|
if ($response['stat']==200) $ret = json_decode($response['body'], true);
|
||||||
if (!isset($ret['access_token'])) {
|
if (!isset($ret['access_token'])) {
|
||||||
error_log($_SERVER['oauth_url'] . 'token'.'?client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . $refresh_token);
|
error_log($_SERVER['oauth_url'] . 'token'.'?client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . substr($refresh_token, 0, 20) . '******' . substr($refresh_token, -20));
|
||||||
error_log('failed to get ['.$_SERVER['disktag'].'] access_token. response' . json_encode($ret));
|
error_log('failed to get ['.$_SERVER['disktag'].'] access_token. response' . json_encode($ret));
|
||||||
throw new Exception($response['stat'].', failed to get ['.$_SERVER['disktag'].'] access_token.'.$response['body']);
|
$response['body'] .= '\nfailed to get ['.$_SERVER['disktag'].'] access_token.';
|
||||||
|
return $response;
|
||||||
|
//throw new Exception($response['stat'].', failed to get ['.$_SERVER['disktag'].'] access_token.'.$response['body']);
|
||||||
}
|
}
|
||||||
error_log('['.$_SERVER['disktag'].'] Get access token:'.json_encode($ret, JSON_PRETTY_PRINT));
|
$tmp = $ret;
|
||||||
|
$tmp['access_token'] = '******';
|
||||||
|
$tmp['refresh_token'] = '******';
|
||||||
|
error_log('['.$_SERVER['disktag'].'] Get access token:'.json_encode($tmp, JSON_PRETTY_PRINT));
|
||||||
$_SERVER['access_token'] = $ret['access_token'];
|
$_SERVER['access_token'] = $ret['access_token'];
|
||||||
savecache('access_token', $_SERVER['access_token'], $ret['expires_in'] - 300);
|
savecache('access_token', $_SERVER['access_token'], $ret['expires_in'] - 300);
|
||||||
if (time()>getConfig('token_expires')) setConfig([ 'refresh_token' => $ret['refresh_token'], 'token_expires' => time()+7*24*60*60 ]);
|
if (time()>getConfig('token_expires')) setConfig([ 'refresh_token' => $ret['refresh_token'], 'token_expires' => time()+7*24*60*60 ]);
|
||||||
}
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
function list_files($path)
|
function list_files($path)
|
||||||
@@ -498,14 +566,34 @@ function isHideFile($name)
|
|||||||
|
|
||||||
function getcache($str)
|
function getcache($str)
|
||||||
{
|
{
|
||||||
$cache = new \Doctrine\Common\Cache\FilesystemCache(sys_get_temp_dir(), __DIR__.'/Onedrive/'.$_SERVER['disktag']);
|
$cache = filecache();
|
||||||
return $cache->fetch($str);
|
return $cache->fetch($str);
|
||||||
}
|
}
|
||||||
|
|
||||||
function savecache($key, $value, $exp = 1800)
|
function savecache($key, $value, $exp = 1800)
|
||||||
{
|
{
|
||||||
$cache = new \Doctrine\Common\Cache\FilesystemCache(sys_get_temp_dir(), __DIR__.'/Onedrive/'.$_SERVER['disktag']);
|
$cache = filecache();
|
||||||
$cache->save($key, $value, $exp);
|
return $cache->save($key, $value, $exp);
|
||||||
|
}
|
||||||
|
|
||||||
|
function filecache()
|
||||||
|
{
|
||||||
|
$dir = sys_get_temp_dir();
|
||||||
|
if (!is_writable($dir)) {
|
||||||
|
$tmp = __DIR__ . '/tmp/';
|
||||||
|
if (file_exists($tmp)) {
|
||||||
|
if ( is_writable($tmp) ) $dir = $tmp;
|
||||||
|
} elseif ( mkdir($tmp) ) $dir = $tmp;
|
||||||
|
}
|
||||||
|
$tag = __DIR__ . '/OneManager/' . $_SERVER['disktag'];
|
||||||
|
while (strpos($tag, '/')>-1) $tag = str_replace('/', '_', $tag);
|
||||||
|
if (strpos($tag, ':')>-1) {
|
||||||
|
while (strpos($tag, ':')>-1) $tag = str_replace(':', '_', $tag);
|
||||||
|
while (strpos($tag, '\\')>-1) $tag = str_replace('\\', '_', $tag);
|
||||||
|
}
|
||||||
|
// error_log('DIR:' . $dir . ' TAG: ' . $tag);
|
||||||
|
$cache = new \Doctrine\Common\Cache\FilesystemCache($dir, $tag);
|
||||||
|
return $cache;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getconstStr($str)
|
function getconstStr($str)
|
||||||
@@ -517,8 +605,6 @@ function getconstStr($str)
|
|||||||
|
|
||||||
function config_oauth()
|
function config_oauth()
|
||||||
{
|
{
|
||||||
$_SERVER['sitename'] = getConfig('sitename');
|
|
||||||
if (empty($_SERVER['sitename'])) $_SERVER['sitename'] = getconstStr('defaultSitename');
|
|
||||||
$_SERVER['redirect_uri'] = 'https://scfonedrive.github.io';
|
$_SERVER['redirect_uri'] = 'https://scfonedrive.github.io';
|
||||||
if (getConfig('Drive_ver')=='shareurl') {
|
if (getConfig('Drive_ver')=='shareurl') {
|
||||||
$_SERVER['api_url'] = getConfig('shareapiurl');
|
$_SERVER['api_url'] = getConfig('shareapiurl');
|
||||||
@@ -539,10 +625,12 @@ function config_oauth()
|
|||||||
if (getConfig('usesharepoint')=='on') $_SERVER['api_url'] = 'https://graph.microsoft.com/v1.0/sites/' . getConfig('siteid') . '/drive/root';
|
if (getConfig('usesharepoint')=='on') $_SERVER['api_url'] = 'https://graph.microsoft.com/v1.0/sites/' . getConfig('siteid') . '/drive/root';
|
||||||
}
|
}
|
||||||
if (getConfig('Drive_ver')=='CN') {
|
if (getConfig('Drive_ver')=='CN') {
|
||||||
// CN
|
// CN 21Vianet
|
||||||
// https://portal.azure.cn
|
// https://portal.azure.cn
|
||||||
$_SERVER['client_id'] = '04c3ca0b-8d07-4773-85ad-98b037d25631';
|
//$_SERVER['client_id'] = '04c3ca0b-8d07-4773-85ad-98b037d25631';
|
||||||
$_SERVER['client_secret'] = 'h8@B7kFVOmj0+8HKBWeNTgl@pU/z4yLB';
|
//$_SERVER['client_secret'] = 'h8@B7kFVOmj0+8HKBWeNTgl@pU/z4yLB'; // expire 20200902
|
||||||
|
$_SERVER['client_id'] = 'b15f63f5-8b72-48b5-af69-8cab7579bff7';
|
||||||
|
$_SERVER['client_secret'] = '0IIuZ1Kcq_YI3NrkZFwsniEo~BoP~8_M22';
|
||||||
$_SERVER['oauth_url'] = 'https://login.partner.microsoftonline.cn/common/oauth2/v2.0/';
|
$_SERVER['oauth_url'] = 'https://login.partner.microsoftonline.cn/common/oauth2/v2.0/';
|
||||||
$_SERVER['api_url'] = 'https://microsoftgraph.chinacloudapi.cn/v1.0/me/drive/root';
|
$_SERVER['api_url'] = 'https://microsoftgraph.chinacloudapi.cn/v1.0/me/drive/root';
|
||||||
$_SERVER['scope'] = 'https://microsoftgraph.chinacloudapi.cn/Files.ReadWrite.All offline_access';
|
$_SERVER['scope'] = 'https://microsoftgraph.chinacloudapi.cn/Files.ReadWrite.All offline_access';
|
||||||
@@ -578,7 +666,9 @@ function get_siteid($access_token)
|
|||||||
}
|
}
|
||||||
if ($response['stat']!=200) {
|
if ($response['stat']!=200) {
|
||||||
error_log('failed to get siteid. response' . json_encode($response));
|
error_log('failed to get siteid. response' . json_encode($response));
|
||||||
throw new Exception($response['stat'].', failed to get siteid.'.$response['body']);
|
$response['body'] .= '\nfailed to get siteid.';
|
||||||
|
return $response;
|
||||||
|
//throw new Exception($response['stat'].', failed to get siteid.'.$response['body']);
|
||||||
}
|
}
|
||||||
return json_decode($response['body'],true)['id'];
|
return json_decode($response['body'],true)['id'];
|
||||||
}
|
}
|
||||||
@@ -614,15 +704,16 @@ function path_format($path)
|
|||||||
return $path;
|
return $path;
|
||||||
}
|
}
|
||||||
|
|
||||||
function spurlencode($str,$split='')
|
function spurlencode($str, $split='')
|
||||||
{
|
{
|
||||||
$str = str_replace(' ', '%20',$str);
|
$str = str_replace(' ', '%20',$str);
|
||||||
$tmp='';
|
$tmp='';
|
||||||
if ($split!='') {
|
if ($split!='') {
|
||||||
$tmparr=explode($split,$str);
|
$tmparr=explode($split, $str);
|
||||||
for($x=0;$x<count($tmparr);$x++) {
|
foreach ($tmparr as $str1) {
|
||||||
if ($tmparr[$x]!='') $tmp .= $split . urlencode($tmparr[$x]);
|
$tmp .= urlencode($str1) . $split;
|
||||||
}
|
}
|
||||||
|
$tmp = substr($tmp, 0, -strlen($split));
|
||||||
} else {
|
} else {
|
||||||
$tmp = urlencode($str);
|
$tmp = urlencode($str);
|
||||||
}
|
}
|
||||||
@@ -630,6 +721,25 @@ function spurlencode($str,$split='')
|
|||||||
return $tmp;
|
return $tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function base64y_encode($str)
|
||||||
|
{
|
||||||
|
$str = base64_encode($str);
|
||||||
|
while (substr($str,-1)=='=') $str=substr($str,0,-1);
|
||||||
|
while (strpos($str, '+')!==false) $str = str_replace('+', '-', $str);
|
||||||
|
while (strpos($str, '/')!==false) $str = str_replace('/', '_', $str);
|
||||||
|
return $str;
|
||||||
|
}
|
||||||
|
|
||||||
|
function base64y_decode($str)
|
||||||
|
{
|
||||||
|
while (strpos($str, '_')!==false) $str = str_replace('_', '/', $str);
|
||||||
|
while (strpos($str, '-')!==false) $str = str_replace('-', '+', $str);
|
||||||
|
while (strlen($str)%4) $str .= '=';
|
||||||
|
$str = base64_decode($str);
|
||||||
|
if (strpos($str, '%')!==false) $str = urldecode($str);
|
||||||
|
return $str;
|
||||||
|
}
|
||||||
|
|
||||||
function equal_replace($str, $add = false)
|
function equal_replace($str, $add = false)
|
||||||
{
|
{
|
||||||
if ($add) {
|
if ($add) {
|
||||||
@@ -655,6 +765,42 @@ function array_value_isnot_null($arr)
|
|||||||
return $arr!=='';
|
return $arr!=='';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function curl($method, $url, $data = '', $headers = [], $returnheader = 0)
|
||||||
|
{
|
||||||
|
//if (!isset($headers['Accept'])) $headers['Accept'] = '*/*';
|
||||||
|
//if (!isset($headers['Referer'])) $headers['Referer'] = $url;
|
||||||
|
//if (!isset($headers['Content-Type'])) $headers['Content-Type'] = 'application/x-www-form-urlencoded';
|
||||||
|
$sendHeaders = array();
|
||||||
|
foreach ($headers as $headerName => $headerVal) {
|
||||||
|
$sendHeaders[] = $headerName . ': ' . $headerVal;
|
||||||
|
}
|
||||||
|
$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, $returnheader);
|
||||||
|
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);
|
||||||
|
if ($returnheader) {
|
||||||
|
list($returnhead, $response['body']) = explode("\r\n\r\n", curl_exec($ch));
|
||||||
|
foreach (explode("\r\n", $returnhead) as $head) {
|
||||||
|
$tmp = explode(': ', $head);
|
||||||
|
$heads[$tmp[0]] = $tmp[1];
|
||||||
|
}
|
||||||
|
$response['returnhead'] = $heads;
|
||||||
|
} else {
|
||||||
|
$response['body'] = curl_exec($ch);
|
||||||
|
}
|
||||||
|
$response['stat'] = curl_getinfo($ch,CURLINFO_HTTP_CODE);
|
||||||
|
curl_close($ch);
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
function curl_request($url, $data = false, $headers = [], $returnheader = 0)
|
function curl_request($url, $data = false, $headers = [], $returnheader = 0)
|
||||||
{
|
{
|
||||||
if (!isset($headers['Accept'])) $headers['Accept'] = '*/*';
|
if (!isset($headers['Accept'])) $headers['Accept'] = '*/*';
|
||||||
@@ -779,9 +925,7 @@ function message($message, $title = 'Message', $statusCode = 200)
|
|||||||
<body>
|
<body>
|
||||||
<h1>' . $title . '</h1>
|
<h1>' . $title . '</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
' . $message . '
|
' . $message . '
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@@ -790,10 +934,11 @@ function message($message, $title = 'Message', $statusCode = 200)
|
|||||||
|
|
||||||
function needUpdate()
|
function needUpdate()
|
||||||
{
|
{
|
||||||
$current_ver = file_get_contents(__DIR__ . '/version');
|
$current_version = file_get_contents(__DIR__ . '/version');
|
||||||
$current_ver = substr($current_ver, strpos($current_ver, '.')+1);
|
$current_ver = substr($current_version, strpos($current_version, '.')+1);
|
||||||
$current_ver = explode(urldecode('%0A'),$current_ver)[0];
|
$current_ver = explode(urldecode('%0A'),$current_ver)[0];
|
||||||
$current_ver = explode(urldecode('%0D'),$current_ver)[0];
|
$current_ver = explode(urldecode('%0D'),$current_ver)[0];
|
||||||
|
$split = splitfirst($current_version, '.' . $current_ver)[0] . '.' . $current_ver;
|
||||||
//$github_version = file_get_contents('https://raw.githubusercontent.com/qkqpttgf/OneManager-php/master/version');
|
//$github_version = file_get_contents('https://raw.githubusercontent.com/qkqpttgf/OneManager-php/master/version');
|
||||||
$tmp = curl_request('https://raw.githubusercontent.com/qkqpttgf/OneManager-php/master/version');
|
$tmp = curl_request('https://raw.githubusercontent.com/qkqpttgf/OneManager-php/master/version');
|
||||||
if ($tmp['stat']==0) return 0;
|
if ($tmp['stat']==0) return 0;
|
||||||
@@ -802,7 +947,9 @@ function needUpdate()
|
|||||||
$github_ver = explode(urldecode('%0A'),$github_ver)[0];
|
$github_ver = explode(urldecode('%0A'),$github_ver)[0];
|
||||||
$github_ver = explode(urldecode('%0D'),$github_ver)[0];
|
$github_ver = explode(urldecode('%0D'),$github_ver)[0];
|
||||||
if ($current_ver != $github_ver) {
|
if ($current_ver != $github_ver) {
|
||||||
$_SERVER['github_version'] = $github_version;
|
//$_SERVER['github_version'] = $github_version;
|
||||||
|
$_SERVER['github_ver_new'] = splitfirst($github_version, $split)[0];
|
||||||
|
$_SERVER['github_ver_old'] = splitfirst($github_version, $_SERVER['github_ver_new'])[1];
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
@@ -852,9 +999,9 @@ function size_format($byte)
|
|||||||
|
|
||||||
function time_format($ISO)
|
function time_format($ISO)
|
||||||
{
|
{
|
||||||
|
if ($ISO=='') return date('Y-m-d H:i:s');
|
||||||
$ISO = str_replace('T', ' ', $ISO);
|
$ISO = str_replace('T', ' ', $ISO);
|
||||||
$ISO = str_replace('Z', ' ', $ISO);
|
$ISO = str_replace('Z', ' ', $ISO);
|
||||||
//return $ISO;
|
|
||||||
return date('Y-m-d H:i:s',strtotime($ISO . " UTC"));
|
return date('Y-m-d H:i:s',strtotime($ISO . " UTC"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -906,6 +1053,7 @@ function bigfileupload($path)
|
|||||||
$fileinfo['size'] = $_GET['filesize'];
|
$fileinfo['size'] = $_GET['filesize'];
|
||||||
$fileinfo['lastModified'] = $_GET['lastModified'];
|
$fileinfo['lastModified'] = $_GET['lastModified'];
|
||||||
$filename = spurlencode($_GET['upbigfilename'],'/');
|
$filename = spurlencode($_GET['upbigfilename'],'/');
|
||||||
|
if ($fileinfo['size']>10*1024*1024) {
|
||||||
$cachefilename = spurlencode( $fileinfo['path'] . '/.' . $fileinfo['lastModified'] . '_' . $fileinfo['size'] . '_' . $fileinfo['name'] . '.tmp', '/');
|
$cachefilename = spurlencode( $fileinfo['path'] . '/.' . $fileinfo['lastModified'] . '_' . $fileinfo['size'] . '_' . $fileinfo['name'] . '.tmp', '/');
|
||||||
$getoldupinfo=fetch_files(path_format($path . '/' . $cachefilename));
|
$getoldupinfo=fetch_files(path_format($path . '/' . $cachefilename));
|
||||||
//echo json_encode($getoldupinfo, JSON_PRETTY_PRINT);
|
//echo json_encode($getoldupinfo, JSON_PRETTY_PRINT);
|
||||||
@@ -914,12 +1062,15 @@ function bigfileupload($path)
|
|||||||
$getoldupinfo = json_decode($getoldupinfo_j['body'], true);
|
$getoldupinfo = json_decode($getoldupinfo_j['body'], true);
|
||||||
if ( json_decode( curl_request($getoldupinfo['uploadUrl'])['body'], true)['@odata.context']!='' ) return output($getoldupinfo_j['body'], $getoldupinfo_j['stat']);
|
if ( json_decode( curl_request($getoldupinfo['uploadUrl'])['body'], true)['@odata.context']!='' ) return output($getoldupinfo_j['body'], $getoldupinfo_j['stat']);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
//if (!$_SERVER['admin']) $filename = spurlencode( $fileinfo['name'] ) . '.scfupload';
|
//if (!$_SERVER['admin']) $filename = spurlencode( $fileinfo['name'] ) . '.scfupload';
|
||||||
$response=MSAPI('createUploadSession',path_format($path1 . '/' . $filename),'{"item": { "@microsoft.graph.conflictBehavior": "fail" }}',$_SERVER['access_token']);
|
$response = MSAPI('createUploadSession', path_format($path1 . '/' . $filename), '{"item": { "@microsoft.graph.conflictBehavior": "fail" }}', $_SERVER['access_token']);
|
||||||
|
if ($response['stat']<500) {
|
||||||
$responsearry = json_decode($response['body'],true);
|
$responsearry = json_decode($response['body'],true);
|
||||||
if (isset($responsearry['error'])) return output($response['body'], $response['stat']);
|
if (isset($responsearry['error'])) return output($response['body'], $response['stat']);
|
||||||
$fileinfo['uploadUrl'] = $responsearry['uploadUrl'];
|
$fileinfo['uploadUrl'] = $responsearry['uploadUrl'];
|
||||||
MSAPI('PUT', path_format($path1 . '/' . $cachefilename), json_encode($fileinfo, JSON_PRETTY_PRINT), $_SERVER['access_token'])['body'];
|
if ($fileinfo['size']>10*1024*1024) MSAPI('PUT', path_format($path1 . '/' . $cachefilename), json_encode($fileinfo, JSON_PRETTY_PRINT), $_SERVER['access_token']);
|
||||||
|
}
|
||||||
return output($response['body'], $response['stat']);
|
return output($response['body'], $response['stat']);
|
||||||
}
|
}
|
||||||
return output('error', 400);
|
return output('error', 400);
|
||||||
@@ -927,34 +1078,34 @@ function bigfileupload($path)
|
|||||||
|
|
||||||
function adminform($name = '', $pass = '', $path = '')
|
function adminform($name = '', $pass = '', $path = '')
|
||||||
{
|
{
|
||||||
$statusCode = 401;
|
$html = '<html><head><title>' . getconstStr('AdminLogin') . '</title><meta charset=utf-8></head>';
|
||||||
$html = '<html><head><title>'.getconstStr('AdminLogin').'</title><meta charset=utf-8></head>';
|
|
||||||
if ($name!=''&&$pass!='') {
|
if ($name!=''&&$pass!='') {
|
||||||
$html .= '<body>'.getconstStr('LoginSuccess').'</body></html>';
|
$html .= '<meta http-equiv="refresh" content="3;URL=' . $path . '"><body>' . getconstStr('LoginSuccess') . '</body></html>';
|
||||||
$statusCode = 302;
|
$statusCode = 201;
|
||||||
date_default_timezone_set('UTC');
|
date_default_timezone_set('UTC');
|
||||||
$header = [
|
$header = [
|
||||||
'Set-Cookie' => $name.'='.$pass.'; path=/; expires='.date(DATE_COOKIE,strtotime('+1hour')),
|
'Set-Cookie' => $name . '=' . $pass . '; path=/; expires=' . date(DATE_COOKIE, strtotime('+1hour')),
|
||||||
'Location' => $path,
|
//'Location' => $path,
|
||||||
'Content-Type' => 'text/html'
|
'Content-Type' => 'text/html'
|
||||||
];
|
];
|
||||||
return output($html,$statusCode,$header);
|
return output($html, $statusCode, $header);
|
||||||
}
|
}
|
||||||
|
$statusCode = 401;
|
||||||
$html .= '
|
$html .= '
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div>
|
||||||
<center><h4>'.getconstStr('InputPassword').'</h4>
|
<center><h4>' . getconstStr('InputPassword') . '</h4>
|
||||||
<form action="" method="post">
|
<form action="" method="post">
|
||||||
<div>
|
<div>
|
||||||
<input name="password1" type="password"/>
|
<input name="password1" type="password"/>
|
||||||
<input type="submit" value="'.getconstStr('Login').'">
|
<input type="submit" value="' . getconstStr('Login') . '">
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</center>
|
</center>
|
||||||
</div>
|
</div>
|
||||||
';
|
';
|
||||||
$html .= '</body></html>';
|
$html .= '</body></html>';
|
||||||
return output($html,$statusCode);
|
return output($html, $statusCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
function adminoperate($path)
|
function adminoperate($path)
|
||||||
@@ -1403,10 +1554,11 @@ function get_refresh_token()
|
|||||||
{
|
{
|
||||||
global $constStr;
|
global $constStr;
|
||||||
global $CommonEnv;
|
global $CommonEnv;
|
||||||
|
config_oauth();
|
||||||
$envs = '';
|
$envs = '';
|
||||||
foreach ($CommonEnv as $env) $envs .= '\'' . $env . '\', ';
|
foreach ($CommonEnv as $env) $envs .= '\'' . $env . '\', ';
|
||||||
$url = path_format($_SERVER['PHP_SELF'] . '/');
|
$url = path_format($_SERVER['PHP_SELF'] . '/');
|
||||||
if (isset($_GET['authorization_code']) && isset($_GET['code'])) {
|
if (isset($_GET['install2']) && isset($_GET['code'])) {
|
||||||
$_SERVER['disktag'] = $_COOKIE['disktag'];
|
$_SERVER['disktag'] = $_COOKIE['disktag'];
|
||||||
config_oauth();
|
config_oauth();
|
||||||
$tmp = curl_request($_SERVER['oauth_url'] . 'token', 'client_id=' . $_SERVER['client_id'] .'&client_secret=' . $_SERVER['client_secret'] . '&grant_type=authorization_code&requested_token_use=on_behalf_of&redirect_uri=' . $_SERVER['redirect_uri'] .'&code=' . $_GET['code']);
|
$tmp = curl_request($_SERVER['oauth_url'] . 'token', 'client_id=' . $_SERVER['client_id'] .'&client_secret=' . $_SERVER['client_secret'] . '&grant_type=authorization_code&requested_token_use=on_behalf_of&redirect_uri=' . $_SERVER['redirect_uri'] .'&code=' . $_GET['code']);
|
||||||
@@ -1428,14 +1580,23 @@ function get_refresh_token()
|
|||||||
</script>';
|
</script>';
|
||||||
$tmptoken['refresh_token'] = $refresh_token;
|
$tmptoken['refresh_token'] = $refresh_token;
|
||||||
$tmptoken['token_expires'] = time()+7*24*60*60;
|
$tmptoken['token_expires'] = time()+7*24*60*60;
|
||||||
if (getConfig('usesharepoint')=='on') $tmptoken['siteid'] = get_siteid($ret['access_token']);
|
if (getConfig('usesharepoint')=='on') {
|
||||||
setConfig($tmptoken, $_COOKIE['disktag']);
|
$tmp1 = get_siteid($ret['access_token']);
|
||||||
|
if (isset($tmp1['stat'])) return message($tmp1['body'], 'Error', $tmp1['stat']);
|
||||||
|
$tmptoken['siteid'] = $tmp1;
|
||||||
|
}
|
||||||
|
$response = setConfigResponse( setConfig($tmptoken, $_COOKIE['disktag']) );
|
||||||
|
if (api_error($response)) {
|
||||||
|
$html = api_error_msg($response);
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
} else {
|
||||||
savecache('access_token', $ret['access_token'], $ret['expires_in'] - 60);
|
savecache('access_token', $ret['access_token'], $ret['expires_in'] - 60);
|
||||||
//WaitSCFStat();
|
|
||||||
$str .= '
|
$str .= '
|
||||||
<meta http-equiv="refresh" content="5;URL=' . $url . '">';
|
<meta http-equiv="refresh" content="5;URL=' . $url . '">';
|
||||||
return message($str, getconstStr('WaitJumpIndex'));
|
return message($str, getconstStr('WaitJumpIndex'));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return message('<pre>' . json_encode(json_decode($tmp['body']), JSON_PRETTY_PRINT) . '</pre>', $tmp['stat']);
|
return message('<pre>' . json_encode(json_decode($tmp['body']), JSON_PRETTY_PRINT) . '</pre>', $tmp['stat']);
|
||||||
//return message('<pre>' . json_encode($ret, JSON_PRETTY_PRINT) . '</pre>', 500);
|
//return message('<pre>' . json_encode($ret, JSON_PRETTY_PRINT) . '</pre>', 500);
|
||||||
}
|
}
|
||||||
@@ -1500,12 +1661,12 @@ function get_refresh_token()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($constStr['language']!='zh-cn') {
|
//if ($constStr['language']!='zh-cn') {
|
||||||
$linklang='en-us';
|
// $linklang='en-us';
|
||||||
} else $linklang='zh-cn';
|
//} else $linklang='zh-cn';
|
||||||
$ru = "https://developer.microsoft.com/".$linklang."/graph/quick-start?appID=_appId_&appName=_appName_&redirectUrl=".$_SERVER['redirect_uri']."&platform=option-php";
|
//$ru = "https://developer.microsoft.com/".$linklang."/graph/quick-start?appID=_appId_&appName=_appName_&redirectUrl=".$_SERVER['redirect_uri']."&platform=option-php";
|
||||||
$deepLink = "/quickstart/graphIO?publicClientSupport=false&appName=OneManager&redirectUrl=".$_SERVER['redirect_uri']."&allowImplicitFlow=false&ru=".urlencode($ru);
|
//$deepLink = "/quickstart/graphIO?publicClientSupport=false&appName=OneManager&redirectUrl=".$_SERVER['redirect_uri']."&allowImplicitFlow=false&ru=".urlencode($ru);
|
||||||
$app_url = "https://apps.dev.microsoft.com/?deepLink=".urlencode($deepLink);
|
//$app_url = "https://apps.dev.microsoft.com/?deepLink=".urlencode($deepLink);
|
||||||
$html = '
|
$html = '
|
||||||
<div>
|
<div>
|
||||||
<form action="?AddDisk&install0" method="post" onsubmit="return notnull(this);">
|
<form action="?AddDisk&install0" method="post" onsubmit="return notnull(this);">
|
||||||
@@ -1513,7 +1674,7 @@ function get_refresh_token()
|
|||||||
'.getconstStr('OnedriveDiskName').':<input type="text" name="diskname" placeholder="' . getconstStr('EnvironmentsDescription')['diskname'] . '" style="width:100%"><br>
|
'.getconstStr('OnedriveDiskName').':<input type="text" name="diskname" placeholder="' . getconstStr('EnvironmentsDescription')['diskname'] . '" style="width:100%"><br>
|
||||||
<br>
|
<br>
|
||||||
<div>
|
<div>
|
||||||
<label><input type="radio" name="Drive_ver" value="MS" checked onclick="document.getElementById(\'morecustom\').style.display=\'\';document.getElementById(\'inputshareurl\').style.display=\'none\';">MS: '.getconstStr('DriveVerMS').'</label><br>
|
<label><input type="radio" name="Drive_ver" value="MS" onclick="document.getElementById(\'morecustom\').style.display=\'\';document.getElementById(\'inputshareurl\').style.display=\'none\';">MS: '.getconstStr('DriveVerMS').'</label><br>
|
||||||
<label><input type="radio" name="Drive_ver" value="CN" onclick="document.getElementById(\'morecustom\').style.display=\'\';document.getElementById(\'inputshareurl\').style.display=\'none\';">CN: '.getconstStr('DriveVerCN').'</label><br>
|
<label><input type="radio" name="Drive_ver" value="CN" onclick="document.getElementById(\'morecustom\').style.display=\'\';document.getElementById(\'inputshareurl\').style.display=\'none\';">CN: '.getconstStr('DriveVerCN').'</label><br>
|
||||||
<label><input type="radio" name="Drive_ver" value="shareurl" onclick="document.getElementById(\'inputshareurl\').style.display=\'\';document.getElementById(\'morecustom\').style.display=\'none\';">ShareUrl: '.getconstStr('DriveVerShareurl').'</label><br>
|
<label><input type="radio" name="Drive_ver" value="shareurl" onclick="document.getElementById(\'inputshareurl\').style.display=\'\';document.getElementById(\'morecustom\').style.display=\'none\';">ShareUrl: '.getconstStr('DriveVerShareurl').'</label><br>
|
||||||
</div>
|
</div>
|
||||||
@@ -1522,12 +1683,12 @@ function get_refresh_token()
|
|||||||
'.getconstStr('UseShareLink').'
|
'.getconstStr('UseShareLink').'
|
||||||
<input type="text" name="shareurl" style="width:100%" placeholder="https://xxxx.sharepoint.com/:f:/g/personal/xxxxxxxx/mmmmmmmmm?e=XXXX"><br>
|
<input type="text" name="shareurl" style="width:100%" placeholder="https://xxxx.sharepoint.com/:f:/g/personal/xxxxxxxx/mmmmmmmmm?e=XXXX"><br>
|
||||||
</div>
|
</div>
|
||||||
<div id="morecustom">
|
<div id="morecustom" style="display:none;">
|
||||||
<label><input type="checkbox" name="Drive_custom" onclick="document.getElementById(\'secret\').style.display=(this.checked?\'\':\'none\');">'.getconstStr('CustomIdSecret').'</label><br>
|
<label><input type="checkbox" name="Drive_custom" onclick="document.getElementById(\'secret\').style.display=(this.checked?\'\':\'none\');">'.getconstStr('CustomIdSecret').'</label><br>
|
||||||
<div id="secret" style="display:none;margin:10px 35px">
|
<div id="secret" style="display:none;margin:10px 35px">
|
||||||
<a href="'.$app_url.'" target="_blank">'.getconstStr('GetSecretIDandKEY').'</a><br>
|
return uri: https://scfonedrive.github.io/<br>
|
||||||
|
client_id:<input type="text" name="client_id" placeholder="a1b2c345-90ab-cdef-ghij-klmnopqrstuv"><br>
|
||||||
client_secret:<input type="text" name="client_secret"><br>
|
client_secret:<input type="text" name="client_secret"><br>
|
||||||
client_id:<input type="text" name="client_id" placeholder="12345678-90ab-cdef-ghij-klmnopqrstuv"><br>
|
|
||||||
</div>
|
</div>
|
||||||
<label><input type="checkbox" name="usesharepoint" onclick="document.getElementById(\'sharepoint\').style.display=(this.checked?\'\':\'none\');">'.getconstStr('UseSharepointInstead').'</label><br>
|
<label><input type="checkbox" name="usesharepoint" onclick="document.getElementById(\'sharepoint\').style.display=(this.checked?\'\':\'none\');">'.getconstStr('UseSharepointInstead').'</label><br>
|
||||||
<div id="sharepoint" style="display:none;margin:10px 35px">
|
<div id="sharepoint" style="display:none;margin:10px 35px">
|
||||||
@@ -1575,7 +1736,10 @@ function get_refresh_token()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
document.cookie=\'disktag=\'+t.disktag_add.value+\'; path=/\';
|
var expd = new Date();
|
||||||
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
|
var expires = "expires="+expd.toGMTString();
|
||||||
|
document.cookie=\'disktag=\'+t.disktag_add.value+\'; path=/; \'+expires;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
</script>';
|
</script>';
|
||||||
@@ -1593,7 +1757,7 @@ function EnvOpt($needUpdate = 0)
|
|||||||
asort($ShowedInnerEnv);
|
asort($ShowedInnerEnv);
|
||||||
$html = '<title>OneManager '.getconstStr('Setup').'</title>';
|
$html = '<title>OneManager '.getconstStr('Setup').'</title>';
|
||||||
if (isset($_POST['updateProgram'])&&$_POST['updateProgram']==getconstStr('updateProgram')) {
|
if (isset($_POST['updateProgram'])&&$_POST['updateProgram']==getconstStr('updateProgram')) {
|
||||||
$response = OnekeyUpate($_POST['auth'], $_POST['project'], $_POST['branch']);
|
$response = setConfigResponse(OnekeyUpate($_POST['auth'], $_POST['project'], $_POST['branch']));
|
||||||
if (api_error($response)) {
|
if (api_error($response)) {
|
||||||
$html = api_error_msg($response);
|
$html = api_error_msg($response);
|
||||||
$title = 'Error';
|
$title = 'Error';
|
||||||
@@ -1666,7 +1830,7 @@ function EnvOpt($needUpdate = 0)
|
|||||||
</td>
|
</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
} elseif ($key=='theme') {
|
} elseif ($key=='theme') {
|
||||||
$theme_arr = scandir('theme');
|
$theme_arr = scandir(__DIR__.'/theme');
|
||||||
$html .= '
|
$html .= '
|
||||||
<tr>
|
<tr>
|
||||||
<td><label>' . $key . '</label></td>
|
<td><label>' . $key . '</label></td>
|
||||||
@@ -1730,6 +1894,11 @@ function EnvOpt($needUpdate = 0)
|
|||||||
$html .= '
|
$html .= '
|
||||||
<tr><td><input type="submit" name="submit1" value="'.getconstStr('Setup').'"></td></tr>
|
<tr><td><input type="submit" name="submit1" value="'.getconstStr('Setup').'"></td></tr>
|
||||||
</form>';
|
</form>';
|
||||||
|
} else {
|
||||||
|
$html .= '
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">Please add this disk again.</td>
|
||||||
|
</tr>';
|
||||||
}
|
}
|
||||||
$html .= '
|
$html .= '
|
||||||
</table><br>';
|
</table><br>';
|
||||||
@@ -1745,6 +1914,10 @@ function EnvOpt($needUpdate = 0)
|
|||||||
$canOneKeyUpate = 1;
|
$canOneKeyUpate = 1;
|
||||||
} elseif (isset($_SERVER['FC_SERVER_PATH'])&&$_SERVER['FC_SERVER_PATH']==='/var/fc/runtime/php7.2') {
|
} elseif (isset($_SERVER['FC_SERVER_PATH'])&&$_SERVER['FC_SERVER_PATH']==='/var/fc/runtime/php7.2') {
|
||||||
$canOneKeyUpate = 1;
|
$canOneKeyUpate = 1;
|
||||||
|
} elseif ($_SERVER['BCE_CFC_RUNTIME_NAME']=='php7') {
|
||||||
|
$canOneKeyUpate = 1;
|
||||||
|
} elseif ($_SERVER['_APP_SHARE_DIR']==='/var/share/CFF/processrouter') {
|
||||||
|
$canOneKeyUpate = 1;
|
||||||
} else {
|
} else {
|
||||||
$tmp = time();
|
$tmp = time();
|
||||||
if ( mkdir(''.$tmp, 0777) ) {
|
if ( mkdir(''.$tmp, 0777) ) {
|
||||||
@@ -1794,8 +1967,12 @@ function EnvOpt($needUpdate = 0)
|
|||||||
';
|
';
|
||||||
}
|
}
|
||||||
if ($needUpdate) {
|
if ($needUpdate) {
|
||||||
$html .= '<div style="position:relative;word-wrap: break-word;">
|
$html .= '<div style="position: relative; word-wrap: break-word;">
|
||||||
' . str_replace("\r", '<br>',$_SERVER['github_version']) . '
|
' . str_replace("\r", '<br>', $_SERVER['github_ver_new']) . '
|
||||||
|
</div>
|
||||||
|
<button onclick="document.getElementById(\'github_ver_old\').style.display=(document.getElementById(\'github_ver_old\').style.display==\'none\'?\'\':\'none\');">More...</button>
|
||||||
|
<div id="github_ver_old" style="position: relative; word-wrap: break-word; display: none">
|
||||||
|
' . str_replace("\r", '<br>', $_SERVER['github_ver_old']) . '
|
||||||
</div>';
|
</div>';
|
||||||
}/* else {
|
}/* else {
|
||||||
$html .= getconstStr('NotNeedUpdate');
|
$html .= getconstStr('NotNeedUpdate');
|
||||||
@@ -1859,23 +2036,23 @@ function render_list($path = '', $files = '')
|
|||||||
-->';
|
-->';
|
||||||
//$authinfo = $path . '<br><pre>' . json_encode($files, JSON_PRETTY_PRINT) . '</pre>';
|
//$authinfo = $path . '<br><pre>' . json_encode($files, JSON_PRETTY_PRINT) . '</pre>';
|
||||||
|
|
||||||
|
|
||||||
if (isset($_COOKIE['theme'])&&$_COOKIE['theme']!='') $theme = $_COOKIE['theme'];
|
if (isset($_COOKIE['theme'])&&$_COOKIE['theme']!='') $theme = $_COOKIE['theme'];
|
||||||
|
if ( !file_exists(__DIR__.'/theme/'.$theme) ) $theme = '';
|
||||||
if ( $theme=='' ) {
|
if ( $theme=='' ) {
|
||||||
$tmp = getConfig('customTheme');
|
$tmp = getConfig('customTheme');
|
||||||
if ( $tmp!='' ) $theme = $tmp;
|
if ( $tmp!='' ) $theme = $tmp;
|
||||||
}
|
}
|
||||||
if ( $theme=='' ) {
|
if ( $theme=='' ) {
|
||||||
$theme = getConfig('theme');
|
$theme = getConfig('theme');
|
||||||
if ( $theme=='' || !file_exists('theme/'.$theme) ) $theme = 'classic.html';
|
if ( $theme=='' || !file_exists(__DIR__.'/theme/'.$theme) ) $theme = 'classic.html';
|
||||||
}
|
}
|
||||||
if (substr($theme,-4)=='.php') {
|
if (substr($theme,-4)=='.php') {
|
||||||
@ob_start();
|
@ob_start();
|
||||||
include 'theme/'.$theme;
|
include 'theme/'.$theme;
|
||||||
$html = ob_get_clean();
|
$html = ob_get_clean();
|
||||||
} else {
|
} else {
|
||||||
if (file_exists('theme/'.$theme)) {
|
if (file_exists(__DIR__.'/theme/'.$theme)) {
|
||||||
$file_path = 'theme/'.$theme;
|
$file_path = __DIR__.'/theme/'.$theme;
|
||||||
$html = file_get_contents($file_path);
|
$html = file_get_contents($file_path);
|
||||||
} else {
|
} else {
|
||||||
if (!($html = getcache('customTheme'))) {
|
if (!($html = getcache('customTheme'))) {
|
||||||
@@ -1890,9 +2067,6 @@ function render_list($path = '', $files = '')
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
//$fp = fopen($file_path,"r");
|
|
||||||
//$html = fread($fp,filesize($file_path));
|
|
||||||
//fclose($fp);
|
|
||||||
|
|
||||||
$tmp = splitfirst($html, '<!--IconValuesStart-->');
|
$tmp = splitfirst($html, '<!--IconValuesStart-->');
|
||||||
$html = $tmp[0];
|
$html = $tmp[0];
|
||||||
@@ -2108,7 +2282,70 @@ function render_list($path = '', $files = '')
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($files['children'])) {
|
if (isset($files['file'])) {
|
||||||
|
while (strpos($html, '<!--GuestUploadStart-->')) {
|
||||||
|
$tmp = splitfirst($html, '<!--GuestUploadStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--GuestUploadEnd-->');
|
||||||
|
$html .= $tmp[1];
|
||||||
|
}
|
||||||
|
$tmp = splitfirst($html, '<!--EncryptedStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--EncryptedEnd-->');
|
||||||
|
$html .= $tmp[1];
|
||||||
|
|
||||||
|
$tmp[1] = 'a';
|
||||||
|
while ($tmp[1]!='') {
|
||||||
|
$tmp = splitfirst($html, '<!--IsFolderStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--IsFolderEnd-->');
|
||||||
|
$html .= $tmp[1];
|
||||||
|
}
|
||||||
|
while (strpos($html, '<!--IsFileStart-->')) {
|
||||||
|
$html = str_replace('<!--IsFileStart-->', '', $html);
|
||||||
|
$html = str_replace('<!--IsFileEnd-->', '', $html);
|
||||||
|
}
|
||||||
|
$html = str_replace('<!--FileEncodeUrl-->', str_replace('%2523', '%23', str_replace('%26amp%3B','&',spurlencode(path_format($_SERVER['base_disk_path'] . '/' . $path), '/'))), $html);
|
||||||
|
$html = str_replace('<!--FileUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
||||||
|
|
||||||
|
$ext = strtolower(substr($path, strrpos($path, '.') + 1));
|
||||||
|
if (in_array($ext, $exts['img'])) $ext = 'img';
|
||||||
|
elseif (in_array($ext, $exts['video'])) $ext = 'video';
|
||||||
|
elseif (in_array($ext, $exts['music'])) $ext = 'music';
|
||||||
|
//elseif (in_array($ext, $exts['pdf'])) $ext = 'pdf';
|
||||||
|
elseif ($ext=='pdf') $ext = 'pdf';
|
||||||
|
elseif (in_array($ext, $exts['office'])) $ext = 'office';
|
||||||
|
elseif (in_array($ext, $exts['txt'])) $ext = 'txt';
|
||||||
|
else $ext = 'Other';
|
||||||
|
$previewext = ['img', 'video', 'music', 'pdf', 'office', 'txt', 'Other'];
|
||||||
|
$previewext = array_diff($previewext, [ $ext ]);
|
||||||
|
foreach ($previewext as $ext1) {
|
||||||
|
$tmp[1] = 'a';
|
||||||
|
while ($tmp[1]!='') {
|
||||||
|
$tmp = splitfirst($html, '<!--Is'.$ext1.'FileStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--Is'.$ext1.'FileEnd-->');
|
||||||
|
$html .= $tmp[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while (strpos($html, '<!--Is'.$ext.'FileStart-->')) {
|
||||||
|
$html = str_replace('<!--Is'.$ext.'FileStart-->', '', $html);
|
||||||
|
$html = str_replace('<!--Is'.$ext.'FileEnd-->', '', $html);
|
||||||
|
}
|
||||||
|
//while (strpos($html, '<!--FileDownUrl-->')) $html = str_replace('<!--FileDownUrl-->', $files[$_SERVER['DownurlStrName']], $html);
|
||||||
|
while (strpos($html, '<!--FileDownUrl-->')) $html = str_replace('<!--FileDownUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
||||||
|
while (strpos($html, '<!--FileEncodeReplaceUrl-->')) $html = str_replace('<!--FileEncodeReplaceUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
||||||
|
while (strpos($html, '<!--FileName-->')) $html = str_replace('<!--FileName-->', $files['name'], $html);
|
||||||
|
$html = str_replace('<!--FileEncodeDownUrl-->', urlencode($files[$_SERVER['DownurlStrName']]), $html);
|
||||||
|
$html = str_replace('<!--constStr@ClicktoEdit-->', getconstStr('ClicktoEdit'), $html);
|
||||||
|
$html = str_replace('<!--constStr@CancelEdit-->', getconstStr('CancelEdit'), $html);
|
||||||
|
$html = str_replace('<!--constStr@Save-->', getconstStr('Save'), $html);
|
||||||
|
while (strpos($html, '<!--TxtContent-->')) $html = str_replace('<!--TxtContent-->', htmlspecialchars(curl_request($files[$_SERVER['DownurlStrName']])['body']), $html);
|
||||||
|
$html = str_replace('<!--constStr@FileNotSupport-->', getconstStr('FileNotSupport'), $html);
|
||||||
|
|
||||||
|
|
||||||
|
//$html = str_replace('<!--constStr@File-->', getconstStr('File'), $html);
|
||||||
|
} elseif (isset($files['children'])) {
|
||||||
while (strpos($html, '<!--GuestUploadStart-->')) {
|
while (strpos($html, '<!--GuestUploadStart-->')) {
|
||||||
$tmp = splitfirst($html, '<!--GuestUploadStart-->');
|
$tmp = splitfirst($html, '<!--GuestUploadStart-->');
|
||||||
$html = $tmp[0];
|
$html = $tmp[0];
|
||||||
@@ -2147,7 +2384,7 @@ function render_list($path = '', $files = '')
|
|||||||
if ($_SERVER['admin'] or !isHideFile($file['name'])) {
|
if ($_SERVER['admin'] or !isHideFile($file['name'])) {
|
||||||
$filenum++;
|
$filenum++;
|
||||||
$FolderListStr = str_replace('<!--FileEncodeReplaceUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path . '/' . encode_str_replace($file['name'])), $FolderList);
|
$FolderListStr = str_replace('<!--FileEncodeReplaceUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path . '/' . encode_str_replace($file['name'])), $FolderList);
|
||||||
$FolderListStr = str_replace('<!--FileEncodeReplaceName-->', str_replace('&','&', $file['name']), $FolderListStr);
|
$FolderListStr = str_replace('<!--FileEncodeReplaceName-->', str_replace('&','&', $file['showname']?$file['showname']:$file['name']), $FolderListStr);
|
||||||
$FolderListStr = str_replace('<!--lastModifiedDateTime-->', time_format($file['lastModifiedDateTime']), $FolderListStr);
|
$FolderListStr = str_replace('<!--lastModifiedDateTime-->', time_format($file['lastModifiedDateTime']), $FolderListStr);
|
||||||
$FolderListStr = str_replace('<!--size-->', size_format($file['size']), $FolderListStr);
|
$FolderListStr = str_replace('<!--size-->', size_format($file['size']), $FolderListStr);
|
||||||
while (strpos($FolderListStr, '<!--filenum-->')) $FolderListStr = str_replace('<!--filenum-->', $filenum, $FolderListStr);
|
while (strpos($FolderListStr, '<!--filenum-->')) $FolderListStr = str_replace('<!--filenum-->', $filenum, $FolderListStr);
|
||||||
@@ -2259,69 +2496,6 @@ function render_list($path = '', $files = '')
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} elseif (isset($files['file'])) {
|
|
||||||
while (strpos($html, '<!--GuestUploadStart-->')) {
|
|
||||||
$tmp = splitfirst($html, '<!--GuestUploadStart-->');
|
|
||||||
$html = $tmp[0];
|
|
||||||
$tmp = splitfirst($tmp[1], '<!--GuestUploadEnd-->');
|
|
||||||
$html .= $tmp[1];
|
|
||||||
}
|
|
||||||
$tmp = splitfirst($html, '<!--EncryptedStart-->');
|
|
||||||
$html = $tmp[0];
|
|
||||||
$tmp = splitfirst($tmp[1], '<!--EncryptedEnd-->');
|
|
||||||
$html .= $tmp[1];
|
|
||||||
|
|
||||||
$tmp[1] = 'a';
|
|
||||||
while ($tmp[1]!='') {
|
|
||||||
$tmp = splitfirst($html, '<!--IsFolderStart-->');
|
|
||||||
$html = $tmp[0];
|
|
||||||
$tmp = splitfirst($tmp[1], '<!--IsFolderEnd-->');
|
|
||||||
$html .= $tmp[1];
|
|
||||||
}
|
|
||||||
while (strpos($html, '<!--IsFileStart-->')) {
|
|
||||||
$html = str_replace('<!--IsFileStart-->', '', $html);
|
|
||||||
$html = str_replace('<!--IsFileEnd-->', '', $html);
|
|
||||||
}
|
|
||||||
$html = str_replace('<!--FileEncodeUrl-->', str_replace('%2523', '%23', str_replace('%26amp%3B','&',spurlencode(path_format($_SERVER['base_disk_path'] . '/' . $path), '/'))), $html);
|
|
||||||
$html = str_replace('<!--FileUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
|
||||||
|
|
||||||
$ext = strtolower(substr($path, strrpos($path, '.') + 1));
|
|
||||||
if (in_array($ext, $exts['img'])) $ext = 'img';
|
|
||||||
elseif (in_array($ext, $exts['video'])) $ext = 'video';
|
|
||||||
elseif (in_array($ext, $exts['music'])) $ext = 'music';
|
|
||||||
//elseif (in_array($ext, $exts['pdf'])) $ext = 'pdf';
|
|
||||||
elseif ($ext=='pdf') $ext = 'pdf';
|
|
||||||
elseif (in_array($ext, $exts['office'])) $ext = 'office';
|
|
||||||
elseif (in_array($ext, $exts['txt'])) $ext = 'txt';
|
|
||||||
else $ext = 'Other';
|
|
||||||
$previewext = ['img', 'video', 'music', 'pdf', 'office', 'txt', 'Other'];
|
|
||||||
$previewext = array_diff($previewext, [ $ext ]);
|
|
||||||
foreach ($previewext as $ext1) {
|
|
||||||
$tmp[1] = 'a';
|
|
||||||
while ($tmp[1]!='') {
|
|
||||||
$tmp = splitfirst($html, '<!--Is'.$ext1.'FileStart-->');
|
|
||||||
$html = $tmp[0];
|
|
||||||
$tmp = splitfirst($tmp[1], '<!--Is'.$ext1.'FileEnd-->');
|
|
||||||
$html .= $tmp[1];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
while (strpos($html, '<!--Is'.$ext.'FileStart-->')) {
|
|
||||||
$html = str_replace('<!--Is'.$ext.'FileStart-->', '', $html);
|
|
||||||
$html = str_replace('<!--Is'.$ext.'FileEnd-->', '', $html);
|
|
||||||
}
|
|
||||||
//while (strpos($html, '<!--FileDownUrl-->')) $html = str_replace('<!--FileDownUrl-->', $files[$_SERVER['DownurlStrName']], $html);
|
|
||||||
while (strpos($html, '<!--FileDownUrl-->')) $html = str_replace('<!--FileDownUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
|
||||||
while (strpos($html, '<!--FileEncodeReplaceUrl-->')) $html = str_replace('<!--FileEncodeReplaceUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
|
||||||
while (strpos($html, '<!--FileName-->')) $html = str_replace('<!--FileName-->', $files['name'], $html);
|
|
||||||
$html = str_replace('<!--FileEncodeDownUrl-->', urlencode($files[$_SERVER['DownurlStrName']]), $html);
|
|
||||||
$html = str_replace('<!--constStr@ClicktoEdit-->', getconstStr('ClicktoEdit'), $html);
|
|
||||||
$html = str_replace('<!--constStr@CancelEdit-->', getconstStr('CancelEdit'), $html);
|
|
||||||
$html = str_replace('<!--constStr@Save-->', getconstStr('Save'), $html);
|
|
||||||
while (strpos($html, '<!--TxtContent-->')) $html = str_replace('<!--TxtContent-->', htmlspecialchars(curl_request($files[$_SERVER['DownurlStrName']])['body']), $html);
|
|
||||||
$html = str_replace('<!--constStr@FileNotSupport-->', getconstStr('FileNotSupport'), $html);
|
|
||||||
|
|
||||||
|
|
||||||
//$html = str_replace('<!--constStr@File-->', getconstStr('File'), $html);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$html = str_replace('<!--constStr@language-->', $constStr['language'], $html);
|
$html = str_replace('<!--constStr@language-->', $constStr['language'], $html);
|
||||||
@@ -2390,16 +2564,25 @@ function render_list($path = '', $files = '')
|
|||||||
$html = $tmp[0];
|
$html = $tmp[0];
|
||||||
$tmp = splitfirst($tmp[1], '<!--BackgroundEnd-->');
|
$tmp = splitfirst($tmp[1], '<!--BackgroundEnd-->');
|
||||||
if (getConfig('background')) {
|
if (getConfig('background')) {
|
||||||
$background = str_replace('<!--BackgroundUrl-->', getConfig('background'), $tmp[0]);
|
$html .= str_replace('<!--BackgroundUrl-->', getConfig('background'), $tmp[0]);
|
||||||
}
|
}
|
||||||
$html .= $background . $tmp[1];
|
$html .= $tmp[1];
|
||||||
|
|
||||||
|
$tmp = splitfirst($html, '<!--BackgroundMStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--BackgroundMEnd-->');
|
||||||
|
if (getConfig('backgroundm')) {
|
||||||
|
$html .= str_replace('<!--BackgroundMUrl-->', getConfig('backgroundm'), $tmp[0]);
|
||||||
|
}
|
||||||
|
$html .= $tmp[1];
|
||||||
|
|
||||||
$tmp = splitfirst($html, '<!--PathArrayStart-->');
|
$tmp = splitfirst($html, '<!--PathArrayStart-->');
|
||||||
$html = $tmp[0];
|
$html = $tmp[0];
|
||||||
|
if ($tmp[1]!='') {
|
||||||
$tmp = splitfirst($tmp[1], '<!--PathArrayEnd-->');
|
$tmp = splitfirst($tmp[1], '<!--PathArrayEnd-->');
|
||||||
$PathArrayStr = $tmp[0];
|
$PathArrayStr = $tmp[0];
|
||||||
$tmp_path = str_replace('%23', '#', str_replace('&','&', $path));
|
|
||||||
$tmp_url = $_SERVER['base_disk_path'];
|
$tmp_url = $_SERVER['base_disk_path'];
|
||||||
|
$tmp_path = str_replace('&','&', substr(urldecode($_SERVER['PHP_SELF']), strlen($tmp_url)));
|
||||||
while ($tmp_path!='') {
|
while ($tmp_path!='') {
|
||||||
$tmp1 = splitfirst($tmp_path, '/');
|
$tmp1 = splitfirst($tmp_path, '/');
|
||||||
$folder1 = $tmp1[0];
|
$folder1 = $tmp1[0];
|
||||||
@@ -2412,6 +2595,28 @@ function render_list($path = '', $files = '')
|
|||||||
$tmp_path = $tmp1[1];
|
$tmp_path = $tmp1[1];
|
||||||
}
|
}
|
||||||
$html .= $tmp[1];
|
$html .= $tmp[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
$tmp = splitfirst($html, '<!--DiskPathArrayStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
if ($tmp[1]!='') {
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--DiskPathArrayEnd-->');
|
||||||
|
$PathArrayStr = $tmp[0];
|
||||||
|
$tmp_url = $_SERVER['base_path'];
|
||||||
|
$tmp_path = str_replace('&','&', substr(urldecode($_SERVER['PHP_SELF']), strlen($tmp_url)));
|
||||||
|
while ($tmp_path!='') {
|
||||||
|
$tmp1 = splitfirst($tmp_path, '/');
|
||||||
|
$folder1 = $tmp1[0];
|
||||||
|
if ($folder1!='') {
|
||||||
|
$tmp_url .= $folder1 . '/';
|
||||||
|
$PathArrayStr1 = str_replace('<!--PathArrayLink-->', ($folder1==$files['name']?'':$tmp_url), $PathArrayStr);
|
||||||
|
$PathArrayStr1 = str_replace('<!--PathArrayName-->', ($folder1==$_SERVER['disktag']?(getConfig('diskname')==''?$_SERVER['disktag']:getConfig('diskname')):$folder1), $PathArrayStr1);
|
||||||
|
$html .= $PathArrayStr1;
|
||||||
|
}
|
||||||
|
$tmp_path = $tmp1[1];
|
||||||
|
}
|
||||||
|
$html .= $tmp[1];
|
||||||
|
}
|
||||||
|
|
||||||
$tmp = splitfirst($html, '<!--SelectLanguageStart-->');
|
$tmp = splitfirst($html, '<!--SelectLanguageStart-->');
|
||||||
$html = $tmp[0];
|
$html = $tmp[0];
|
||||||
@@ -2436,8 +2641,8 @@ function render_list($path = '', $files = '')
|
|||||||
$tmp = splitfirst($html, '<!--BackArrowStart-->');
|
$tmp = splitfirst($html, '<!--BackArrowStart-->');
|
||||||
$html = $tmp[0];
|
$html = $tmp[0];
|
||||||
$tmp = splitfirst($tmp[1], '<!--BackArrowEnd-->');
|
$tmp = splitfirst($tmp[1], '<!--BackArrowEnd-->');
|
||||||
if ($path !== '/') {
|
$current_url = path_format($_SERVER['PHP_SELF'] . '/');
|
||||||
$current_url = $_SERVER['PHP_SELF'];
|
if ($current_url !== $_SERVER['base_path']) {
|
||||||
while (substr($current_url, -1) === '/') {
|
while (substr($current_url, -1) === '/') {
|
||||||
$current_url = substr($current_url, 0, -1);
|
$current_url = substr($current_url, 0, -1);
|
||||||
}
|
}
|
||||||
@@ -2650,18 +2855,16 @@ function render_list($path = '', $files = '')
|
|||||||
$html = str_replace('<!--FootStr-->', date("Y-m-d H:i:s")." ".getconstStr('Week')[date("w")]." ".$_SERVER['REMOTE_ADDR'].' Runningtime:'.$exetime.'s Mem:'.size_format(memory_get_usage()), $html);
|
$html = str_replace('<!--FootStr-->', date("Y-m-d H:i:s")." ".getconstStr('Week')[date("w")]." ".$_SERVER['REMOTE_ADDR'].' Runningtime:'.$exetime.'s Mem:'.size_format(memory_get_usage()), $html);
|
||||||
}
|
}
|
||||||
|
|
||||||
$theme_arr = scandir('theme');
|
if ($_SERVER['admin']||!getConfig('disableChangeTheme')) {
|
||||||
|
$theme_arr = scandir(__DIR__.'/theme');
|
||||||
$html .= '
|
$html .= '
|
||||||
<div style="position: fixed;right: 10px;bottom: 10px;/*color: rgba(247,247,249,0);*/">
|
<div style="position: fixed;right: 10px;bottom: 10px;/*color: rgba(247,247,249,0);*/">
|
||||||
<select name="theme" onchange="changetheme(this.options[this.options.selectedIndex].value)">
|
<select name="theme" onchange="changetheme(this.options[this.options.selectedIndex].value)">
|
||||||
<option value="">'.getconstStr('Theme').'</option>';
|
<option value="">'.getconstStr('Theme').'</option>';
|
||||||
foreach ($theme_arr as $v1) {
|
foreach ($theme_arr as $v1) {
|
||||||
if ($v1!='.' && $v1!='..') $html .= '
|
if ($v1!='.' && $v1!='..') $html .= '
|
||||||
<option value="'.$v1.'" '.($v1==$theme?'selected="selected"':'').'>'.$v1.'</option>';
|
<option value="'.$v1.'"'.($v1==$theme?' selected="selected"':'').'>'.$v1.'</option>';
|
||||||
}
|
}
|
||||||
//$tmp = getConfig('customTheme');
|
|
||||||
//if ($tmp!='') $html .= '
|
|
||||||
// <option value="" '.($tmp==$theme?'selected="selected"':'').'>customTheme</option>';
|
|
||||||
$html .= '
|
$html .= '
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
@@ -2675,6 +2878,7 @@ function render_list($path = '', $files = '')
|
|||||||
location.href = location.href;
|
location.href = location.href;
|
||||||
}
|
}
|
||||||
</script>';
|
</script>';
|
||||||
|
}
|
||||||
|
|
||||||
$html = $authinfo . $html;
|
$html = $authinfo . $html;
|
||||||
if (isset($_SERVER['Set-Cookie'])) return output($html, $statusCode, [ 'Set-Cookie' => $_SERVER['Set-Cookie'], 'Content-Type' => 'text/html' ]);
|
if (isset($_SERVER['Set-Cookie'])) return output($html, $statusCode, [ 'Set-Cookie' => $_SERVER['Set-Cookie'], 'Content-Type' => 'text/html' ]);
|
||||||
|
|||||||
+19
-2
@@ -1,5 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
global $exts;
|
||||||
|
global $constStr;
|
||||||
|
|
||||||
$exts['img'] = ['ico', 'bmp', 'gif', 'jpg', 'jpeg', 'jpe', 'jfif', 'tif', 'tiff', 'png', 'heic', 'webp'];
|
$exts['img'] = ['ico', 'bmp', 'gif', 'jpg', 'jpeg', 'jpe', 'jfif', 'tif', 'tiff', 'png', 'heic', 'webp'];
|
||||||
$exts['music'] = ['mp3', 'wma', 'flac', 'ape', 'wav', 'ogg', 'm4a'];
|
$exts['music'] = ['mp3', 'wma', 'flac', 'ape', 'wav', 'ogg', 'm4a'];
|
||||||
$exts['office'] = ['doc', 'docx', 'xls', 'xlsx', 'ppt', 'pptx'];
|
$exts['office'] = ['doc', 'docx', 'xls', 'xlsx', 'ppt', 'pptx'];
|
||||||
@@ -10,7 +13,7 @@ $exts['zip'] = ['zip', 'rar', '7z', 'gz', 'tar'];
|
|||||||
$constStr = [
|
$constStr = [
|
||||||
'languages' => [
|
'languages' => [
|
||||||
'en-us' => 'English',
|
'en-us' => 'English',
|
||||||
'zh-cn' => '中文',
|
'zh-cn' => '简体中文',
|
||||||
'ja' => '日本語',
|
'ja' => '日本語',
|
||||||
'ko-kr' => '한국어',
|
'ko-kr' => '한국어',
|
||||||
'fa' => 'فارسی',
|
'fa' => 'فارسی',
|
||||||
@@ -66,6 +69,7 @@ $constStr = [
|
|||||||
'en-us' => [
|
'en-us' => [
|
||||||
'admin' => 'The admin password, Login button will not show when empty',
|
'admin' => 'The admin password, Login button will not show when empty',
|
||||||
'adminloginpage' => 'if set, the Login button will not display, and the login page no longer \'?admin\', it is \'?{this value}\'.',
|
'adminloginpage' => 'if set, the Login button will not display, and the login page no longer \'?admin\', it is \'?{this value}\'.',
|
||||||
|
'autoJumpFirstDisk' => 'used in multy disks, if 1, auto jump to first disk',
|
||||||
'customScript' => '<script> in all pages, e.g. http turn to https',
|
'customScript' => '<script> in all pages, e.g. http turn to https',
|
||||||
'customCss' => '<style> in <head>',
|
'customCss' => '<style> in <head>',
|
||||||
'customTheme' => 'an url of html',
|
'customTheme' => 'an url of html',
|
||||||
@@ -73,8 +77,10 @@ $constStr = [
|
|||||||
'diskname' => 'The disk name you want show.',
|
'diskname' => 'The disk name you want show.',
|
||||||
'disktag' => 'A tag used in store config and url.',
|
'disktag' => 'A tag used in store config and url.',
|
||||||
'disableShowThumb' => 'if 1, the ShowThumbnail button will not display',
|
'disableShowThumb' => 'if 1, the ShowThumbnail button will not display',
|
||||||
|
'disableChangeTheme' => 'if 1, the Theme selection button will not display',
|
||||||
'downloadencrypt' => '0 or 1. if 1, the files in encrypt folder can be downloaded without password',
|
'downloadencrypt' => '0 or 1. if 1, the files in encrypt folder can be downloaded without password',
|
||||||
'background' => 'Set an url as background photo.',
|
'background' => 'Set an url as background photo.',
|
||||||
|
'backgroundm' => 'Set an url as background in mobile phone.',
|
||||||
'theme' => 'Select theme.',
|
'theme' => 'Select theme.',
|
||||||
'timezone' => 'Set default timezone.',
|
'timezone' => 'Set default timezone.',
|
||||||
'guestup_path' => 'Set guest upload dir, before set this, the files in this dir will show as normal.',
|
'guestup_path' => 'Set guest upload dir, before set this, the files in this dir will show as normal.',
|
||||||
@@ -88,6 +94,7 @@ $constStr = [
|
|||||||
'zh-cn' => [
|
'zh-cn' => [
|
||||||
'admin' => '管理密码,不添加时不显示登录页面且无法登录。',
|
'admin' => '管理密码,不添加时不显示登录页面且无法登录。',
|
||||||
'adminloginpage' => '如果设置,登录按钮及页面隐藏。管理登录的页面不再是\'?admin\',而是\'?此设置的值\'。',
|
'adminloginpage' => '如果设置,登录按钮及页面隐藏。管理登录的页面不再是\'?admin\',而是\'?此设置的值\'。',
|
||||||
|
'autoJumpFirstDisk' => '用于多盘,如果设1,将会自动跳到第一个盘。',
|
||||||
'customScript' => '<script>,在所有页都会存在,例如放一个http跳转https',
|
'customScript' => '<script>,在所有页都会存在,例如放一个http跳转https',
|
||||||
'customCss' => '<style>,在<head>最后面',
|
'customCss' => '<style>,在<head>最后面',
|
||||||
'customTheme' => 'html格式的主题的url',
|
'customTheme' => 'html格式的主题的url',
|
||||||
@@ -95,8 +102,10 @@ $constStr = [
|
|||||||
'diskname' => '这个盘你想显示什么名称。',
|
'diskname' => '这个盘你想显示什么名称。',
|
||||||
'disktag' => '一个标签,用于保存配置,多盘时会显示在url中。',
|
'disktag' => '一个标签,用于保存配置,多盘时会显示在url中。',
|
||||||
'disableShowThumb' => '如果填 1, ‘显示缩略’按钮将被隐藏。',
|
'disableShowThumb' => '如果填 1, ‘显示缩略’按钮将被隐藏。',
|
||||||
|
'disableChangeTheme' => '如果填 1, 主题选择切换将被隐藏',
|
||||||
'downloadencrypt' => '0 或 1。如果 1, 那加密目录内的文件可以不需要密码就能下载。',
|
'downloadencrypt' => '0 或 1。如果 1, 那加密目录内的文件可以不需要密码就能下载。',
|
||||||
'background' => '设置一个url作为背景。',
|
'background' => '设置一个url作为背景。',
|
||||||
|
'backgroundm' => '设置一个url作为手机用的背景。',
|
||||||
'theme' => '选择一个主题。',
|
'theme' => '选择一个主题。',
|
||||||
'timezone' => '设置默认时区。',
|
'timezone' => '设置默认时区。',
|
||||||
'guestup_path' => '设置游客上传路径(图床路径),不设置这个值时该目录内容会正常列文件出来,设置后只有上传界面,不显示其中文件(登录后显示)。',
|
'guestup_path' => '设置游客上传路径(图床路径),不设置这个值时该目录内容会正常列文件出来,设置后只有上传界面,不显示其中文件(登录后显示)。',
|
||||||
@@ -204,7 +213,7 @@ $constStr = [
|
|||||||
'zh-cn' => '先在环境变量设置passfile才能加密',
|
'zh-cn' => '先在环境变量设置passfile才能加密',
|
||||||
'ja' => '最初に暗号化する環境変数にパスファイルを設定します',
|
'ja' => '最初に暗号化する環境変数にパスファイルを設定します',
|
||||||
'ko-kr' => '암호화하기 전에 환경 변수에 패스 파일을 설정하십시오',
|
'ko-kr' => '암호화하기 전에 환경 변수에 패스 파일을 설정하십시오',
|
||||||
'fa' => 'قبل از رمزگذاری \ "pass file \" را در محیط تنظیم کنید',
|
'fa' => 'قبل از رمزگذاری \"pass file \" را در محیط تنظیم کنید',
|
||||||
],
|
],
|
||||||
'updateProgram' => [
|
'updateProgram' => [
|
||||||
'en-us' => 'Update Program',
|
'en-us' => 'Update Program',
|
||||||
@@ -787,4 +796,12 @@ $constStr = [
|
|||||||
'en-us' => 'Query Branchs',
|
'en-us' => 'Query Branchs',
|
||||||
'zh-cn' => '查询分支',
|
'zh-cn' => '查询分支',
|
||||||
],
|
],
|
||||||
|
'ONEMANAGER_CONFIG_SAVE_ENV' => [
|
||||||
|
'en-us' => 'Config save in Environments',
|
||||||
|
'zh-cn' => '配置保存在环境变量',
|
||||||
|
],
|
||||||
|
'ONEMANAGER_CONFIG_SAVE_FILE' => [
|
||||||
|
'en-us' => 'Config save in code file, may cause fee',
|
||||||
|
'zh-cn' => '配置保存在代码文件中,可能产生费用',
|
||||||
|
],
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -6,10 +6,18 @@ include 'common.php';
|
|||||||
|
|
||||||
//echo '<pre>'. json_encode($_SERVER, JSON_PRETTY_PRINT).'</pre>';
|
//echo '<pre>'. json_encode($_SERVER, JSON_PRETTY_PRINT).'</pre>';
|
||||||
if (isset($_SERVER['USER'])&&$_SERVER['USER']==='qcloud') {
|
if (isset($_SERVER['USER'])&&$_SERVER['USER']==='qcloud') {
|
||||||
include 'platform/TencentSCF.php';
|
if (getenv('ONEMANAGER_CONFIG_SAVE')=='file') include 'platform/TencentSCF_file.php';
|
||||||
|
else include 'platform/TencentSCF_env.php';
|
||||||
} elseif (isset($_SERVER['FC_SERVER_PATH'])&&$_SERVER['FC_SERVER_PATH']==='/var/fc/runtime/php7.2') {
|
} elseif (isset($_SERVER['FC_SERVER_PATH'])&&$_SERVER['FC_SERVER_PATH']==='/var/fc/runtime/php7.2') {
|
||||||
//echo '<pre>'. json_encode($_SERVER, JSON_PRETTY_PRINT).'</pre>';
|
|
||||||
include 'platform/AliyunFC.php';
|
include 'platform/AliyunFC.php';
|
||||||
|
} elseif ($_SERVER['_APP_SHARE_DIR']=='/var/share/CFF/processrouter') {
|
||||||
|
//if (getenv('ONEMANAGER_CONFIG_SAVE')=='file') include 'platform/HuaweiFG_file.php';
|
||||||
|
//else include 'platform/HuaweiFG_env.php';
|
||||||
|
echo 'FG' . PHP_EOL;
|
||||||
|
} elseif ($_SERVER['BCE_CFC_RUNTIME_NAME']=='php7') {
|
||||||
|
//set_include_path(get_include_path() . PATH_SEPARATOR . '/opt/php');
|
||||||
|
//include 'BaiduBce.phar';
|
||||||
|
include 'platform/BaiduCFC.php';
|
||||||
} elseif (isset($_SERVER['HEROKU_APP_DIR'])&&$_SERVER['HEROKU_APP_DIR']==='/app') {
|
} elseif (isset($_SERVER['HEROKU_APP_DIR'])&&$_SERVER['HEROKU_APP_DIR']==='/app') {
|
||||||
include 'platform/Heroku.php';
|
include 'platform/Heroku.php';
|
||||||
$path = getpath();
|
$path = getpath();
|
||||||
@@ -56,19 +64,22 @@ function main_handler($event, $context)
|
|||||||
return main($path);
|
return main($path);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Aliyun FC
|
// Aliyun FC & Huawei FG & Baidu CFC
|
||||||
function handler($request, $context)
|
function handler($event, $context)
|
||||||
{
|
{
|
||||||
|
if (isset($_SERVER['FC_SERVER_PATH'])&&$_SERVER['FC_SERVER_PATH']==='/var/fc/runtime/php7.2') {
|
||||||
|
// Aliyun FC
|
||||||
set_error_handler("myErrorHandler");
|
set_error_handler("myErrorHandler");
|
||||||
$event = array(
|
$tmp = array(
|
||||||
'method' => $request->getMethod(),
|
'method' => $event->getMethod(),
|
||||||
'clientIP' => $request->getAttribute("clientIP"),
|
'clientIP' => $event->getAttribute("clientIP"),
|
||||||
'requestURI' => $request->getAttribute("requestURI"),
|
'eventURI' => $event->getAttribute("eventURI"),
|
||||||
'path' => spurlencode($request->getAttribute("path"), '/'),
|
'path' => spurlencode($event->getAttribute("path"), '/'),
|
||||||
'queryString' => $request->getQueryParams(),
|
'queryString' => $event->getQueryParams(),
|
||||||
'headers' => $request->getHeaders(),
|
'headers' => $event->getHeaders(),
|
||||||
'body' => $request->getBody()->getContents(),
|
'body' => $event->getBody()->getContents(),
|
||||||
);
|
);
|
||||||
|
$event = $tmp;
|
||||||
$context = json_decode(json_encode($context), true);
|
$context = json_decode(json_encode($context), true);
|
||||||
printInput($event, $context);
|
printInput($event, $context);
|
||||||
unset($_POST);
|
unset($_POST);
|
||||||
@@ -81,6 +92,49 @@ function handler($request, $context)
|
|||||||
$re = main($path);
|
$re = main($path);
|
||||||
|
|
||||||
return new RingCentral\Psr7\Response($re['statusCode'], $re['headers'], $re['body']);
|
return new RingCentral\Psr7\Response($re['statusCode'], $re['headers'], $re['body']);
|
||||||
|
|
||||||
|
} elseif ($_SERVER['_APP_SHARE_DIR']=='/var/share/CFF/processrouter') {
|
||||||
|
// Huawei FG
|
||||||
|
global $contextUserData;
|
||||||
|
$contextUserData = $context;
|
||||||
|
if ($context->getUserData('ONEMANAGER_CONFIG_SAVE')=='file') include_once 'platform/HuaweiFG_file.php';
|
||||||
|
else include_once 'platform/HuaweiFG_env.php';
|
||||||
|
|
||||||
|
$event = json_decode(json_encode($event), true);
|
||||||
|
if ($event['isBase64Encoded']) $event['body'] = base64_decode($event['body']);
|
||||||
|
|
||||||
|
printInput($event, $context);
|
||||||
|
unset($_POST);
|
||||||
|
unset($_GET);
|
||||||
|
unset($_COOKIE);
|
||||||
|
unset($_SERVER);
|
||||||
|
GetGlobalVariable($event);
|
||||||
|
//echo '<pre>'. json_encode($_COOKIE, JSON_PRETTY_PRINT).'</pre>';
|
||||||
|
$path = GetPathSetting($event, $context);
|
||||||
|
|
||||||
|
return main($path);
|
||||||
|
|
||||||
|
} elseif ($_SERVER['BCE_CFC_RUNTIME_NAME']=='php7') {
|
||||||
|
// Baidu CFC
|
||||||
|
//$html = '<pre>'. json_encode($event, JSON_PRETTY_PRINT).'</pre>';
|
||||||
|
//$html .= '<pre>'. json_encode($context, JSON_PRETTY_PRINT).'</pre>';
|
||||||
|
//$html .= '<pre>'. json_encode($_SERVER, JSON_PRETTY_PRINT).'</pre>';
|
||||||
|
//$html .= $event['path'];
|
||||||
|
//$html .= $context['functionBrn'];
|
||||||
|
//return json_encode(output($html), JSON_FORCE_OBJECT);
|
||||||
|
|
||||||
|
printInput($event, $context);
|
||||||
|
unset($_POST);
|
||||||
|
unset($_GET);
|
||||||
|
unset($_COOKIE);
|
||||||
|
unset($_SERVER);
|
||||||
|
GetGlobalVariable($event);
|
||||||
|
//echo '<pre>'. json_encode($_COOKIE, JSON_PRETTY_PRINT).'</pre>';
|
||||||
|
$path = GetPathSetting($event, $context);
|
||||||
|
|
||||||
|
return json_encode(main($path), JSON_FORCE_OBJECT);
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// used by Aliyun FC
|
// used by Aliyun FC
|
||||||
@@ -105,6 +159,5 @@ function myErrorHandler($errno, $errstr, $errfile, $errline) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Don't execute PHP internal error handler */
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
+121
-71
@@ -2,8 +2,6 @@
|
|||||||
// https://help.aliyun.com/document_detail/53252.html
|
// https://help.aliyun.com/document_detail/53252.html
|
||||||
// https://github.com/aliyun/fc-php-sdk/blob/master/src/AliyunFC/Client.php
|
// https://github.com/aliyun/fc-php-sdk/blob/master/src/AliyunFC/Client.php
|
||||||
|
|
||||||
use AliyunFC\Client;
|
|
||||||
|
|
||||||
function printInput($event, $context)
|
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);
|
if (strlen(json_encode($event['body']))>500) $event['body']=substr($event['body'],0,strpos($event['body'],'base64')+30) . '...Too Long!...' . substr($event['body'],-50);
|
||||||
@@ -61,11 +59,11 @@ function getConfig($str, $disktag = '')
|
|||||||
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
$env = json_decode(getenv($disktag), true);
|
$env = json_decode(getenv($disktag), true);
|
||||||
if (isset($env[$str])) {
|
if (isset($env[$str])) {
|
||||||
if (in_array($str, $Base64Env)) return equal_replace($env[$str],1);
|
if (in_array($str, $Base64Env)) return base64y_decode($env[$str]);
|
||||||
else return $env[$str];
|
else return $env[$str];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (in_array($str, $Base64Env)) return equal_replace(getenv($str),1);
|
if (in_array($str, $Base64Env)) return base64y_decode(getenv($str));
|
||||||
else return getenv($str);
|
else return getenv($str);
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
@@ -83,7 +81,7 @@ function setConfig($arr, $disktag = '')
|
|||||||
$oparetdisk = 0;
|
$oparetdisk = 0;
|
||||||
foreach ($arr as $k => $v) {
|
foreach ($arr as $k => $v) {
|
||||||
if (in_array($k, $InnerEnv)) {
|
if (in_array($k, $InnerEnv)) {
|
||||||
if (in_array($k, $Base64Env)) $diskconfig[$k] = equal_replace($v);
|
if (in_array($k, $Base64Env)) $diskconfig[$k] = base64y_encode($v);
|
||||||
else $diskconfig[$k] = $v;
|
else $diskconfig[$k] = $v;
|
||||||
$indisk = 1;
|
$indisk = 1;
|
||||||
} elseif ($k=='disktag_add') {
|
} elseif ($k=='disktag_add') {
|
||||||
@@ -94,7 +92,7 @@ function setConfig($arr, $disktag = '')
|
|||||||
$tmp[$v] = '';
|
$tmp[$v] = '';
|
||||||
$oparetdisk = 1;
|
$oparetdisk = 1;
|
||||||
} else {
|
} else {
|
||||||
if (in_array($k, $Base64Env)) $tmp[$k] = equal_replace($v);
|
if (in_array($k, $Base64Env)) $tmp[$k] = base64y_encode($v);
|
||||||
else $tmp[$k] = $v;
|
else $tmp[$k] = $v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -121,12 +119,31 @@ function install()
|
|||||||
global $constStr;
|
global $constStr;
|
||||||
if ($_GET['install2']) {
|
if ($_GET['install2']) {
|
||||||
$tmp['admin'] = $_POST['admin'];
|
$tmp['admin'] = $_POST['admin'];
|
||||||
setConfig($tmp);
|
$response = setConfigResponse( setConfig($tmp) );
|
||||||
|
if (api_error($response)) {
|
||||||
|
$html = api_error_msg($response);
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
if (needUpdate()) {
|
if (needUpdate()) {
|
||||||
OnekeyUpate();
|
OnekeyUpate();
|
||||||
return message('update to github version, reinstall.<script>document.cookie=\'language=; path=/\';</script><meta http-equiv="refresh" content="3;URL=' . $url . '">', 'Program updating', 201);
|
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>document.cookie=\'language=; path=/\';</script><meta http-equiv="refresh" content="3;URL=' . path_format($_SERVER['base_path'] . '/') . '">', 302);
|
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']) {
|
if ($_GET['install1']) {
|
||||||
//if ($_POST['admin']!='') {
|
//if ($_POST['admin']!='') {
|
||||||
@@ -141,7 +158,7 @@ function install()
|
|||||||
$AccessKeySecret = $_POST['AccessKeySecret'];
|
$AccessKeySecret = $_POST['AccessKeySecret'];
|
||||||
$tmp['AccessKeySecret'] = $AccessKeySecret;
|
$tmp['AccessKeySecret'] = $AccessKeySecret;
|
||||||
}
|
}
|
||||||
$response = SetbaseConfig($tmp, $_SERVER['accountId'], $_SERVER['region'], $_SERVER['service_name'], $_SERVER['function_name'], $AccessKeyID, $AccessKeySecret);
|
$response = setConfigResponse( SetbaseConfig($tmp, $_SERVER['accountId'], $_SERVER['region'], $_SERVER['service_name'], $_SERVER['function_name'], $AccessKeyID, $AccessKeySecret) );
|
||||||
if (api_error($response)) {
|
if (api_error($response)) {
|
||||||
$html = api_error_msg($response);
|
$html = api_error_msg($response);
|
||||||
$title = 'Error';
|
$title = 'Error';
|
||||||
@@ -191,7 +208,10 @@ language:<br>';
|
|||||||
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
function changelanguage(str)
|
function changelanguage(str)
|
||||||
{
|
{
|
||||||
document.cookie=\'language=\'+str+\'; path=/\';
|
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;
|
location.href = location.href;
|
||||||
}
|
}
|
||||||
function notnull(t)
|
function notnull(t)
|
||||||
@@ -217,26 +237,71 @@ language:<br>';
|
|||||||
return message($html, $title, 201);
|
return message($html, $title, 201);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getfunctioninfo($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)
|
function FCAPI2016($config, $Method, $data = '')
|
||||||
{
|
{
|
||||||
$fcClient = new Client([
|
$accountId = $config['accountId'];
|
||||||
"endpoint" => 'https://'.$accountId.'.'.$region.'.fc.aliyuncs.com',
|
$region = $config['region'];
|
||||||
"accessKeyID" => $AccessKeyID,
|
$service_name = $config['service_name'];
|
||||||
"accessKeySecret" => $AccessKeySecret
|
$function_name = $config['function_name'];
|
||||||
]);
|
$AccessKeyID = $config['AccessKeyID'];
|
||||||
return $fcClient->getFunction($service_name, $function_name);
|
$AccessKeySecret = $config['AccessKeySecret'];
|
||||||
|
|
||||||
|
$host = $accountId . '.' . $region . '-internal.fc.aliyuncs.com';
|
||||||
|
$path = '/2016-08-15/services/' . $service_name . '/functions/' . $function_name;
|
||||||
|
$url = 'https://' . $host . $path;
|
||||||
|
|
||||||
|
$ContentMd5 = '';
|
||||||
|
$ContentType = 'application/json';
|
||||||
|
date_default_timezone_set('UTC'); // unset last timezone setting
|
||||||
|
$Date = substr(gmdate("r", time()), 0, -5) . 'GMT';
|
||||||
|
$CanonicalizedFCHeaders = '';
|
||||||
|
$CanonicalizedResource = $path;
|
||||||
|
|
||||||
|
$signaturestr = $Method . "\n" . $ContentMd5 . "\n" . $ContentType . "\n" . $Date . "\n" . $CanonicalizedFCHeaders . $CanonicalizedResource;
|
||||||
|
$signature = base64_encode(hash_hmac('sha256', $signaturestr, $AccessKeySecret, true));
|
||||||
|
|
||||||
|
$header['Host'] = $host;
|
||||||
|
$header['Date'] = $Date;
|
||||||
|
$header['Content-Type'] = $ContentType;
|
||||||
|
$header['Authorization'] = 'FC ' . $AccessKeyID . ':' . $signature;
|
||||||
|
$header['Content-Length'] = strlen($data);
|
||||||
|
|
||||||
|
//return curl($Method, $url, $data, $header)['body'];
|
||||||
|
$p = 0;
|
||||||
|
while ($response['stat']==0 && $p<3) {
|
||||||
|
$response = curl($Method, $url, $data, $header);
|
||||||
|
$p++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($response['stat']==0) {
|
||||||
|
$tmp['ErrorCode'] = 'Network Error';
|
||||||
|
$tmp['ErrorMessage'] = 'Can not connect ' . $host;
|
||||||
|
return json_encode($tmp);
|
||||||
|
}
|
||||||
|
if ($response['stat']!=200) {
|
||||||
|
$tmp = json_decode($response['body'], true);
|
||||||
|
$tmp['ErrorMessage'] .= '<br>' . $response['stat'] . '<br>' . $signaturestr . '<br>' . json_encode($header) . PHP_EOL;
|
||||||
|
return json_encode($tmp);
|
||||||
|
}
|
||||||
|
return $response['body'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function getfunctioninfo($config)
|
||||||
|
{
|
||||||
|
return FCAPI2016($config, 'GET');
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateEnvironment($Envs, $accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)
|
function updateEnvironment($Envs, $accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)
|
||||||
{
|
{
|
||||||
//print_r($Envs);
|
//print_r($Envs);
|
||||||
$fcClient = new Client([
|
$config['accountId'] = $accountId;
|
||||||
"endpoint" => 'https://'.$accountId.'.'.$region.'.fc.aliyuncs.com',
|
$config['region'] = $region;
|
||||||
"accessKeyID" => $AccessKeyID,
|
$config['service_name'] = $service_name;
|
||||||
"accessKeySecret" => $AccessKeySecret
|
$config['function_name'] = $function_name;
|
||||||
]);
|
$config['AccessKeyID'] = $AccessKeyID;
|
||||||
$tmp = $fcClient->getFunction($service_name, $function_name)['data'];
|
$config['AccessKeySecret'] = $AccessKeySecret;
|
||||||
//$tmp = getfunctioninfo($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)['data'];
|
|
||||||
|
$tmp = json_decode(getfunctioninfo($config), true);
|
||||||
foreach ($tmp['environmentVariables'] as $key => $value ) {
|
foreach ($tmp['environmentVariables'] as $key => $value ) {
|
||||||
$tmp_env[$key] = $value;
|
$tmp_env[$key] = $value;
|
||||||
}
|
}
|
||||||
@@ -246,27 +311,20 @@ function updateEnvironment($Envs, $accountId, $region, $service_name, $function_
|
|||||||
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
||||||
ksort($tmp_env);
|
ksort($tmp_env);
|
||||||
|
|
||||||
$tmpdata['functionName'] = $tmp['functionName'];
|
|
||||||
$tmpdata['description'] = $tmp['description'];
|
|
||||||
$tmpdata['memorySize'] = $tmp['memorySize'];
|
|
||||||
$tmpdata['timeout'] = $tmp['timeout'];
|
|
||||||
$tmpdata['runtime'] = $tmp['runtime'];
|
|
||||||
$tmpdata['handler'] = $tmp['handler'];
|
|
||||||
$tmpdata['environmentVariables'] = $tmp_env;
|
$tmpdata['environmentVariables'] = $tmp_env;
|
||||||
$tmpdata['code']['zipFile'] = base64_encode( file_get_contents($fcClient->getFunctionCode($service_name, $function_name)['data']['url']) );
|
return FCAPI2016($config, 'PUT', json_encode($tmpdata));
|
||||||
return $fcClient->updateFunction($service_name, $function_name, $tmpdata);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function SetbaseConfig($Envs, $accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)
|
function SetbaseConfig($Envs, $accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)
|
||||||
{
|
{
|
||||||
//echo json_encode($Envs,JSON_PRETTY_PRINT);
|
$config['accountId'] = $accountId;
|
||||||
$fcClient = new Client([
|
$config['region'] = $region;
|
||||||
"endpoint" => 'https://'.$accountId.'.'.$region.'.fc.aliyuncs.com',
|
$config['service_name'] = $service_name;
|
||||||
"accessKeyID" => $AccessKeyID,
|
$config['function_name'] = $function_name;
|
||||||
"accessKeySecret" => $AccessKeySecret
|
$config['AccessKeyID'] = $AccessKeyID;
|
||||||
]);
|
$config['AccessKeySecret'] = $AccessKeySecret;
|
||||||
$tmp = $fcClient->getFunction($service_name, $function_name)['data'];
|
|
||||||
// $tmp = getfunctioninfo($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)['data'];
|
$tmp = json_decode(getfunctioninfo($config), true);
|
||||||
foreach ($tmp['environmentVariables'] as $key => $value ) {
|
foreach ($tmp['environmentVariables'] as $key => $value ) {
|
||||||
$tmp_env[$key] = $value;
|
$tmp_env[$key] = $value;
|
||||||
}
|
}
|
||||||
@@ -276,59 +334,51 @@ function SetbaseConfig($Envs, $accountId, $region, $service_name, $function_name
|
|||||||
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
||||||
ksort($tmp_env);
|
ksort($tmp_env);
|
||||||
|
|
||||||
$tmpdata['functionName'] = $function_name;
|
$tmpdata['description'] = 'Onedrive index and manager in Aliyun FC.';
|
||||||
$tmpdata['description'] = 'Onedrive index and manager in Ali FC.';
|
|
||||||
$tmpdata['memorySize'] = 128;
|
$tmpdata['memorySize'] = 128;
|
||||||
$tmpdata['timeout'] = 30;
|
$tmpdata['timeout'] = 30;
|
||||||
$tmpdata['runtime'] = 'php7.2';
|
|
||||||
$tmpdata['handler'] = 'index.handler';
|
|
||||||
$tmpdata['environmentVariables'] = $tmp_env;
|
$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);
|
return FCAPI2016($config, 'PUT', json_encode($tmpdata));
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateProgram($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret, $source)
|
function updateProgram($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret, $source)
|
||||||
{
|
{
|
||||||
//WaitSCFStat();
|
$config['accountId'] = $accountId;
|
||||||
$fcClient = new Client([
|
$config['region'] = $region;
|
||||||
"endpoint" => 'https://'.$accountId.'.'.$region.'.fc.aliyuncs.com',
|
$config['service_name'] = $service_name;
|
||||||
"accessKeyID" => $AccessKeyID,
|
$config['function_name'] = $function_name;
|
||||||
"accessKeySecret" => $AccessKeySecret
|
$config['AccessKeyID'] = $AccessKeyID;
|
||||||
]);
|
$config['AccessKeySecret'] = $AccessKeySecret;
|
||||||
$tmp = $fcClient->getFunction($service_name, $function_name)['data'];
|
|
||||||
//$tmp = getfunctioninfo($accountId, $region, $service_name, $function_name, $AccessKeyID, $AccessKeySecret)['data'];
|
$tmp = json_decode(getfunctioninfo($config), true);
|
||||||
|
|
||||||
$tmpdata['functionName'] = $tmp['functionName'];
|
|
||||||
$tmpdata['description'] = $tmp['description'];
|
|
||||||
$tmpdata['memorySize'] = $tmp['memorySize'];
|
|
||||||
$tmpdata['timeout'] = $tmp['timeout'];
|
|
||||||
$tmpdata['runtime'] = $tmp['runtime'];
|
|
||||||
$tmpdata['handler'] = $tmp['handler'];
|
|
||||||
$tmpdata['environmentVariables'] = $tmp['environmentVariables'];
|
|
||||||
$tmpdata['code']['zipFile'] = base64_encode( file_get_contents($source) );
|
$tmpdata['code']['zipFile'] = base64_encode( file_get_contents($source) );
|
||||||
|
|
||||||
return $fcClient->updateFunction($service_name, $function_name, $tmpdata);
|
return FCAPI2016($config, 'PUT', json_encode($tmpdata));
|
||||||
}
|
}
|
||||||
|
|
||||||
function api_error($response)
|
function api_error($response)
|
||||||
{
|
{
|
||||||
return !isset($response['data']);
|
return isset($response['ErrorMessage']);
|
||||||
}
|
}
|
||||||
|
|
||||||
function api_error_msg($response)
|
function api_error_msg($response)
|
||||||
{
|
{
|
||||||
return json_encode( $response, JSON_PRETTY_PRINT );
|
return $response['ErrorCode'] . '<br>
|
||||||
return $response['Error']['Code'] . '<br>
|
' . $response['ErrorMessage'] . '<br><br>
|
||||||
' . $response['Error']['Message'] . '<br><br>
|
|
||||||
|
accountId:' . $_SERVER['accountId'] . '<br>
|
||||||
|
region:' . $_SERVER['region'] . '<br>
|
||||||
|
service_name:' . $_SERVER['service_name'] . '<br>
|
||||||
function_name:' . $_SERVER['function_name'] . '<br>
|
function_name:' . $_SERVER['function_name'] . '<br>
|
||||||
Region:' . $_SERVER['Region'] . '<br>
|
|
||||||
namespace:' . $_SERVER['namespace'] . '<br>
|
|
||||||
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
|
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function setConfigResponse($response)
|
function setConfigResponse($response)
|
||||||
{
|
{
|
||||||
return $response;
|
return json_decode($response, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
||||||
@@ -337,7 +387,7 @@ function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch =
|
|||||||
$outPath = '/tmp/';
|
$outPath = '/tmp/';
|
||||||
|
|
||||||
// 从github下载对应tar.gz,并解压
|
// 从github下载对应tar.gz,并解压
|
||||||
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . $branch . '/';
|
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
|
||||||
$tarfile = '/tmp/github.tar.gz';
|
$tarfile = '/tmp/github.tar.gz';
|
||||||
file_put_contents($tarfile, file_get_contents($url));
|
file_put_contents($tarfile, file_get_contents($url));
|
||||||
$phar = new PharData($tarfile);
|
$phar = new PharData($tarfile);
|
||||||
|
|||||||
@@ -0,0 +1,407 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
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));
|
||||||
|
}
|
||||||
|
$_SERVER['HTTP_USER_AGENT'] = $event['headers']['User-Agent'];
|
||||||
|
$_SERVER['HTTP_TRANSLATE'] = $event['headers']['translate'];//'f'
|
||||||
|
$_SERVER['BCE_CFC_RUNTIME_NAME'] = 'php7';
|
||||||
|
}
|
||||||
|
|
||||||
|
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'];
|
||||||
|
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['requestContext']['sourceIp'];
|
||||||
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = $event['headers']['X-Requested-With'];
|
||||||
|
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 base64y_decode($env[$str]);
|
||||||
|
else return $env[$str];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (in_array($str, $Base64Env)) return base64y_decode(getenv($str));
|
||||||
|
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] = base64y_encode($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] = base64y_encode($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, 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'];
|
||||||
|
$SecretId = getConfig('SecretId');
|
||||||
|
if ($SecretId=='') {
|
||||||
|
$SecretId = $_POST['SecretId'];
|
||||||
|
$tmp['SecretId'] = $SecretId;
|
||||||
|
}
|
||||||
|
$SecretKey = getConfig('SecretKey');
|
||||||
|
if ($SecretKey=='') {
|
||||||
|
$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, 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>';
|
||||||
|
}
|
||||||
|
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>
|
||||||
|
<label>Access Key:<input name="SecretId" type="text" placeholder="" size=""></label><br>
|
||||||
|
<label>Secret Key:<input name="SecretKey" type="text" placeholder="" size=""></label><br>';
|
||||||
|
$html .= '
|
||||||
|
<input type="submit" value="'.getconstStr('Submit').'">
|
||||||
|
</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)
|
||||||
|
{';
|
||||||
|
if (getConfig('SecretId')==''||getConfig('SecretKey')=='') $html .= '
|
||||||
|
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');
|
||||||
|
$title = 'Error';
|
||||||
|
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. 清除空值
|
||||||
|
ksort($tmp_env);
|
||||||
|
|
||||||
|
$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'];
|
||||||
|
else $html = var_dump($response);
|
||||||
|
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 );
|
||||||
|
}
|
||||||
|
|
||||||
|
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
||||||
|
{
|
||||||
|
$source = '/tmp/code.zip';
|
||||||
|
$outPath = '/tmp/';
|
||||||
|
|
||||||
|
// 从github下载对应tar.gz,并解压
|
||||||
|
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
|
||||||
|
$tarfile = '/tmp/github.tar.gz';
|
||||||
|
file_put_contents($tarfile, file_get_contents($url));
|
||||||
|
$phar = new PharData($tarfile);
|
||||||
|
$html = $phar->extractTo($outPath, null, true);//路径 要解压的文件 是否覆盖
|
||||||
|
|
||||||
|
// 获取包中目录名
|
||||||
|
$tmp = scandir('phar://'.$tarfile);
|
||||||
|
$name = $auth.'-'.$project;
|
||||||
|
foreach ($tmp as $f) {
|
||||||
|
if ( substr($f, 0, strlen($name)) == $name) {
|
||||||
|
$outPath .= $f;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 放入配置文件
|
||||||
|
//file_put_contents($outPath . '/config.php', file_get_contents(__DIR__.'/../config.php'));
|
||||||
|
|
||||||
|
// 将目录中文件打包成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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@closedir($path);
|
||||||
|
}
|
||||||
+18
-8
@@ -46,11 +46,11 @@ function getConfig($str, $disktag = '')
|
|||||||
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
$env = json_decode(getenv($disktag), true);
|
$env = json_decode(getenv($disktag), true);
|
||||||
if (isset($env[$str])) {
|
if (isset($env[$str])) {
|
||||||
if (in_array($str, $Base64Env)) return equal_replace($env[$str],1);
|
if (in_array($str, $Base64Env)) return base64y_decode($env[$str]);
|
||||||
else return $env[$str];
|
else return $env[$str];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (in_array($str, $Base64Env)) return equal_replace(getenv($str),1);
|
if (in_array($str, $Base64Env)) return base64y_decode(getenv($str));
|
||||||
else return getenv($str);
|
else return getenv($str);
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
@@ -68,7 +68,7 @@ function setConfig($arr, $disktag = '')
|
|||||||
$oparetdisk = 0;
|
$oparetdisk = 0;
|
||||||
foreach ($arr as $k => $v) {
|
foreach ($arr as $k => $v) {
|
||||||
if (in_array($k, $InnerEnv)) {
|
if (in_array($k, $InnerEnv)) {
|
||||||
if (in_array($k, $Base64Env)) $diskconfig[$k] = equal_replace($v);
|
if (in_array($k, $Base64Env)) $diskconfig[$k] = base64y_encode($v);
|
||||||
else $diskconfig[$k] = $v;
|
else $diskconfig[$k] = $v;
|
||||||
$indisk = 1;
|
$indisk = 1;
|
||||||
} elseif ($k=='disktag_add') {
|
} elseif ($k=='disktag_add') {
|
||||||
@@ -79,7 +79,7 @@ function setConfig($arr, $disktag = '')
|
|||||||
$tmp[$v] = '';
|
$tmp[$v] = '';
|
||||||
$oparetdisk = 1;
|
$oparetdisk = 1;
|
||||||
} else {
|
} else {
|
||||||
if (in_array($k, $Base64Env)) $tmp[$k] = equal_replace($v);
|
if (in_array($k, $Base64Env)) $tmp[$k] = base64y_encode($v);
|
||||||
else $tmp[$k] = $v;
|
else $tmp[$k] = $v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -126,7 +126,14 @@ function install()
|
|||||||
$html = api_error_msg($response);
|
$html = api_error_msg($response);
|
||||||
$title = 'Error';
|
$title = 'Error';
|
||||||
} else {
|
} else {
|
||||||
return output('Jump<meta http-equiv="refresh" content="3;URL=' . path_format($_SERVER['base_path'] . '/') . '">', 302);
|
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);
|
||||||
}
|
}
|
||||||
return message($html, $title, 201);
|
return message($html, $title, 201);
|
||||||
}
|
}
|
||||||
@@ -156,7 +163,10 @@ language:<br>';
|
|||||||
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
function changelanguage(str)
|
function changelanguage(str)
|
||||||
{
|
{
|
||||||
document.cookie=\'language=\'+str+\'; path=/\';
|
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;
|
location.href = location.href;
|
||||||
}
|
}
|
||||||
function notnull(t)
|
function notnull(t)
|
||||||
@@ -250,8 +260,8 @@ function_name:' . $_SERVER['function_name'] . '<br>
|
|||||||
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
||||||
{
|
{
|
||||||
//'https://github.com/qkqpttgf/OneManager-php/tarball/master/';
|
//'https://github.com/qkqpttgf/OneManager-php/tarball/master/';
|
||||||
$source = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . $branch . '/';
|
$source = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
|
||||||
return json_decode(updateHerokuapp(getConfig('function_name'), getConfig('APIKey'), $source)['body'], true);
|
return updateHerokuapp(getConfig('function_name'), getConfig('APIKey'), $source);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setConfigResponse($response)
|
function setConfigResponse($response)
|
||||||
|
|||||||
@@ -0,0 +1,464 @@
|
|||||||
|
<?php
|
||||||
|
global $contextUserData;
|
||||||
|
|
||||||
|
function printInput($event, $context)
|
||||||
|
{
|
||||||
|
$tmp['eventID'] = $context->geteventID();
|
||||||
|
$tmp['RemainingTimeInMilliSeconds'] = $context->getRemainingTimeInMilliSeconds();
|
||||||
|
$tmp['AccessKey'] = $context->getAccessKey();
|
||||||
|
$tmp['SecretKey'] = $context->getSecretKey();
|
||||||
|
$tmp['UserData']['HW_urn'] = $context->getUserData('HW_urn');
|
||||||
|
$tmp['FunctionName'] = $context->getFunctionName();
|
||||||
|
$tmp['RunningTimeInSeconds'] = $context->getRunningTimeInSeconds();
|
||||||
|
$tmp['Version'] = $context->getVersion();
|
||||||
|
$tmp['MemorySize'] = $context->getMemorySize();
|
||||||
|
$tmp['CPUNumber'] = $context->getCPUNumber();
|
||||||
|
$tmp['ProjectID'] = $context->getProjectID();
|
||||||
|
$tmp['Package'] = $context->Package();
|
||||||
|
$tmp['Token'] = $context->getToken();
|
||||||
|
$tmp['Logger'] = $context->getLogger();
|
||||||
|
|
||||||
|
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($tmp, JSON_PRETTY_PRINT)) . '
|
||||||
|
|
||||||
|
';
|
||||||
|
}
|
||||||
|
|
||||||
|
function GetGlobalVariable($event)
|
||||||
|
{
|
||||||
|
$_GET = $event['queryStringParameters'];
|
||||||
|
$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));
|
||||||
|
}
|
||||||
|
$_SERVER['HTTP_USER_AGENT'] = $event['headers']['user-agent'];
|
||||||
|
$_SERVER['HTTP_TRANSLATE'] = $event['headers']['translate'];//'f'
|
||||||
|
$_SERVER['_APP_SHARE_DIR'] = '/var/share/CFF/processrouter';
|
||||||
|
}
|
||||||
|
|
||||||
|
function GetPathSetting($event, $context)
|
||||||
|
{
|
||||||
|
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($event['headers']['accept-language'],';')[0],',')[0]);
|
||||||
|
$_SERVER['function_name'] = $context->getFunctionName();
|
||||||
|
$_SERVER['ProjectID'] = $context->getProjectID();
|
||||||
|
$host_name = $event['headers']['host'];
|
||||||
|
$_SERVER['HTTP_HOST'] = $host_name;
|
||||||
|
$path = path_format($event['pathParameters'][''].'/');
|
||||||
|
$_SERVER['base_path'] = path_format($event['path'].'/');
|
||||||
|
if ( $_SERVER['base_path'] == $path ) {
|
||||||
|
$_SERVER['base_path'] = '/';
|
||||||
|
} else {
|
||||||
|
$_SERVER['base_path'] = substr($_SERVER['base_path'], 0, -strlen($path));
|
||||||
|
if ($_SERVER['base_path']=='') $_SERVER['base_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['headers']['x-real-ip'];
|
||||||
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = $event['headers']['x-requested-with'];
|
||||||
|
return $path;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getConfig($str, $disktag = '')
|
||||||
|
{
|
||||||
|
global $InnerEnv;
|
||||||
|
global $Base64Env;
|
||||||
|
global $contextUserData;
|
||||||
|
if (in_array($str, $InnerEnv)) {
|
||||||
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
|
$env = json_decode($contextUserData->getUserData($disktag), true);
|
||||||
|
if (isset($env[$str])) {
|
||||||
|
if (in_array($str, $Base64Env)) return base64y_decode($env[$str]);
|
||||||
|
else return $env[$str];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (in_array($str, $Base64Env)) return base64y_decode($contextUserData->getUserData($str));
|
||||||
|
else return $contextUserData->getUserData($str);
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function setConfig($arr, $disktag = '')
|
||||||
|
{
|
||||||
|
global $InnerEnv;
|
||||||
|
global $Base64Env;
|
||||||
|
global $contextUserData;
|
||||||
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
|
$disktags = explode("|",getConfig('disktag'));
|
||||||
|
$diskconfig = json_decode($contextUserData->getUserData($disktag), true);
|
||||||
|
$tmp = [];
|
||||||
|
$indisk = 0;
|
||||||
|
$oparetdisk = 0;
|
||||||
|
foreach ($arr as $k => $v) {
|
||||||
|
if (in_array($k, $InnerEnv)) {
|
||||||
|
if (in_array($k, $Base64Env)) $diskconfig[$k] = base64y_encode($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] = base64y_encode($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, getConfig('HW_urn'), getConfig('HW_key'), getConfig('HW_secret'));
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
function install()
|
||||||
|
{
|
||||||
|
global $constStr;
|
||||||
|
global $contextUserData;
|
||||||
|
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']) {
|
||||||
|
//if ($_POST['admin']!='') {
|
||||||
|
$tmp['timezone'] = $_COOKIE['timezone'];
|
||||||
|
$tmp['HW_urn'] = getConfig('HW_urn');
|
||||||
|
if ($tmp['HW_urn']=='') {
|
||||||
|
$tmp['HW_urn'] = $_POST['HW_urn'];
|
||||||
|
}
|
||||||
|
$tmp['HW_key'] = getConfig('HW_key');
|
||||||
|
if ($tmp['HW_key']=='') {
|
||||||
|
$tmp['HW_key'] = $_POST['HW_key'];
|
||||||
|
}
|
||||||
|
$tmp['HW_secret'] = getConfig('HW_secret');
|
||||||
|
if ($tmp['HW_secret']=='') {
|
||||||
|
$tmp['HW_secret'] = $_POST['HW_secret'];
|
||||||
|
}
|
||||||
|
$tmp['ONEMANAGER_CONFIG_SAVE'] = $_POST['ONEMANAGER_CONFIG_SAVE'];
|
||||||
|
//$response = json_decode(SetbaseConfig($tmp, $HW_urn, $HW_name, $HW_pwd), true)['Response'];
|
||||||
|
$response = setConfigResponse( SetbaseConfig($tmp, $tmp['HW_urn'], $tmp['HW_key'], $tmp['HW_secret']) );
|
||||||
|
if (api_error($response)) {
|
||||||
|
$html = api_error_msg($response);
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
} else {
|
||||||
|
if ($tmp['ONEMANAGER_CONFIG_SAVE'] == 'file') {
|
||||||
|
$html = getconstStr('ONEMANAGER_CONFIG_SAVE_FILE') . '<br><a href="' . $_SERVER['base_path'] . '">' . getconstStr('Home') . '</a>';
|
||||||
|
$title = 'Reinstall';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
$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>';
|
||||||
|
}
|
||||||
|
if (getConfig('HW_urn')==''||getConfig('HW_key')==''||getConfig('HW_secret')=='') $html .= '
|
||||||
|
在函数代码操作页上方找到URN,鼠标放上去后显示URN,复制填入:<br>
|
||||||
|
<label>URN:<input name="HW_urn" type="text" placeholder="" size=""></label><br>
|
||||||
|
<a href="https://console.huaweicloud.com/iam/#/mine/accessKey" target="_blank">点击链接</a>,新增访问密钥,
|
||||||
|
在下载的credentials.csv文件中找到对应信息,填入:<br>
|
||||||
|
<label>Access Key Id:<input name="HW_key" type="text" placeholder="" size=""></label><br>
|
||||||
|
<label>Secret Access Key:<input name="HW_secret" type="text" placeholder="" size=""></label><br>';
|
||||||
|
$html .= '
|
||||||
|
<label><input type="radio" name="ONEMANAGER_CONFIG_SAVE" value="" ' . ('file'==$contextUserData->getUserData('ONEMANAGER_CONFIG_SAVE')?'':'checked') . '>' . getconstStr('ONEMANAGER_CONFIG_SAVE_ENV') . '</label><br>
|
||||||
|
<label><input type="radio" name="ONEMANAGER_CONFIG_SAVE" value="file" ' . ('file'==$contextUserData->getUserData('ONEMANAGER_CONFIG_SAVE')?'checked':'') . '>' . getconstStr('ONEMANAGER_CONFIG_SAVE_FILE') . '</label><br>';
|
||||||
|
$html .= '
|
||||||
|
<input type="submit" value="'.getconstStr('Submit').'">
|
||||||
|
</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)
|
||||||
|
{';
|
||||||
|
if (getConfig('HW_urn')==''||getConfig('HW_key')==''||getConfig('HW_secret')=='') $html .= '
|
||||||
|
if (t.HW_urn.value==\'\') {
|
||||||
|
alert(\'input URN\');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (t.HW_key.value==\'\') {
|
||||||
|
alert(\'input name\');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (t.HW_secret.value==\'\') {
|
||||||
|
alert(\'input pwd\');
|
||||||
|
return false;
|
||||||
|
}';
|
||||||
|
$html .= '
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
</script>';
|
||||||
|
$title = getconstStr('SelectLanguage');
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
$html .= '<a href="?install0">'.getconstStr('ClickInstall').'</a>, '.getconstStr('LogintoBind');
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
|
||||||
|
function FGAPIV2($HW_urn, $HW_key, $HW_secret, $Method, $End, $data = '')
|
||||||
|
{
|
||||||
|
if ($HW_urn==''||$HW_key==''||$HW_secret=='') {
|
||||||
|
$tmp['error_code'] = 'Config Error';
|
||||||
|
$tmp['error_msg'] = 'HW urn or access key id or secret is empty.';
|
||||||
|
return json_encode($tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
$URN = explode(':', $HW_urn);
|
||||||
|
$Region = $URN[2];
|
||||||
|
$project_id = $URN[3];
|
||||||
|
|
||||||
|
$host = 'functiongraph.' . $Region . '.myhuaweicloud.com';
|
||||||
|
$path = '/v2/' . $project_id . '/fgs/functions/' . $HW_urn . '/' . $End;
|
||||||
|
$url = 'https://' . $host . $path;
|
||||||
|
$CanonicalURI = spurlencode($path, '/') . '/';
|
||||||
|
$CanonicalQueryString = '';
|
||||||
|
|
||||||
|
date_default_timezone_set('UTC'); // unset last timezone setting
|
||||||
|
$timestamp = date('Ymd\THis\Z');
|
||||||
|
$header['X-Sdk-Date'] = $timestamp;
|
||||||
|
$header['Host'] = $host;
|
||||||
|
$header['Content-Type'] = 'application/json;charset=utf8';
|
||||||
|
ksort($header);
|
||||||
|
$CanonicalHeaders = '';
|
||||||
|
$SignedHeaders = '';
|
||||||
|
foreach ($header as $key => $value) {
|
||||||
|
$CanonicalHeaders .= strtolower($key) . ':' . $value . "\n";
|
||||||
|
$SignedHeaders .= strtolower($key) . ';';
|
||||||
|
}
|
||||||
|
$SignedHeaders = substr($SignedHeaders, 0, -1);
|
||||||
|
$Hashedbody = hash("sha256", $data);
|
||||||
|
$CanonicalRequest = $Method . "\n" . $CanonicalURI . "\n" . $CanonicalQueryString . "\n" . $CanonicalHeaders . "\n" . $SignedHeaders . "\n" . $Hashedbody;
|
||||||
|
$HashedCanonicalRequest = hash("sha256", $CanonicalRequest);
|
||||||
|
$Algorithm = 'SDK-HMAC-SHA256';
|
||||||
|
$StringToSign = $Algorithm . "\n" . $timestamp . "\n" . $HashedCanonicalRequest;
|
||||||
|
$signature = hash_hmac("sha256", $StringToSign, $HW_secret);
|
||||||
|
$Authorization = "$Algorithm Access=$HW_key, SignedHeaders=$SignedHeaders, Signature=$signature";
|
||||||
|
$header['Authorization'] = $Authorization;
|
||||||
|
|
||||||
|
//return curl($Method, $url, $data, $header)['body']; // . $CanonicalRequest;
|
||||||
|
$p = 0;
|
||||||
|
while ($response['stat']==0 && $p<3) {
|
||||||
|
$response = curl($Method, $url, $data, $header);
|
||||||
|
$p++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($response['stat']==0) {
|
||||||
|
$tmp['error_code'] = 'Network Error';
|
||||||
|
$tmp['error_msg'] = 'Can not connect ' . $host;
|
||||||
|
return json_encode($tmp);
|
||||||
|
}
|
||||||
|
if ($response['stat']!=200) {
|
||||||
|
$tmp = json_decode($response['body'], true);
|
||||||
|
$tmp['error_code'] .= '.';
|
||||||
|
$tmp['error_msg'] .= '<br>' . $response['stat'] . '<br>' . $CanonicalRequest . '<br>' . json_encode($header) . PHP_EOL;
|
||||||
|
return json_encode($tmp);
|
||||||
|
}
|
||||||
|
return $response['body'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function getfunctioninfo($HW_urn, $HW_key, $HW_secret)
|
||||||
|
{
|
||||||
|
return FGAPIV2($HW_urn, $HW_key, $HW_secret, 'GET', 'config');
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateEnvironment($Envs, $HW_urn, $HW_key, $HW_secret)
|
||||||
|
{
|
||||||
|
//echo json_encode($Envs,JSON_PRETTY_PRINT);
|
||||||
|
global $contextUserData;
|
||||||
|
$tmp_env = json_decode(json_decode(getfunctioninfo($HW_urn, $HW_key, $HW_secret),true)['user_data'],true);
|
||||||
|
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['handler'] = 'index.handler';
|
||||||
|
$tmpdata['memory_size'] = $contextUserData->getMemorySize()+1-1;
|
||||||
|
$tmpdata['runtime'] = 'PHP7.3';
|
||||||
|
$tmpdata['timeout'] = $contextUserData->getRunningTimeInSeconds()+1-1;
|
||||||
|
$tmpdata['user_data'] = json_encode($tmp_env);
|
||||||
|
|
||||||
|
return FGAPIV2($HW_urn, $HW_key, $HW_secret, 'PUT', 'config', json_encode($tmpdata));
|
||||||
|
}
|
||||||
|
|
||||||
|
function SetbaseConfig($Envs, $HW_urn, $HW_key, $HW_secret)
|
||||||
|
{
|
||||||
|
//echo json_encode($Envs,JSON_PRETTY_PRINT);
|
||||||
|
if ($Envs['ONEMANAGER_CONFIG_SAVE'] == 'file') $Envs = Array( 'ONEMANAGER_CONFIG_SAVE' => 'file' );
|
||||||
|
$tmp_env = json_decode(json_decode(getfunctioninfo($HW_urn, $HW_key, $HW_secret),true)['user_data'],true);
|
||||||
|
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['handler'] = 'index.handler';
|
||||||
|
$tmpdata['memory_size'] = 128;
|
||||||
|
$tmpdata['runtime'] = 'PHP7.3';
|
||||||
|
$tmpdata['timeout'] = 30;
|
||||||
|
$tmpdata['description'] = 'Onedrive index and manager in Huawei FG.';
|
||||||
|
$tmpdata['user_data'] = json_encode($tmp_env);
|
||||||
|
|
||||||
|
return FGAPIV2($HW_urn, $HW_key, $HW_secret, 'PUT', 'config', json_encode($tmpdata));
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateProgram($HW_urn, $HW_key, $HW_secret, $source)
|
||||||
|
{
|
||||||
|
$tmpdata['code_type'] = 'zip';
|
||||||
|
$tmpdata['func_code']['file'] = base64_encode( file_get_contents($source) );
|
||||||
|
|
||||||
|
return FGAPIV2($HW_urn, $HW_key, $HW_secret, 'PUT', 'code', json_encode($tmpdata));
|
||||||
|
}
|
||||||
|
|
||||||
|
function api_error($response)
|
||||||
|
{
|
||||||
|
return isset($response['error_msg']);
|
||||||
|
}
|
||||||
|
|
||||||
|
function api_error_msg($response)
|
||||||
|
{
|
||||||
|
return $response['error_code'] . '<br>
|
||||||
|
' . $response['error_msg'] . '<br>
|
||||||
|
request_id: ' . $response['request_id'] . '<br><br>
|
||||||
|
function_name: ' . $_SERVER['function_name'] . '<br>
|
||||||
|
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
|
||||||
|
}
|
||||||
|
|
||||||
|
function setConfigResponse($response)
|
||||||
|
{
|
||||||
|
return json_decode( $response, true );
|
||||||
|
}
|
||||||
|
|
||||||
|
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
||||||
|
{
|
||||||
|
$source = '/tmp/code.zip';
|
||||||
|
$outPath = '/tmp/';
|
||||||
|
|
||||||
|
// 从github下载对应tar.gz,并解压
|
||||||
|
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
|
||||||
|
$tarfile = '/tmp/github.tar.gz';
|
||||||
|
file_put_contents($tarfile, file_get_contents($url));
|
||||||
|
$phar = new PharData($tarfile);
|
||||||
|
$html = $phar->extractTo($outPath, null, true);//路径 要解压的文件 是否覆盖
|
||||||
|
|
||||||
|
// 获取解压出的目录名
|
||||||
|
$tmp = scandir($outPath);
|
||||||
|
$name = $auth.'-'.$project;
|
||||||
|
foreach ($tmp as $f) {
|
||||||
|
if ( substr($f, 0, strlen($name)) == $name) {
|
||||||
|
$outPath .= $f;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 将目录中文件打包成zip
|
||||||
|
//$zip=new ZipArchive();
|
||||||
|
$zip=new PharData($source);
|
||||||
|
//if($zip->open($source, ZipArchive::CREATE)){
|
||||||
|
addFileToZip($zip, $outPath); //调用方法,对要打包的根目录进行操作,并将ZipArchive的对象传递给方法
|
||||||
|
// $zip->close(); //关闭处理的zip文件
|
||||||
|
//}
|
||||||
|
|
||||||
|
return updateProgram(getConfig('HW_urn'), getConfig('HW_key'), getConfig('HW_secret'), $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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@closedir($path);
|
||||||
|
}
|
||||||
@@ -0,0 +1,840 @@
|
|||||||
|
<?php
|
||||||
|
global $contextUserData;
|
||||||
|
|
||||||
|
function printInput($event, $context)
|
||||||
|
{
|
||||||
|
$tmp['eventID'] = $context->geteventID();
|
||||||
|
$tmp['RemainingTimeInMilliSeconds'] = $context->getRemainingTimeInMilliSeconds();
|
||||||
|
$tmp['AccessKey'] = $context->getAccessKey();
|
||||||
|
$tmp['SecretKey'] = $context->getSecretKey();
|
||||||
|
$tmp['UserData']['HW_urn'] = $context->getUserData('HW_urn');
|
||||||
|
$tmp['FunctionName'] = $context->getFunctionName();
|
||||||
|
$tmp['RunningTimeInSeconds'] = $context->getRunningTimeInSeconds();
|
||||||
|
$tmp['Version'] = $context->getVersion();
|
||||||
|
$tmp['MemorySize'] = $context->getMemorySize();
|
||||||
|
$tmp['CPUNumber'] = $context->getCPUNumber();
|
||||||
|
$tmp['ProjectID'] = $context->getProjectID();
|
||||||
|
$tmp['Package'] = $context->Package();
|
||||||
|
$tmp['Token'] = $context->getToken();
|
||||||
|
$tmp['Logger'] = $context->getLogger();
|
||||||
|
|
||||||
|
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($tmp, JSON_PRETTY_PRINT)) . '
|
||||||
|
|
||||||
|
';
|
||||||
|
}
|
||||||
|
|
||||||
|
function GetGlobalVariable($event)
|
||||||
|
{
|
||||||
|
$_GET = $event['queryStringParameters'];
|
||||||
|
$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));
|
||||||
|
}
|
||||||
|
$_SERVER['HTTP_USER_AGENT'] = $event['headers']['user-agent'];
|
||||||
|
$_SERVER['HTTP_TRANSLATE'] = $event['headers']['translate'];//'f'
|
||||||
|
$_SERVER['_APP_SHARE_DIR'] = '/var/share/CFF/processrouter';
|
||||||
|
}
|
||||||
|
|
||||||
|
function GetPathSetting($event, $context)
|
||||||
|
{
|
||||||
|
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($event['headers']['accept-language'],';')[0],',')[0]);
|
||||||
|
$_SERVER['function_name'] = $context->getFunctionName();
|
||||||
|
$_SERVER['ProjectID'] = $context->getProjectID();
|
||||||
|
$host_name = $event['headers']['host'];
|
||||||
|
$_SERVER['HTTP_HOST'] = $host_name;
|
||||||
|
$path = path_format($event['pathParameters'][''].'/');
|
||||||
|
$_SERVER['base_path'] = path_format($event['path'].'/');
|
||||||
|
if ( $_SERVER['base_path'] == $path ) {
|
||||||
|
$_SERVER['base_path'] = '/';
|
||||||
|
} else {
|
||||||
|
$_SERVER['base_path'] = substr($_SERVER['base_path'], 0, -strlen($path));
|
||||||
|
if ($_SERVER['base_path']=='') $_SERVER['base_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['headers']['x-real-ip'];
|
||||||
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = $event['headers']['x-requested-with'];
|
||||||
|
return $path;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getConfig($str, $disktag = '')
|
||||||
|
{
|
||||||
|
global $InnerEnv;
|
||||||
|
global $Base64Env;
|
||||||
|
//include 'config.php';
|
||||||
|
$s = file_get_contents(__DIR__ . '/../config.php');
|
||||||
|
//$configs = substr($s, 18, -2);
|
||||||
|
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
|
||||||
|
if ($configs!='') {
|
||||||
|
$envs = json_decode($configs, true);
|
||||||
|
if (in_array($str, $InnerEnv)) {
|
||||||
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
|
if (isset($envs[$disktag][$str])) {
|
||||||
|
if (in_array($str, $Base64Env)) return base64y_decode($envs[$disktag][$str]);
|
||||||
|
else return $envs[$disktag][$str];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (isset($envs[$str])) {
|
||||||
|
if (in_array($str, $Base64Env)) return base64y_decode($envs[$str]);
|
||||||
|
else return $envs[$str];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function setConfig($arr, $disktag = '')
|
||||||
|
{
|
||||||
|
global $InnerEnv;
|
||||||
|
global $Base64Env;
|
||||||
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
|
//include 'config.php';
|
||||||
|
$s = file_get_contents(__DIR__ . '/../config.php');
|
||||||
|
//$configs = substr($s, 18, -2);
|
||||||
|
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
|
||||||
|
if ($configs!='') $envs = json_decode($configs, true);
|
||||||
|
$disktags = explode("|",getConfig('disktag'));
|
||||||
|
$indisk = 0;
|
||||||
|
$operatedisk = 0;
|
||||||
|
foreach ($arr as $k => $v) {
|
||||||
|
if (in_array($k, $InnerEnv)) {
|
||||||
|
if (in_array($k, $Base64Env)) $envs[$disktag][$k] = base64y_encode($v);
|
||||||
|
else $envs[$disktag][$k] = $v;
|
||||||
|
$indisk = 1;
|
||||||
|
} elseif ($k=='disktag_add') {
|
||||||
|
array_push($disktags, $v);
|
||||||
|
$operatedisk = 1;
|
||||||
|
} elseif ($k=='disktag_del') {
|
||||||
|
$disktags = array_diff($disktags, [ $v ]);
|
||||||
|
$envs[$v] = '';
|
||||||
|
$operatedisk = 1;
|
||||||
|
} else {
|
||||||
|
if (in_array($k, $Base64Env)) $envs[$k] = base64y_encode($v);
|
||||||
|
else $envs[$k] = $v;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($indisk) {
|
||||||
|
$diskconfig = $envs[$disktag];
|
||||||
|
$diskconfig = array_filter($diskconfig, 'array_value_isnot_null');
|
||||||
|
ksort($diskconfig);
|
||||||
|
$envs[$disktag] = $diskconfig;
|
||||||
|
}
|
||||||
|
if ($operatedisk) {
|
||||||
|
$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'] = '';
|
||||||
|
}
|
||||||
|
$envs = array_filter($envs, 'array_value_isnot_null');
|
||||||
|
ksort($envs);
|
||||||
|
$response = updateEnvironment($envs, getConfig('HW_urn'), getConfig('HW_key'), getConfig('HW_secret'));
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
function install()
|
||||||
|
{
|
||||||
|
global $constStr;
|
||||||
|
global $contextUserData;
|
||||||
|
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']) {
|
||||||
|
//if ($_POST['admin']!='') {
|
||||||
|
$tmp['timezone'] = $_COOKIE['timezone'];
|
||||||
|
$tmp['HW_urn'] = getConfig('HW_urn');
|
||||||
|
if ($tmp['HW_urn']=='') {
|
||||||
|
$tmp['HW_urn'] = $_POST['HW_urn'];
|
||||||
|
}
|
||||||
|
$tmp['HW_key'] = getConfig('HW_key');
|
||||||
|
if ($tmp['HW_key']=='') {
|
||||||
|
$tmp['HW_key'] = $_POST['HW_key'];
|
||||||
|
}
|
||||||
|
$tmp['HW_secret'] = getConfig('HW_secret');
|
||||||
|
if ($tmp['HW_secret']=='') {
|
||||||
|
$tmp['HW_secret'] = $_POST['HW_secret'];
|
||||||
|
}
|
||||||
|
$tmp['ONEMANAGER_CONFIG_SAVE'] = $_POST['ONEMANAGER_CONFIG_SAVE'];
|
||||||
|
//return message($html, $title, 201);
|
||||||
|
$response = setConfigResponse( SetbaseConfig($tmp, $tmp['HW_urn'], $tmp['HW_key'], $tmp['HW_secret']) );
|
||||||
|
if (api_error($response)) {
|
||||||
|
$html = api_error_msg($response);
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
} else {
|
||||||
|
if ($tmp['ONEMANAGER_CONFIG_SAVE'] != 'file') {
|
||||||
|
$html = getconstStr('ONEMANAGER_CONFIG_SAVE_ENV') . '<br><a href="' . $_SERVER['base_path'] . '">' . getconstStr('Home') . '</a>';
|
||||||
|
$title = 'Reinstall';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
$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>';
|
||||||
|
}
|
||||||
|
if (getConfig('HW_urn')==''||getConfig('HW_key')==''||getConfig('HW_secret')=='') $html .= '
|
||||||
|
在函数代码操作页上方找到URN,鼠标放上去后显示URN,复制填入:<br>
|
||||||
|
<label>URN:<input name="HW_urn" type="text" placeholder="urn:fss:ap-XXXXXXXX:XXXXXXXXXXXXXXXXXXXXc01a1e9caXXX:function:default:XXXXX:latest" size=""></label><br>
|
||||||
|
<a href="https://console.huaweicloud.com/iam/#/mine/accessKey" target="_blank">点击链接</a>,新增访问密钥,
|
||||||
|
在下载的credentials.csv文件中找到对应信息,填入:<br>
|
||||||
|
<label>Access Key Id:<input name="HW_key" type="text" placeholder="" size=""></label><br>
|
||||||
|
<label>Secret Access Key:<input name="HW_secret" type="text" placeholder="" size=""></label><br>';
|
||||||
|
$html .= '
|
||||||
|
<label><input type="radio" name="ONEMANAGER_CONFIG_SAVE" value="" ' . ('file'==$contextUserData->getUserData('ONEMANAGER_CONFIG_SAVE')?'':'checked') . '>' . getconstStr('ONEMANAGER_CONFIG_SAVE_ENV') . '</label><br>
|
||||||
|
<label><input type="radio" name="ONEMANAGER_CONFIG_SAVE" value="file" ' . ('file'==$contextUserData->getUserData('ONEMANAGER_CONFIG_SAVE')?'checked':'') . '>' . getconstStr('ONEMANAGER_CONFIG_SAVE_FILE') . '</label><br>';
|
||||||
|
$html .= '
|
||||||
|
<input type="submit" value="'.getconstStr('Submit').'">
|
||||||
|
</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)
|
||||||
|
{';
|
||||||
|
if (getConfig('HW_urn')==''||getConfig('HW_key')==''||getConfig('HW_secret')=='') $html .= '
|
||||||
|
if (t.HW_urn.value==\'\') {
|
||||||
|
alert(\'input URN\');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (t.HW_key.value==\'\') {
|
||||||
|
alert(\'input name\');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (t.HW_secret.value==\'\') {
|
||||||
|
alert(\'input pwd\');
|
||||||
|
return false;
|
||||||
|
}';
|
||||||
|
$html .= '
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
</script>';
|
||||||
|
$title = getconstStr('SelectLanguage');
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
$html .= '<a href="?install0">'.getconstStr('ClickInstall').'</a>, '.getconstStr('LogintoBind');
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getfunctioninfo($HW_urn, $HW_key, $HW_secret)
|
||||||
|
{
|
||||||
|
$URN = explode(':', $HW_urn);
|
||||||
|
$Region = $URN[2];
|
||||||
|
$project_id = $URN[3];
|
||||||
|
$url = 'https://functiongraph.' . $Region . '.myhuaweicloud.com/v2/' . $project_id . '/fgs/functions/' . $HW_urn . '/config';
|
||||||
|
$signer = new Signer();
|
||||||
|
$signer->Key = $HW_key;
|
||||||
|
$signer->Secret = $HW_secret;
|
||||||
|
$req = new Request('GET', $url);
|
||||||
|
$req->headers = array(
|
||||||
|
'content-type' => 'application/json;charset=utf8',
|
||||||
|
);
|
||||||
|
$req->body = '';
|
||||||
|
$curl = $signer->Sign($req);
|
||||||
|
$response = curl_exec($curl);
|
||||||
|
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
|
||||||
|
curl_close($curl);
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getfunctioncode($HW_urn, $HW_key, $HW_secret)
|
||||||
|
{
|
||||||
|
$URN = explode(':', $HW_urn);
|
||||||
|
$Region = $URN[2];
|
||||||
|
$project_id = $URN[3];
|
||||||
|
$url = 'https://functiongraph.' . $Region . '.myhuaweicloud.com/v2/' . $project_id . '/fgs/functions/' . $HW_urn . '/code';
|
||||||
|
$signer = new Signer();
|
||||||
|
$signer->Key = $HW_key;
|
||||||
|
$signer->Secret = $HW_secret;
|
||||||
|
$req = new Request('GET', $url);
|
||||||
|
$req->headers = array(
|
||||||
|
'content-type' => 'application/json;charset=utf8',
|
||||||
|
);
|
||||||
|
$req->body = '';
|
||||||
|
$curl = $signer->Sign($req);
|
||||||
|
$response = curl_exec($curl);
|
||||||
|
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
|
||||||
|
curl_close($curl);
|
||||||
|
//return $response;
|
||||||
|
$url = json_decode($response, true)['func_code']['link'];
|
||||||
|
// return $url;
|
||||||
|
|
||||||
|
|
||||||
|
$bucket = splitfirst( splitfirst($url, '//')[1], '.')[0];
|
||||||
|
$path = splitfirst( splitfirst($url, '//')[1], '/')[1];
|
||||||
|
$date = gmdate('D, d M Y H:i:s') . ' GMT';
|
||||||
|
//$date = 'Wed, 05 Aug 2020 06:34:50 GMT';
|
||||||
|
$StringToSign = 'GET
|
||||||
|
' . '
|
||||||
|
' . '
|
||||||
|
' . '
|
||||||
|
' . 'x-obs-date:' . $date . '
|
||||||
|
' . '/' . $bucket . '/' . $path;
|
||||||
|
|
||||||
|
$signature = base64_encode(hash_hmac('sha1', $StringToSign, $HW_secret, true));
|
||||||
|
$response = curl_request($url, false, [ 'Authorization' => 'OBS ' . $HW_key . ':' . $signature, 'x-obs-date' => $date, 'Content-Type' => '' ]);
|
||||||
|
//if ($response['stat']==200) return $response['body'];
|
||||||
|
if ($response['stat']==0) return json_encode( [ 'error_code' => 'Network', 'error_msg' => 'Network error in getting code.' ] );
|
||||||
|
else return $response['body'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function copyFolder($from, $to)
|
||||||
|
{
|
||||||
|
if (substr($from, -1)=='/') $from = substr($from, 0, -1);
|
||||||
|
if (substr($to, -1)=='/') $to = substr($to, 0, -1);
|
||||||
|
if (!file_exists($to)) mkdir($to, 0777);
|
||||||
|
$handler=opendir($from);
|
||||||
|
while($filename=readdir($handler)) {
|
||||||
|
if($filename != '.' && $filename != '..'){
|
||||||
|
$fromfile = $from.'/'.$filename;
|
||||||
|
$tofile = $to.'/'.$filename;
|
||||||
|
if(is_dir($fromfile)){// 如果读取的某个对象是文件夹,则递归
|
||||||
|
copyFolder($fromfile, $tofile);
|
||||||
|
}else{
|
||||||
|
copy($fromfile, $tofile);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
closedir($handler);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateEnvironment($Envs, $HW_urn, $HW_key, $HW_secret)
|
||||||
|
{
|
||||||
|
|
||||||
|
//echo json_encode($Envs,JSON_PRETTY_PRINT);
|
||||||
|
global $contextUserData;
|
||||||
|
$source = '/tmp/code.zip';
|
||||||
|
$outPath = '/tmp/code/';
|
||||||
|
$oldcode = '/tmp/oldcode.zip';
|
||||||
|
|
||||||
|
// 获取当前代码,并解压
|
||||||
|
$coderoot = __DIR__ . '/../';
|
||||||
|
|
||||||
|
copyFolder($coderoot, $outPath);
|
||||||
|
|
||||||
|
// 将配置写入
|
||||||
|
$prestr = '<?php $configs = \'' . PHP_EOL;
|
||||||
|
$aftstr = PHP_EOL . '\';';
|
||||||
|
file_put_contents($outPath . 'config.php', $prestr . json_encode($Envs, JSON_PRETTY_PRINT) . $aftstr);
|
||||||
|
|
||||||
|
// 将目录中文件打包成zip
|
||||||
|
//$zip=new ZipArchive();
|
||||||
|
$zip=new PharData($source);
|
||||||
|
//if($zip->open($source, ZipArchive::CREATE)){
|
||||||
|
addFileToZip($zip, $outPath); //调用方法,对要打包的根目录进行操作,并将ZipArchive的对象传递给方法
|
||||||
|
// $zip->close(); //关闭处理的zip文件
|
||||||
|
//}
|
||||||
|
|
||||||
|
return updateProgram($HW_urn, $HW_key, $HW_secret, $source);
|
||||||
|
}
|
||||||
|
|
||||||
|
function SetbaseConfig($Envs, $HW_urn, $HW_key, $HW_secret)
|
||||||
|
{
|
||||||
|
//echo json_encode($Envs,JSON_PRETTY_PRINT);
|
||||||
|
if ($Envs['ONEMANAGER_CONFIG_SAVE'] == 'file') $envs = Array( 'ONEMANAGER_CONFIG_SAVE' => 'file' );
|
||||||
|
else {
|
||||||
|
$Envs['ONEMANAGER_CONFIG_SAVE'] == '';
|
||||||
|
$envs = $Envs;
|
||||||
|
$tmp_env = json_decode(json_decode(getfunctioninfo($HW_urn, $HW_key, $HW_secret),true)['user_data'],true);
|
||||||
|
foreach ($envs as $key1 => $value1) {
|
||||||
|
$tmp_env[$key1] = $value1;
|
||||||
|
}
|
||||||
|
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
||||||
|
ksort($tmp_env);
|
||||||
|
$envs = $tmp_env;
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://functiongraph.cn-north-4.myhuaweicloud.com/v2/{project_id}/fgs/functions/{function_urn}/config
|
||||||
|
$URN = explode(':', $HW_urn);
|
||||||
|
$Region = $URN[2];
|
||||||
|
$project_id = $URN[3];
|
||||||
|
$url = 'https://functiongraph.' . $Region . '.myhuaweicloud.com/v2/' . $project_id . '/fgs/functions/' . $HW_urn . '/config';
|
||||||
|
$signer = new Signer();
|
||||||
|
$signer->Key = $HW_key;
|
||||||
|
$signer->Secret = $HW_secret;
|
||||||
|
$req = new Request('PUT', $url);
|
||||||
|
$req->headers = array(
|
||||||
|
'content-type' => 'application/json;charset=utf8',
|
||||||
|
);
|
||||||
|
$tmpdata['handler'] = 'index.handler';
|
||||||
|
$tmpdata['memory_size'] = 128;
|
||||||
|
$tmpdata['runtime'] = 'PHP7.3';
|
||||||
|
$tmpdata['timeout'] = 30;
|
||||||
|
$tmpdata['description'] = 'Onedrive index and manager in Huawei FG.';
|
||||||
|
$tmpdata['user_data'] = json_encode($envs);
|
||||||
|
$req->body = json_encode($tmpdata);
|
||||||
|
$curl = $signer->Sign($req);
|
||||||
|
$response = curl_exec($curl);
|
||||||
|
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
|
||||||
|
curl_close($curl);
|
||||||
|
//return $response;
|
||||||
|
if (api_error(setConfigResponse($response))) {
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
$s = file_get_contents(__DIR__ . '/../config.php');
|
||||||
|
//$configs = substr($s, 18, -2);
|
||||||
|
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
|
||||||
|
if ($configs!='') $tmp_env = json_decode($configs, true);
|
||||||
|
foreach ($Envs as $k => $v) {
|
||||||
|
$tmp_env[$k] = $v;
|
||||||
|
}
|
||||||
|
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null');
|
||||||
|
ksort($tmp_env);
|
||||||
|
$response = updateEnvironment($tmp_env, $HW_urn, $HW_key, $HW_secret);
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateProgram($HW_urn, $HW_key, $HW_secret, $source)
|
||||||
|
{
|
||||||
|
$URN = explode(':', $HW_urn);
|
||||||
|
$Region = $URN[2];
|
||||||
|
$project_id = $URN[3];
|
||||||
|
$url = 'https://functiongraph.' . $Region . '.myhuaweicloud.com/v2/' . $project_id . '/fgs/functions/' . $HW_urn . '/code';
|
||||||
|
$signer = new Signer();
|
||||||
|
$signer->Key = $HW_key;
|
||||||
|
$signer->Secret = $HW_secret;
|
||||||
|
$req = new Request('PUT', $url);
|
||||||
|
$req->headers = array(
|
||||||
|
'content-type' => 'application/json;charset=utf8',
|
||||||
|
);
|
||||||
|
$tmpdata['code_type'] = 'zip';
|
||||||
|
$tmpdata['func_code']['file'] = base64_encode( file_get_contents($source) );
|
||||||
|
$req->body = json_encode($tmpdata);
|
||||||
|
$curl = $signer->Sign($req);
|
||||||
|
$response = curl_exec($curl);
|
||||||
|
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
|
||||||
|
curl_close($curl);
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
function api_error($response)
|
||||||
|
{
|
||||||
|
return isset($response['error_code']);
|
||||||
|
}
|
||||||
|
|
||||||
|
function api_error_msg($response)
|
||||||
|
{
|
||||||
|
return $response['error_code'] . '<br>
|
||||||
|
' . $response['error_msg'] . '<br>
|
||||||
|
request_id: ' . $response['request_id'] . '<br><br>
|
||||||
|
function_name: ' . $_SERVER['function_name'] . '<br>
|
||||||
|
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
|
||||||
|
}
|
||||||
|
|
||||||
|
function setConfigResponse($response)
|
||||||
|
{
|
||||||
|
return json_decode( $response, true );
|
||||||
|
}
|
||||||
|
|
||||||
|
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
||||||
|
{
|
||||||
|
$source = '/tmp/code.zip';
|
||||||
|
$outPath = '/tmp/';
|
||||||
|
|
||||||
|
// 从github下载对应tar.gz,并解压
|
||||||
|
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
|
||||||
|
$tarfile = '/tmp/github.tar.gz';
|
||||||
|
file_put_contents($tarfile, file_get_contents($url));
|
||||||
|
$phar = new PharData($tarfile);
|
||||||
|
$html = $phar->extractTo($outPath, null, true);//路径 要解压的文件 是否覆盖
|
||||||
|
|
||||||
|
// 获取解压出的目录名
|
||||||
|
/*
|
||||||
|
@ob_start();
|
||||||
|
passthru('ls /tmp | grep '.$auth.'-'.$project.'',$stat);
|
||||||
|
$html.='状态:' . $stat . '
|
||||||
|
结果:
|
||||||
|
';
|
||||||
|
$archivefolder = ob_get_clean();
|
||||||
|
if (substr($archivefolder,-1)==PHP_EOL) $archivefolder = substr($archivefolder, 0, -1);
|
||||||
|
$outPath .= $archivefolder;
|
||||||
|
$html.=htmlspecialchars($archivefolder);
|
||||||
|
//return $html;
|
||||||
|
*/
|
||||||
|
$tmp = scandir($outPath);
|
||||||
|
$name = $auth.'-'.$project;
|
||||||
|
foreach ($tmp as $f) {
|
||||||
|
if ( substr($f, 0, strlen($name)) == $name) {
|
||||||
|
$outPath .= $f;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 放入配置文件
|
||||||
|
file_put_contents($outPath . '/config.php', file_get_contents(__DIR__.'/../config.php'));
|
||||||
|
|
||||||
|
// 将目录中文件打包成zip
|
||||||
|
//$zip=new ZipArchive();
|
||||||
|
$zip=new PharData($source);
|
||||||
|
//if($zip->open($source, ZipArchive::CREATE)){
|
||||||
|
addFileToZip($zip, $outPath); //调用方法,对要打包的根目录进行操作,并将ZipArchive的对象传递给方法
|
||||||
|
// $zip->close(); //关闭处理的zip文件
|
||||||
|
//}
|
||||||
|
|
||||||
|
return updateProgram(getConfig('HW_urn'), getConfig('HW_key'), getConfig('HW_secret'), $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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@closedir($path);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
define("BasicDateFormat", "Ymd\THis\Z");
|
||||||
|
define("Algorithm", "SDK-HMAC-SHA256");
|
||||||
|
define("HeaderXDate", "X-Sdk-Date");
|
||||||
|
define("HeaderHost", "host");
|
||||||
|
define("HeaderAuthorization", "Authorization");
|
||||||
|
define("HeaderContentSha256", "X-Sdk-Content-Sha256");
|
||||||
|
|
||||||
|
class Request
|
||||||
|
{
|
||||||
|
public $method = '';
|
||||||
|
public $scheme = '';
|
||||||
|
public $host = '';
|
||||||
|
public $uri = '';
|
||||||
|
public $query = array();
|
||||||
|
public $headers = array();
|
||||||
|
public $body = '';
|
||||||
|
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
$args = func_get_args();
|
||||||
|
$i = count($args);
|
||||||
|
if ($i == 0) {
|
||||||
|
$this->construct(NULL, NULL, NULL, NULL);
|
||||||
|
} elseif ($i == 1) {
|
||||||
|
$this->construct($args[0], NULL, NULL, NULL);
|
||||||
|
} elseif ($i == 2) {
|
||||||
|
$this->construct($args[0], $args[1], NULL, NULL);
|
||||||
|
} elseif ($i == 3) {
|
||||||
|
$this->construct($args[0], $args[1], $args[2], NULL);
|
||||||
|
} else {
|
||||||
|
$this->construct($args[0], $args[1], $args[2], $args[3]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function construct($method, $url, $headers, $body)
|
||||||
|
{
|
||||||
|
if ($method != NULL) {
|
||||||
|
$this->method = $method;
|
||||||
|
}
|
||||||
|
if ($url != NULL) {
|
||||||
|
$spl = explode("://", $url, 2);
|
||||||
|
$scheme = 'http';
|
||||||
|
if (count($spl) > 1) {
|
||||||
|
$scheme = $spl[0];
|
||||||
|
$url = $spl[1];
|
||||||
|
}
|
||||||
|
$spl = explode("?", $url, 2);
|
||||||
|
$url = $spl[0];
|
||||||
|
$query = array();
|
||||||
|
if (count($spl) > 1) {
|
||||||
|
foreach (explode("&", $spl[1]) as $kv) {
|
||||||
|
$spl = explode("=", $kv, 2);
|
||||||
|
$key = $spl[0];
|
||||||
|
if (count($spl) == 1) {
|
||||||
|
$value = "";
|
||||||
|
} else {
|
||||||
|
$value = $spl[1];
|
||||||
|
}
|
||||||
|
if ($key != "") {
|
||||||
|
$key = urldecode($key);
|
||||||
|
$value = urldecode($value);
|
||||||
|
if (array_key_exists($key, $query)) {
|
||||||
|
array_push($query[$key], $value);
|
||||||
|
} else {
|
||||||
|
$query[$key] = array($value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$spl = explode("/", $url, 2);
|
||||||
|
$host = $spl[0];
|
||||||
|
if (count($spl) == 1) {
|
||||||
|
$url = "/";
|
||||||
|
} else {
|
||||||
|
$url = "/" . $spl[1];
|
||||||
|
}
|
||||||
|
$this->scheme = $scheme;
|
||||||
|
$this->host = $host;
|
||||||
|
$this->uri = urldecode($url);
|
||||||
|
$this->query = $query;
|
||||||
|
}
|
||||||
|
if ($headers != NULL) {
|
||||||
|
$this->headers = $headers;
|
||||||
|
}
|
||||||
|
if ($body != NULL) {
|
||||||
|
$this->body = $body;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class Signer
|
||||||
|
{
|
||||||
|
public $Key = '';
|
||||||
|
public $Secret = '';
|
||||||
|
|
||||||
|
function escape($string)
|
||||||
|
{
|
||||||
|
$entities = array('+', "%7E");
|
||||||
|
$replacements = array('%20', "~");
|
||||||
|
return str_replace($entities, $replacements, urlencode($string));
|
||||||
|
}
|
||||||
|
|
||||||
|
function findHeader($r, $header)
|
||||||
|
{
|
||||||
|
foreach ($r->headers as $key => $value) {
|
||||||
|
if (!strcasecmp($key, $header)) {
|
||||||
|
return $value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build a CanonicalRequest from a regular request string
|
||||||
|
//
|
||||||
|
// CanonicalRequest =
|
||||||
|
// HTTPRequestMethod + '\n' +
|
||||||
|
// CanonicalURI + '\n' +
|
||||||
|
// CanonicalQueryString + '\n' +
|
||||||
|
// CanonicalHeaders + '\n' +
|
||||||
|
// SignedHeaders + '\n' +
|
||||||
|
// HexEncode(Hash(RequestPayload))
|
||||||
|
function CanonicalRequest($r, $signedHeaders)
|
||||||
|
{
|
||||||
|
$CanonicalURI = $this->CanonicalURI($r);
|
||||||
|
$CanonicalQueryString = $this->CanonicalQueryString($r);
|
||||||
|
$canonicalHeaders = $this->CanonicalHeaders($r, $signedHeaders);
|
||||||
|
$signedHeadersString = join(";", $signedHeaders);
|
||||||
|
$hash = $this->findHeader($r, HeaderContentSha256);
|
||||||
|
if (!$hash) {
|
||||||
|
$hash = hash("sha256", $r->body);
|
||||||
|
}
|
||||||
|
return "$r->method\n$CanonicalURI\n$CanonicalQueryString\n$canonicalHeaders\n$signedHeadersString\n$hash";
|
||||||
|
}
|
||||||
|
|
||||||
|
// CanonicalURI returns request uri
|
||||||
|
function CanonicalURI($r)
|
||||||
|
{
|
||||||
|
$pattens = explode("/", $r->uri);
|
||||||
|
$uri = array();
|
||||||
|
foreach ($pattens as $v) {
|
||||||
|
array_push($uri, $this->escape($v));
|
||||||
|
}
|
||||||
|
$urlpath = join("/", $uri);
|
||||||
|
if (substr($urlpath, -1) != "/") {
|
||||||
|
$urlpath = $urlpath . "/";
|
||||||
|
}
|
||||||
|
return $urlpath;
|
||||||
|
}
|
||||||
|
|
||||||
|
// CanonicalQueryString
|
||||||
|
function CanonicalQueryString($r)
|
||||||
|
{
|
||||||
|
$keys = array();
|
||||||
|
foreach ($r->query as $key => $value) {
|
||||||
|
array_push($keys, $key);
|
||||||
|
}
|
||||||
|
sort($keys);
|
||||||
|
$a = array();
|
||||||
|
foreach ($keys as $key) {
|
||||||
|
$k = $this->escape($key);
|
||||||
|
$value = $r->query[$key];
|
||||||
|
if (is_array($value)) {
|
||||||
|
sort($value);
|
||||||
|
foreach ($value as $v) {
|
||||||
|
$kv = "$k=" . $this->escape($v);
|
||||||
|
array_push($a, $kv);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$kv = "$k=" . $this->escape($value);
|
||||||
|
array_push($a, $kv);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return join("&", $a);
|
||||||
|
}
|
||||||
|
|
||||||
|
// CanonicalHeaders
|
||||||
|
function CanonicalHeaders($r, $signedHeaders)
|
||||||
|
{
|
||||||
|
$headers = array();
|
||||||
|
foreach ($r->headers as $key => $value) {
|
||||||
|
$headers[strtolower($key)] = trim($value);
|
||||||
|
}
|
||||||
|
$a = array();
|
||||||
|
foreach ($signedHeaders as $key) {
|
||||||
|
array_push($a, $key . ':' . $headers[$key]);
|
||||||
|
}
|
||||||
|
return join("\n", $a) . "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
function curlHeaders($r)
|
||||||
|
{
|
||||||
|
$header = array();
|
||||||
|
foreach ($r->headers as $key => $value) {
|
||||||
|
array_push($header, strtolower($key) . ':' . trim($value));
|
||||||
|
}
|
||||||
|
return $header;
|
||||||
|
}
|
||||||
|
|
||||||
|
// SignedHeaders
|
||||||
|
function SignedHeaders($r)
|
||||||
|
{
|
||||||
|
$a = array();
|
||||||
|
foreach ($r->headers as $key => $value) {
|
||||||
|
array_push($a, strtolower($key));
|
||||||
|
}
|
||||||
|
sort($a);
|
||||||
|
return $a;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create a "String to Sign".
|
||||||
|
function StringToSign($canonicalRequest, $t)
|
||||||
|
{
|
||||||
|
date_default_timezone_set('UTC');
|
||||||
|
$date = date(BasicDateFormat, $t);
|
||||||
|
$hash = hash("sha256", $canonicalRequest);
|
||||||
|
return "SDK-HMAC-SHA256\n$date\n$hash";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the HWS Signature.
|
||||||
|
function SignStringToSign($stringToSign, $signingKey)
|
||||||
|
{
|
||||||
|
return hash_hmac("sha256", $stringToSign, $signingKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get the finalized value for the "Authorization" header. The signature parameter is the output from SignStringToSign
|
||||||
|
function AuthHeaderValue($signature, $accessKey, $signedHeaders)
|
||||||
|
{
|
||||||
|
$signedHeadersString = join(";", $signedHeaders);
|
||||||
|
return "SDK-HMAC-SHA256 Access=$accessKey, SignedHeaders=$signedHeadersString, Signature=$signature";
|
||||||
|
}
|
||||||
|
|
||||||
|
public function Sign($r)
|
||||||
|
{
|
||||||
|
date_default_timezone_set('UTC');
|
||||||
|
$date = $this->findHeader($r, HeaderXDate);
|
||||||
|
if ($date) {
|
||||||
|
$t = date_timestamp_get(date_create_from_format(BasicDateFormat, $date));
|
||||||
|
}
|
||||||
|
if (!@$t) {
|
||||||
|
$t = time();
|
||||||
|
$r->headers[HeaderXDate] = date(BasicDateFormat, $t);
|
||||||
|
}
|
||||||
|
$queryString = $this->CanonicalQueryString($r);
|
||||||
|
if ($queryString != "") {
|
||||||
|
$queryString = "?" . $queryString;
|
||||||
|
}
|
||||||
|
$signedHeaders = $this->SignedHeaders($r);
|
||||||
|
$canonicalRequest = $this->CanonicalRequest($r, $signedHeaders);
|
||||||
|
$stringToSign = $this->StringToSign($canonicalRequest, $t);
|
||||||
|
$signature = $this->SignStringToSign($stringToSign, $this->Secret);
|
||||||
|
$authValue = $this->AuthHeaderValue($signature, $this->Key, $signedHeaders);
|
||||||
|
$r->headers[HeaderAuthorization] = $authValue;
|
||||||
|
|
||||||
|
$curl = curl_init();
|
||||||
|
$uri = str_replace(array("%2F"), array("/"), rawurlencode($r->uri));
|
||||||
|
$url = $r->scheme . '://' . $r->host . $uri . $queryString;
|
||||||
|
$headers = $this->curlHeaders($r);
|
||||||
|
curl_setopt($curl, CURLOPT_URL, $url);
|
||||||
|
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
|
||||||
|
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $r->method);
|
||||||
|
curl_setopt($curl, CURLOPT_POSTFIELDS, $r->body);
|
||||||
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
|
||||||
|
curl_setopt($curl, CURLOPT_NOBODY, FALSE);
|
||||||
|
return $curl;
|
||||||
|
}
|
||||||
|
}
|
||||||
+64
-37
@@ -5,16 +5,19 @@ function getpath()
|
|||||||
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($_SERVER['HTTP_ACCEPT_LANGUAGE'],';')[0],',')[0]);
|
$_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_X_FORWARDED_FOR'])) $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
||||||
$_SERVER['base_path'] = path_format(substr($_SERVER['SCRIPT_NAME'], 0, -10) . '/');
|
$_SERVER['base_path'] = path_format(substr($_SERVER['SCRIPT_NAME'], 0, -10) . '/');
|
||||||
|
if (isset($_SERVER['UNENCODED_URL'])) $_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];
|
||||||
$p = strpos($_SERVER['REQUEST_URI'],'?');
|
$p = strpos($_SERVER['REQUEST_URI'],'?');
|
||||||
if ($p>0) $path = substr($_SERVER['REQUEST_URI'], 0, $p);
|
if ($p>0) $path = substr($_SERVER['REQUEST_URI'], 0, $p);
|
||||||
else $path = $_SERVER['REQUEST_URI'];
|
else $path = $_SERVER['REQUEST_URI'];
|
||||||
$path = path_format( substr($path, strlen($_SERVER['base_path'])) );
|
$path = path_format( substr($path, strlen($_SERVER['base_path'])) );
|
||||||
return substr($path, 1);
|
return $path;
|
||||||
|
//return substr($path, 1);
|
||||||
//return spurlencode($path, '/');
|
//return spurlencode($path, '/');
|
||||||
}
|
}
|
||||||
|
|
||||||
function getGET()
|
function getGET()
|
||||||
{
|
{
|
||||||
|
if (isset($_SERVER['UNENCODED_URL'])) $_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];
|
||||||
$p = strpos($_SERVER['REQUEST_URI'],'?');
|
$p = strpos($_SERVER['REQUEST_URI'],'?');
|
||||||
if ($p>0) {
|
if ($p>0) {
|
||||||
$getstr = substr($_SERVER['REQUEST_URI'], $p+1);
|
$getstr = substr($_SERVER['REQUEST_URI'], $p+1);
|
||||||
@@ -44,18 +47,19 @@ function getConfig($str, $disktag = '')
|
|||||||
global $Base64Env;
|
global $Base64Env;
|
||||||
//include 'config.php';
|
//include 'config.php';
|
||||||
$s = file_get_contents('config.php');
|
$s = file_get_contents('config.php');
|
||||||
$configs = substr($s, 18, -2);
|
//$configs = substr($s, 18, -2);
|
||||||
|
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
|
||||||
if ($configs!='') {
|
if ($configs!='') {
|
||||||
$envs = json_decode($configs, true);
|
$envs = json_decode($configs, true);
|
||||||
if (in_array($str, $InnerEnv)) {
|
if (in_array($str, $InnerEnv)) {
|
||||||
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
if (isset($envs[$disktag][$str])) {
|
if (isset($envs[$disktag][$str])) {
|
||||||
if (in_array($str, $Base64Env)) return equal_replace($envs[$disktag][$str],1);
|
if (in_array($str, $Base64Env)) return base64y_decode($envs[$disktag][$str]);
|
||||||
else return $envs[$disktag][$str];
|
else return $envs[$disktag][$str];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (isset($envs[$str])) {
|
if (isset($envs[$str])) {
|
||||||
if (in_array($str, $Base64Env)) return equal_replace($envs[$str],1);
|
if (in_array($str, $Base64Env)) return base64y_decode($envs[$str]);
|
||||||
else return $envs[$str];
|
else return $envs[$str];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -70,14 +74,15 @@ function setConfig($arr, $disktag = '')
|
|||||||
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
//include 'config.php';
|
//include 'config.php';
|
||||||
$s = file_get_contents('config.php');
|
$s = file_get_contents('config.php');
|
||||||
$configs = substr($s, 18, -2);
|
//$configs = substr($s, 18, -2);
|
||||||
|
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
|
||||||
if ($configs!='') $envs = json_decode($configs, true);
|
if ($configs!='') $envs = json_decode($configs, true);
|
||||||
$disktags = explode("|",getConfig('disktag'));
|
$disktags = explode("|",getConfig('disktag'));
|
||||||
$indisk = 0;
|
$indisk = 0;
|
||||||
$operatedisk = 0;
|
$operatedisk = 0;
|
||||||
foreach ($arr as $k => $v) {
|
foreach ($arr as $k => $v) {
|
||||||
if (in_array($k, $InnerEnv)) {
|
if (in_array($k, $InnerEnv)) {
|
||||||
if (in_array($k, $Base64Env)) $envs[$disktag][$k] = equal_replace($v);
|
if (in_array($k, $Base64Env)) $envs[$disktag][$k] = base64y_encode($v);
|
||||||
else $envs[$disktag][$k] = $v;
|
else $envs[$disktag][$k] = $v;
|
||||||
$indisk = 1;
|
$indisk = 1;
|
||||||
} elseif ($k=='disktag_add') {
|
} elseif ($k=='disktag_add') {
|
||||||
@@ -88,7 +93,7 @@ function setConfig($arr, $disktag = '')
|
|||||||
$envs[$v] = '';
|
$envs[$v] = '';
|
||||||
$operatedisk = 1;
|
$operatedisk = 1;
|
||||||
} else {
|
} else {
|
||||||
if (in_array($k, $Base64Env)) $envs[$k] = equal_replace($v);
|
if (in_array($k, $Base64Env)) $envs[$k] = base64y_encode($v);
|
||||||
else $envs[$k] = $v;
|
else $envs[$k] = $v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -107,11 +112,11 @@ function setConfig($arr, $disktag = '')
|
|||||||
$envs = array_filter($envs, 'array_value_isnot_null');
|
$envs = array_filter($envs, 'array_value_isnot_null');
|
||||||
ksort($envs);
|
ksort($envs);
|
||||||
//echo '<pre>'. json_encode($envs, JSON_PRETTY_PRINT).'</pre>';
|
//echo '<pre>'. json_encode($envs, JSON_PRETTY_PRINT).'</pre>';
|
||||||
$prestr = '<?php $configs = \'
|
$prestr = '<?php $configs = \'' . PHP_EOL;
|
||||||
';
|
$aftstr = PHP_EOL . '\';';
|
||||||
$aftstr = '
|
$response = file_put_contents('config.php', $prestr . json_encode($envs, JSON_PRETTY_PRINT) . $aftstr);
|
||||||
\';';
|
if ($response>0) return json_encode( [ 'response' => 'success' ] );
|
||||||
return file_put_contents('config.php', $prestr . json_encode($envs, JSON_PRETTY_PRINT) . $aftstr);
|
return json_encode( [ 'message' => 'Failed to write config.', 'code' => 'failed' ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
function install()
|
function install()
|
||||||
@@ -122,13 +127,20 @@ function install()
|
|||||||
$tmp['admin'] = $_POST['admin'];
|
$tmp['admin'] = $_POST['admin'];
|
||||||
//$tmp['language'] = $_COOKIE['language'];
|
//$tmp['language'] = $_COOKIE['language'];
|
||||||
$tmp['timezone'] = $_COOKIE['timezone'];
|
$tmp['timezone'] = $_COOKIE['timezone'];
|
||||||
$response = setConfig($tmp);
|
$response = setConfigResponse( setConfig($tmp) );
|
||||||
if (api_error($response)) {
|
if (api_error($response)) {
|
||||||
$html = api_error_msg($response);
|
$html = api_error_msg($response);
|
||||||
$title = 'Error';
|
$title = 'Error';
|
||||||
return message($html, $title, 201);
|
return message($html, $title, 201);
|
||||||
} else {
|
} else {
|
||||||
return output('Jump<script>document.cookie=\'language=; path=/\';</script><meta http-equiv="refresh" content="3;URL=' . path_format($_SERVER['base_path'] . '/') . '">', 302);
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -184,7 +196,7 @@ function install()
|
|||||||
document.getElementById("submitbtn").disabled = false;
|
document.getElementById("submitbtn").disabled = false;
|
||||||
document.getElementById("formdiv").style.display = "";
|
document.getElementById("formdiv").style.display = "";
|
||||||
} else {
|
} else {
|
||||||
alert(url+"\n"+xhr4.status);
|
alert("Url: " + url + "\nExpect http code 201, but received " + xhr4.status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -206,7 +218,10 @@ language:<br>';
|
|||||||
<script>
|
<script>
|
||||||
function changelanguage(str)
|
function changelanguage(str)
|
||||||
{
|
{
|
||||||
document.cookie=\'language=\'+str+\'; path=/\';
|
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;
|
location.href = location.href;
|
||||||
}
|
}
|
||||||
</script>';
|
</script>';
|
||||||
@@ -242,29 +257,31 @@ function RewriteEngineOn()
|
|||||||
|
|
||||||
function api_error($response)
|
function api_error($response)
|
||||||
{
|
{
|
||||||
return !$response;
|
return isset($response['message']);
|
||||||
}
|
}
|
||||||
|
|
||||||
function api_error_msg($response)
|
function api_error_msg($response)
|
||||||
{
|
{
|
||||||
return $response . '<br>
|
return $response['code'] . '<br>
|
||||||
Can not write config to file.<br>
|
' . $response['message'] . '<br>
|
||||||
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
|
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function setConfigResponse($response)
|
function setConfigResponse($response)
|
||||||
{
|
{
|
||||||
return $response;
|
return json_decode($response, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
||||||
{
|
{
|
||||||
|
$slash = '/';
|
||||||
|
if (strpos(__DIR__, ':')) $slash = '\\';
|
||||||
// __DIR__ is xxx/platform
|
// __DIR__ is xxx/platform
|
||||||
$projectPath = splitlast(__DIR__, '/')[0];
|
$projectPath = splitlast(__DIR__, $slash)[0];
|
||||||
|
|
||||||
// 从github下载对应tar.gz,并解压
|
// 从github下载对应tar.gz,并解压
|
||||||
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . $branch . '/';
|
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
|
||||||
$tarfile = $projectPath.'/github.tar.gz';
|
$tarfile = $projectPath . $slash .'github.tar.gz';
|
||||||
$githubfile = file_get_contents($url);
|
$githubfile = file_get_contents($url);
|
||||||
if (!$githubfile) return 0;
|
if (!$githubfile) return 0;
|
||||||
file_put_contents($tarfile, $githubfile);
|
file_put_contents($tarfile, $githubfile);
|
||||||
@@ -273,17 +290,17 @@ function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch =
|
|||||||
$phar->extractTo($projectPath, null, true);//路径 要解压的文件 是否覆盖
|
$phar->extractTo($projectPath, null, true);//路径 要解压的文件 是否覆盖
|
||||||
} else {
|
} else {
|
||||||
ob_start();
|
ob_start();
|
||||||
passthru('tar -xzvf '.$tarfile,$stat);
|
passthru('tar -xzvf ' . $tarfile, $stat);
|
||||||
ob_get_clean();
|
ob_get_clean();
|
||||||
}
|
}
|
||||||
unlink($tarfile);
|
unlink($tarfile);
|
||||||
|
|
||||||
$outPath = '';
|
$outPath = '';
|
||||||
$tmp = scandir($projectPath);
|
$tmp = scandir($projectPath);
|
||||||
$name = $auth.'-'.$project;
|
$name = $auth . '-' . $project;
|
||||||
foreach ($tmp as $f) {
|
foreach ($tmp as $f) {
|
||||||
if ( substr($f, 0, strlen($name)) == $name) {
|
if ( substr($f, 0, strlen($name)) == $name) {
|
||||||
$outPath = $projectPath . '/' . $f;
|
$outPath = $projectPath . $slash . $f;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -291,31 +308,41 @@ function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch =
|
|||||||
if ($outPath=='') return 0;
|
if ($outPath=='') return 0;
|
||||||
|
|
||||||
//unlink($outPath.'/config.php');
|
//unlink($outPath.'/config.php');
|
||||||
rename($projectPath.'/config.php', $outPath.'/config.php');
|
$response = rename($projectPath . $slash . 'config.php', $outPath . $slash . 'config.php');
|
||||||
|
if (!$response) {
|
||||||
return moveFolder($outPath, $projectPath);
|
$tmp1['code'] = "Move Failed";
|
||||||
|
$tmp1['message'] = "Can not move " . $projectPath . $slash . 'config.php' . " to " . $outPath . $slash . 'config.php';
|
||||||
|
return json_encode($tmp1);
|
||||||
|
}
|
||||||
|
return moveFolder($outPath, $projectPath, $slash);
|
||||||
}
|
}
|
||||||
|
|
||||||
function moveFolder($from, $to)
|
function moveFolder($from, $to, $slash)
|
||||||
{
|
{
|
||||||
if (substr($from, -1)=='/') $from = substr($from, 0, -1);
|
if (substr($from, -1)==$slash) $from = substr($from, 0, -1);
|
||||||
if (substr($to, -1)=='/') $to = substr($to, 0, -1);
|
if (substr($to, -1)==$slash) $to = substr($to, 0, -1);
|
||||||
if (!file_exists($to)) mkdir($to, 0777);
|
if (!file_exists($to)) mkdir($to, 0777);
|
||||||
$handler=opendir($from);
|
$handler=opendir($from);
|
||||||
while($filename=readdir($handler)) {
|
while($filename=readdir($handler)) {
|
||||||
if($filename != '.' && $filename != '..'){
|
if($filename != '.' && $filename != '..'){
|
||||||
$fromfile = $from.'/'.$filename;
|
$fromfile = $from . $slash . $filename;
|
||||||
$tofile = $to.'/'.$filename;
|
$tofile = $to . $slash . $filename;
|
||||||
if(is_dir($fromfile)){// 如果读取的某个对象是文件夹,则递归
|
if(is_dir($fromfile)){// 如果读取的某个对象是文件夹,则递归
|
||||||
moveFolder($fromfile, $tofile);
|
$response = moveFolder($fromfile, $tofile, $slash);
|
||||||
|
if (api_error(setConfigResponse($response))) return $response;
|
||||||
}else{
|
}else{
|
||||||
//if (file_exists($tofile)) unlink($tofile);
|
//if (file_exists($tofile)) unlink($tofile);
|
||||||
rename($fromfile, $tofile);
|
$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);
|
if (file_exists($fromfile)) unlink($fromfile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
closedir($handler);
|
closedir($handler);
|
||||||
rmdir($from);
|
rmdir($from);
|
||||||
return 1;
|
return json_encode( [ 'response' => 'success' ] );
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,20 +33,15 @@ function GetPathSetting($event, $context)
|
|||||||
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($event['headers']['accept-language'],';')[0],',')[0]);
|
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($event['headers']['accept-language'],';')[0],',')[0]);
|
||||||
$_SERVER['function_name'] = $context['function_name'];
|
$_SERVER['function_name'] = $context['function_name'];
|
||||||
$_SERVER['namespace'] = $context['namespace'];
|
$_SERVER['namespace'] = $context['namespace'];
|
||||||
|
$_SERVER['Region'] = getenv('TENCENTCLOUD_REGION');
|
||||||
$host_name = $event['headers']['host'];
|
$host_name = $event['headers']['host'];
|
||||||
$_SERVER['HTTP_HOST'] = $host_name;
|
$_SERVER['HTTP_HOST'] = $host_name;
|
||||||
$serviceId = $event['requestContext']['serviceId'];
|
$serviceId = $event['requestContext']['serviceId'];
|
||||||
if ( $serviceId === substr($host_name,0,strlen($serviceId)) ) {
|
if ( $serviceId === substr($host_name,0,strlen($serviceId)) ) {
|
||||||
$_SERVER['base_path'] = '/'.$event['requestContext']['stage'].'/'.$_SERVER['function_name'].'/';
|
$_SERVER['base_path'] = '/'.$event['requestContext']['stage'].'/'.$_SERVER['function_name'].'/';
|
||||||
$_SERVER['Region'] = getenv('Region');
|
|
||||||
if ($_SERVER['Region'] == '') {
|
|
||||||
$_SERVER['Region'] = substr($host_name, strpos($host_name, '.')+1);
|
|
||||||
$_SERVER['Region'] = substr($_SERVER['Region'], 0, strpos($_SERVER['Region'], '.'));
|
|
||||||
}
|
|
||||||
$path = substr($event['path'], strlen('/'.$_SERVER['function_name'].'/'));
|
$path = substr($event['path'], strlen('/'.$_SERVER['function_name'].'/'));
|
||||||
} else {
|
} else {
|
||||||
$_SERVER['base_path'] = $event['requestContext']['path'];
|
$_SERVER['base_path'] = $event['requestContext']['path'];
|
||||||
$_SERVER['Region'] = getenv('Region');
|
|
||||||
$path = substr($event['path'], strlen($event['requestContext']['path']));
|
$path = substr($event['path'], strlen($event['requestContext']['path']));
|
||||||
}
|
}
|
||||||
if (substr($path,-1)=='/') $path=substr($path,0,-1);
|
if (substr($path,-1)=='/') $path=substr($path,0,-1);
|
||||||
@@ -65,11 +60,11 @@ function getConfig($str, $disktag = '')
|
|||||||
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
$env = json_decode(getenv($disktag), true);
|
$env = json_decode(getenv($disktag), true);
|
||||||
if (isset($env[$str])) {
|
if (isset($env[$str])) {
|
||||||
if (in_array($str, $Base64Env)) return equal_replace($env[$str],1);
|
if (in_array($str, $Base64Env)) return base64y_decode($env[$str]);
|
||||||
else return $env[$str];
|
else return $env[$str];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (in_array($str, $Base64Env)) return equal_replace(getenv($str),1);
|
if (in_array($str, $Base64Env)) return base64y_decode(getenv($str));
|
||||||
else return getenv($str);
|
else return getenv($str);
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
@@ -87,7 +82,7 @@ function setConfig($arr, $disktag = '')
|
|||||||
$oparetdisk = 0;
|
$oparetdisk = 0;
|
||||||
foreach ($arr as $k => $v) {
|
foreach ($arr as $k => $v) {
|
||||||
if (in_array($k, $InnerEnv)) {
|
if (in_array($k, $InnerEnv)) {
|
||||||
if (in_array($k, $Base64Env)) $diskconfig[$k] = equal_replace($v);
|
if (in_array($k, $Base64Env)) $diskconfig[$k] = base64y_encode($v);
|
||||||
else $diskconfig[$k] = $v;
|
else $diskconfig[$k] = $v;
|
||||||
$indisk = 1;
|
$indisk = 1;
|
||||||
} elseif ($k=='disktag_add') {
|
} elseif ($k=='disktag_add') {
|
||||||
@@ -98,7 +93,7 @@ function setConfig($arr, $disktag = '')
|
|||||||
$tmp[$v] = '';
|
$tmp[$v] = '';
|
||||||
$oparetdisk = 1;
|
$oparetdisk = 1;
|
||||||
} else {
|
} else {
|
||||||
if (in_array($k, $Base64Env)) $tmp[$k] = equal_replace($v);
|
if (in_array($k, $Base64Env)) $tmp[$k] = base64y_encode($v);
|
||||||
else $tmp[$k] = $v;
|
else $tmp[$k] = $v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -132,17 +127,33 @@ function install()
|
|||||||
global $constStr;
|
global $constStr;
|
||||||
if ($_GET['install2']) {
|
if ($_GET['install2']) {
|
||||||
$tmp['admin'] = $_POST['admin'];
|
$tmp['admin'] = $_POST['admin'];
|
||||||
setConfig($tmp);
|
$response = setConfigResponse( setConfig($tmp) );
|
||||||
|
if (api_error($response)) {
|
||||||
|
$html = api_error_msg($response);
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
if (needUpdate()) {
|
if (needUpdate()) {
|
||||||
OnekeyUpate();
|
OnekeyUpate();
|
||||||
return message('update to github version, reinstall.<script>document.cookie=\'language=; path=/\';</script><meta http-equiv="refresh" content="3;URL=' . $url . '">', 'Program updating', 201);
|
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>document.cookie=\'language=; path=/\';</script><meta http-equiv="refresh" content="3;URL=' . path_format($_SERVER['base_path'] . '/') . '">', 302);
|
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']) {
|
if ($_GET['install1']) {
|
||||||
//if ($_POST['admin']!='') {
|
|
||||||
//$tmp['language'] = $_POST['language'];
|
|
||||||
$tmp['Region'] = $_POST['Region'];
|
|
||||||
$tmp['timezone'] = $_COOKIE['timezone'];
|
$tmp['timezone'] = $_COOKIE['timezone'];
|
||||||
$SecretId = getConfig('SecretId');
|
$SecretId = getConfig('SecretId');
|
||||||
if ($SecretId=='') {
|
if ($SecretId=='') {
|
||||||
@@ -154,12 +165,18 @@ function install()
|
|||||||
$SecretKey = $_POST['SecretKey'];
|
$SecretKey = $_POST['SecretKey'];
|
||||||
$tmp['SecretKey'] = $SecretKey;
|
$tmp['SecretKey'] = $SecretKey;
|
||||||
}
|
}
|
||||||
$response = json_decode(SetbaseConfig($tmp, $_SERVER['function_name'], $_POST['Region'], $_SERVER['namespace'], $SecretId, $SecretKey), true)['Response'];
|
$tmp['ONEMANAGER_CONFIG_SAVE'] = $_POST['ONEMANAGER_CONFIG_SAVE'];
|
||||||
|
$response = json_decode(SetbaseConfig($tmp, $_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], $SecretId, $SecretKey), true)['Response'];
|
||||||
if (api_error($response)) {
|
if (api_error($response)) {
|
||||||
$html = api_error_msg($response);
|
$html = api_error_msg($response);
|
||||||
$title = 'Error';
|
$title = 'Error';
|
||||||
return message($html, $title, 201);
|
return message($html, $title, 201);
|
||||||
} else {
|
} else {
|
||||||
|
if ($tmp['ONEMANAGER_CONFIG_SAVE'] == 'file') {
|
||||||
|
$html = getconstStr('ONEMANAGER_CONFIG_SAVE_FILE') . '<br><a href="' . $_SERVER['base_path'] . '">' . getconstStr('Home') . '</a>';
|
||||||
|
$title = 'Reinstall';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
$html .= '
|
$html .= '
|
||||||
<form action="?install2" method="post" onsubmit="return notnull(this);">
|
<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>
|
<label>'.getconstStr('SetAdminPassword').':<input name="admin" type="password" placeholder="' . getconstStr('EnvironmentsDescription')['admin'] . '" size="' . strlen(getconstStr('EnvironmentsDescription')['admin']) . '"></label><br>
|
||||||
@@ -178,7 +195,6 @@ function install()
|
|||||||
$title = getconstStr('SetAdminPassword');
|
$title = getconstStr('SetAdminPassword');
|
||||||
return message($html, $title, 201);
|
return message($html, $title, 201);
|
||||||
}
|
}
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
if ($_GET['install0']) {
|
if ($_GET['install0']) {
|
||||||
$html .= '
|
$html .= '
|
||||||
@@ -189,25 +205,13 @@ language:<br>';
|
|||||||
<label><input type="radio" name="language" value="'.$key1.'" '.($key1==$constStr['language']?'checked':'').' onclick="changelanguage(\''.$key1.'\')">'.$value1.'</label><br>';
|
<label><input type="radio" name="language" value="'.$key1.'" '.($key1==$constStr['language']?'checked':'').' onclick="changelanguage(\''.$key1.'\')">'.$value1.'</label><br>';
|
||||||
}
|
}
|
||||||
if (getConfig('SecretId')==''||getConfig('SecretKey')=='') $html .= '
|
if (getConfig('SecretId')==''||getConfig('SecretKey')=='') $html .= '
|
||||||
<a href="https://console.cloud.tencent.com/cam/capi" target="_blank">'.getconstStr('Create').' SecretId & SecretKey</a><br>
|
<a href="https://console.cloud.tencent.com/cam/capi" target="_blank">' . getconstStr('Create') . ' SecretId & SecretKey</a><br>
|
||||||
<label>SecretId:<input name="SecretId" type="text" placeholder="" size=""></label><br>
|
<label>SecretId:<input name="SecretId" type="text" placeholder="" size=""></label><br>
|
||||||
<label>SecretKey:<input name="SecretKey" type="text" placeholder="" size=""></label><br>';
|
<label>SecretKey:<input name="SecretKey" type="text" placeholder="" size=""></label><br>';
|
||||||
$html .= '
|
$html .= '
|
||||||
<select class="changelanguage" name="Region">
|
<label><input type="radio" name="ONEMANAGER_CONFIG_SAVE" value="" ' . ('file'==getenv('ONEMANAGER_CONFIG_SAVE')?'':'checked') . '>' . getconstStr('ONEMANAGER_CONFIG_SAVE_ENV') . '</label><br>
|
||||||
<option value="">选择区域</option>
|
<label><input type="radio" name="ONEMANAGER_CONFIG_SAVE" value="file" ' . ('file'==getenv('ONEMANAGER_CONFIG_SAVE')?'checked':'') . '>' . getconstStr('ONEMANAGER_CONFIG_SAVE_FILE') . '</label><br>';
|
||||||
<option value="ap-beijing">华北地区(北京)</option>
|
$html .= '
|
||||||
<option value="ap-chengdu">西南地区(成都)</option>
|
|
||||||
<option value="ap-guangzhou">华南地区(广州)</option>
|
|
||||||
<option value="ap-guangzhou-open">华南地区(广州Open)</option>
|
|
||||||
<option value="ap-hongkong">港澳台地区(中国香港)</option>
|
|
||||||
<option value="ap-mumbai">亚太南部(孟买)</option>
|
|
||||||
<option value="ap-shanghai">华东地区(上海)</option>
|
|
||||||
<option value="ap-shanghai-fsi">华东地区(上海金融)</option>
|
|
||||||
<option value="ap-singapore">亚太东南(新加坡)</option>
|
|
||||||
<option value="ap-tokyo">亚太东北(东京)</option>
|
|
||||||
<option value="na-siliconvalley">美国西部(硅谷)</option>
|
|
||||||
<option value="na-toronto">北美地区(多伦多)</option>
|
|
||||||
</select>(腾讯几个月了还不做出来,只能先弄选择了)<br>
|
|
||||||
<input type="submit" value="'.getconstStr('Submit').'">
|
<input type="submit" value="'.getconstStr('Submit').'">
|
||||||
</form>
|
</form>
|
||||||
<script>
|
<script>
|
||||||
@@ -219,7 +223,10 @@ language:<br>';
|
|||||||
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
function changelanguage(str)
|
function changelanguage(str)
|
||||||
{
|
{
|
||||||
document.cookie=\'language=\'+str+\'; path=/\';
|
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;
|
location.href = location.href;
|
||||||
}
|
}
|
||||||
function notnull(t)
|
function notnull(t)
|
||||||
@@ -308,7 +315,7 @@ function updateEnvironment($Envs, $function_name, $Region, $Namespace, $SecretId
|
|||||||
$tmp_env[$key1] = $value1;
|
$tmp_env[$key1] = $value1;
|
||||||
}
|
}
|
||||||
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
||||||
$tmp_env['Region'] = $Region;
|
//$tmp_env['Region'] = $Region;
|
||||||
ksort($tmp_env);
|
ksort($tmp_env);
|
||||||
|
|
||||||
$i = 0;
|
$i = 0;
|
||||||
@@ -336,7 +343,8 @@ function updateEnvironment($Envs, $function_name, $Region, $Namespace, $SecretId
|
|||||||
|
|
||||||
function SetbaseConfig($Envs, $function_name, $Region, $Namespace, $SecretId, $SecretKey)
|
function SetbaseConfig($Envs, $function_name, $Region, $Namespace, $SecretId, $SecretKey)
|
||||||
{
|
{
|
||||||
echo json_encode($Envs,JSON_PRETTY_PRINT);
|
//echo json_encode($Envs,JSON_PRETTY_PRINT);
|
||||||
|
if ($Envs['ONEMANAGER_CONFIG_SAVE'] == 'file') $Envs = Array( 'ONEMANAGER_CONFIG_SAVE' => 'file' );
|
||||||
/*$trynum = 0;
|
/*$trynum = 0;
|
||||||
while( json_decode(getfunctioninfo($_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], $SecretId, $SecretKey),true)['Response']['Status']!='Active' ) echo '
|
while( json_decode(getfunctioninfo($_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], $SecretId, $SecretKey),true)['Response']['Status']!='Active' ) echo '
|
||||||
'.++$trynum;*/
|
'.++$trynum;*/
|
||||||
@@ -349,7 +357,7 @@ function SetbaseConfig($Envs, $function_name, $Region, $Namespace, $SecretId, $S
|
|||||||
$tmp_env[$key1] = $value1;
|
$tmp_env[$key1] = $value1;
|
||||||
}
|
}
|
||||||
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
$tmp_env = array_filter($tmp_env, 'array_value_isnot_null'); // remove null. 清除空值
|
||||||
$tmp_env['Region'] = $Region;
|
//$tmp_env['Region'] = $Region;
|
||||||
ksort($tmp_env);
|
ksort($tmp_env);
|
||||||
|
|
||||||
$i = 0;
|
$i = 0;
|
||||||
@@ -369,7 +377,7 @@ function SetbaseConfig($Envs, $function_name, $Region, $Namespace, $SecretId, $S
|
|||||||
$tmpdata['Timestamp'] = time();
|
$tmpdata['Timestamp'] = time();
|
||||||
$tmpdata['Token'] = '';
|
$tmpdata['Token'] = '';
|
||||||
$tmpdata['Version'] = '2018-04-16';
|
$tmpdata['Version'] = '2018-04-16';
|
||||||
$tmpdata['Description'] = 'Onedrive index and manager in SCF.';
|
$tmpdata['Description'] = 'Onedrive index and manager in Tencent SCF.';
|
||||||
$tmpdata['MemorySize'] = 64;
|
$tmpdata['MemorySize'] = 64;
|
||||||
$tmpdata['Timeout'] = 30;
|
$tmpdata['Timeout'] = 30;
|
||||||
$data = ReorganizeDate($tmpdata);
|
$data = ReorganizeDate($tmpdata);
|
||||||
@@ -422,7 +430,7 @@ function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch =
|
|||||||
{
|
{
|
||||||
$source['url'] = 'https://github.com/' . $auth . '/' . $project;
|
$source['url'] = 'https://github.com/' . $auth . '/' . $project;
|
||||||
$source['branch'] = $branch;
|
$source['branch'] = $branch;
|
||||||
return json_decode(updateProgram($_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], getConfig('SecretId'), getConfig('SecretKey'), $source), true)['Response'];
|
return updateProgram($_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], getConfig('SecretId'), getConfig('SecretKey'), $source);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setConfigResponse($response)
|
function setConfigResponse($response)
|
||||||
@@ -0,0 +1,621 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
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['queryString'];
|
||||||
|
$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));
|
||||||
|
}
|
||||||
|
$_SERVER['HTTP_USER_AGENT'] = $event['headers']['user-agent'];
|
||||||
|
$_SERVER['HTTP_TRANSLATE']==$event['headers']['translate'];//'f'
|
||||||
|
$_SERVER['USER'] = 'qcloud';
|
||||||
|
}
|
||||||
|
|
||||||
|
function GetPathSetting($event, $context)
|
||||||
|
{
|
||||||
|
$_SERVER['firstacceptlanguage'] = strtolower(splitfirst(splitfirst($event['headers']['accept-language'],';')[0],',')[0]);
|
||||||
|
$_SERVER['function_name'] = $context['function_name'];
|
||||||
|
$_SERVER['namespace'] = $context['namespace'];
|
||||||
|
$_SERVER['Region'] = getenv('TENCENTCLOUD_REGION');
|
||||||
|
$host_name = $event['headers']['host'];
|
||||||
|
$_SERVER['HTTP_HOST'] = $host_name;
|
||||||
|
$serviceId = $event['requestContext']['serviceId'];
|
||||||
|
if ( $serviceId === substr($host_name,0,strlen($serviceId)) ) {
|
||||||
|
$_SERVER['base_path'] = '/'.$event['requestContext']['stage'].'/'.$_SERVER['function_name'].'/';
|
||||||
|
$path = substr($event['path'], strlen('/'.$_SERVER['function_name'].'/'));
|
||||||
|
} else {
|
||||||
|
$_SERVER['base_path'] = $event['requestContext']['path'];
|
||||||
|
$path = substr($event['path'], strlen($event['requestContext']['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['requestContext']['sourceIp'];
|
||||||
|
$_SERVER['HTTP_X_REQUESTED_WITH'] = $event['headers']['x-requested-with'];
|
||||||
|
return $path;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getConfig($str, $disktag = '')
|
||||||
|
{
|
||||||
|
global $InnerEnv;
|
||||||
|
global $Base64Env;
|
||||||
|
//include 'config.php';
|
||||||
|
$s = file_get_contents('config.php');
|
||||||
|
//$configs = substr($s, 18, -2);
|
||||||
|
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
|
||||||
|
if ($configs!='') {
|
||||||
|
$envs = json_decode($configs, true);
|
||||||
|
if (in_array($str, $InnerEnv)) {
|
||||||
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
|
if (isset($envs[$disktag][$str])) {
|
||||||
|
if (in_array($str, $Base64Env)) return base64y_decode($envs[$disktag][$str]);
|
||||||
|
else return $envs[$disktag][$str];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (isset($envs[$str])) {
|
||||||
|
if (in_array($str, $Base64Env)) return base64y_decode($envs[$str]);
|
||||||
|
else return $envs[$str];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function setConfig($arr, $disktag = '')
|
||||||
|
{
|
||||||
|
global $InnerEnv;
|
||||||
|
global $Base64Env;
|
||||||
|
if ($disktag=='') $disktag = $_SERVER['disktag'];
|
||||||
|
//include 'config.php';
|
||||||
|
$s = file_get_contents('config.php');
|
||||||
|
//$configs = substr($s, 18, -2);
|
||||||
|
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
|
||||||
|
if ($configs!='') $envs = json_decode($configs, true);
|
||||||
|
$disktags = explode("|",getConfig('disktag'));
|
||||||
|
$indisk = 0;
|
||||||
|
$operatedisk = 0;
|
||||||
|
foreach ($arr as $k => $v) {
|
||||||
|
if (in_array($k, $InnerEnv)) {
|
||||||
|
if (in_array($k, $Base64Env)) $envs[$disktag][$k] = base64y_encode($v);
|
||||||
|
else $envs[$disktag][$k] = $v;
|
||||||
|
$indisk = 1;
|
||||||
|
} elseif ($k=='disktag_add') {
|
||||||
|
array_push($disktags, $v);
|
||||||
|
$operatedisk = 1;
|
||||||
|
} elseif ($k=='disktag_del') {
|
||||||
|
$disktags = array_diff($disktags, [ $v ]);
|
||||||
|
$envs[$v] = '';
|
||||||
|
$operatedisk = 1;
|
||||||
|
} else {
|
||||||
|
if (in_array($k, $Base64Env)) $envs[$k] = base64y_encode($v);
|
||||||
|
else $envs[$k] = $v;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($indisk) {
|
||||||
|
$diskconfig = $envs[$disktag];
|
||||||
|
$diskconfig = array_filter($diskconfig, 'array_value_isnot_null');
|
||||||
|
ksort($diskconfig);
|
||||||
|
$envs[$disktag] = $diskconfig;
|
||||||
|
}
|
||||||
|
if ($operatedisk) {
|
||||||
|
$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'] = '';
|
||||||
|
}
|
||||||
|
$envs = array_filter($envs, 'array_value_isnot_null');
|
||||||
|
ksort($envs);
|
||||||
|
$response = updateEnvironment($envs, $_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], getConfig('SecretId'), getConfig('SecretKey'));
|
||||||
|
WaitSCFStat($_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], getConfig('SecretId'), getConfig('SecretKey'));
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
function WaitSCFStat($function_name, $Region, $Namespace, $SecretId, $SecretKey)
|
||||||
|
{
|
||||||
|
$trynum = 0;
|
||||||
|
while( json_decode(getfunctioninfo($function_name, $Region, $Namespace, $SecretId, $SecretKey),true)['Response']['Status']!='Active' ) echo '
|
||||||
|
'.++$trynum;
|
||||||
|
}
|
||||||
|
|
||||||
|
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'];
|
||||||
|
$SecretId = getConfig('SecretId');
|
||||||
|
if ($SecretId=='') {
|
||||||
|
$SecretId = $_POST['SecretId'];
|
||||||
|
$tmp['SecretId'] = $SecretId;
|
||||||
|
}
|
||||||
|
$SecretKey = getConfig('SecretKey');
|
||||||
|
if ($SecretKey=='') {
|
||||||
|
$SecretKey = $_POST['SecretKey'];
|
||||||
|
$tmp['SecretKey'] = $SecretKey;
|
||||||
|
}
|
||||||
|
$tmp['ONEMANAGER_CONFIG_SAVE'] = $_POST['ONEMANAGER_CONFIG_SAVE'];
|
||||||
|
$response = json_decode(SetbaseConfig($tmp, $_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], $SecretId, $SecretKey), true)['Response'];
|
||||||
|
if (api_error($response)) {
|
||||||
|
$html = api_error_msg($response);
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
} else {
|
||||||
|
if ($tmp['ONEMANAGER_CONFIG_SAVE'] != 'file') {
|
||||||
|
$html = getconstStr('ONEMANAGER_CONFIG_SAVE_ENV') . '<br><a href="' . $_SERVER['base_path'] . '">' . getconstStr('Home') . '</a>';
|
||||||
|
$title = 'Reinstall';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
$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>';
|
||||||
|
}
|
||||||
|
if (getConfig('SecretId')==''||getConfig('SecretKey')=='') $html .= '
|
||||||
|
<a href="https://console.cloud.tencent.com/cam/capi" target="_blank">'.getconstStr('Create').' SecretId & SecretKey</a><br>
|
||||||
|
<label>SecretId:<input name="SecretId" type="text" placeholder="" size=""></label><br>
|
||||||
|
<label>SecretKey:<input name="SecretKey" type="text" placeholder="" size=""></label><br>';
|
||||||
|
$html .= '
|
||||||
|
<label><input type="radio" name="ONEMANAGER_CONFIG_SAVE" value="" ' . ('file'==getenv('ONEMANAGER_CONFIG_SAVE')?'':'checked') . '>' . getconstStr('ONEMANAGER_CONFIG_SAVE_ENV') . '</label><br>
|
||||||
|
<label><input type="radio" name="ONEMANAGER_CONFIG_SAVE" value="file" ' . ('file'==getenv('ONEMANAGER_CONFIG_SAVE')?'checked':'') . '>' . getconstStr('ONEMANAGER_CONFIG_SAVE_FILE') . '</label><br>';
|
||||||
|
$html .= '
|
||||||
|
<input type="submit" value="'.getconstStr('Submit').'">
|
||||||
|
</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)
|
||||||
|
{';
|
||||||
|
if (getConfig('SecretId')==''||getConfig('SecretKey')=='') $html .= '
|
||||||
|
if (t.SecretId.value==\'\') {
|
||||||
|
alert(\'input SecretId\');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (t.SecretKey.value==\'\') {
|
||||||
|
alert(\'input SecretKey\');
|
||||||
|
return false;
|
||||||
|
}';
|
||||||
|
$html .= '
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
</script>';
|
||||||
|
$title = getconstStr('SelectLanguage');
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
$html .= '<a href="?install0">'.getconstStr('ClickInstall').'</a>, '.getconstStr('LogintoBind');
|
||||||
|
$title = 'Error';
|
||||||
|
return message($html, $title, 201);
|
||||||
|
}
|
||||||
|
|
||||||
|
function post2url($url, $data)
|
||||||
|
{
|
||||||
|
$ch = curl_init();
|
||||||
|
curl_setopt($ch, CURLOPT_URL, $url);
|
||||||
|
curl_setopt($ch, CURLOPT_POST, 1);
|
||||||
|
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);
|
||||||
|
$response = curl_exec($ch);
|
||||||
|
curl_close($ch);
|
||||||
|
//echo $response;
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
function ReorganizeDate($arr)
|
||||||
|
{
|
||||||
|
$str = '';
|
||||||
|
ksort($arr);
|
||||||
|
foreach ($arr as $k1 => $v1) {
|
||||||
|
$str .= '&' . $k1 . '=' . $v1;
|
||||||
|
}
|
||||||
|
$str = substr($str, 1); // remove first '&'. 去掉第一个&
|
||||||
|
return $str;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getfunctioninfo($function_name, $Region, $Namespace, $SecretId, $SecretKey)
|
||||||
|
{
|
||||||
|
//$meth = 'GET';
|
||||||
|
$meth = 'POST';
|
||||||
|
$host = 'scf.tencentcloudapi.com';
|
||||||
|
$tmpdata['Action'] = 'GetFunction';
|
||||||
|
$tmpdata['FunctionName'] = $function_name;
|
||||||
|
$tmpdata['Namespace'] = $Namespace;
|
||||||
|
$tmpdata['Nonce'] = time();
|
||||||
|
$tmpdata['Region'] = $Region;
|
||||||
|
$tmpdata['SecretId'] = $SecretId;
|
||||||
|
$tmpdata['Timestamp'] = time();
|
||||||
|
$tmpdata['Token'] = '';
|
||||||
|
$tmpdata['Version'] = '2018-04-16';
|
||||||
|
$data = ReorganizeDate($tmpdata);
|
||||||
|
$signStr = base64_encode(hash_hmac('sha1', $meth.$host.'/?'.$data, $SecretKey, true));
|
||||||
|
//echo urlencode($signStr);
|
||||||
|
//return file_get_contents('https://'.$url.'&Signature='.urlencode($signStr));
|
||||||
|
return post2url('https://'.$host, $data.'&Signature='.urlencode($signStr));
|
||||||
|
}
|
||||||
|
|
||||||
|
function getfunctioncodeurl($function_name, $Region, $Namespace, $SecretId, $SecretKey)
|
||||||
|
{
|
||||||
|
//$meth = 'GET';
|
||||||
|
$meth = 'POST';
|
||||||
|
$host = 'scf.tencentcloudapi.com';
|
||||||
|
$tmpdata['Action'] = 'GetFunctionAddress';
|
||||||
|
$tmpdata['FunctionName'] = $function_name;
|
||||||
|
$tmpdata['Namespace'] = $Namespace;
|
||||||
|
$tmpdata['Nonce'] = time();
|
||||||
|
$tmpdata['Region'] = $Region;
|
||||||
|
$tmpdata['SecretId'] = $SecretId;
|
||||||
|
$tmpdata['Timestamp'] = time();
|
||||||
|
$tmpdata['Token'] = '';
|
||||||
|
$tmpdata['Version'] = '2018-04-16';
|
||||||
|
$data = ReorganizeDate($tmpdata);
|
||||||
|
$signStr = base64_encode(hash_hmac('sha1', $meth.$host.'/?'.$data, $SecretKey, true));
|
||||||
|
//echo urlencode($signStr);
|
||||||
|
//return file_get_contents('https://'.$url.'&Signature='.urlencode($signStr));
|
||||||
|
return post2url('https://'.$host, $data.'&Signature='.urlencode($signStr));
|
||||||
|
}
|
||||||
|
|
||||||
|
function copyFolder($from, $to)
|
||||||
|
{
|
||||||
|
if (substr($from, -1)=='/') $from = substr($from, 0, -1);
|
||||||
|
if (substr($to, -1)=='/') $to = substr($to, 0, -1);
|
||||||
|
if (!file_exists($to)) mkdir($to, 0777);
|
||||||
|
$handler=opendir($from);
|
||||||
|
while($filename=readdir($handler)) {
|
||||||
|
if($filename != '.' && $filename != '..'){
|
||||||
|
$fromfile = $from.'/'.$filename;
|
||||||
|
$tofile = $to.'/'.$filename;
|
||||||
|
if(is_dir($fromfile)){// 如果读取的某个对象是文件夹,则递归
|
||||||
|
copyFolder($fromfile, $tofile);
|
||||||
|
}else{
|
||||||
|
copy($fromfile, $tofile);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
closedir($handler);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateEnvironment($Envs, $function_name, $Region, $Namespace, $SecretId, $SecretKey)
|
||||||
|
{
|
||||||
|
// 获取当前代码并解压
|
||||||
|
//$codeurl = json_decode(getfunctioncodeurl($function_name, $Region, $Namespace, $SecretId, $SecretKey), true)['Response']['Url'];
|
||||||
|
//$codezip = '/tmp/oldcode.zip';
|
||||||
|
$outPath = '/tmp/code/';
|
||||||
|
|
||||||
|
//file_put_contents($codezip, file_get_contents($codeurl));
|
||||||
|
//$zip=new ZipArchive();
|
||||||
|
//$zip->open($codezip);
|
||||||
|
//$html = $zip->extractTo($outPath);
|
||||||
|
|
||||||
|
$coderoot = __DIR__ . '/../';
|
||||||
|
copyFolder($coderoot, $outPath);
|
||||||
|
|
||||||
|
// 将配置写入
|
||||||
|
$prestr = '<?php $configs = \'' . PHP_EOL;
|
||||||
|
$aftstr = PHP_EOL . '\';';
|
||||||
|
file_put_contents($outPath . 'config.php', $prestr . json_encode($Envs, JSON_PRETTY_PRINT) . $aftstr);
|
||||||
|
|
||||||
|
// 将目录中文件打包成zip
|
||||||
|
$source = '/tmp/code.zip';
|
||||||
|
//$zip=new ZipArchive();
|
||||||
|
$zip=new PharData($source);
|
||||||
|
//if($zip->open($source, ZipArchive::CREATE)){
|
||||||
|
addFileToZip($zip, $outPath); //调用方法,对要打包的根目录进行操作,并将ZipArchive的对象传递给方法
|
||||||
|
// $zip->close(); //关闭处理的zip文件
|
||||||
|
//}
|
||||||
|
|
||||||
|
return updateProgram($function_name, $Region, $namespace, $SecretId, $SecretKey, $source);
|
||||||
|
$tmp1['Response']['Error']['Message'] = $codeurl;
|
||||||
|
error_log($tmp1['Response']['Error']['Message']);
|
||||||
|
return json_encode($tmp1);
|
||||||
|
}
|
||||||
|
|
||||||
|
function SetbaseConfig($Envs, $function_name, $Region, $Namespace, $SecretId, $SecretKey)
|
||||||
|
{
|
||||||
|
if ($Envs['ONEMANAGER_CONFIG_SAVE'] == 'file') $tmp_env = Array( 'ONEMANAGER_CONFIG_SAVE' => 'file' );
|
||||||
|
else {
|
||||||
|
$Envs['ONEMANAGER_CONFIG_SAVE'] == '';
|
||||||
|
$tmp = json_decode(getfunctioninfo($function_name, $Region, $Namespace, $SecretId, $SecretKey),true)['Response']['Environment']['Variables'];
|
||||||
|
foreach ($tmp as $tmp1) {
|
||||||
|
$tmp_env[$tmp1['Key']] = $tmp1['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);
|
||||||
|
}
|
||||||
|
|
||||||
|
$i = 0;
|
||||||
|
foreach ($tmp_env as $key1 => $value1) {
|
||||||
|
$tmpdata['Environment.Variables.'.$i.'.Key'] = $key1;
|
||||||
|
$tmpdata['Environment.Variables.'.$i.'.Value'] = $value1;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
$meth = 'POST';
|
||||||
|
$host = 'scf.tencentcloudapi.com';
|
||||||
|
$tmpdata['Action'] = 'UpdateFunctionConfiguration';
|
||||||
|
$tmpdata['FunctionName'] = $function_name;
|
||||||
|
$tmpdata['Namespace'] = $Namespace;
|
||||||
|
$tmpdata['Nonce'] = time();
|
||||||
|
$tmpdata['Region'] = $Region;
|
||||||
|
$tmpdata['SecretId'] = $SecretId;
|
||||||
|
$tmpdata['Timestamp'] = time();
|
||||||
|
$tmpdata['Token'] = '';
|
||||||
|
$tmpdata['Version'] = '2018-04-16';
|
||||||
|
$tmpdata['Description'] = 'Onedrive index and manager in Tencent SCF.';
|
||||||
|
$tmpdata['MemorySize'] = 64;
|
||||||
|
$tmpdata['Timeout'] = 30;
|
||||||
|
$data = ReorganizeDate($tmpdata);
|
||||||
|
//echo $data;
|
||||||
|
$signStr = base64_encode(hash_hmac('sha1', $meth.$host.'/?'.$data, $SecretKey, true));
|
||||||
|
//echo urlencode($signStr);
|
||||||
|
$response = post2url('https://'.$host, $data.'&Signature='.urlencode($signStr));
|
||||||
|
if (api_error(setConfigResponse($response))) {
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
if ( json_decode(getfunctioninfo($function_name, $Region, $Namespace, $SecretId, $SecretKey),true)['Response']['Timeout'] < 25 ) {
|
||||||
|
$tmp['Response']['Error']['Message'] = 'Operating, please try again.';
|
||||||
|
$tmp['Response']['Error']['Code'] = 'Retry';
|
||||||
|
return json_encode($tmp);
|
||||||
|
}
|
||||||
|
WaitSCFStat($function_name, $Region, $Namespace, $SecretId, $SecretKey);
|
||||||
|
|
||||||
|
$s = file_get_contents('config.php');
|
||||||
|
//$configs = substr($s, 18, -2);
|
||||||
|
$configs = '{' . splitlast(splitfirst($s, '{')[1], '}')[0] . '}';
|
||||||
|
if ($configs!='') $envs = json_decode($configs, true);
|
||||||
|
foreach ($Envs as $k => $v) {
|
||||||
|
$envs[$k] = $v;
|
||||||
|
}
|
||||||
|
$envs = array_filter($envs, 'array_value_isnot_null');
|
||||||
|
ksort($envs);
|
||||||
|
$response = updateEnvironment($envs, $function_name, $Region, $Namespace, $SecretId, $SecretKey);
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateProgram($function_name, $Region, $Namespace, $SecretId, $SecretKey, $source)
|
||||||
|
{
|
||||||
|
$secretId = $SecretId;
|
||||||
|
$secretKey = $SecretKey;
|
||||||
|
$host = 'scf.tencentcloudapi.com';
|
||||||
|
$service = "scf";
|
||||||
|
$version = "2018-04-16";
|
||||||
|
$action = "UpdateFunctionCode";
|
||||||
|
$region = $Region;
|
||||||
|
$timestamp = time();
|
||||||
|
$algorithm = "TC3-HMAC-SHA256";
|
||||||
|
|
||||||
|
// step 1: build canonical request string
|
||||||
|
$httpRequestMethod = "POST";
|
||||||
|
$canonicalUri = "/";
|
||||||
|
$canonicalQueryString = "";
|
||||||
|
$canonicalHeaders = "content-type:application/json; charset=utf-8\n"."host:".$host."\n";
|
||||||
|
$signedHeaders = "content-type;host";
|
||||||
|
|
||||||
|
//$tmpdata['Action'] = 'UpdateFunctionCode';
|
||||||
|
$tmpdata['Code']['ZipFile'] = base64_encode( file_get_contents($source) );
|
||||||
|
$tmpdata['CodeSource'] = 'ZipFile';
|
||||||
|
$tmpdata['FunctionName'] = $function_name;
|
||||||
|
$tmpdata['Handler'] = 'index.main_handler';
|
||||||
|
//$tmpdata['Namespace'] = $Namespace;
|
||||||
|
//$tmpdata['Nonce'] = time();
|
||||||
|
//$tmpdata['Region'] = $Region;
|
||||||
|
//$tmpdata['SecretId'] = $SecretId;
|
||||||
|
//$tmpdata['Timestamp'] = time();
|
||||||
|
//$tmpdata['Token'] = '';
|
||||||
|
//$tmpdata['Version'] = '2018-04-16';
|
||||||
|
$payload = json_encode($tmpdata);
|
||||||
|
//$payload = '{"Limit": 1, "Filters": [{"Values": ["\u672a\u547d\u540d"], "Name": "instance-name"}]}';
|
||||||
|
$hashedRequestPayload = hash("SHA256", $payload);
|
||||||
|
$canonicalRequest = $httpRequestMethod."\n"
|
||||||
|
.$canonicalUri."\n"
|
||||||
|
.$canonicalQueryString."\n"
|
||||||
|
.$canonicalHeaders."\n"
|
||||||
|
.$signedHeaders."\n"
|
||||||
|
.$hashedRequestPayload;
|
||||||
|
//echo $canonicalRequest.PHP_EOL;
|
||||||
|
|
||||||
|
// step 2: build string to sign
|
||||||
|
$date = gmdate("Y-m-d", $timestamp);
|
||||||
|
$credentialScope = $date."/".$service."/tc3_request";
|
||||||
|
$hashedCanonicalRequest = hash("SHA256", $canonicalRequest);
|
||||||
|
$stringToSign = $algorithm."\n"
|
||||||
|
.$timestamp."\n"
|
||||||
|
.$credentialScope."\n"
|
||||||
|
.$hashedCanonicalRequest;
|
||||||
|
//echo $stringToSign.PHP_EOL;
|
||||||
|
|
||||||
|
// step 3: sign string
|
||||||
|
$secretDate = hash_hmac("SHA256", $date, "TC3".$secretKey, true);
|
||||||
|
$secretService = hash_hmac("SHA256", $service, $secretDate, true);
|
||||||
|
$secretSigning = hash_hmac("SHA256", "tc3_request", $secretService, true);
|
||||||
|
$signature = hash_hmac("SHA256", $stringToSign, $secretSigning);
|
||||||
|
//echo $signature.PHP_EOL;
|
||||||
|
|
||||||
|
// step 4: build authorization
|
||||||
|
$authorization = $algorithm
|
||||||
|
." Credential=".$secretId."/".$credentialScope
|
||||||
|
.", SignedHeaders=content-type;host, Signature=".$signature;
|
||||||
|
//echo $authorization.PHP_EOL;
|
||||||
|
|
||||||
|
//$curl = "curl -X POST https://".$host
|
||||||
|
// .' -H "Authorization: '.$authorization.'"'
|
||||||
|
// .' -H "Content-Type: application/json; charset=utf-8"'
|
||||||
|
// .' -H "Host: '.$host.'"'
|
||||||
|
// .' -H "X-TC-Action: '.$action.'"'
|
||||||
|
// .' -H "X-TC-Timestamp: '.$timestamp.'"'
|
||||||
|
// .' -H "X-TC-Version: '.$version.'"'
|
||||||
|
// .' -H "X-TC-Region: '.$region.'"'
|
||||||
|
// ." -d '".$payload."'";
|
||||||
|
//error_log( $curl.PHP_EOL );
|
||||||
|
//return '{"response": {"Error": {"Message":"' . $curl . '"}}}';
|
||||||
|
$headers['Authorization'] = $authorization;
|
||||||
|
$headers['Content-Type'] = 'application/json; charset=utf-8';
|
||||||
|
$headers['Host'] = $host;
|
||||||
|
$headers['X-TC-Action'] = $action;
|
||||||
|
$headers['X-TC-Timestamp'] = $timestamp;
|
||||||
|
$headers['X-TC-Version'] = $version;
|
||||||
|
$headers['X-TC-Region'] = $region;
|
||||||
|
return curl_request('https://'.$host, $payload, $headers)['body'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function api_error($response)
|
||||||
|
{
|
||||||
|
return isset($response['Error']);
|
||||||
|
return ($response==null)||isset($response['Error']);
|
||||||
|
}
|
||||||
|
|
||||||
|
function api_error_msg($response)
|
||||||
|
{
|
||||||
|
return $response['Error']['Code'] . '<br>
|
||||||
|
' . $response['Error']['Message'] . '<br><br>
|
||||||
|
function_name:' . $_SERVER['function_name'] . '<br>
|
||||||
|
Region:' . $_SERVER['Region'] . '<br>
|
||||||
|
namespace:' . $_SERVER['namespace'] . '<br>
|
||||||
|
<button onclick="location.href = location.href;">'.getconstStr('Refresh').'</button>';
|
||||||
|
}
|
||||||
|
|
||||||
|
function setConfigResponse($response)
|
||||||
|
{
|
||||||
|
return json_decode( $response, true )['Response'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function OnekeyUpate($auth = 'qkqpttgf', $project = 'OneManager-php', $branch = 'master')
|
||||||
|
{
|
||||||
|
$source = '/tmp/code.zip';
|
||||||
|
$outPath = '/tmp/';
|
||||||
|
|
||||||
|
// 从github下载对应tar.gz,并解压
|
||||||
|
$url = 'https://github.com/' . $auth . '/' . $project . '/tarball/' . urlencode($branch) . '/';
|
||||||
|
$tarfile = '/tmp/github.tar.gz';
|
||||||
|
file_put_contents($tarfile, file_get_contents($url));
|
||||||
|
$phar = new PharData($tarfile);
|
||||||
|
$html = $phar->extractTo($outPath, null, true);//路径 要解压的文件 是否覆盖
|
||||||
|
|
||||||
|
// 获取包中目录名
|
||||||
|
$tmp = scandir('phar://'.$tarfile);
|
||||||
|
$name = $auth.'-'.$project;
|
||||||
|
foreach ($tmp as $f) {
|
||||||
|
if ( substr($f, 0, strlen($name)) == $name) {
|
||||||
|
$outPath .= $f;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 放入配置文件
|
||||||
|
file_put_contents($outPath . '/config.php', file_get_contents(__DIR__.'/../config.php'));
|
||||||
|
|
||||||
|
// 将目录中文件打包成zip
|
||||||
|
//$zip=new ZipArchive();
|
||||||
|
$zip=new PharData($source);
|
||||||
|
//if($zip->open($source, ZipArchive::CREATE)){
|
||||||
|
addFileToZip($zip, $outPath); //调用方法,对要打包的根目录进行操作,并将ZipArchive的对象传递给方法
|
||||||
|
// $zip->close(); //关闭处理的zip文件
|
||||||
|
//}
|
||||||
|
|
||||||
|
return updateProgram($_SERVER['function_name'], $_SERVER['Region'], $_SERVER['namespace'], 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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@closedir($path);
|
||||||
|
}
|
||||||
@@ -1,25 +1,25 @@
|
|||||||
Install program first, then add onedrive in setup after login.
|
Install program first, then add onedrive in setup after login.
|
||||||
先安装程序,登录后在设置中添加onedrive。
|
先安装程序,登录后在设置中添加onedrive。
|
||||||
|
|
||||||
# Deploy to heroku
|
# Deploy to Heroku
|
||||||
Official: https://heroku.com
|
Official: https://heroku.com
|
||||||
|
Demo: https://herooneindex.herokuapp.com/
|
||||||
|
|
||||||
How to Install: Click the button [](https://heroku.com/deploy?template=https://github.com/qkqpttgf/OneManager-php) to Deploy a new app, or create an app then deploy via connect to your github fork.
|
How to Install: Click the button [](https://heroku.com/deploy?template=https://github.com/qkqpttgf/OneManager-php) to Deploy a new app, or create an app then deploy via connect to your github fork.
|
||||||
|
|
||||||
DEMO: https://herooneindex.herokuapp.com/
|
|
||||||
|
|
||||||
|
# Deploy to Tencent Serverless Cloud Function (SCF 腾讯无服务器云函数)
|
||||||
# Deploy to Tencent Serverless Cloud Function (腾讯无服务器云函数 SCF)
|
|
||||||
Official: https://cloud.tencent.com/product/scf
|
Official: https://cloud.tencent.com/product/scf
|
||||||
|
DEMO: 无
|
||||||
|
注意:SCF新增限制,环境变量整体最大4KB,所以最多添加4个盘。
|
||||||
|
|
||||||
~~How to Install: https://service-pgxgvop2-1258064400.ap-hongkong.apigateway.myqcloud.com/test/abcdef/%E6%97%A0%E6%9C%8D%E5%8A%A1%E5%99%A8%E5%87%BD%E6%95%B0SCF%E6%90%AD%E5%BB%BAOneDrive.mp4?preview~~
|
How to Install: 无,(重点:勾选集成响应)
|
||||||
|
|
||||||
添加网盘时,SCF反应不过来,会添加失败,请不要删除,再添加一次相同的就可以了。
|
添加网盘时,SCF可能会反应不过来,不跳转到微软,导致添加失败,请不要删除这个盘,再添加一次相同标签的盘就可以了。
|
||||||
|
|
||||||
DEMO: https://service-pgxgvop2-1258064400.ap-hongkong.apigateway.myqcloud.com/test/abcdef/
|
|
||||||
|
|
||||||
|
|
||||||
# Deploy to VPS(Virtual Private Server) 部署到VPS或空间
|
# Deploy to Virtual Private Server (VPS 或空间)
|
||||||
|
DEMO: 无
|
||||||
How to Install:
|
How to Install:
|
||||||
1.Start web service on your server (httpd or other), make sure you can visit it.
|
1.Start web service on your server (httpd or other), make sure you can visit it.
|
||||||
启动web服务器,确保你能访问到。
|
启动web服务器,确保你能访问到。
|
||||||
@@ -33,8 +33,22 @@ How to Install:
|
|||||||
在浏览器中访问。
|
在浏览器中访问。
|
||||||
|
|
||||||
|
|
||||||
# Deploy to Aliyun Function Compute (阿里函数计算 FC)
|
# Deploy to Huawei cloud Function Graph (FG 华为云函数工作流)
|
||||||
|
Official: https://console.huaweicloud.com/functiongraph/
|
||||||
|
DEMO: 无
|
||||||
|
注意:FG中,环境变量整体大小为2KB,所以最多添加2个盘。
|
||||||
|
|
||||||
|
How to Install:
|
||||||
|
1,在函数列表,点右边创建函数
|
||||||
|
2,输入名称,选择运行时语言为PHP7.3,点上传ZIP文件,选择文件,然后点右边的创建函数(这里的ZIP文件不能直接用从Github上下载的ZIP文件,要将它解压后,去掉外层文件夹后,再压缩为ZIP。)
|
||||||
|
3,创建触发器:选API网关,安全认证选None,后端超时(毫秒)将5000改成30000,上面创建分组一下,其它的点点点
|
||||||
|
4,访问触发器给的url,开始安装
|
||||||
|
5,在触发器界面点触发器名称,跳到API网关管理,右边更多URL,可以添加自定义域名,自定义域名后发现还是要 xxxx.com/函数名 来访问,点上方的编辑,第1页不用改,点下一步,请求Path改成/,注意匹配模式是前缀匹配,Method为ANY,然后不用点下一步了,点立即完成,然后去发布生效
|
||||||
|
|
||||||
|
|
||||||
|
# Deploy to Aliyun Function Compute (FC 阿里云函数计算)
|
||||||
Official: https://fc.console.aliyun.com/
|
Official: https://fc.console.aliyun.com/
|
||||||
|
DEMO: 无
|
||||||
|
|
||||||
How to Install:
|
How to Install:
|
||||||
1,新建函数 -- HTTP函数
|
1,新建函数 -- HTTP函数
|
||||||
@@ -44,7 +58,19 @@ How to Install:
|
|||||||
5,触发器中点进去,找到配置自定义域名,点击前往,创建,路径中填 /* ,其它下拉选择。
|
5,触发器中点进去,找到配置自定义域名,点击前往,创建,路径中填 /* ,其它下拉选择。
|
||||||
6,访问你的域名,开始安装
|
6,访问你的域名,开始安装
|
||||||
|
|
||||||
|
|
||||||
|
# Deploy to Baidu Cloud Function Compute (CFC 百度云函数计算)
|
||||||
|
Official: https://console.bce.baidu.com/cfc/#/cfc/functions
|
||||||
DEMO: 无
|
DEMO: 无
|
||||||
|
自定义域名需要另外使用API网关,并备案。
|
||||||
|
|
||||||
|
How to Install:
|
||||||
|
1,在函数列表,点创建函数
|
||||||
|
2,创建方式改为空白函数,点下一步
|
||||||
|
3,输入名称,选择运行时为PHP7.2,点下一步
|
||||||
|
4,触发器:下拉选择HTTP触发器,URL路径填 /{filepath+} ,HTTP方法全选,身份验证:不验证,点提交
|
||||||
|
5,进入代码编辑页,编辑类型改上传函数ZIP包,选择文件(这里的ZIP文件不能直接用从Github上下载的ZIP文件,要将它解压后,去掉外层文件夹后,再压缩为ZIP。),开始上传
|
||||||
|
6,点击右边触发器,复制并访问提供的url,开始安装
|
||||||
|
|
||||||
|
|
||||||
# Features 特性
|
# Features 特性
|
||||||
|
|||||||
@@ -0,0 +1,572 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="<!--constStr@language-->">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title><!--Title--></title>
|
||||||
|
<link rel="shortcut icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
||||||
|
<!--https://p.sfx.ms/images/favicon.ico-->
|
||||||
|
<style>
|
||||||
|
/* 通用样式 */
|
||||||
|
/* 用于消除默认自带样式 */
|
||||||
|
html, body {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
color: #333;
|
||||||
|
font-family: "Segoe UI", Tahoma, Arial, sans-serif;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
input[type="radio"] {
|
||||||
|
margin: 0;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 兼容样式 */
|
||||||
|
body {
|
||||||
|
-webkit-user-select:none;
|
||||||
|
-moz-user-select:none;
|
||||||
|
-ms-user-select:none;
|
||||||
|
user-select:none;
|
||||||
|
}
|
||||||
|
select:-moz-focusring {
|
||||||
|
color: transparent;
|
||||||
|
text-shadow: 0 0 0 #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 自定义样式 */
|
||||||
|
.container {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
max-width: 1100px;
|
||||||
|
}
|
||||||
|
.pull-left {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.pull-right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 字体外部引用 */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'iconfont'; /* project id 1634400 */
|
||||||
|
src: url('//at.alicdn.com/t/font_1634400_9yg8f5s278.eot');
|
||||||
|
src: url('//at.alicdn.com/t/font_1634400_9yg8f5s278.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('//at.alicdn.com/t/font_1634400_9yg8f5s278.woff2') format('woff2'),
|
||||||
|
url('//at.alicdn.com/t/font_1634400_9yg8f5s278.woff') format('woff'),
|
||||||
|
url('//at.alicdn.com/t/font_1634400_9yg8f5s278.ttf') format('truetype'),
|
||||||
|
url('//at.alicdn.com/t/font_1634400_9yg8f5s278.svg#iconfont') format('svg');
|
||||||
|
}
|
||||||
|
.iconfont {
|
||||||
|
font-family:"iconfont" !important;
|
||||||
|
font-size:16px;font-style:normal;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-stroke-width: 0.2px;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* header */
|
||||||
|
header {
|
||||||
|
width: 100%;
|
||||||
|
/*height: 88px;*/
|
||||||
|
line-height: 48px;
|
||||||
|
font-size: 16px;
|
||||||
|
background-color: #0078D4;
|
||||||
|
}
|
||||||
|
header nav {
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 0 10px;
|
||||||
|
height: 48px;
|
||||||
|
color: #FFF;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
header nav a {
|
||||||
|
color: #FFF;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
header nav .lang .language { outline: none; }
|
||||||
|
header .control {
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
}
|
||||||
|
header .control .control-item {
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* main */
|
||||||
|
main {
|
||||||
|
position: relative;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
main .scroll {
|
||||||
|
overflow-y: scroll;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
main .main-item-list {
|
||||||
|
padding-left: 32px;
|
||||||
|
padding-right: 32px;
|
||||||
|
height: 32px;
|
||||||
|
line-height: 32px;
|
||||||
|
font-size: 12px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
main .main-title h1 {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: 100;
|
||||||
|
}
|
||||||
|
main .main-items:hover {
|
||||||
|
background-color: #F4F4F4;
|
||||||
|
}
|
||||||
|
main .main-items:hover .main-items-radio {
|
||||||
|
display: inline-block!important;
|
||||||
|
}
|
||||||
|
main .main-item-list .inner-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
width: 100%;
|
||||||
|
height: 32px;
|
||||||
|
border-bottom: 1px solid #FFF;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
main .main-item-list .inner-container > div {
|
||||||
|
padding-left: 12px;
|
||||||
|
padding-right: 8px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-item-title {
|
||||||
|
border-bottom: 1px solid #EAEAEA;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-radio-box {
|
||||||
|
width: 48px;
|
||||||
|
height: 32px;
|
||||||
|
line-height: 40px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-radio-box .main-items-radio {
|
||||||
|
display: none;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-radio-box .main-items-radio[currstatus=true] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-icon {
|
||||||
|
min-width: 38px;
|
||||||
|
height: 32px;
|
||||||
|
line-height: 32px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
main .main-item-title .main-items-icon {
|
||||||
|
height: 32px!important;
|
||||||
|
line-height: 9px!important;
|
||||||
|
}
|
||||||
|
main .main-item-title .main-items-icon:hover,
|
||||||
|
main .main-item-list .main-items-displayName:hover,
|
||||||
|
main .main-item-list .main-items-dateModified:hover,
|
||||||
|
main .main-item-list .main-items-size:hover {
|
||||||
|
background-color: #EAEAEA;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-icon .iconfont {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-icon img {
|
||||||
|
display: inline-block;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
|
main .main-items {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
border-bottom: 1px solid #F4F4F4;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-displayName,
|
||||||
|
main .main-item-list .main-items-fileName {
|
||||||
|
width: 520px;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-dateModified,
|
||||||
|
main .main-item-list .main-items-dateTime {
|
||||||
|
width: 250px;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-size,
|
||||||
|
main .main-item-list .main-items-fileSize {
|
||||||
|
width: 180px;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-radio-box,
|
||||||
|
main .main-item-list .main-items-icon,
|
||||||
|
main .main-item-list .main-items-fileName,
|
||||||
|
main .main-item-list .main-items-dateTime,
|
||||||
|
main .main-item-list .main-items-fileSize {
|
||||||
|
padding: 11px 8px 11px 12px;
|
||||||
|
height: 42px;
|
||||||
|
line-height: 22px;
|
||||||
|
font-family: "Microsoft Yahei UI", Verdana, Simsun, "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
box-sizing: border-box;
|
||||||
|
/*overflow: hidden;*/
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-fileName a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
main .main-item-list .main-items-fileName a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.more-disk{
|
||||||
|
vertical-align: middle;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow:ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 100px;
|
||||||
|
}
|
||||||
|
.more-disk div{
|
||||||
|
list-style:none;
|
||||||
|
position:absolute;
|
||||||
|
display:none;background:#ffffff;border-radius:5px;margin:0 0 0 -10px;/*padding:0 7px;*/color:#205D67;z-index:1;
|
||||||
|
box-shadow: 0 0.5em 3em rgba(161,177,204,.4);
|
||||||
|
}
|
||||||
|
.more-disk:hover div{display:block}
|
||||||
|
.more-disk div li{line-height:normal;padding: 3px 10px;}
|
||||||
|
.more-disk div li a{text-decoration: none; color:rgba(0,0,0,.3);}
|
||||||
|
.more-disk div li a:hover{color:rgba(0,0,0,.87);}
|
||||||
|
.more-disk div li a[now]{color:rgba(0,0,0,1);}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<nav class="container">
|
||||||
|
<div class="title pull-left">
|
||||||
|
<a href="<!--base_path-->"><!--Sitename--></a>
|
||||||
|
</div>
|
||||||
|
<div class="pull-right">
|
||||||
|
<!--LoginStart-->
|
||||||
|
<a class="pull-left" onclick="/*login();*/"><!--constStr@Login--></a>
|
||||||
|
<!--LoginEnd-->
|
||||||
|
<!--AdminStart-->
|
||||||
|
<a class="pull-left" onclick="logout();"><!--constStr@Logout--></a>
|
||||||
|
<!--AdminEnd-->
|
||||||
|
|
|
||||||
|
<div class="pull-right lang">
|
||||||
|
<select name="language" id="language" class="language" onchange="changelanguage(this.options[this.options.selectedIndex].value)">
|
||||||
|
<option value="">Language</option>
|
||||||
|
<!--SelectLanguageStart-->
|
||||||
|
<option value="<!--SelectLanguageKey-->" <!--SelectLanguageSelected-->><!--SelectLanguageValue--></option>
|
||||||
|
<!--SelectLanguageEnd-->
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<!--AdminStart-->
|
||||||
|
<div class="control">
|
||||||
|
<div class="container">
|
||||||
|
<div class="control-item">
|
||||||
|
<button class="control-items">
|
||||||
|
<i class="iconfont control-items-icon"></i>
|
||||||
|
<span class="control-items-content"><!--constStr@Create--></span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--AdminEnd-->
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<!--ListStart-->
|
||||||
|
<div class="scroll">
|
||||||
|
<div class="container">
|
||||||
|
<div class="main-title">
|
||||||
|
<h1 class="main-title-path">
|
||||||
|
<a href="<!--base_path-->"><!--constStr@Home--></a>
|
||||||
|
<!--DiskPathArrayStart-->
|
||||||
|
>
|
||||||
|
<a href="<!--PathArrayLink-->"><!--PathArrayName--></a>
|
||||||
|
<!--DiskPathArrayEnd-->
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<!--IsFileStart-->
|
||||||
|
<div class="main-item-list">
|
||||||
|
<div class="main-items main-item-title">
|
||||||
|
<div class="inner-container">
|
||||||
|
<div>
|
||||||
|
<div style="margin: 24px">
|
||||||
|
<textarea id="url" title="url" rows="1" style="width: 100%; margin-top: 2px;" readonly><!--FileEncodeUrl--></textarea>
|
||||||
|
<a href="<!--FileUrl-->"><ion-icon name="download" style="line-height: 16px;vertical-align: middle;"></ion-icon> <!--constStr@Download--></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!--IsimgFileStart-->
|
||||||
|
<img src="<!--FileDownUrl-->" alt="<!--FileName-->" onload="if (this.offsetWidth>document.getElementById('url').offsetWidth) this.style.width='100%';" />
|
||||||
|
<!--IsimgFileEnd-->
|
||||||
|
<!--IsvideoFileStart-->
|
||||||
|
<div id="video-a0"></div>
|
||||||
|
<!--IsvideoFileEnd-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--IsFileEnd-->
|
||||||
|
<!--IsFolderStart-->
|
||||||
|
<div class="main-item-list">
|
||||||
|
<div class="main-items main-item-title">
|
||||||
|
<div class="inner-container">
|
||||||
|
<!--AdminStart-->
|
||||||
|
<div class="main-items-radio-box">
|
||||||
|
<!-- <input class="main-items-radio main-items-check-all" type="radio" name="" id=""> -->
|
||||||
|
</div>
|
||||||
|
<!--AdminEnd-->
|
||||||
|
<div class="main-items-icon">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
</div>
|
||||||
|
<div class="main-items-displayName"><!--constStr@File--></div>
|
||||||
|
<div class="main-items-dateModified"><!--constStr@EditTime--></div>
|
||||||
|
<div class="main-items-size"><!--constStr@Size--></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--FolderListStart-->
|
||||||
|
<div class="main-items">
|
||||||
|
<!--AdminStart-->
|
||||||
|
<div class="main-items-radio-box">
|
||||||
|
<input class="main-items-radio" type="radio" checked name="file" id="">
|
||||||
|
</div>
|
||||||
|
<!--AdminEnd-->
|
||||||
|
<div class="main-items-icon">
|
||||||
|
<img src="https://spoprod-a.akamaihd.net/files/fabric/assets/item-types-fluent/20/folder.svg" alt="folder icon">
|
||||||
|
</div>
|
||||||
|
<div class="main-items-fileName">
|
||||||
|
<a href="<!--FileEncodeReplaceUrl-->/"><!--FileEncodeReplaceName--></a>
|
||||||
|
</div>
|
||||||
|
<div class="main-items-dateTime" ><!--lastModifiedDateTime--></div>
|
||||||
|
<div class="main-items-fileSize" ><!--size--></div>
|
||||||
|
</div>
|
||||||
|
<!--FolderListEnd-->
|
||||||
|
<!--FileListStart-->
|
||||||
|
<div class="main-items">
|
||||||
|
<!--AdminStart-->
|
||||||
|
<div class="main-items-radio-box">
|
||||||
|
<input class="main-items-radio" type="radio" checked name="file" id="">
|
||||||
|
</div>
|
||||||
|
<!--AdminEnd-->
|
||||||
|
<div class="main-items-icon">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
</div>
|
||||||
|
<div class="main-items-fileName">
|
||||||
|
<a href="<!--FileEncodeReplaceUrl-->?preview" target="_blank"><!--FileEncodeReplaceName--></a>
|
||||||
|
</div>
|
||||||
|
<div class="main-items-dateTime" ><!--lastModifiedDateTime--></div>
|
||||||
|
<div class="main-items-fileSize" ><!--size--></div>
|
||||||
|
</div>
|
||||||
|
<!--FileListEnd-->
|
||||||
|
</div>
|
||||||
|
<!--IsFolderEnd-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--ListEnd-->
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
<!-- OneDrive程序 -->
|
||||||
|
</footer>
|
||||||
|
<div id="mask" class="mask" style="display:none;"></div>
|
||||||
|
<!--LoginStart-->
|
||||||
|
<div id="login_div" class="operatediv" style="display:none">
|
||||||
|
<div style="margin:50px">
|
||||||
|
<a onclick="operatediv_close('login')" class="operatediv_close"><!--constStr@Close--></a>
|
||||||
|
<center>
|
||||||
|
<form action="<!--IsPreview?-->admin" method="post">
|
||||||
|
<input id="login_input" name="password1" type="password" placeholder="<!--constStr@InputPassword-->">
|
||||||
|
<input type="submit" value="<!--constStr@Login-->">
|
||||||
|
</form>
|
||||||
|
</center>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--LoginEnd-->
|
||||||
|
<script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
|
||||||
|
<script>
|
||||||
|
window.onload = function ()
|
||||||
|
{
|
||||||
|
// 获取所有radios元素
|
||||||
|
var allRadios = document.getElementsByClassName("main-items-radio");
|
||||||
|
RegisterRadioClick(allRadios);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 为所有radio注册点击事件
|
||||||
|
function RegisterRadioClick(radios)
|
||||||
|
{
|
||||||
|
if (radios != null)
|
||||||
|
{
|
||||||
|
var radio;
|
||||||
|
for (var i = 0; i < radios.length ; i++)
|
||||||
|
{
|
||||||
|
// 获取单个radio元素
|
||||||
|
radio = radios[i];
|
||||||
|
// 为每个radio元素设置当前状态为:False
|
||||||
|
//radio.setAttribute("currStatus", "false");
|
||||||
|
// 页面刚加载后,取消因缓存的checked属性
|
||||||
|
radio.checked = false;
|
||||||
|
// 为页面中每个radio元素注册点击事件
|
||||||
|
radio.onclick = function()
|
||||||
|
{
|
||||||
|
// 获取当前点击对象的自定义属性
|
||||||
|
var currStatus = this.getAttribute("currStatus");
|
||||||
|
AllRadioCurrentStatus2False(radios);
|
||||||
|
if (currStatus === "true")
|
||||||
|
{
|
||||||
|
AllRadioCurrentStatus2False(radios);
|
||||||
|
this.setAttribute("currStatus", false);
|
||||||
|
this.checked = false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.setAttribute("currStatus", true);
|
||||||
|
this.checked = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 把页面里所有radio元素自定义属性变成为false
|
||||||
|
// 不然会出现需要点击两次才会被选中
|
||||||
|
function AllRadioCurrentStatus2False(radios)
|
||||||
|
{
|
||||||
|
for (var i = 0; i < radios.length; i++)
|
||||||
|
{
|
||||||
|
radios[i].setAttribute("currStatus", false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function changelanguage(str)
|
||||||
|
{
|
||||||
|
if (str=='Language') str = '';
|
||||||
|
document.cookie='language='+str+'; path=/';
|
||||||
|
location.href = location.href;
|
||||||
|
}
|
||||||
|
<!--ListStart-->
|
||||||
|
/*var root = '<!--base_disk_path-->';
|
||||||
|
function path_format(path) {
|
||||||
|
path = '/' + path + '/';
|
||||||
|
while (path.indexOf('//') !== -1) {
|
||||||
|
path = path.replace('//', '/')
|
||||||
|
}
|
||||||
|
return path
|
||||||
|
}
|
||||||
|
document.querySelectorAll('.main-title-path').forEach(function (e) {
|
||||||
|
var path = e.innerText;
|
||||||
|
if (path.substr(path.length-1)=='/') path = path.substr(0, path.length-1);
|
||||||
|
var paths = path.split('/');
|
||||||
|
e.innerHTML = '<a href="' + root + '"><!--constStr@Home--></a> > ';
|
||||||
|
if (paths <= 2) return;
|
||||||
|
for (var i = 1; i < paths.length - 1; i++) {
|
||||||
|
var to = path_format(root + paths.slice(0, i + 1).join('/'));
|
||||||
|
e.innerHTML += '<a href="' + to + '">' + paths[i] + '</a> > '
|
||||||
|
}
|
||||||
|
e.innerHTML += paths[paths.length - 1];
|
||||||
|
e.innerHTML = e.innerHTML.replace(/\s\/\s$/, '')
|
||||||
|
});*/
|
||||||
|
<!--IsFileStart-->
|
||||||
|
var $url = document.getElementById('url');
|
||||||
|
if ($url) {
|
||||||
|
$url.innerHTML = location.protocol + '//' + location.host + $url.innerHTML;
|
||||||
|
$url.style.height = $url.scrollHeight + 'px';
|
||||||
|
}
|
||||||
|
<!--IsvideoFileStart-->
|
||||||
|
function loadResources(type, src, callback) {
|
||||||
|
let script = document.createElement(type);
|
||||||
|
let loaded = false;
|
||||||
|
if (typeof callback === 'function') {
|
||||||
|
script.onload = script.onreadystatechange = () => {
|
||||||
|
if (!loaded && (!script.readyState || /loaded|complete/.test(script.readyState))) {
|
||||||
|
script.onload = script.onreadystatechange = null;
|
||||||
|
loaded = true;
|
||||||
|
callback();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (type === 'link') {
|
||||||
|
script.href = src;
|
||||||
|
script.rel = 'stylesheet';
|
||||||
|
} else {
|
||||||
|
script.src = src;
|
||||||
|
}
|
||||||
|
document.getElementsByTagName('head')[0].appendChild(script);
|
||||||
|
}
|
||||||
|
function addVideos(videos) {
|
||||||
|
let host = 'https://s0.pstatp.com/cdn/expire-1-M';
|
||||||
|
let unloadedResourceCount = 4;
|
||||||
|
let callback = (() => {
|
||||||
|
return () => {
|
||||||
|
if (!--unloadedResourceCount) {
|
||||||
|
createDplayers(videos);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
})(unloadedResourceCount, videos);
|
||||||
|
loadResources(
|
||||||
|
'link',
|
||||||
|
host + '/dplayer/1.25.0/DPlayer.min.css',
|
||||||
|
callback
|
||||||
|
);
|
||||||
|
loadResources(
|
||||||
|
'script',
|
||||||
|
host + '/dplayer/1.25.0/DPlayer.min.js',
|
||||||
|
callback
|
||||||
|
);
|
||||||
|
loadResources(
|
||||||
|
'script',
|
||||||
|
host + '/hls.js/0.12.4/hls.light.min.js',
|
||||||
|
callback
|
||||||
|
);
|
||||||
|
loadResources(
|
||||||
|
'script',
|
||||||
|
host + '/flv.js/1.5.0/flv.min.js',
|
||||||
|
callback
|
||||||
|
);
|
||||||
|
}
|
||||||
|
function createDplayers(videos) {
|
||||||
|
for (i = 0; i < videos.length; i++) {
|
||||||
|
console.log(videos[i]);
|
||||||
|
new DPlayer({
|
||||||
|
container: document.getElementById('video-a' + i),
|
||||||
|
screenshot: true,
|
||||||
|
video: {
|
||||||
|
url: videos[i]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
addVideos(['<!--FileDownUrl-->']);
|
||||||
|
<!--IsvideoFileEnd-->
|
||||||
|
<!--IsFileEnd-->
|
||||||
|
<!--ListEnd-->
|
||||||
|
<!--AdminStart-->
|
||||||
|
function logout() {
|
||||||
|
document.cookie = "admin=; path=/";
|
||||||
|
location.href = location.href;
|
||||||
|
}
|
||||||
|
<!--AdminEnd-->
|
||||||
|
<!--LoginStart-->
|
||||||
|
function login() {
|
||||||
|
document.getElementById('mask').style.display='';
|
||||||
|
//document.getElementById('mask').style.width=document.documentElement.scrollWidth+'px';
|
||||||
|
document.getElementById('mask').style.height=document.documentElement.scrollHeight<window.innerHeight?window.innerHeight:document.documentElement.scrollHeight+'px';
|
||||||
|
document.getElementById('login_div').style.display='';
|
||||||
|
document.getElementById('login_div').style.left=(document.body.clientWidth-document.getElementById('login_div').offsetWidth)/2 +'px';
|
||||||
|
document.getElementById('login_div').style.top=(window.innerHeight-document.getElementById('login_div').offsetHeight)/2+document.body.scrollTop +'px';
|
||||||
|
document.getElementById('login_input').focus();
|
||||||
|
}
|
||||||
|
<!--LoginEnd-->
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
+56
-30
@@ -35,7 +35,7 @@
|
|||||||
.list-header-container{position:relative}
|
.list-header-container{position:relative}
|
||||||
.list-header-container a.back-link{color:#000;display:inline-block;position:absolute;font-size:16px;margin:20px 10px;padding:10px 10px;vertical-align:middle;text-decoration:none}
|
.list-header-container a.back-link{color:#000;display:inline-block;position:absolute;font-size:16px;margin:20px 10px;padding:10px 10px;vertical-align:middle;text-decoration:none}
|
||||||
.list-container,.list-header-container,.list-wrapper,a.back-link:hover,body{color:#24292e}
|
.list-container,.list-header-container,.list-wrapper,a.back-link:hover,body{color:#24292e}
|
||||||
.table-header{margin:0;border:0 none;padding:30px 60px;text-align:left;font-weight:400;color:#000;background-color:rgba(245,245,245,0.5);word-break: break-all;word-wrap: break-word;}
|
.table-header{margin:0;border:0 none;padding:30px 30px;text-align:left;font-weight:400;color:#000;background-color:rgba(245,245,245,0.5);word-break: break-all;word-wrap: break-word;}
|
||||||
.list-body-container{position:relative;left:0;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;background:rgba(245,245,245,0.5)}
|
.list-body-container{position:relative;left:0;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;background:rgba(245,245,245,0.5)}
|
||||||
.more-disk{margin:0;border:0 none;padding:30px 30px;text-align:left;font-weight:400;color:#000;background-color:rgba(245,245,245,0.5);white-space:nowrap;overflow:auto;}
|
.more-disk{margin:0;border:0 none;padding:30px 30px;text-align:left;font-weight:400;color:#000;background-color:rgba(245,245,245,0.5);white-space:nowrap;overflow:auto;}
|
||||||
.more-disk a{margin:0 10px;padding:5px;transition-duration: 0.4s;border-radius: 12px; background-color: white; color: black; border: 2px solid rgba(85,85,85,0.7); }
|
.more-disk a{margin:0 10px;padding:5px;transition-duration: 0.4s;border-radius: 12px; background-color: white; color: black; border: 2px solid rgba(85,85,85,0.7); }
|
||||||
@@ -63,6 +63,9 @@
|
|||||||
.readme{padding:8px;background-color:rgba(245,245,245,0.5);}
|
.readme{padding:8px;background-color:rgba(245,245,245,0.5);}
|
||||||
.markdown-body, .customfile{padding:20px;text-align:left}
|
.markdown-body, .customfile{padding:20px;text-align:left}
|
||||||
@media only screen and (max-width:480px){
|
@media only screen and (max-width:480px){
|
||||||
|
<!--BackgroundMStart-->
|
||||||
|
body{background-repeat:no-repeat;background-size:cover;background-attachment:fixed;background-image:url("<!--BackgroundMUrl-->");}
|
||||||
|
<!--BackgroundMEnd-->
|
||||||
.title{margin-bottom:24px}
|
.title{margin-bottom:24px}
|
||||||
.list-wrapper{width:95%; margin-bottom:24px;}
|
.list-wrapper{width:95%; margin-bottom:24px;}
|
||||||
.list-table {padding:8px}
|
.list-table {padding:8px}
|
||||||
@@ -146,12 +149,7 @@
|
|||||||
<div class="list-wrapper" id="list-div">
|
<div class="list-wrapper" id="list-div">
|
||||||
<div class="list-container">
|
<div class="list-container">
|
||||||
<div class="list-header-container">
|
<div class="list-header-container">
|
||||||
<!--BackArrowStart-->
|
<h3 class="table-header"><a href="<!--base_path-->"><!--constStr@Home--></a><!--DiskPathArrayStart--> / <a href="<!--PathArrayLink-->"><!--PathArrayName--></a><!--DiskPathArrayEnd--></h3>
|
||||||
<a href="<!--BackArrowUrl-->" class="back-link">
|
|
||||||
<ion-icon name="arrow-back"></ion-icon>
|
|
||||||
</a>
|
|
||||||
<!--BackArrowEnd-->
|
|
||||||
<h3 class="table-header"><!--PathArrayStart--> / <a href="<!--PathArrayLink-->"><!--PathArrayName--></a><!--PathArrayEnd--></h3>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="list-body-container">
|
<div class="list-body-container">
|
||||||
<!--EncryptedStart-->
|
<!--EncryptedStart-->
|
||||||
@@ -190,7 +188,7 @@
|
|||||||
<audio src="<!--FileDownUrl-->" controls="controls" style="width: 100%"></audio>
|
<audio src="<!--FileDownUrl-->" controls="controls" style="width: 100%"></audio>
|
||||||
<!--IsmusicFileEnd-->
|
<!--IsmusicFileEnd-->
|
||||||
<!--IspdfFileStart-->
|
<!--IspdfFileStart-->
|
||||||
<div id="pdf-d"></div>
|
<div id="pdf-d">Loading PDF</div>
|
||||||
<!--IspdfFileEnd-->
|
<!--IspdfFileEnd-->
|
||||||
<!--IsofficeFileStart-->
|
<!--IsofficeFileStart-->
|
||||||
<iframe id="office-a" src="https://view.officeapps.live.com/op/view.aspx?src=<!--FileEncodeDownUrl-->" style="width: 100%;height: 800px" frameborder="0"></iframe>
|
<iframe id="office-a" src="https://view.officeapps.live.com/op/view.aspx?src=<!--FileEncodeDownUrl-->" style="width: 100%;height: 800px" frameborder="0"></iframe>
|
||||||
@@ -315,10 +313,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<!--AdminEnd-->
|
<!--AdminEnd-->
|
||||||
<!--IsFolderEnd-->
|
<!--IsFolderEnd-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!--ListEnd-->
|
<!--ListEnd-->
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!--ReadmemdStart-->
|
<!--ReadmemdStart-->
|
||||||
<div class="list-wrapper" id="readme-div">
|
<div class="list-wrapper" id="readme-div">
|
||||||
<div class="list-container">
|
<div class="list-container">
|
||||||
@@ -476,7 +474,10 @@
|
|||||||
function changelanguage(str)
|
function changelanguage(str)
|
||||||
{
|
{
|
||||||
if (str=='Language') str = '';
|
if (str=='Language') str = '';
|
||||||
document.cookie='language='+str+'; path=/';
|
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;
|
location.href = location.href;
|
||||||
}
|
}
|
||||||
<!--ListStart-->
|
<!--ListStart-->
|
||||||
@@ -587,10 +588,16 @@
|
|||||||
<!--IsvideoFileEnd-->
|
<!--IsvideoFileEnd-->
|
||||||
<!--IspdfFileStart-->
|
<!--IspdfFileStart-->
|
||||||
pdfjsLib.GlobalWorkerOptions.workerSrc = '//cdn.bootcss.com/pdf.js/2.3.200/pdf.worker.min.js';
|
pdfjsLib.GlobalWorkerOptions.workerSrc = '//cdn.bootcss.com/pdf.js/2.3.200/pdf.worker.min.js';
|
||||||
var loadingTask = pdfjsLib.getDocument({ url: '<!--FileDownUrl-->', });
|
var loadingTask = pdfjsLib.getDocument({
|
||||||
|
url: '<!--FileDownUrl-->',
|
||||||
|
cMapUrl: "//cdn.jsdelivr.net/npm/pdfjs-dist@2.2.228/cmaps/",
|
||||||
|
cMapPacked: true,
|
||||||
|
rangeChunkSize: 65535
|
||||||
|
});
|
||||||
loadingTask.promise.then(function(pdf) {
|
loadingTask.promise.then(function(pdf) {
|
||||||
var pagenum = pdf.numPages;
|
var pagenum = pdf.numPages;
|
||||||
var pdfContainer = document.getElementById('pdf-d');
|
var pdfContainer = document.getElementById('pdf-d');
|
||||||
|
pdfContainer.innerHTML = '';
|
||||||
for (var i=1;i<=pagenum;i++) {
|
for (var i=1;i<=pagenum;i++) {
|
||||||
var canvasNew = document.createElement('canvas');
|
var canvasNew = document.createElement('canvas');
|
||||||
canvasNew.id = 'pdf-c'+i;
|
canvasNew.id = 'pdf-c'+i;
|
||||||
@@ -642,15 +649,13 @@
|
|||||||
strarry=str.split('.');
|
strarry=str.split('.');
|
||||||
ext=strarry[strarry.length-1].toLowerCase();
|
ext=strarry[strarry.length-1].toLowerCase();
|
||||||
if (images.indexOf(ext)>-1) {
|
if (images.indexOf(ext)>-1) {
|
||||||
if (document.getElementById('originalpic').checked==true) {
|
|
||||||
var url=files[$i].href;
|
var url=files[$i].href;
|
||||||
url=url.substr(0,url.length-8);
|
url=url.substr(0,url.length-8);
|
||||||
|
if (document.getElementById('originalpic').checked==true) {
|
||||||
files[$i].parentNode.parentNode.innerHTML='<td colspan="3"><img src="'+url+'" alt="'+str+'" onload="if (this.offsetWidth>document.getElementById(\'list-div\').offsetWidth) this.style.width=\'100%\';"></td>';
|
files[$i].parentNode.parentNode.innerHTML='<td colspan="3"><img src="'+url+'" alt="'+str+'" onload="if (this.offsetWidth>document.getElementById(\'list-div\').offsetWidth) this.style.width=\'100%\';"></td>';
|
||||||
$i--;
|
$i--;
|
||||||
} else {
|
} else {
|
||||||
var nurl=window.location.href;
|
url+='?thumbnails';
|
||||||
if (nurl.substr(-1)!="/") nurl+="/";
|
|
||||||
var url=nurl+str+'?thumbnails';
|
|
||||||
get_thumbnails_url(url, str, files[$i]);
|
get_thumbnails_url(url, str, files[$i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -814,19 +819,26 @@
|
|||||||
var timea=new Date().getTime();
|
var timea=new Date().getTime();
|
||||||
var i=0;
|
var i=0;
|
||||||
getuplink(i);
|
getuplink(i);
|
||||||
function getuplink(i) {
|
function getuplink(i, r=0) {
|
||||||
var file=files[i];
|
var file=files[i];
|
||||||
|
var td1;
|
||||||
|
var td2;
|
||||||
|
if (r==0) {
|
||||||
var tr1=document.createElement('tr');
|
var tr1=document.createElement('tr');
|
||||||
table1.appendChild(tr1);
|
table1.appendChild(tr1);
|
||||||
tr1.setAttribute('data-to',1);
|
tr1.setAttribute('data-to',1);
|
||||||
var td1=document.createElement('td');
|
td1=document.createElement('td');
|
||||||
tr1.appendChild(td1);
|
tr1.appendChild(td1);
|
||||||
td1.setAttribute('style','width:30%;word-break:break-word;');
|
td1.setAttribute('style','width:30%;word-break:break-word;');
|
||||||
td1.setAttribute('id','upfile_td1_'+timea+'_'+i);
|
td1.setAttribute('id','upfile_td1_'+timea+'_'+i);
|
||||||
td1.innerHTML=(file.webkitRelativePath||file.name)+'<br>'+size_format(file.size);
|
td1.innerHTML=(file.webkitRelativePath||file.name)+'<br>'+size_format(file.size);
|
||||||
var td2=document.createElement('td');
|
td2=document.createElement('td');
|
||||||
tr1.appendChild(td2);
|
tr1.appendChild(td2);
|
||||||
td2.setAttribute('id','upfile_td2_'+timea+'_'+i);
|
td2.setAttribute('id','upfile_td2_'+timea+'_'+i);
|
||||||
|
}
|
||||||
|
var tdnum = timea+'_'+i;
|
||||||
|
td1=document.getElementById('upfile_td1_'+tdnum);
|
||||||
|
td2=document.getElementById('upfile_td2_'+tdnum);
|
||||||
if (file.size>100*1024*1024*1024) {
|
if (file.size>100*1024*1024*1024) {
|
||||||
td2.innerHTML='<font color="red"><!--constStr@UpFileTooLarge--></font>';
|
td2.innerHTML='<font color="red"><!--constStr@UpFileTooLarge--></font>';
|
||||||
uploadbuttonshow();
|
uploadbuttonshow();
|
||||||
@@ -871,35 +883,46 @@
|
|||||||
var xhr1 = new XMLHttpRequest();
|
var xhr1 = new XMLHttpRequest();
|
||||||
xhr1.open("GET", '?action=upbigfile&upbigfilename='+ upbigfilename +'&filesize='+ file.size +'&lastModified='+ file.lastModified);
|
xhr1.open("GET", '?action=upbigfile&upbigfilename='+ upbigfilename +'&filesize='+ file.size +'&lastModified='+ file.lastModified);
|
||||||
xhr1.setRequestHeader('x-requested-with','XMLHttpRequest');
|
xhr1.setRequestHeader('x-requested-with','XMLHttpRequest');
|
||||||
xhr1.send(null);
|
xhr1.onprogress = function(e){
|
||||||
|
td2.innerHTML+='.';
|
||||||
|
}
|
||||||
xhr1.onload = function(e){
|
xhr1.onload = function(e){
|
||||||
|
console.log(xhr1.status+xhr1.responseText);
|
||||||
td2.innerHTML='<font color="red">'+xhr1.responseText+'</font>';
|
td2.innerHTML='<font color="red">'+xhr1.responseText+'</font>';
|
||||||
|
if (xhr1.status==409) {
|
||||||
|
// td2.innerHTML='nameAlreadyExists';
|
||||||
|
var html=JSON.parse(xhr1.responseText);
|
||||||
|
td2.innerHTML=html['error']['code']+': '+html['error']['message'];
|
||||||
|
<!--GuestStart-->
|
||||||
|
td2.innerHTML='md5: '+filemd5;
|
||||||
|
<!--GuestEnd-->
|
||||||
|
td1.innerHTML='<div style="color:green"><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||file.name)+'?preview" id="upfile_a_'+tdnum+'" target="_blank">'+td1.innerHTML+'</a><br><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||file.name)+'" id="upfile_a1_'+tdnum+'"></a><!--constStr@UploadComplete--><button onclick="CopyAllDownloadUrl(\'#upfile_a1_'+tdnum+'\');" id="upfile_cpbt_'+tdnum+'" <!--AdminStart--> style="display:none"<!--AdminEnd--> ><!--constStr@CopyUrl--></button></div>';
|
||||||
|
}
|
||||||
if (xhr1.status==200) {
|
if (xhr1.status==200) {
|
||||||
console.log(xhr1.responseText);
|
if (xhr1.responseText=='') {
|
||||||
|
getuplink(i,1);
|
||||||
|
return;
|
||||||
|
}
|
||||||
var html=JSON.parse(xhr1.responseText);
|
var html=JSON.parse(xhr1.responseText);
|
||||||
if (!html['uploadUrl']) {
|
if (!html['uploadUrl']) {
|
||||||
td2.innerHTML='<font color="red">'+xhr1.responseText+'</font><br>';
|
td2.innerHTML='<font color="red">'+xhr1.responseText+'</font><br>';
|
||||||
uploadbuttonshow();
|
|
||||||
} else {
|
} else {
|
||||||
td2.innerHTML='<!--constStr@UploadStart--> ...';
|
td2.innerHTML='<!--constStr@UploadStart--> ...';
|
||||||
binupfile(file,html['uploadUrl'],timea+'_'+i, upbigfilename);
|
binupfile(file,html['uploadUrl'],timea+'_'+i, upbigfilename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (xhr1.status==409) {
|
|
||||||
td2.innerHTML='md5: '+filemd5;
|
|
||||||
tdnum = timea+'_'+i;
|
|
||||||
document.getElementById('upfile_td1_'+tdnum).innerHTML='<div style="color:green"><a href="<!--base_disk_path--><!--Path-->'+upbigfilename+'?preview" id="upfile_a_'+tdnum+'" target="_blank">'+document.getElementById('upfile_td1_'+tdnum).innerHTML+'</a><br><a href="<!--base_disk_path--><!--Path-->'+upbigfilename+'" id="upfile_a1_'+tdnum+'"></a><!--constStr@UploadComplete--><button onclick="CopyAllDownloadUrl(\'#upfile_a1_'+tdnum+'\');" id="upfile_cpbt_'+tdnum+'" <!--AdminStart--> style="display:none"<!--AdminEnd--> ><!--constStr@CopyUrl--></button></div>';
|
|
||||||
}
|
|
||||||
if (i<files.length-1) {
|
if (i<files.length-1) {
|
||||||
i++;
|
i++;
|
||||||
getuplink(i);
|
getuplink(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
xhr1.send(null);
|
||||||
<!--GuestStart-->
|
<!--GuestStart-->
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
<!--GuestEnd-->
|
<!--GuestEnd-->
|
||||||
}
|
}
|
||||||
|
uploadbuttonshow();
|
||||||
}
|
}
|
||||||
function size_format(num) {
|
function size_format(num) {
|
||||||
if (num>1024) {
|
if (num>1024) {
|
||||||
@@ -976,6 +999,7 @@
|
|||||||
var response=JSON.parse(xhr.responseText);
|
var response=JSON.parse(xhr.responseText);
|
||||||
if (response['size']>0) {
|
if (response['size']>0) {
|
||||||
// contain size, upload finish. 有size说明是最终返回,上传结束
|
// contain size, upload finish. 有size说明是最终返回,上传结束
|
||||||
|
if (totalsize>10*1024*1024) {
|
||||||
var xhr3 = new XMLHttpRequest();
|
var xhr3 = new XMLHttpRequest();
|
||||||
xhr3.open("GET", '?action=del_upload_cache&filelastModified='+file.lastModified+'&filesize='+file.size+'&filename='+filename);
|
xhr3.open("GET", '?action=del_upload_cache&filelastModified='+file.lastModified+'&filesize='+file.size+'&filename='+filename);
|
||||||
xhr3.setRequestHeader('x-requested-with','XMLHttpRequest');
|
xhr3.setRequestHeader('x-requested-with','XMLHttpRequest');
|
||||||
@@ -983,6 +1007,7 @@
|
|||||||
xhr3.onload = function(e){
|
xhr3.onload = function(e){
|
||||||
console.log(xhr3.responseText+','+xhr3.status);
|
console.log(xhr3.responseText+','+xhr3.status);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
EndTime=new Date();
|
EndTime=new Date();
|
||||||
MiddleStr = '<!--constStr@EndAt-->:'+EndTime.toLocaleString()+'<br>';
|
MiddleStr = '<!--constStr@EndAt-->:'+EndTime.toLocaleString()+'<br>';
|
||||||
if (newstartsize==0) {
|
if (newstartsize==0) {
|
||||||
@@ -992,7 +1017,8 @@
|
|||||||
}
|
}
|
||||||
document.getElementById('upfile_td1_'+tdnum).innerHTML='<div style="color:green"><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||response.name)+'?preview" id="upfile_a_'+tdnum+'" target="_blank">'+document.getElementById('upfile_td1_'+tdnum).innerHTML+'</a><br><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||response.name)+'" id="upfile_a1_'+tdnum+'"></a><!--constStr@UploadComplete--><button onclick="CopyAllDownloadUrl(\'#upfile_a1_'+tdnum+'\');" id="upfile_cpbt_'+tdnum+'" <!--AdminStart--> style="display:none"<!--AdminEnd--> ><!--constStr@CopyUrl--></button></div>';
|
document.getElementById('upfile_td1_'+tdnum).innerHTML='<div style="color:green"><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||response.name)+'?preview" id="upfile_a_'+tdnum+'" target="_blank">'+document.getElementById('upfile_td1_'+tdnum).innerHTML+'</a><br><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||response.name)+'" id="upfile_a1_'+tdnum+'"></a><!--constStr@UploadComplete--><button onclick="CopyAllDownloadUrl(\'#upfile_a1_'+tdnum+'\');" id="upfile_cpbt_'+tdnum+'" <!--AdminStart--> style="display:none"<!--AdminEnd--> ><!--constStr@CopyUrl--></button></div>';
|
||||||
label.innerHTML=StartStr+MiddleStr;
|
label.innerHTML=StartStr+MiddleStr;
|
||||||
uploadbuttonshow();
|
label.style.color='green';
|
||||||
|
// uploadbuttonshow();
|
||||||
<!--AdminStart-->
|
<!--AdminStart-->
|
||||||
response.name=file.webkitRelativePath||response.name;
|
response.name=file.webkitRelativePath||response.name;
|
||||||
addelement(response);
|
addelement(response);
|
||||||
@@ -1015,7 +1041,7 @@
|
|||||||
} else {
|
} else {
|
||||||
label.innerHTML='<font color="red">'+xhr2.responseText+'</font>';
|
label.innerHTML='<font color="red">'+xhr2.responseText+'</font>';
|
||||||
}
|
}
|
||||||
uploadbuttonshow();
|
// uploadbuttonshow();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,8 +21,8 @@
|
|||||||
<meta name=viewport content="width=device-width,initial-scale=1">
|
<meta name=viewport content="width=device-width,initial-scale=1">
|
||||||
<meta name="keywords" content="<!--Keywords-->">
|
<meta name="keywords" content="<!--Keywords-->">
|
||||||
<meta name="description" content="<!--Description-->">
|
<meta name="description" content="<!--Description-->">
|
||||||
<link rel="icon" href="<!--base_disk_path-->favicon.ico" type="image/x-icon" />
|
<link rel="icon" href="<!--base_path-->favicon.ico" type="image/x-icon" />
|
||||||
<link rel="shortcut icon" href="<!--base_disk_path-->favicon.ico" type="image/x-icon" />
|
<link rel="shortcut icon" href="<!--base_path-->favicon.ico" type="image/x-icon" />
|
||||||
<link href="//cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
|
<link href="//cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<script src="//cdn.bootcdn.net/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
|
<script src="//cdn.bootcdn.net/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
|
||||||
|
|
||||||
|
|||||||
+13
-31
@@ -51,8 +51,8 @@
|
|||||||
/*.mdui-toolbar>*{display:none}*/
|
/*.mdui-toolbar>*{display:none}*/
|
||||||
.mdui-toolbar>a:last-child,.mdui-toolbar>.mdui-typo-headline,.mdui-toolbar>i:first-child{display:block}
|
.mdui-toolbar>a:last-child,.mdui-toolbar>.mdui-typo-headline,.mdui-toolbar>i:first-child{display:block}
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
<!--customCss-->
|
||||||
<script src="//cdnjs.loli.net/ajax/libs/mdui/0.4.1/js/mdui.min.js"></script>
|
<script src="//cdnjs.loli.net/ajax/libs/mdui/0.4.1/js/mdui.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body class="mdui-theme-primary-blue-grey mdui-theme-accent-blue">
|
<body class="mdui-theme-primary-blue-grey mdui-theme-accent-blue">
|
||||||
@@ -115,16 +115,12 @@
|
|||||||
<!--GuestUploadEnd-->
|
<!--GuestUploadEnd-->
|
||||||
<!--HeadomfStart-->
|
<!--HeadomfStart-->
|
||||||
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
||||||
<!--HeadomfContent-->
|
<!--HeadomfContent-->
|
||||||
</div>
|
</div>
|
||||||
<!--HeadomfEnd-->
|
<!--HeadomfEnd-->
|
||||||
<!--HeadmdStart-->
|
<!--HeadmdStart-->
|
||||||
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
<div class="mdui-typo mdui-shadow-3 markdown" style="padding: 20px;margin: 20px 0">
|
||||||
<!--<div class="mdui-chip">
|
<!--HeadmdContent-->
|
||||||
<span class="mdui-chip-icon"><i class="mdui-icon material-icons">face</i></span>
|
|
||||||
<span class="mdui-chip-title">HEAD.md</span>
|
|
||||||
</div>-->
|
|
||||||
<!--HeadmdContent-->
|
|
||||||
</div>
|
</div>
|
||||||
<!--HeadmdEnd-->
|
<!--HeadmdEnd-->
|
||||||
<!--IsFileStart-->
|
<!--IsFileStart-->
|
||||||
@@ -188,7 +184,6 @@
|
|||||||
width:100% !important;
|
width:100% !important;
|
||||||
height:230px;
|
height:230px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumb .mdui-list-item .mdui-icon{
|
.thumb .mdui-list-item .mdui-icon{
|
||||||
font-size:100px;
|
font-size:100px;
|
||||||
display: block;
|
display: block;
|
||||||
@@ -203,7 +198,6 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 180px;
|
top: 180px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
<div class="nexmoe-item">
|
<div class="nexmoe-item">
|
||||||
|
|
||||||
@@ -253,7 +247,7 @@
|
|||||||
<!--FileListEnd-->
|
<!--FileListEnd-->
|
||||||
|
|
||||||
<!--MorePageStart-->
|
<!--MorePageStart-->
|
||||||
<form action="" method="POST" id="nextpageform">
|
<form action="" method="POST" id="nextpageform">
|
||||||
<input type="hidden" id="pagenum" name="pagenum" value="">
|
<input type="hidden" id="pagenum" name="pagenum" value="">
|
||||||
<li class="mdui-list-item th">
|
<li class="mdui-list-item th">
|
||||||
<div class="mdui-col-sm-6 mdui-left mdui-text-left">
|
<div class="mdui-col-sm-6 mdui-left mdui-text-left">
|
||||||
@@ -270,22 +264,17 @@
|
|||||||
</li>
|
</li>
|
||||||
</form>
|
</form>
|
||||||
<!--MorePageEnd-->
|
<!--MorePageEnd-->
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--ReadmemdStart-->
|
<!--ReadmemdStart-->
|
||||||
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
<div class="mdui-typo mdui-shadow-3 markdown" style="padding: 20px;margin: 20px 0">
|
||||||
<!--<div class="mdui-chip">
|
<!--ReadmemdContent-->
|
||||||
<span class="mdui-chip-icon"><i class="mdui-icon material-icons">face</i></span>
|
|
||||||
<span class="mdui-chip-title">README.md</span>
|
|
||||||
</div>-->
|
|
||||||
<!--ReadmemdContent-->
|
|
||||||
</div>
|
</div>
|
||||||
<!--ReadmemdEnd-->
|
<!--ReadmemdEnd-->
|
||||||
<!--FootomfStart-->
|
<!--FootomfStart-->
|
||||||
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
||||||
<!--FootomfContent-->
|
<!--FootomfContent-->
|
||||||
</div>
|
</div>
|
||||||
<!--FootomfEnd-->
|
<!--FootomfEnd-->
|
||||||
</div>
|
</div>
|
||||||
@@ -294,6 +283,8 @@
|
|||||||
<!--ShowThumbnailsEnd-->
|
<!--ShowThumbnailsEnd-->
|
||||||
<!--IsFolderEnd-->
|
<!--IsFolderEnd-->
|
||||||
<!--ListEnd-->
|
<!--ListEnd-->
|
||||||
|
<!--MdRequireStart--><link rel="stylesheet" href="//unpkg.zhimg.com/github-markdown-css@3.0.1/github-markdown.css">
|
||||||
|
<script type="text/javascript" src="//unpkg.zhimg.com/marked@0.6.2/marked.min.js"></script><!--MdRequireEnd-->
|
||||||
<script>
|
<script>
|
||||||
<!--MorePageStart-->
|
<!--MorePageStart-->
|
||||||
function nextpage(num) {
|
function nextpage(num) {
|
||||||
@@ -302,11 +293,9 @@
|
|||||||
}
|
}
|
||||||
<!--MorePageEnd-->
|
<!--MorePageEnd-->
|
||||||
$ = mdui.JQ;
|
$ = mdui.JQ;
|
||||||
|
|
||||||
$.fn.extend({
|
$.fn.extend({
|
||||||
sortElements: function (comparator, getSortable) {
|
sortElements: function (comparator, getSortable) {
|
||||||
getSortable = getSortable || function () { return this; };
|
getSortable = getSortable || function () { return this; };
|
||||||
|
|
||||||
var placements = this.map(function () {
|
var placements = this.map(function () {
|
||||||
var sortElement = getSortable.call(this),
|
var sortElement = getSortable.call(this),
|
||||||
parentNode = sortElement.parentNode,
|
parentNode = sortElement.parentNode,
|
||||||
@@ -314,13 +303,11 @@
|
|||||||
document.createTextNode(''),
|
document.createTextNode(''),
|
||||||
sortElement.nextSibling
|
sortElement.nextSibling
|
||||||
);
|
);
|
||||||
|
|
||||||
return function () {
|
return function () {
|
||||||
parentNode.insertBefore(this, nextSibling);
|
parentNode.insertBefore(this, nextSibling);
|
||||||
parentNode.removeChild(nextSibling);
|
parentNode.removeChild(nextSibling);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
return [].sort.call(this, comparator).each(function (i) {
|
return [].sort.call(this, comparator).each(function (i) {
|
||||||
placements[i].call(getSortable.call(this));
|
placements[i].call(getSortable.call(this));
|
||||||
});
|
});
|
||||||
@@ -331,7 +318,6 @@
|
|||||||
let dl_link_list = Array.from(document.querySelectorAll("li a"))
|
let dl_link_list = Array.from(document.querySelectorAll("li a"))
|
||||||
.map(x => x.href) // 所有list中的链接
|
.map(x => x.href) // 所有list中的链接
|
||||||
.filter(x => x.slice(-1) != "/"); // 筛选出非文件夹的文件下载链接
|
.filter(x => x.slice(-1) != "/"); // 筛选出非文件夹的文件下载链接
|
||||||
|
|
||||||
let blob = new Blob([dl_link_list.join("\r\n")], {
|
let blob = new Blob([dl_link_list.join("\r\n")], {
|
||||||
type: 'text/plain'
|
type: 'text/plain'
|
||||||
}); // 构造Blog对象
|
}); // 构造Blog对象
|
||||||
@@ -360,7 +346,6 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
<!--ShowThumbnailsEnd-->
|
<!--ShowThumbnailsEnd-->
|
||||||
$(function(){
|
$(function(){
|
||||||
@@ -373,23 +358,20 @@
|
|||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.icon-sort').on('click', function () {
|
$('.icon-sort').on('click', function () {
|
||||||
let sort_type = $(this).attr("data-sort"), sort_order = $(this).attr("data-order");
|
let sort_type = $(this).attr("data-sort"), sort_order = $(this).attr("data-order");
|
||||||
let sort_order_to = (sort_order === "less") ? "more" : "less";
|
let sort_order_to = (sort_order === "less") ? "more" : "less";
|
||||||
|
|
||||||
$('li[data-sort]').sortElements(function (a, b) {
|
$('li[data-sort]').sortElements(function (a, b) {
|
||||||
let data_a = $(a).attr("data-sort-" + sort_type), data_b = $(b).attr("data-sort-" + sort_type);
|
let data_a = $(a).attr("data-sort-" + sort_type), data_b = $(b).attr("data-sort-" + sort_type);
|
||||||
let rt = data_a.localeCompare(data_b, undefined, {numeric: true});
|
let rt = data_a.localeCompare(data_b, undefined, {numeric: true});
|
||||||
return (sort_order === "more") ? 0-rt : rt;
|
return (sort_order === "more") ? 0-rt : rt;
|
||||||
});
|
});
|
||||||
|
|
||||||
$(this).attr("data-order", sort_order_to).text("expand_" + sort_order_to);
|
$(this).attr("data-order", sort_order_to).text("expand_" + sort_order_to);
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
document.querySelectorAll('.markdown').forEach(function (e) {
|
||||||
|
e.innerHTML = marked(e.innerHTML);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+9
-18
@@ -239,12 +239,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<!--HeadomfEnd-->
|
<!--HeadomfEnd-->
|
||||||
<!--HeadmdStart-->
|
<!--HeadmdStart-->
|
||||||
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
<div class="mdui-typo mdui-shadow-3 markdown" style="padding: 20px;margin: 20px 0">
|
||||||
<!--<div class="mdui-chip">
|
<!--HeadmdContent-->
|
||||||
<span class="mdui-chip-icon"><i class="mdui-icon material-icons">face</i></span>
|
|
||||||
<span class="mdui-chip-title">HEAD.md</span>
|
|
||||||
</div>-->
|
|
||||||
<!--HeadmdContent-->
|
|
||||||
</div>
|
</div>
|
||||||
<!--HeadmdEnd-->
|
<!--HeadmdEnd-->
|
||||||
<style>
|
<style>
|
||||||
@@ -363,12 +359,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--ReadmemdStart-->
|
<!--ReadmemdStart-->
|
||||||
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
<div class="mdui-typo mdui-shadow-3 markdown" style="padding: 20px;margin: 20px 0">
|
||||||
<!--<div class="mdui-chip">
|
<!--ReadmemdContent-->
|
||||||
<span class="mdui-chip-icon"><i class="mdui-icon material-icons">face</i></span>
|
|
||||||
<span class="mdui-chip-title">README.md</span>
|
|
||||||
</div>-->
|
|
||||||
<!--ReadmemdContent-->
|
|
||||||
</div>
|
</div>
|
||||||
<!--ReadmemdEnd-->
|
<!--ReadmemdEnd-->
|
||||||
<!--FootomfStart-->
|
<!--FootomfStart-->
|
||||||
@@ -382,6 +374,8 @@
|
|||||||
<!--ListEnd-->
|
<!--ListEnd-->
|
||||||
<script src="//cdn.jsdelivr.net/gh/mcstudios/glightbox/dist/js/glightbox.min.js"></script>
|
<script src="//cdn.jsdelivr.net/gh/mcstudios/glightbox/dist/js/glightbox.min.js"></script>
|
||||||
<script src="//cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.js"></script>
|
<script src="//cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.js"></script>
|
||||||
|
<!--MdRequireStart--><link rel="stylesheet" href="//unpkg.zhimg.com/github-markdown-css@3.0.1/github-markdown.css">
|
||||||
|
<script type="text/javascript" src="//unpkg.zhimg.com/marked@0.6.2/marked.min.js"></script><!--MdRequireEnd-->
|
||||||
<script>
|
<script>
|
||||||
<!--MorePageStart-->
|
<!--MorePageStart-->
|
||||||
function nextpage(num) {
|
function nextpage(num) {
|
||||||
@@ -533,8 +527,6 @@ function thumb(){
|
|||||||
}
|
}
|
||||||
<!--ShowThumbnailsEnd-->
|
<!--ShowThumbnailsEnd-->
|
||||||
$(function(){
|
$(function(){
|
||||||
|
|
||||||
|
|
||||||
$('.icon-sort').on('click', function () {
|
$('.icon-sort').on('click', function () {
|
||||||
let sort_type = $(this).attr("data-sort"), sort_order = $(this).attr("data-order");
|
let sort_type = $(this).attr("data-sort"), sort_order = $(this).attr("data-order");
|
||||||
let sort_order_to = (sort_order === "less") ? "more" : "less";
|
let sort_order_to = (sort_order === "less") ? "more" : "less";
|
||||||
@@ -547,9 +539,6 @@ $(function(){
|
|||||||
|
|
||||||
$(this).attr("data-order", sort_order_to).text("expand_" + sort_order_to);
|
$(this).attr("data-order", sort_order_to).text("expand_" + sort_order_to);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var ckname='image_mode';
|
var ckname='image_mode';
|
||||||
@@ -583,7 +572,9 @@ $('#image_view').on('click', function () {
|
|||||||
window.location.href=window.location.href;
|
window.location.href=window.location.href;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
document.querySelectorAll('.markdown').forEach(function (e) {
|
||||||
|
e.innerHTML = marked(e.innerHTML);
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+97
-78
@@ -24,24 +24,10 @@
|
|||||||
<link rel="icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
<link rel="icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
||||||
<link rel="shortcut icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
<link rel="shortcut icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kizx/onemoe-theme/onemoe.min.css" type="text/css" />
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kizx/onemoe-theme/onemoe.min.css" type="text/css" />
|
||||||
<!--BackgroundStart-->
|
<!--BackgroundStart-->
|
||||||
<style>
|
<style>body{background-repeat:no-repeat;background-size:cover;background-attachment:fixed;background-position-x:center;background-image:url("<!--BackgroundUrl-->")}</style>
|
||||||
body {
|
<!--BackgroundEnd-->
|
||||||
background-repeat: no-repeat;
|
<script type="text/javascript">if(window.console&&window.console.log){console.log("%c Onemoe Theme %c https://github.com/kizx/onemoe-theme ","color: #fff; margin: 1em 0; padding: 5px 0; background: #673ab7;","margin: 1em 0; padding: 5px 0; background: #efefef;")}</script>
|
||||||
background-size: cover;
|
|
||||||
background-attachment: fixed;
|
|
||||||
background-position-x: center;
|
|
||||||
background-image: url("<!--BackgroundUrl-->");
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<!--BackgroundEnd-->
|
|
||||||
<script type="text/javascript">
|
|
||||||
if (window.console && window.console.log) {
|
|
||||||
console.log("%c Onemoe Theme %c https://github.com/kizx/onemoe-theme ",
|
|
||||||
"color: #fff; margin: 1em 0; padding: 5px 0; background: #673ab7;",
|
|
||||||
"margin: 1em 0; padding: 5px 0; background: #efefef;");
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<!--customCss-->
|
<!--customCss-->
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@@ -123,7 +109,7 @@
|
|||||||
<ion-icon name="arrow-back"></ion-icon>
|
<ion-icon name="arrow-back"></ion-icon>
|
||||||
</a>
|
</a>
|
||||||
<!--BackArrowEnd-->
|
<!--BackArrowEnd-->
|
||||||
<h3 class="table-header"><!--Path--></h3>
|
<h3 class="table-header"><!--PathArrayStart--> / <a href="<!--PathArrayLink-->"><!--PathArrayName--></a><!--PathArrayEnd--></h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="list-body-container">
|
<div class="list-body-container">
|
||||||
<!--EncryptedStart-->
|
<!--EncryptedStart-->
|
||||||
@@ -162,7 +148,7 @@
|
|||||||
<audio src="<!--FileDownUrl-->" controls="controls" style="width: 100%"></audio>
|
<audio src="<!--FileDownUrl-->" controls="controls" style="width: 100%"></audio>
|
||||||
<!--IsmusicFileEnd-->
|
<!--IsmusicFileEnd-->
|
||||||
<!--IspdfFileStart-->
|
<!--IspdfFileStart-->
|
||||||
<div id="pdf-d"></div>
|
<div id="pdf-d">Loading PDF</div>
|
||||||
<!--IspdfFileEnd-->
|
<!--IspdfFileEnd-->
|
||||||
<!--IsofficeFileStart-->
|
<!--IsofficeFileStart-->
|
||||||
<iframe id="office-a" src="https://view.officeapps.live.com/op/view.aspx?src=<!--FileEncodeDownUrl-->" style="width: 100%;height: 800px" frameborder="0"></iframe>
|
<iframe id="office-a" src="https://view.officeapps.live.com/op/view.aspx?src=<!--FileEncodeDownUrl-->" style="width: 100%;height: 800px" frameborder="0"></iframe>
|
||||||
@@ -448,11 +434,14 @@
|
|||||||
function changelanguage(str)
|
function changelanguage(str)
|
||||||
{
|
{
|
||||||
if (str=='Language') str = '';
|
if (str=='Language') str = '';
|
||||||
document.cookie='language='+str+'; path=/';
|
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;
|
location.href = location.href;
|
||||||
}
|
}
|
||||||
<!--ListStart-->
|
<!--ListStart-->
|
||||||
var root = '<!--base_disk_path-->';
|
/*var root = '<!--base_disk_path-->';
|
||||||
function path_format(path) {
|
function path_format(path) {
|
||||||
path = '/' + path + '/';
|
path = '/' + path + '/';
|
||||||
while (path.indexOf('//') !== -1) {
|
while (path.indexOf('//') !== -1) {
|
||||||
@@ -472,7 +461,7 @@
|
|||||||
}
|
}
|
||||||
e.innerHTML += paths[paths.length - 1];
|
e.innerHTML += paths[paths.length - 1];
|
||||||
e.innerHTML = e.innerHTML.replace(/\s\/\s$/, '')
|
e.innerHTML = e.innerHTML.replace(/\s\/\s$/, '')
|
||||||
});
|
});*/
|
||||||
<!--IsFileStart-->
|
<!--IsFileStart-->
|
||||||
var $url = document.getElementById('url');
|
var $url = document.getElementById('url');
|
||||||
if ($url) {
|
if ($url) {
|
||||||
@@ -559,10 +548,16 @@
|
|||||||
<!--IsvideoFileEnd-->
|
<!--IsvideoFileEnd-->
|
||||||
<!--IspdfFileStart-->
|
<!--IspdfFileStart-->
|
||||||
pdfjsLib.GlobalWorkerOptions.workerSrc = '//cdn.bootcss.com/pdf.js/2.3.200/pdf.worker.min.js';
|
pdfjsLib.GlobalWorkerOptions.workerSrc = '//cdn.bootcss.com/pdf.js/2.3.200/pdf.worker.min.js';
|
||||||
var loadingTask = pdfjsLib.getDocument({ url: '<!--FileDownUrl-->', });
|
var loadingTask = pdfjsLib.getDocument({
|
||||||
|
url: '<!--FileDownUrl-->',
|
||||||
|
cMapUrl: "//cdn.jsdelivr.net/npm/pdfjs-dist@2.2.228/cmaps/",
|
||||||
|
cMapPacked: true,
|
||||||
|
rangeChunkSize: 65535
|
||||||
|
});
|
||||||
loadingTask.promise.then(function(pdf) {
|
loadingTask.promise.then(function(pdf) {
|
||||||
var pagenum = pdf.numPages;
|
var pagenum = pdf.numPages;
|
||||||
var pdfContainer = document.getElementById('pdf-d');
|
var pdfContainer = document.getElementById('pdf-d');
|
||||||
|
pdfContainer.innerHTML = '';
|
||||||
for (var i=1;i<=pagenum;i++) {
|
for (var i=1;i<=pagenum;i++) {
|
||||||
var canvasNew = document.createElement('canvas');
|
var canvasNew = document.createElement('canvas');
|
||||||
canvasNew.id = 'pdf-c'+i;
|
canvasNew.id = 'pdf-c'+i;
|
||||||
@@ -786,40 +781,96 @@
|
|||||||
var timea=new Date().getTime();
|
var timea=new Date().getTime();
|
||||||
var i=0;
|
var i=0;
|
||||||
getuplink(i);
|
getuplink(i);
|
||||||
function getuplink(i) {
|
function getuplink(i, r=0) {
|
||||||
var file=files[i];
|
var file=files[i];
|
||||||
|
var td1;
|
||||||
|
var td2;
|
||||||
|
if (r==0) {
|
||||||
var tr1=document.createElement('tr');
|
var tr1=document.createElement('tr');
|
||||||
table1.appendChild(tr1);
|
table1.appendChild(tr1);
|
||||||
tr1.setAttribute('data-to',1);
|
tr1.setAttribute('data-to',1);
|
||||||
var td1=document.createElement('td');
|
td1=document.createElement('td');
|
||||||
tr1.appendChild(td1);
|
tr1.appendChild(td1);
|
||||||
td1.setAttribute('style','width:30%');
|
td1.setAttribute('style','width:30%;word-break:break-word;');
|
||||||
td1.setAttribute('id','upfile_td1_'+timea+'_'+i);
|
td1.setAttribute('id','upfile_td1_'+timea+'_'+i);
|
||||||
td1.innerHTML=(file.webkitRelativePath||file.name)+'<br>'+size_format(file.size);
|
td1.innerHTML=(file.webkitRelativePath||file.name)+'<br>'+size_format(file.size);
|
||||||
var td2=document.createElement('td');
|
td2=document.createElement('td');
|
||||||
tr1.appendChild(td2);
|
tr1.appendChild(td2);
|
||||||
td2.setAttribute('id','upfile_td2_'+timea+'_'+i);
|
td2.setAttribute('id','upfile_td2_'+timea+'_'+i);
|
||||||
td2.innerHTML='<!--constStr@GetUploadLink--> ...';
|
}
|
||||||
|
var tdnum = timea+'_'+i;
|
||||||
|
td1=document.getElementById('upfile_td1_'+tdnum);
|
||||||
|
td2=document.getElementById('upfile_td2_'+tdnum);
|
||||||
if (file.size>100*1024*1024*1024) {
|
if (file.size>100*1024*1024*1024) {
|
||||||
td2.innerHTML='<font color="red"><!--constStr@UpFileTooLarge--></font>';
|
td2.innerHTML='<font color="red"><!--constStr@UpFileTooLarge--></font>';
|
||||||
uploadbuttonshow();
|
uploadbuttonshow();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
upbigfilename = encodeURIComponent((file.webkitRelativePath||file.name));
|
||||||
|
<!--GuestStart-->
|
||||||
|
function getext(str) {
|
||||||
|
strarry=str.split('.');
|
||||||
|
ext=strarry[strarry.length-1].toLowerCase();
|
||||||
|
var reg = new RegExp(".","g");
|
||||||
|
var a = str.replace(reg,"");
|
||||||
|
if (a == ext) ext = "";
|
||||||
|
else ext = "." + ext;
|
||||||
|
return ext;
|
||||||
|
}
|
||||||
|
var ext = getext(file.webkitRelativePath||file.name);
|
||||||
|
var spark = new SparkMD5.ArrayBuffer();
|
||||||
|
var reader = new FileReader();
|
||||||
|
var chunksize=10*1024*1024;
|
||||||
|
var asize = 0;
|
||||||
|
function readblob(start) {
|
||||||
|
var end=start+chunksize;
|
||||||
|
var blob = file.slice(start,end);
|
||||||
|
reader.readAsArrayBuffer(blob);
|
||||||
|
}
|
||||||
|
readblob(asize);
|
||||||
|
|
||||||
|
reader.onload = function(e){
|
||||||
|
td2.innerHTML='<!--constStr@Calculate--> md5: '+(asize*100/file.size).toFixed(2)+'%';
|
||||||
|
var binary = this.result;
|
||||||
|
spark.append(binary);
|
||||||
|
asize += chunksize;
|
||||||
|
if (asize < file.size) {
|
||||||
|
readblob(asize);
|
||||||
|
} else {
|
||||||
|
var filemd5 = spark.end();
|
||||||
|
td2.innerHTML='md5: '+filemd5;
|
||||||
|
upbigfilename = filemd5+ext;
|
||||||
|
<!--GuestEnd-->
|
||||||
|
td2.innerHTML='<!--constStr@GetUploadLink--> ...';
|
||||||
var xhr1 = new XMLHttpRequest();
|
var xhr1 = new XMLHttpRequest();
|
||||||
xhr1.open("GET", '?action=upbigfile&upbigfilename='+ encodeURIComponent((file.webkitRelativePath||file.name)) +'&filesize='+ file.size +'&lastModified='+ file.lastModified);
|
xhr1.open("GET", '?action=upbigfile&upbigfilename='+ upbigfilename +'&filesize='+ file.size +'&lastModified='+ file.lastModified);
|
||||||
xhr1.setRequestHeader('x-requested-with','XMLHttpRequest');
|
xhr1.setRequestHeader('x-requested-with','XMLHttpRequest');
|
||||||
xhr1.send(null);
|
xhr1.onprogress = function(e){
|
||||||
|
td2.innerHTML+='.';
|
||||||
|
}
|
||||||
xhr1.onload = function(e){
|
xhr1.onload = function(e){
|
||||||
|
console.log(xhr1.status+xhr1.responseText);
|
||||||
td2.innerHTML='<font color="red">'+xhr1.responseText+'</font>';
|
td2.innerHTML='<font color="red">'+xhr1.responseText+'</font>';
|
||||||
|
if (xhr1.status==409) {
|
||||||
|
// td2.innerHTML='nameAlreadyExists';
|
||||||
|
var html=JSON.parse(xhr1.responseText);
|
||||||
|
td2.innerHTML=html['error']['code']+': '+html['error']['message'];
|
||||||
|
<!--GuestStart-->
|
||||||
|
td2.innerHTML='md5: '+filemd5;
|
||||||
|
<!--GuestEnd-->
|
||||||
|
td1.innerHTML='<div style="color:green"><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||file.name)+'?preview" id="upfile_a_'+tdnum+'" target="_blank">'+td1.innerHTML+'</a><br><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||file.name)+'" id="upfile_a1_'+tdnum+'"></a><!--constStr@UploadComplete--><button onclick="CopyAllDownloadUrl(\'#upfile_a1_'+tdnum+'\');" id="upfile_cpbt_'+tdnum+'" <!--AdminStart--> style="display:none"<!--AdminEnd--> ><!--constStr@CopyUrl--></button></div>';
|
||||||
|
}
|
||||||
if (xhr1.status==200) {
|
if (xhr1.status==200) {
|
||||||
console.log(xhr1.responseText);
|
if (xhr1.responseText=='') {
|
||||||
|
getuplink(i,1);
|
||||||
|
return;
|
||||||
|
}
|
||||||
var html=JSON.parse(xhr1.responseText);
|
var html=JSON.parse(xhr1.responseText);
|
||||||
if (!html['uploadUrl']) {
|
if (!html['uploadUrl']) {
|
||||||
td2.innerHTML='<font color="red">'+xhr1.responseText+'</font><br>';
|
td2.innerHTML='<font color="red">'+xhr1.responseText+'</font><br>';
|
||||||
uploadbuttonshow();
|
|
||||||
} else {
|
} else {
|
||||||
td2.innerHTML='<!--constStr@UploadStart--> ...';
|
td2.innerHTML='<!--constStr@UploadStart--> ...';
|
||||||
binupfile(file,html['uploadUrl'],timea+'_'+i);
|
binupfile(file,html['uploadUrl'],timea+'_'+i, upbigfilename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (i<files.length-1) {
|
if (i<files.length-1) {
|
||||||
@@ -827,8 +878,14 @@
|
|||||||
getuplink(i);
|
getuplink(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
xhr1.send(null);
|
||||||
|
<!--GuestStart-->
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<!--GuestEnd-->
|
||||||
|
}
|
||||||
|
uploadbuttonshow();
|
||||||
|
}
|
||||||
function size_format(num) {
|
function size_format(num) {
|
||||||
if (num>1024) {
|
if (num>1024) {
|
||||||
num=num/1024;
|
num=num/1024;
|
||||||
@@ -847,7 +904,7 @@
|
|||||||
}
|
}
|
||||||
return num.toFixed(2) + ' GB';
|
return num.toFixed(2) + ' GB';
|
||||||
}
|
}
|
||||||
function binupfile(file,url,tdnum){
|
function binupfile(file,url,tdnum,filename){
|
||||||
var label=document.getElementById('upfile_td2_'+tdnum);
|
var label=document.getElementById('upfile_td2_'+tdnum);
|
||||||
var reader = new FileReader();
|
var reader = new FileReader();
|
||||||
var StartStr='';
|
var StartStr='';
|
||||||
@@ -868,9 +925,7 @@
|
|||||||
var a = html['nextExpectedRanges'][0];
|
var a = html['nextExpectedRanges'][0];
|
||||||
newstartsize = Number( a.slice(0,a.indexOf("-")) );
|
newstartsize = Number( a.slice(0,a.indexOf("-")) );
|
||||||
StartTime = new Date();
|
StartTime = new Date();
|
||||||
<!--AdminStart-->
|
|
||||||
asize = newstartsize;
|
asize = newstartsize;
|
||||||
<!--AdminEnd-->
|
|
||||||
if (newstartsize==0) {
|
if (newstartsize==0) {
|
||||||
StartStr='<!--constStr@UploadStartAt-->:' +StartTime.toLocaleString()+'<br>' ;
|
StartStr='<!--constStr@UploadStartAt-->:' +StartTime.toLocaleString()+'<br>' ;
|
||||||
} else {
|
} else {
|
||||||
@@ -884,19 +939,9 @@
|
|||||||
reader.readAsArrayBuffer(blob);
|
reader.readAsArrayBuffer(blob);
|
||||||
}
|
}
|
||||||
readblob(asize);
|
readblob(asize);
|
||||||
<!--GuestStart-->
|
|
||||||
var spark = new SparkMD5.ArrayBuffer();
|
|
||||||
<!--GuestEnd-->
|
|
||||||
reader.onload = function(e){
|
reader.onload = function(e){
|
||||||
var binary = this.result;
|
var binary = this.result;
|
||||||
<!--GuestStart-->
|
|
||||||
spark.append(binary);
|
|
||||||
if (asize < newstartsize) {
|
|
||||||
asize += chunksize;
|
|
||||||
readblob(asize);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
<!--GuestEnd-->
|
|
||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
xhr.open("PUT", url, true);
|
xhr.open("PUT", url, true);
|
||||||
//xhr.setRequestHeader('x-requested-with','XMLHttpRequest');
|
//xhr.setRequestHeader('x-requested-with','XMLHttpRequest');
|
||||||
@@ -917,38 +962,12 @@
|
|||||||
if (response['size']>0) {
|
if (response['size']>0) {
|
||||||
// contain size, upload finish. 有size说明是最终返回,上传结束
|
// contain size, upload finish. 有size说明是最终返回,上传结束
|
||||||
var xhr3 = new XMLHttpRequest();
|
var xhr3 = new XMLHttpRequest();
|
||||||
xhr3.open("GET", '?action=del_upload_cache&filelastModified='+file.lastModified+'&filesize='+file.size+'&filename='+encodeURIComponent((file.webkitRelativePath||file.name)));
|
xhr3.open("GET", '?action=del_upload_cache&filelastModified='+file.lastModified+'&filesize='+file.size+'&filename='+filename);
|
||||||
xhr3.setRequestHeader('x-requested-with','XMLHttpRequest');
|
xhr3.setRequestHeader('x-requested-with','XMLHttpRequest');
|
||||||
xhr3.send(null);
|
xhr3.send(null);
|
||||||
xhr3.onload = function(e){
|
xhr3.onload = function(e){
|
||||||
console.log(xhr3.responseText+','+xhr3.status);
|
console.log(xhr3.responseText+','+xhr3.status);
|
||||||
}
|
}
|
||||||
<!--GuestStart-->
|
|
||||||
var filemd5 = spark.end();
|
|
||||||
var xhr4 = new XMLHttpRequest();
|
|
||||||
xhr4.open("GET", '?action=uploaded_rename&filename='+encodeURIComponent((file.webkitRelativePath||file.name))+'&filemd5='+filemd5);
|
|
||||||
xhr4.setRequestHeader('x-requested-with','XMLHttpRequest');
|
|
||||||
xhr4.send(null);
|
|
||||||
xhr4.onload = function(e){
|
|
||||||
console.log(xhr4.responseText+','+xhr4.status);
|
|
||||||
var filename;
|
|
||||||
//if (xhr4.status==200) filename = JSON.parse(xhr4.responseText)['name'];
|
|
||||||
//if (xhr4.status==409) filename = filemd5 + (file.webkitRelativePath||file.name).substr((file.webkitRelativePath||file.name).indexOf('.'));
|
|
||||||
filename = JSON.parse(xhr4.responseText)['name'];
|
|
||||||
if (filename=='') {
|
|
||||||
alert('<!--constStr@UploadErrorUpAgain-->');
|
|
||||||
uploadbuttonshow();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var lasturl = location.href;
|
|
||||||
if (lasturl.substr(lasturl.length-1)!='/') lasturl += '/';
|
|
||||||
lasturl += filename + '?preview';
|
|
||||||
//window.open(lasturl);
|
|
||||||
document.getElementById('upfile_a_'+tdnum).href = lasturl;
|
|
||||||
document.getElementById('upfile_a1_'+tdnum).href = filename;
|
|
||||||
document.getElementById('upfile_cpbt_'+tdnum).style.display = "";
|
|
||||||
}
|
|
||||||
<!--GuestEnd-->
|
|
||||||
EndTime=new Date();
|
EndTime=new Date();
|
||||||
MiddleStr = '<!--constStr@EndAt-->:'+EndTime.toLocaleString()+'<br>';
|
MiddleStr = '<!--constStr@EndAt-->:'+EndTime.toLocaleString()+'<br>';
|
||||||
if (newstartsize==0) {
|
if (newstartsize==0) {
|
||||||
@@ -958,7 +977,7 @@
|
|||||||
}
|
}
|
||||||
document.getElementById('upfile_td1_'+tdnum).innerHTML='<div style="color:green"><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||response.name)+'?preview" id="upfile_a_'+tdnum+'" target="_blank">'+document.getElementById('upfile_td1_'+tdnum).innerHTML+'</a><br><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||response.name)+'" id="upfile_a1_'+tdnum+'"></a><!--constStr@UploadComplete--><button onclick="CopyAllDownloadUrl(\'#upfile_a1_'+tdnum+'\');" id="upfile_cpbt_'+tdnum+'" <!--AdminStart--> style="display:none"<!--AdminEnd--> ><!--constStr@CopyUrl--></button></div>';
|
document.getElementById('upfile_td1_'+tdnum).innerHTML='<div style="color:green"><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||response.name)+'?preview" id="upfile_a_'+tdnum+'" target="_blank">'+document.getElementById('upfile_td1_'+tdnum).innerHTML+'</a><br><a href="<!--base_disk_path--><!--Path-->'+(file.webkitRelativePath||response.name)+'" id="upfile_a1_'+tdnum+'"></a><!--constStr@UploadComplete--><button onclick="CopyAllDownloadUrl(\'#upfile_a1_'+tdnum+'\');" id="upfile_cpbt_'+tdnum+'" <!--AdminStart--> style="display:none"<!--AdminEnd--> ><!--constStr@CopyUrl--></button></div>';
|
||||||
label.innerHTML=StartStr+MiddleStr;
|
label.innerHTML=StartStr+MiddleStr;
|
||||||
uploadbuttonshow();
|
// uploadbuttonshow();
|
||||||
<!--AdminStart-->
|
<!--AdminStart-->
|
||||||
response.name=file.webkitRelativePath||response.name;
|
response.name=file.webkitRelativePath||response.name;
|
||||||
addelement(response);
|
addelement(response);
|
||||||
@@ -976,12 +995,12 @@
|
|||||||
xhr.send(binary);
|
xhr.send(binary);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (window.location.pathname.indexOf('%23')>0||(file.webkitRelativePath||file.name).indexOf('%23')>0) {
|
if (window.location.pathname.indexOf('%23')>0||filename.indexOf('%23')>0) {
|
||||||
label.innerHTML='<font color="red"><!--constStr@UploadFail23--></font>';
|
label.innerHTML='<font color="red"><!--constStr@UploadFail23--></font>';
|
||||||
} else {
|
} else {
|
||||||
label.innerHTML='<font color="red">'+xhr2.responseText+'</font>';
|
label.innerHTML='<font color="red">'+xhr2.responseText+'</font>';
|
||||||
}
|
}
|
||||||
uploadbuttonshow();
|
// uploadbuttonshow();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+60
-23
@@ -17,13 +17,11 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no"/>
|
||||||
<title><!--Title--></title>
|
<title><!--Title--></title>
|
||||||
<link rel="stylesheet" href="//cdnjs.loli.net/ajax/libs/mdui/0.4.1/css/mdui.css">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/mdui@0.4.3/dist/css/mdui.min.css">
|
||||||
<script src="//cdnjs.loli.net/ajax/libs/mdui/0.4.1/js/mdui.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/mdui@0.4.3/dist/js/mdui.min.js"></script>
|
||||||
<script src="https://cdn.my-file.cn/mduilw/MDUILW/jquery.min.js"></script>
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css">
|
||||||
<!--<script src="https://cdn.my-file.cn/mduilw/MDUILW/jquery.pjax.js"></script>-->
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.css">
|
||||||
<script src="//cdn.staticfile.org/layer/2.3/layer.js"></script>
|
<!--<script src="https://cdn.jsdelivr.net/npm/pjax@0.2.8/pjax.js"></script>-->
|
||||||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css">
|
|
||||||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.css">
|
|
||||||
<link rel="icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
<link rel="icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
||||||
<link rel="shortcut icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
<link rel="shortcut icon" href="<!--base_path-->favicon.ico" type="image/x-icon">
|
||||||
|
|
||||||
@@ -120,6 +118,18 @@
|
|||||||
|
|
||||||
<div class="mdui-drawer mdui-drawer-close" id="main-drawer">
|
<div class="mdui-drawer mdui-drawer-close" id="main-drawer">
|
||||||
<div class="mdui-list" mdui-collapse="{accordion: true}">
|
<div class="mdui-list" mdui-collapse="{accordion: true}">
|
||||||
|
<!--LoginStart-->
|
||||||
|
<li class="mdui-list-item mdui-ripple" href="javascript:void(0);" mdui-dialog="{target: '#login_input'}">
|
||||||
|
<a class="mdui-list-item-icon mdui-icon material-icons">account_circle</a>
|
||||||
|
<a class="mdui-list-item-content">登录</a>
|
||||||
|
</li>
|
||||||
|
<!--LoginEnd-->
|
||||||
|
<!--AdminStart-->
|
||||||
|
<li class="mdui-list-item mdui-ripple" href="?setup">
|
||||||
|
<a class="mdui-list-item-icon mdui-icon material-icons" href="?setup">account_circle</a>
|
||||||
|
<a class="mdui-list-item-content" href="?setup">管理</a>
|
||||||
|
</li>
|
||||||
|
<!--AdminEnd-->
|
||||||
<li class="mdui-list-item mdui-ripple" href="javascript:void(0);" onclick="darkmod_use()">
|
<li class="mdui-list-item mdui-ripple" href="javascript:void(0);" onclick="darkmod_use()">
|
||||||
<a class="mdui-list-item-icon mdui-icon material-icons">brightness_4</a>
|
<a class="mdui-list-item-icon mdui-icon material-icons">brightness_4</a>
|
||||||
<a class="mdui-list-item-content">深色模式</a>
|
<a class="mdui-list-item-content">深色模式</a>
|
||||||
@@ -163,8 +173,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!--EncryptedEnd-->
|
<!--EncryptedEnd-->
|
||||||
<!--GuestUploadStart-->
|
<!--GuestUploadStart-->
|
||||||
<!--
|
<div class="nexmoe-item" style="padding: 100px!important;" id="content">
|
||||||
<div class="nexmoe-item" style="padding: 100px!important;" id="pjax-main">
|
|
||||||
<div class="mdui-typo-display-3-opacity" style="text-align:center;">OneImages</div>
|
<div class="mdui-typo-display-3-opacity" style="text-align:center;">OneImages</div>
|
||||||
<form action="" method="post" enctype="multipart/form-data">
|
<form action="" method="post" enctype="multipart/form-data">
|
||||||
<input class="mdui-center" type="file" style="margin: 50px 0;" name="file" />
|
<input class="mdui-center" type="file" style="margin: 50px 0;" name="file" />
|
||||||
@@ -176,11 +185,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
-->
|
|
||||||
<!--GuestUploadEnd-->
|
<!--GuestUploadEnd-->
|
||||||
|
|
||||||
<!--IsFileStart-->
|
<!--IsFileStart-->
|
||||||
<div class="mdui-container-fluid" id="pjax-main">
|
<div class="mdui-container-fluid" id="content">
|
||||||
<!--IsimgFileStart-->
|
<!--IsimgFileStart-->
|
||||||
<div class="nexmoe-item">
|
<div class="nexmoe-item">
|
||||||
<img class="mdui-img-fluid mdui-center mdui-m-t-5 "src="<!--FileDownUrl-->"/>
|
<img class="mdui-img-fluid mdui-center mdui-m-t-5 "src="<!--FileDownUrl-->"/>
|
||||||
@@ -227,8 +235,25 @@
|
|||||||
<!--IsFileEnd-->
|
<!--IsFileEnd-->
|
||||||
|
|
||||||
<!--IsFolderStart-->
|
<!--IsFolderStart-->
|
||||||
<div class="mdui-container">
|
<div class="mdui-container" id="content">
|
||||||
<div class="mdui-container-fluid"></div>
|
<div class="mdui-container-fluid">
|
||||||
|
<form action="?admin" method="post">
|
||||||
|
<div class="mdui-dialog" id="login_input">
|
||||||
|
<div class="mdui-dialog-title">登录</div>
|
||||||
|
<div class="mdui-dialog-content">
|
||||||
|
<div class="mdui-textfield mdui-textfield-floating-label">
|
||||||
|
<i class="mdui-icon material-icons">lock</i>
|
||||||
|
<label class="mdui-textfield-label">密码</label>
|
||||||
|
<input class="mdui-textfield-input" type="password"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mdui-dialog-actions">
|
||||||
|
<button class="mdui-btn mdui-ripple" mdui-dialog-close>取消</button>
|
||||||
|
<button class="mdui-btn mdui-ripple" type="submit">登录</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
<div class="mdui-container-fluid">
|
<div class="mdui-container-fluid">
|
||||||
<!--HeadomfStart-->
|
<!--HeadomfStart-->
|
||||||
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
<div class="mdui-typo mdui-shadow-3" style="padding: 20px;margin: 20px 0">
|
||||||
@@ -292,6 +317,7 @@
|
|||||||
</li>
|
</li>
|
||||||
<!--BackArrowStart-->
|
<!--BackArrowStart-->
|
||||||
<li class="mdui-list-item mdui-ripple">
|
<li class="mdui-list-item mdui-ripple">
|
||||||
|
<div class="mdui-row mdui-col-sm-12">
|
||||||
<a href="<!--BackArrowUrl-->">
|
<a href="<!--BackArrowUrl-->">
|
||||||
<div class="mdui-col-xs-7">
|
<div class="mdui-col-xs-7">
|
||||||
<i class="mdui-icon material-icons">arrow_upward</i>
|
<i class="mdui-icon material-icons">arrow_upward</i>
|
||||||
@@ -300,19 +326,22 @@
|
|||||||
<div class="mdui-col-xs-3 mdui-text-right"></div>
|
<div class="mdui-col-xs-3 mdui-text-right"></div>
|
||||||
<div class="mdui-col-xs-2 mdui-text-right"></div>
|
<div class="mdui-col-xs-2 mdui-text-right"></div>
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<!--BackArrowEnd-->
|
<!--BackArrowEnd-->
|
||||||
|
|
||||||
<!--FolderListStart-->
|
<!--FolderListStart-->
|
||||||
<li class="mdui-list-item mdui-ripple" data-sort data-sort-name="<!--FileEncodeReplaceName-->" data-sort-date="<!--lastModifiedDateTime-->" data-sort-size="<!--size-->" style="padding-right:36px;">
|
<li class="mdui-list-item mdui-ripple" data-sort data-sort-name="<!--FileEncodeReplaceName-->" data-sort-date="<!--lastModifiedDateTime-->" data-sort-size="<!--size-->" style="padding-right:36px;">
|
||||||
|
<div class="mdui-row mdui-col-sm-12">
|
||||||
<a href="<!--FileEncodeReplaceUrl-->/">
|
<a href="<!--FileEncodeReplaceUrl-->/">
|
||||||
<div class="mdui-col-xs-7 mdui-text-truncate">
|
<div class="mdui-col-xs-12 mdui-col-sm-7 mdui-text-truncate">
|
||||||
<i class="mdui-icon material-icons">folder_open</i>
|
<i class="mdui-icon material-icons">folder_open</i>
|
||||||
<span><!--FileEncodeReplaceName--></span>
|
<span><!--FileEncodeReplaceName--></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="mdui-col-xs-3 mdui-text-right"><!--lastModifiedDateTime--></div>
|
<div class="mdui-col-xs-3 mdui-text-right"><!--lastModifiedDateTime--></div>
|
||||||
<div class="mdui-col-xs-2 mdui-text-right"><!--size--></div>
|
<div class="mdui-col-xs-2 mdui-text-right"><!--size--></div>
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<!--FolderListEnd-->
|
<!--FolderListEnd-->
|
||||||
<!--FileListStart-->
|
<!--FileListStart-->
|
||||||
@@ -322,15 +351,15 @@
|
|||||||
<img class="mdui-img-fluid" src="<?php echo get_absolute_path($root.$path).rawurlencode($item['name']); ?>">
|
<img class="mdui-img-fluid" src="<?php echo get_absolute_path($root.$path).rawurlencode($item['name']); ?>">
|
||||||
<?php else:?>-->
|
<?php else:?>-->
|
||||||
<div class="mdui-row mdui-col-sm-12">
|
<div class="mdui-row mdui-col-sm-12">
|
||||||
<div class="mdui-col-xs-7 mdui-text-truncate">
|
<div class="mdui-col-xs-12 mdui-col-sm-7 mdui-text-truncate">
|
||||||
<i class="mdui-icon material-icons"><!--IconValue--></i>
|
<i class="mdui-icon material-icons"><!--IconValue--></i>
|
||||||
<span><!--FileEncodeReplaceName--></span>
|
<span><!--FileEncodeReplaceName--></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="mdui-col-xs-3 mdui-text-right"><!--lastModifiedDateTime--></div>
|
<div class="mdui-col-sm-3 mdui-text-right"><!--lastModifiedDateTime--></div>
|
||||||
<div class="mdui-col-xs-2 mdui-text-right"><!--size--></div>
|
<div class="mdui-col-sm-2 mdui-text-right"><!--size--></div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="forcedownload " >
|
<div class="forcedownload mdui-text-right" >
|
||||||
<a title="<!--constStr@Download-->" href="<!--FileEncodeReplaceUrl-->">
|
<a title="<!--constStr@Download-->" href="<!--FileEncodeReplaceUrl-->">
|
||||||
<button class="mdui-btn mdui-ripple mdui-btn-icon"><i class="mdui-icon material-icons">file_download</i></button>
|
<button class="mdui-btn mdui-ripple mdui-btn-icon"><i class="mdui-icon material-icons">file_download</i></button>
|
||||||
</a>
|
</a>
|
||||||
@@ -388,7 +417,9 @@
|
|||||||
document.getElementById('nextpageform').submit();
|
document.getElementById('nextpageform').submit();
|
||||||
}
|
}
|
||||||
<!--MorePageEnd-->
|
<!--MorePageEnd-->
|
||||||
|
var $ = mdui.JQ;
|
||||||
var $$ = mdui.JQ;
|
var $$ = mdui.JQ;
|
||||||
|
var jQuery = mdui.JQ;
|
||||||
$$(function() {
|
$$(function() {
|
||||||
$$('.file .iframe').each(function() {
|
$$('.file .iframe').each(function() {
|
||||||
$$(this).on('click', function() {
|
$$(this).on('click', function() {
|
||||||
@@ -422,10 +453,7 @@ $$(function() {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
window.TC=window.TC||{};
|
window.TC=window.TC||{};
|
||||||
jQuery(".file .audio").click(function(e){
|
$$(".file .audio").on('click',function(e){e.preventDefault();TC.preview_audio(this);});
|
||||||
e.preventDefault();
|
|
||||||
TC.preview_audio(this);
|
|
||||||
});
|
|
||||||
TC.preview_audio = function(aud){
|
TC.preview_audio = function(aud){
|
||||||
if(!TC.aplayer){
|
if(!TC.aplayer){
|
||||||
TC.aplayerList=[];
|
TC.aplayerList=[];
|
||||||
@@ -596,7 +624,16 @@ function darkmod_use(){
|
|||||||
} else {
|
} else {
|
||||||
mainbody.classList.add("mdui-theme-layout-dark");darkmod = 1;
|
mainbody.classList.add("mdui-theme-layout-dark");darkmod = 1;
|
||||||
}};
|
}};
|
||||||
//$(document).pjax('a', '#pjax-main' , {fragment:'#pjax-main', timeout:8000});
|
function login() {
|
||||||
|
$$("content").write("")
|
||||||
|
}
|
||||||
|
//var pjax = new Pjax({
|
||||||
|
// selectors :[
|
||||||
|
// "content"
|
||||||
|
// ],
|
||||||
|
// debug: true,
|
||||||
|
// timeout: 8000
|
||||||
|
//})
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,118 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* APC cache provider.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @deprecated since version 1.6, use ApcuCache instead
|
|
||||||
* @since 2.0
|
|
||||||
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
||||||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
||||||
* @author Jonathan Wage <jonwage@gmail.com>
|
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
|
||||||
* @author David Abdemoulaie <dave@hobodave.com>
|
|
||||||
*/
|
|
||||||
class ApcCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return apc_fetch($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return apc_exists($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
return apc_store($id, $data, $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
// apc_delete returns false if the id does not exist
|
|
||||||
return apc_delete($id) || ! apc_exists($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return apc_clear_cache() && apc_clear_cache('user');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetchMultiple(array $keys)
|
|
||||||
{
|
|
||||||
return apc_fetch($keys) ?: [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSaveMultiple(array $keysAndValues, $lifetime = 0)
|
|
||||||
{
|
|
||||||
$result = apc_store($keysAndValues, null, $lifetime);
|
|
||||||
|
|
||||||
return empty($result);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$info = apc_cache_info('', true);
|
|
||||||
$sma = apc_sma_info();
|
|
||||||
|
|
||||||
// @TODO - Temporary fix @see https://github.com/krakjoe/apcu/pull/42
|
|
||||||
if (PHP_VERSION_ID >= 50500) {
|
|
||||||
$info['num_hits'] = isset($info['num_hits']) ? $info['num_hits'] : $info['nhits'];
|
|
||||||
$info['num_misses'] = isset($info['num_misses']) ? $info['num_misses'] : $info['nmisses'];
|
|
||||||
$info['start_time'] = isset($info['start_time']) ? $info['start_time'] : $info['stime'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $info['num_hits'],
|
|
||||||
Cache::STATS_MISSES => $info['num_misses'],
|
|
||||||
Cache::STATS_UPTIME => $info['start_time'],
|
|
||||||
Cache::STATS_MEMORY_USAGE => $info['mem_size'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => $sma['avail_mem'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,106 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* APCu cache provider.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 1.6
|
|
||||||
* @author Kévin Dunglas <dunglas@gmail.com>
|
|
||||||
*/
|
|
||||||
class ApcuCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return apcu_fetch($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return apcu_exists($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
return apcu_store($id, $data, $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
// apcu_delete returns false if the id does not exist
|
|
||||||
return apcu_delete($id) || ! apcu_exists($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return apcu_clear_cache();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetchMultiple(array $keys)
|
|
||||||
{
|
|
||||||
return apcu_fetch($keys) ?: [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSaveMultiple(array $keysAndValues, $lifetime = 0)
|
|
||||||
{
|
|
||||||
$result = apcu_store($keysAndValues, null, $lifetime);
|
|
||||||
|
|
||||||
return empty($result);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$info = apcu_cache_info(true);
|
|
||||||
$sma = apcu_sma_info();
|
|
||||||
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $info['num_hits'],
|
|
||||||
Cache::STATS_MISSES => $info['num_misses'],
|
|
||||||
Cache::STATS_UPTIME => $info['start_time'],
|
|
||||||
Cache::STATS_MEMORY_USAGE => $info['mem_size'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => $sma['avail_mem'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,142 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Array cache driver.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 2.0
|
|
||||||
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
||||||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
||||||
* @author Jonathan Wage <jonwage@gmail.com>
|
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
|
||||||
* @author David Abdemoulaie <dave@hobodave.com>
|
|
||||||
*/
|
|
||||||
class ArrayCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array[] $data each element being a tuple of [$data, $expiration], where the expiration is int|bool
|
|
||||||
*/
|
|
||||||
private $data = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
private $hitsCount = 0;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
private $missesCount = 0;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
private $upTime;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->upTime = time();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
if (! $this->doContains($id)) {
|
|
||||||
$this->missesCount += 1;
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->hitsCount += 1;
|
|
||||||
|
|
||||||
return $this->data[$id][0];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
if (! isset($this->data[$id])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$expiration = $this->data[$id][1];
|
|
||||||
|
|
||||||
if ($expiration && $expiration < time()) {
|
|
||||||
$this->doDelete($id);
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
$this->data[$id] = [$data, $lifeTime ? time() + $lifeTime : false];
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
unset($this->data[$id]);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
$this->data = [];
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
Cache::STATS_HITS => $this->hitsCount,
|
|
||||||
Cache::STATS_MISSES => $this->missesCount,
|
|
||||||
Cache::STATS_UPTIME => $this->upTime,
|
|
||||||
Cache::STATS_MEMORY_USAGE => null,
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => null,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Cache provider that allows to easily chain multiple cache providers
|
|
||||||
*
|
|
||||||
* @author Michaël Gallego <mic.gallego@gmail.com>
|
|
||||||
*/
|
|
||||||
class ChainCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var CacheProvider[]
|
|
||||||
*/
|
|
||||||
private $cacheProviders = array();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*
|
|
||||||
* @param CacheProvider[] $cacheProviders
|
|
||||||
*/
|
|
||||||
public function __construct($cacheProviders = array())
|
|
||||||
{
|
|
||||||
$this->cacheProviders = $cacheProviders;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setNamespace($namespace)
|
|
||||||
{
|
|
||||||
parent::setNamespace($namespace);
|
|
||||||
|
|
||||||
foreach ($this->cacheProviders as $cacheProvider) {
|
|
||||||
$cacheProvider->setNamespace($namespace);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
foreach ($this->cacheProviders as $key => $cacheProvider) {
|
|
||||||
if ($cacheProvider->doContains($id)) {
|
|
||||||
$value = $cacheProvider->doFetch($id);
|
|
||||||
|
|
||||||
// We populate all the previous cache layers (that are assumed to be faster)
|
|
||||||
for ($subKey = $key - 1 ; $subKey >= 0 ; $subKey--) {
|
|
||||||
$this->cacheProviders[$subKey]->doSave($id, $value);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
foreach ($this->cacheProviders as $cacheProvider) {
|
|
||||||
if ($cacheProvider->doContains($id)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
$stored = true;
|
|
||||||
|
|
||||||
foreach ($this->cacheProviders as $cacheProvider) {
|
|
||||||
$stored = $cacheProvider->doSave($id, $data, $lifeTime) && $stored;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $stored;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
$deleted = true;
|
|
||||||
|
|
||||||
foreach ($this->cacheProviders as $cacheProvider) {
|
|
||||||
$deleted = $cacheProvider->doDelete($id) && $deleted;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $deleted;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
$flushed = true;
|
|
||||||
|
|
||||||
foreach ($this->cacheProviders as $cacheProvider) {
|
|
||||||
$flushed = $cacheProvider->doFlush() && $flushed;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $flushed;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
// We return all the stats from all adapters
|
|
||||||
$stats = array();
|
|
||||||
|
|
||||||
foreach ($this->cacheProviders as $cacheProvider) {
|
|
||||||
$stats[] = $cacheProvider->doGetStats();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $stats;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,121 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use \Couchbase;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Couchbase cache provider.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 2.4
|
|
||||||
* @author Michael Nitschinger <michael@nitschinger.at>
|
|
||||||
*/
|
|
||||||
class CouchbaseCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var Couchbase|null
|
|
||||||
*/
|
|
||||||
private $couchbase;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the Couchbase instance to use.
|
|
||||||
*
|
|
||||||
* @param Couchbase $couchbase
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setCouchbase(Couchbase $couchbase)
|
|
||||||
{
|
|
||||||
$this->couchbase = $couchbase;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the Couchbase instance used by the cache.
|
|
||||||
*
|
|
||||||
* @return Couchbase|null
|
|
||||||
*/
|
|
||||||
public function getCouchbase()
|
|
||||||
{
|
|
||||||
return $this->couchbase;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return $this->couchbase->get($id) ?: false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return (null !== $this->couchbase->get($id));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
if ($lifeTime > 30 * 24 * 3600) {
|
|
||||||
$lifeTime = time() + $lifeTime;
|
|
||||||
}
|
|
||||||
return $this->couchbase->set($id, $data, (int) $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return $this->couchbase->delete($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return $this->couchbase->flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$stats = $this->couchbase->getStats();
|
|
||||||
$servers = $this->couchbase->getServers();
|
|
||||||
$server = explode(":", $servers[0]);
|
|
||||||
$key = $server[0] . ":" . "11210";
|
|
||||||
$stats = $stats[$key];
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $stats['get_hits'],
|
|
||||||
Cache::STATS_MISSES => $stats['get_misses'],
|
|
||||||
Cache::STATS_UPTIME => $stats['uptime'],
|
|
||||||
Cache::STATS_MEMORY_USAGE => $stats['bytes'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => $stats['limit_maxbytes'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,126 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use \Memcache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Memcache cache provider.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 2.0
|
|
||||||
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
||||||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
||||||
* @author Jonathan Wage <jonwage@gmail.com>
|
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
|
||||||
* @author David Abdemoulaie <dave@hobodave.com>
|
|
||||||
*/
|
|
||||||
class MemcacheCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var Memcache|null
|
|
||||||
*/
|
|
||||||
private $memcache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the memcache instance to use.
|
|
||||||
*
|
|
||||||
* @param Memcache $memcache
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setMemcache(Memcache $memcache)
|
|
||||||
{
|
|
||||||
$this->memcache = $memcache;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the memcache instance used by the cache.
|
|
||||||
*
|
|
||||||
* @return Memcache|null
|
|
||||||
*/
|
|
||||||
public function getMemcache()
|
|
||||||
{
|
|
||||||
return $this->memcache;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return $this->memcache->get($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
$flags = null;
|
|
||||||
$this->memcache->get($id, $flags);
|
|
||||||
|
|
||||||
//if memcache has changed the value of "flags", it means the value exists
|
|
||||||
return ($flags !== null);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
if ($lifeTime > 30 * 24 * 3600) {
|
|
||||||
$lifeTime = time() + $lifeTime;
|
|
||||||
}
|
|
||||||
return $this->memcache->set($id, $data, 0, (int) $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
// Memcache::delete() returns false if entry does not exist
|
|
||||||
return $this->memcache->delete($id) || ! $this->doContains($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return $this->memcache->flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$stats = $this->memcache->getStats();
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $stats['get_hits'],
|
|
||||||
Cache::STATS_MISSES => $stats['get_misses'],
|
|
||||||
Cache::STATS_UPTIME => $stats['uptime'],
|
|
||||||
Cache::STATS_MEMORY_USAGE => $stats['bytes'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => $stats['limit_maxbytes'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use \Memcached;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Memcached cache provider.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 2.2
|
|
||||||
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
||||||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
||||||
* @author Jonathan Wage <jonwage@gmail.com>
|
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
|
||||||
* @author David Abdemoulaie <dave@hobodave.com>
|
|
||||||
*/
|
|
||||||
class MemcachedCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var Memcached|null
|
|
||||||
*/
|
|
||||||
private $memcached;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the memcache instance to use.
|
|
||||||
*
|
|
||||||
* @param Memcached $memcached
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setMemcached(Memcached $memcached)
|
|
||||||
{
|
|
||||||
$this->memcached = $memcached;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the memcached instance used by the cache.
|
|
||||||
*
|
|
||||||
* @return Memcached|null
|
|
||||||
*/
|
|
||||||
public function getMemcached()
|
|
||||||
{
|
|
||||||
return $this->memcached;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return $this->memcached->get($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetchMultiple(array $keys)
|
|
||||||
{
|
|
||||||
return $this->memcached->getMulti($keys) ?: [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSaveMultiple(array $keysAndValues, $lifetime = 0)
|
|
||||||
{
|
|
||||||
if ($lifetime > 30 * 24 * 3600) {
|
|
||||||
$lifetime = time() + $lifetime;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->memcached->setMulti($keysAndValues, $lifetime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
$this->memcached->get($id);
|
|
||||||
|
|
||||||
return $this->memcached->getResultCode() === Memcached::RES_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
if ($lifeTime > 30 * 24 * 3600) {
|
|
||||||
$lifeTime = time() + $lifeTime;
|
|
||||||
}
|
|
||||||
return $this->memcached->set($id, $data, (int) $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return $this->memcached->delete($id)
|
|
||||||
|| $this->memcached->getResultCode() === Memcached::RES_NOTFOUND;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return $this->memcached->flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$stats = $this->memcached->getStats();
|
|
||||||
$servers = $this->memcached->getServerList();
|
|
||||||
$key = $servers[0]['host'] . ':' . $servers[0]['port'];
|
|
||||||
$stats = $stats[$key];
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $stats['get_hits'],
|
|
||||||
Cache::STATS_MISSES => $stats['get_misses'],
|
|
||||||
Cache::STATS_UPTIME => $stats['uptime'],
|
|
||||||
Cache::STATS_MEMORY_USAGE => $stats['bytes'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => $stats['limit_maxbytes'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,197 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use MongoBinData;
|
|
||||||
use MongoCollection;
|
|
||||||
use MongoCursorException;
|
|
||||||
use MongoDate;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* MongoDB cache provider.
|
|
||||||
*
|
|
||||||
* @since 1.1
|
|
||||||
* @author Jeremy Mikola <jmikola@gmail.com>
|
|
||||||
*/
|
|
||||||
class MongoDBCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The data field will store the serialized PHP value.
|
|
||||||
*/
|
|
||||||
const DATA_FIELD = 'd';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The expiration field will store a MongoDate value indicating when the
|
|
||||||
* cache entry should expire.
|
|
||||||
*
|
|
||||||
* With MongoDB 2.2+, entries can be automatically deleted by MongoDB by
|
|
||||||
* indexing this field with the "expireAfterSeconds" option equal to zero.
|
|
||||||
* This will direct MongoDB to regularly query for and delete any entries
|
|
||||||
* whose date is older than the current time. Entries without a date value
|
|
||||||
* in this field will be ignored.
|
|
||||||
*
|
|
||||||
* The cache provider will also check dates on its own, in case expired
|
|
||||||
* entries are fetched before MongoDB's TTLMonitor pass can expire them.
|
|
||||||
*
|
|
||||||
* @see http://docs.mongodb.org/manual/tutorial/expire-data/
|
|
||||||
*/
|
|
||||||
const EXPIRATION_FIELD = 'e';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var MongoCollection
|
|
||||||
*/
|
|
||||||
private $collection;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*
|
|
||||||
* This provider will default to the write concern and read preference
|
|
||||||
* options set on the MongoCollection instance (or inherited from MongoDB or
|
|
||||||
* MongoClient). Using an unacknowledged write concern (< 1) may make the
|
|
||||||
* return values of delete() and save() unreliable. Reading from secondaries
|
|
||||||
* may make contain() and fetch() unreliable.
|
|
||||||
*
|
|
||||||
* @see http://www.php.net/manual/en/mongo.readpreferences.php
|
|
||||||
* @see http://www.php.net/manual/en/mongo.writeconcerns.php
|
|
||||||
* @param MongoCollection $collection
|
|
||||||
*/
|
|
||||||
public function __construct(MongoCollection $collection)
|
|
||||||
{
|
|
||||||
$this->collection = $collection;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
$document = $this->collection->findOne(array('_id' => $id), array(self::DATA_FIELD, self::EXPIRATION_FIELD));
|
|
||||||
|
|
||||||
if ($document === null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isExpired($document)) {
|
|
||||||
$this->doDelete($id);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return unserialize($document[self::DATA_FIELD]->bin);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
$document = $this->collection->findOne(array('_id' => $id), array(self::EXPIRATION_FIELD));
|
|
||||||
|
|
||||||
if ($document === null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isExpired($document)) {
|
|
||||||
$this->doDelete($id);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$result = $this->collection->update(
|
|
||||||
array('_id' => $id),
|
|
||||||
array('$set' => array(
|
|
||||||
self::EXPIRATION_FIELD => ($lifeTime > 0 ? new MongoDate(time() + $lifeTime) : null),
|
|
||||||
self::DATA_FIELD => new MongoBinData(serialize($data), MongoBinData::BYTE_ARRAY),
|
|
||||||
)),
|
|
||||||
array('upsert' => true, 'multiple' => false)
|
|
||||||
);
|
|
||||||
} catch (MongoCursorException $e) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return isset($result['ok']) ? $result['ok'] == 1 : true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
$result = $this->collection->remove(array('_id' => $id));
|
|
||||||
|
|
||||||
return isset($result['ok']) ? $result['ok'] == 1 : true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
// Use remove() in lieu of drop() to maintain any collection indexes
|
|
||||||
$result = $this->collection->remove();
|
|
||||||
|
|
||||||
return isset($result['ok']) ? $result['ok'] == 1 : true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$serverStatus = $this->collection->db->command(array(
|
|
||||||
'serverStatus' => 1,
|
|
||||||
'locks' => 0,
|
|
||||||
'metrics' => 0,
|
|
||||||
'recordStats' => 0,
|
|
||||||
'repl' => 0,
|
|
||||||
));
|
|
||||||
|
|
||||||
$collStats = $this->collection->db->command(array('collStats' => 1));
|
|
||||||
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => null,
|
|
||||||
Cache::STATS_MISSES => null,
|
|
||||||
Cache::STATS_UPTIME => (isset($serverStatus['uptime']) ? (int) $serverStatus['uptime'] : null),
|
|
||||||
Cache::STATS_MEMORY_USAGE => (isset($collStats['size']) ? (int) $collStats['size'] : null),
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => null,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if the document is expired.
|
|
||||||
*
|
|
||||||
* @param array $document
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
private function isExpired(array $document)
|
|
||||||
{
|
|
||||||
return isset($document[self::EXPIRATION_FIELD]) &&
|
|
||||||
$document[self::EXPIRATION_FIELD] instanceof MongoDate &&
|
|
||||||
$document[self::EXPIRATION_FIELD]->sec < time();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Php file cache driver.
|
|
||||||
*
|
|
||||||
* @since 2.3
|
|
||||||
* @author Fabio B. Silva <fabio.bat.silva@gmail.com>
|
|
||||||
*/
|
|
||||||
class PhpFileCache extends FileCache
|
|
||||||
{
|
|
||||||
const EXTENSION = '.doctrinecache.php';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function __construct($directory, $extension = self::EXTENSION, $umask = 0002)
|
|
||||||
{
|
|
||||||
parent::__construct($directory, $extension, $umask);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
$value = $this->includeFileForId($id);
|
|
||||||
|
|
||||||
if (! $value) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($value['lifetime'] !== 0 && $value['lifetime'] < time()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $value['data'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
$value = $this->includeFileForId($id);
|
|
||||||
|
|
||||||
if (! $value) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $value['lifetime'] === 0 || $value['lifetime'] > time();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
if ($lifeTime > 0) {
|
|
||||||
$lifeTime = time() + $lifeTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_object($data) && ! method_exists($data, '__set_state')) {
|
|
||||||
throw new \InvalidArgumentException(
|
|
||||||
"Invalid argument given, PhpFileCache only allows objects that implement __set_state() " .
|
|
||||||
"and fully support var_export(). You can use the FilesystemCache to save arbitrary object " .
|
|
||||||
"graphs using serialize()/deserialize()."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$filename = $this->getFilename($id);
|
|
||||||
|
|
||||||
$value = array(
|
|
||||||
'lifetime' => $lifeTime,
|
|
||||||
'data' => $data
|
|
||||||
);
|
|
||||||
|
|
||||||
$value = var_export($value, true);
|
|
||||||
$code = sprintf('<?php return %s;', $value);
|
|
||||||
|
|
||||||
return $this->writeFile($filename, $code);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $id
|
|
||||||
*
|
|
||||||
* @return array|false
|
|
||||||
*/
|
|
||||||
private function includeFileForId($id)
|
|
||||||
{
|
|
||||||
$fileName = $this->getFilename($id);
|
|
||||||
|
|
||||||
// note: error suppression is still faster than `file_exists`, `is_file` and `is_readable`
|
|
||||||
$value = @include $fileName;
|
|
||||||
|
|
||||||
if (! isset($value['lifetime'])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,136 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use Predis\ClientInterface;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Predis cache provider.
|
|
||||||
*
|
|
||||||
* @author othillo <othillo@othillo.nl>
|
|
||||||
*/
|
|
||||||
class PredisCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var ClientInterface
|
|
||||||
*/
|
|
||||||
private $client;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ClientInterface $client
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct(ClientInterface $client)
|
|
||||||
{
|
|
||||||
$this->client = $client;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
$result = $this->client->get($id);
|
|
||||||
if (null === $result) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return unserialize($result);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetchMultiple(array $keys)
|
|
||||||
{
|
|
||||||
$fetchedItems = call_user_func_array(array($this->client, 'mget'), $keys);
|
|
||||||
|
|
||||||
return array_map('unserialize', array_filter(array_combine($keys, $fetchedItems)));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSaveMultiple(array $keysAndValues, $lifetime = 0)
|
|
||||||
{
|
|
||||||
if ($lifetime) {
|
|
||||||
$success = true;
|
|
||||||
|
|
||||||
// Keys have lifetime, use SETEX for each of them
|
|
||||||
foreach ($keysAndValues as $key => $value) {
|
|
||||||
$response = $this->client->setex($key, $lifetime, serialize($value));
|
|
||||||
|
|
||||||
if ((string) $response != 'OK') {
|
|
||||||
$success = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
// No lifetime, use MSET
|
|
||||||
$response = $this->client->mset(array_map(function ($value) {
|
|
||||||
return serialize($value);
|
|
||||||
}, $keysAndValues));
|
|
||||||
|
|
||||||
return (string) $response == 'OK';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return (bool) $this->client->exists($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
$data = serialize($data);
|
|
||||||
if ($lifeTime > 0) {
|
|
||||||
$response = $this->client->setex($id, $lifeTime, $data);
|
|
||||||
} else {
|
|
||||||
$response = $this->client->set($id, $data);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $response === true || $response == 'OK';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return $this->client->del($id) >= 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
$response = $this->client->flushdb();
|
|
||||||
|
|
||||||
return $response === true || $response == 'OK';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$info = $this->client->info();
|
|
||||||
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $info['Stats']['keyspace_hits'],
|
|
||||||
Cache::STATS_MISSES => $info['Stats']['keyspace_misses'],
|
|
||||||
Cache::STATS_UPTIME => $info['Server']['uptime_in_seconds'],
|
|
||||||
Cache::STATS_MEMORY_USAGE => $info['Memory']['used_memory'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => false
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,180 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use Redis;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Redis cache provider.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 2.2
|
|
||||||
* @author Osman Ungur <osmanungur@gmail.com>
|
|
||||||
*/
|
|
||||||
class RedisCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var Redis|null
|
|
||||||
*/
|
|
||||||
private $redis;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the redis instance to use.
|
|
||||||
*
|
|
||||||
* @param Redis $redis
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setRedis(Redis $redis)
|
|
||||||
{
|
|
||||||
$redis->setOption(Redis::OPT_SERIALIZER, $this->getSerializerValue());
|
|
||||||
$this->redis = $redis;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the redis instance used by the cache.
|
|
||||||
*
|
|
||||||
* @return Redis|null
|
|
||||||
*/
|
|
||||||
public function getRedis()
|
|
||||||
{
|
|
||||||
return $this->redis;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return $this->redis->get($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetchMultiple(array $keys)
|
|
||||||
{
|
|
||||||
$fetchedItems = array_combine($keys, $this->redis->mget($keys));
|
|
||||||
|
|
||||||
// Redis mget returns false for keys that do not exist. So we need to filter those out unless it's the real data.
|
|
||||||
$foundItems = array();
|
|
||||||
|
|
||||||
foreach ($fetchedItems as $key => $value) {
|
|
||||||
if (false !== $value || $this->redis->exists($key)) {
|
|
||||||
$foundItems[$key] = $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $foundItems;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSaveMultiple(array $keysAndValues, $lifetime = 0)
|
|
||||||
{
|
|
||||||
if ($lifetime) {
|
|
||||||
$success = true;
|
|
||||||
|
|
||||||
// Keys have lifetime, use SETEX for each of them
|
|
||||||
foreach ($keysAndValues as $key => $value) {
|
|
||||||
if (!$this->redis->setex($key, $lifetime, $value)) {
|
|
||||||
$success = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
// No lifetime, use MSET
|
|
||||||
return (bool) $this->redis->mset($keysAndValues);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return $this->redis->exists($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
if ($lifeTime > 0) {
|
|
||||||
return $this->redis->setex($id, $lifeTime, $data);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->redis->set($id, $data);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return $this->redis->delete($id) >= 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return $this->redis->flushDB();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$info = $this->redis->info();
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $info['keyspace_hits'],
|
|
||||||
Cache::STATS_MISSES => $info['keyspace_misses'],
|
|
||||||
Cache::STATS_UPTIME => $info['uptime_in_seconds'],
|
|
||||||
Cache::STATS_MEMORY_USAGE => $info['used_memory'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => false
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the serializer constant to use. If Redis is compiled with
|
|
||||||
* igbinary support, that is used. Otherwise the default PHP serializer is
|
|
||||||
* used.
|
|
||||||
*
|
|
||||||
* @return integer One of the Redis::SERIALIZER_* constants
|
|
||||||
*/
|
|
||||||
protected function getSerializerValue()
|
|
||||||
{
|
|
||||||
if (defined('HHVM_VERSION')) {
|
|
||||||
return Redis::SERIALIZER_PHP;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (defined('Redis::SERIALIZER_IGBINARY') && extension_loaded('igbinary')) {
|
|
||||||
return Redis::SERIALIZER_IGBINARY;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Redis::SERIALIZER_PHP;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,250 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use Riak\Bucket;
|
|
||||||
use Riak\Connection;
|
|
||||||
use Riak\Input;
|
|
||||||
use Riak\Exception;
|
|
||||||
use Riak\Object;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Riak cache provider.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 1.1
|
|
||||||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
||||||
*/
|
|
||||||
class RiakCache extends CacheProvider
|
|
||||||
{
|
|
||||||
const EXPIRES_HEADER = 'X-Riak-Meta-Expires';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Riak\Bucket
|
|
||||||
*/
|
|
||||||
private $bucket;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the riak bucket instance to use.
|
|
||||||
*
|
|
||||||
* @param \Riak\Bucket $bucket
|
|
||||||
*/
|
|
||||||
public function __construct(Bucket $bucket)
|
|
||||||
{
|
|
||||||
$this->bucket = $bucket;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$response = $this->bucket->get($id);
|
|
||||||
|
|
||||||
// No objects found
|
|
||||||
if ( ! $response->hasObject()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check for attempted siblings
|
|
||||||
$object = ($response->hasSiblings())
|
|
||||||
? $this->resolveConflict($id, $response->getVClock(), $response->getObjectList())
|
|
||||||
: $response->getFirstObject();
|
|
||||||
|
|
||||||
// Check for expired object
|
|
||||||
if ($this->isExpired($object)) {
|
|
||||||
$this->bucket->delete($object);
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return unserialize($object->getContent());
|
|
||||||
} catch (Exception\RiakException $e) {
|
|
||||||
// Covers:
|
|
||||||
// - Riak\ConnectionException
|
|
||||||
// - Riak\CommunicationException
|
|
||||||
// - Riak\UnexpectedResponseException
|
|
||||||
// - Riak\NotFoundException
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
// We only need the HEAD, not the entire object
|
|
||||||
$input = new Input\GetInput();
|
|
||||||
|
|
||||||
$input->setReturnHead(true);
|
|
||||||
|
|
||||||
$response = $this->bucket->get($id, $input);
|
|
||||||
|
|
||||||
// No objects found
|
|
||||||
if ( ! $response->hasObject()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$object = $response->getFirstObject();
|
|
||||||
|
|
||||||
// Check for expired object
|
|
||||||
if ($this->isExpired($object)) {
|
|
||||||
$this->bucket->delete($object);
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
} catch (Exception\RiakException $e) {
|
|
||||||
// Do nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$object = new Object($id);
|
|
||||||
|
|
||||||
$object->setContent(serialize($data));
|
|
||||||
|
|
||||||
if ($lifeTime > 0) {
|
|
||||||
$object->addMetadata(self::EXPIRES_HEADER, (string) (time() + $lifeTime));
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->bucket->put($object);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
} catch (Exception\RiakException $e) {
|
|
||||||
// Do nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$this->bucket->delete($id);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
} catch (Exception\BadArgumentsException $e) {
|
|
||||||
// Key did not exist on cluster already
|
|
||||||
} catch (Exception\RiakException $e) {
|
|
||||||
// Covers:
|
|
||||||
// - Riak\Exception\ConnectionException
|
|
||||||
// - Riak\Exception\CommunicationException
|
|
||||||
// - Riak\Exception\UnexpectedResponseException
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$keyList = $this->bucket->getKeyList();
|
|
||||||
|
|
||||||
foreach ($keyList as $key) {
|
|
||||||
$this->bucket->delete($key);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
} catch (Exception\RiakException $e) {
|
|
||||||
// Do nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
// Only exposed through HTTP stats API, not Protocol Buffers API
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if a given Riak Object have expired.
|
|
||||||
*
|
|
||||||
* @param \Riak\Object $object
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
private function isExpired(Object $object)
|
|
||||||
{
|
|
||||||
$metadataMap = $object->getMetadataMap();
|
|
||||||
|
|
||||||
return isset($metadataMap[self::EXPIRES_HEADER])
|
|
||||||
&& $metadataMap[self::EXPIRES_HEADER] < time();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* On-read conflict resolution. Applied approach here is last write wins.
|
|
||||||
* Specific needs may override this method to apply alternate conflict resolutions.
|
|
||||||
*
|
|
||||||
* {@internal Riak does not attempt to resolve a write conflict, and store
|
|
||||||
* it as sibling of conflicted one. By following this approach, it is up to
|
|
||||||
* the next read to resolve the conflict. When this happens, your fetched
|
|
||||||
* object will have a list of siblings (read as a list of objects).
|
|
||||||
* In our specific case, we do not care about the intermediate ones since
|
|
||||||
* they are all the same read from storage, and we do apply a last sibling
|
|
||||||
* (last write) wins logic.
|
|
||||||
* If by any means our resolution generates another conflict, it'll up to
|
|
||||||
* next read to properly solve it.}
|
|
||||||
*
|
|
||||||
* @param string $id
|
|
||||||
* @param string $vClock
|
|
||||||
* @param array $objectList
|
|
||||||
*
|
|
||||||
* @return \Riak\Object
|
|
||||||
*/
|
|
||||||
protected function resolveConflict($id, $vClock, array $objectList)
|
|
||||||
{
|
|
||||||
// Our approach here is last-write wins
|
|
||||||
$winner = $objectList[count($objectList)];
|
|
||||||
|
|
||||||
$putInput = new Input\PutInput();
|
|
||||||
$putInput->setVClock($vClock);
|
|
||||||
|
|
||||||
$mergedObject = new Object($id);
|
|
||||||
$mergedObject->setContent($winner->getContent());
|
|
||||||
|
|
||||||
$this->bucket->put($mergedObject, $putInput);
|
|
||||||
|
|
||||||
return $mergedObject;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,220 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use SQLite3;
|
|
||||||
use SQLite3Result;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* SQLite3 cache provider.
|
|
||||||
*
|
|
||||||
* @since 1.4
|
|
||||||
* @author Jake Bell <jake@theunraveler.com>
|
|
||||||
*/
|
|
||||||
class SQLite3Cache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The ID field will store the cache key.
|
|
||||||
*/
|
|
||||||
const ID_FIELD = 'k';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The data field will store the serialized PHP value.
|
|
||||||
*/
|
|
||||||
const DATA_FIELD = 'd';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The expiration field will store a date value indicating when the
|
|
||||||
* cache entry should expire.
|
|
||||||
*/
|
|
||||||
const EXPIRATION_FIELD = 'e';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var SQLite3
|
|
||||||
*/
|
|
||||||
private $sqlite;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
private $table;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*
|
|
||||||
* Calling the constructor will ensure that the database file and table
|
|
||||||
* exist and will create both if they don't.
|
|
||||||
*
|
|
||||||
* @param SQLite3 $sqlite
|
|
||||||
* @param string $table
|
|
||||||
*/
|
|
||||||
public function __construct(SQLite3 $sqlite, $table)
|
|
||||||
{
|
|
||||||
$this->sqlite = $sqlite;
|
|
||||||
$this->table = (string) $table;
|
|
||||||
|
|
||||||
list($id, $data, $exp) = $this->getFields();
|
|
||||||
|
|
||||||
return $this->sqlite->exec(sprintf(
|
|
||||||
'CREATE TABLE IF NOT EXISTS %s(%s TEXT PRIMARY KEY NOT NULL, %s BLOB, %s INTEGER)',
|
|
||||||
$table,
|
|
||||||
$id,
|
|
||||||
$data,
|
|
||||||
$exp
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
if ($item = $this->findById($id)) {
|
|
||||||
return unserialize($item[self::DATA_FIELD]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return null !== $this->findById($id, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
$statement = $this->sqlite->prepare(sprintf(
|
|
||||||
'INSERT OR REPLACE INTO %s (%s) VALUES (:id, :data, :expire)',
|
|
||||||
$this->table,
|
|
||||||
implode(',', $this->getFields())
|
|
||||||
));
|
|
||||||
|
|
||||||
$statement->bindValue(':id', $id);
|
|
||||||
$statement->bindValue(':data', serialize($data), SQLITE3_BLOB);
|
|
||||||
$statement->bindValue(':expire', $lifeTime > 0 ? time() + $lifeTime : null);
|
|
||||||
|
|
||||||
return $statement->execute() instanceof SQLite3Result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
list($idField) = $this->getFields();
|
|
||||||
|
|
||||||
$statement = $this->sqlite->prepare(sprintf(
|
|
||||||
'DELETE FROM %s WHERE %s = :id',
|
|
||||||
$this->table,
|
|
||||||
$idField
|
|
||||||
));
|
|
||||||
|
|
||||||
$statement->bindValue(':id', $id);
|
|
||||||
|
|
||||||
return $statement->execute() instanceof SQLite3Result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return $this->sqlite->exec(sprintf('DELETE FROM %s', $this->table));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
// no-op.
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Find a single row by ID.
|
|
||||||
*
|
|
||||||
* @param mixed $id
|
|
||||||
* @param bool $includeData
|
|
||||||
*
|
|
||||||
* @return array|null
|
|
||||||
*/
|
|
||||||
private function findById($id, $includeData = true)
|
|
||||||
{
|
|
||||||
list($idField) = $fields = $this->getFields();
|
|
||||||
|
|
||||||
if (!$includeData) {
|
|
||||||
$key = array_search(static::DATA_FIELD, $fields);
|
|
||||||
unset($fields[$key]);
|
|
||||||
}
|
|
||||||
|
|
||||||
$statement = $this->sqlite->prepare(sprintf(
|
|
||||||
'SELECT %s FROM %s WHERE %s = :id LIMIT 1',
|
|
||||||
implode(',', $fields),
|
|
||||||
$this->table,
|
|
||||||
$idField
|
|
||||||
));
|
|
||||||
|
|
||||||
$statement->bindValue(':id', $id, SQLITE3_TEXT);
|
|
||||||
|
|
||||||
$item = $statement->execute()->fetchArray(SQLITE3_ASSOC);
|
|
||||||
|
|
||||||
if ($item === false) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isExpired($item)) {
|
|
||||||
$this->doDelete($id);
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $item;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets an array of the fields in our table.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getFields()
|
|
||||||
{
|
|
||||||
return array(static::ID_FIELD, static::DATA_FIELD, static::EXPIRATION_FIELD);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if the item is expired.
|
|
||||||
*
|
|
||||||
* @param array $item
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
private function isExpired(array $item)
|
|
||||||
{
|
|
||||||
return isset($item[static::EXPIRATION_FIELD]) &&
|
|
||||||
$item[self::EXPIRATION_FIELD] !== null &&
|
|
||||||
$item[self::EXPIRATION_FIELD] < time();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
class Version
|
|
||||||
{
|
|
||||||
const VERSION = '1.6.1-DEV';
|
|
||||||
}
|
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Void cache driver. The cache could be of use in tests where you don`t need to cache anything.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 1.5
|
|
||||||
* @author Kotlyar Maksim <kotlyar.maksim@gmail.com>
|
|
||||||
*/
|
|
||||||
class VoidCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,109 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* WinCache cache provider.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 2.2
|
|
||||||
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
||||||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
||||||
* @author Jonathan Wage <jonwage@gmail.com>
|
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
|
||||||
* @author David Abdemoulaie <dave@hobodave.com>
|
|
||||||
*/
|
|
||||||
class WinCacheCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return wincache_ucache_get($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return wincache_ucache_exists($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
return wincache_ucache_set($id, $data, $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return wincache_ucache_delete($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return wincache_ucache_clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetchMultiple(array $keys)
|
|
||||||
{
|
|
||||||
return wincache_ucache_get($keys);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSaveMultiple(array $keysAndValues, $lifetime = 0)
|
|
||||||
{
|
|
||||||
$result = wincache_ucache_set($keysAndValues, null, $lifetime);
|
|
||||||
|
|
||||||
return empty($result);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$info = wincache_ucache_info();
|
|
||||||
$meminfo = wincache_ucache_meminfo();
|
|
||||||
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $info['total_hit_count'],
|
|
||||||
Cache::STATS_MISSES => $info['total_miss_count'],
|
|
||||||
Cache::STATS_UPTIME => $info['total_cache_uptime'],
|
|
||||||
Cache::STATS_MEMORY_USAGE => $meminfo['memory_total'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => $meminfo['memory_free'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Xcache cache driver.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 2.0
|
|
||||||
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
||||||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
||||||
* @author Jonathan Wage <jonwage@gmail.com>
|
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
|
||||||
* @author David Abdemoulaie <dave@hobodave.com>
|
|
||||||
*/
|
|
||||||
class XcacheCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return $this->doContains($id) ? unserialize(xcache_get($id)) : false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return xcache_isset($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
return xcache_set($id, serialize($data), (int) $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return xcache_unset($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
$this->checkAuthorization();
|
|
||||||
|
|
||||||
xcache_clear_cache(XC_TYPE_VAR);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks that xcache.admin.enable_auth is Off.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*
|
|
||||||
* @throws \BadMethodCallException When xcache.admin.enable_auth is On.
|
|
||||||
*/
|
|
||||||
protected function checkAuthorization()
|
|
||||||
{
|
|
||||||
if (ini_get('xcache.admin.enable_auth')) {
|
|
||||||
throw new \BadMethodCallException(
|
|
||||||
'To use all features of \Doctrine\Common\Cache\XcacheCache, '
|
|
||||||
. 'you must set "xcache.admin.enable_auth" to "Off" in your php.ini.'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
$this->checkAuthorization();
|
|
||||||
|
|
||||||
$info = xcache_info(XC_TYPE_VAR, 0);
|
|
||||||
return array(
|
|
||||||
Cache::STATS_HITS => $info['hits'],
|
|
||||||
Cache::STATS_MISSES => $info['misses'],
|
|
||||||
Cache::STATS_UPTIME => null,
|
|
||||||
Cache::STATS_MEMORY_USAGE => $info['size'],
|
|
||||||
Cache::STATS_MEMORY_AVAILABLE => $info['avail'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Zend Data Cache cache driver.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
* @since 2.0
|
|
||||||
* @author Ralph Schindler <ralph.schindler@zend.com>
|
|
||||||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
||||||
*/
|
|
||||||
class ZendDataCache extends CacheProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
return zend_shm_cache_fetch($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return (false !== zend_shm_cache_fetch($id));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
return zend_shm_cache_store($id, $data, $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return zend_shm_cache_delete($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
$namespace = $this->getNamespace();
|
|
||||||
if (empty($namespace)) {
|
|
||||||
return zend_shm_cache_clear();
|
|
||||||
}
|
|
||||||
return zend_shm_cache_clear($namespace);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,31 @@
|
|||||||
|
20200828-1420.26
|
||||||
|
nginx rewrite rule exclude .well-known folder, as auto SSL. add web.config to rewrite in IIS. now in windwos can do with \ in path. in aliyun FC & huawei FG API, use my code. CN 21Vianet client_id&secret expire. update description now only show new.
|
||||||
|
nginx的伪静态中排除.well-known目录,方便自动SSL。添加IIS的伪静态。与linux不同,处理windows下目录用\分隔。FC、FG中使用自己代码对接平台。<font color=red>世纪互联旧API即将过期失效,升级后世纪互联的盘需要删除重新添加。</font>更新说明只显示部分。
|
||||||
|
|
||||||
|
20200817-1740.25
|
||||||
|
when multy disks, now will default show disks as folders in root, if set autoJumpFirstDisk 1, it will auto jump to first disk.
|
||||||
|
多盘时,在网站根目录,默认会将各盘当成文件夹显示,可以去设置中设置autoJumpFirstDisk为1,这样可以跟以前一样自动跳到第一个盘。
|
||||||
|
20200816-1145.24
|
||||||
|
add platform: Baidu CFC. add setting: mobile background.
|
||||||
|
新增百度CFC平台。可以分别设置PC与手机的背景。
|
||||||
|
20200808-1130.23
|
||||||
|
FG: select save in env or file.
|
||||||
|
在FG中安装时,选择配置保存在环境变量还是文件中。
|
||||||
|
20200806-1130.23
|
||||||
|
SCF: select save in env or file.
|
||||||
|
在SCF中安装时,选择配置保存在环境变量还是文件中。
|
||||||
|
20200804-1453.22
|
||||||
|
fix: once error will stop the after files in uploading multy files. SCF can get region now, change install. SCF config save in code file now not in env, <font color=red>if use SCF, you must reinstall after update</font>.
|
||||||
|
修复,当上传多个文件时,一个文件出错将导致后续文件不再上传。SCF可以获取到region了,安装过程修改。在SCF中,现在将配置保存到代码文件中,不受环境变量4K大小限制,<font color=red>升级后,用SCF的要重装</font>。
|
||||||
|
20200723-1430.21
|
||||||
|
fix content-type in "?json". can not custom microsoft API id & secret by a link now, so show the return uri.
|
||||||
|
当使用"?json"时,现在content-type是json了。现在微软不能一键创建API应用了,提供回调URI。
|
||||||
|
20200713-1800.20
|
||||||
|
add platform: Huawei cloud Function Graph. now you can use "?json" to get a json of folder or file. fix some bug.
|
||||||
|
新增白嫖平台:华为云函数工作流FG。可以用"?json"来获得目录或文件的json。修复bug。
|
||||||
20200607-1856.19
|
20200607-1856.19
|
||||||
add platform: Aliyun Function Compute. add setting: replace sharepoint.com to a proxy server name. add setting: disableShowThumb,customTheme. add function: php hosting website can update by a click
|
add platform: Aliyun Function Compute. add setting: replace sharepoint.com to a proxy server name. add setting: disableShowThumb,customTheme. add function: php hosting website can update by a click
|
||||||
现在可以安装到阿里函数计算FC了。php空间可以一键更新了。可以设置某个盘替换sharpoint.com域名为你的反代域名。新增disableShowThumb,customTheme。
|
现在可以安装到阿里函数计算FC了。php空间可以一键更新了。可以设置某个盘替换sharpoint.com域名为你的反代域名。新增disableShowThumb,customTheme。
|
||||||
|
|
||||||
20200503-1848.18
|
20200503-1848.18
|
||||||
Rebuild theme. Add custom Css & custom Script, add FunctionalityFile: head.omf & foot.omf.
|
Rebuild theme. Add custom Css & custom Script, add FunctionalityFile: head.omf & foot.omf.
|
||||||
重建主题文件结构。增加自定义css与自定义script。增加2个功能文件:head.omf、foot.omf。
|
重建主题文件结构。增加自定义css与自定义script。增加2个功能文件:head.omf、foot.omf。
|
||||||
|
|||||||
+13
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configuration>
|
||||||
|
<system.webServer>
|
||||||
|
<rewrite>
|
||||||
|
<rules>
|
||||||
|
<rule name="OneManagerIISRewrite" patternSyntax="Wildcard" stopProcessing="true">
|
||||||
|
<match url="*" />
|
||||||
|
<action type="Rewrite" url="index.php" appendQueryString="false" logRewrittenUrl="false" />
|
||||||
|
</rule>
|
||||||
|
</rules>
|
||||||
|
</rewrite>
|
||||||
|
</system.webServer>
|
||||||
|
</configuration>
|
||||||
Reference in New Issue
Block a user