Update common.php
parent
e229f6594d
commit
7f567beb5c
|
@ -859,7 +859,7 @@ function splitlast($str, $split)
|
||||||
$tmp[1] = substr($str, $pos+1);
|
$tmp[1] = substr($str, $pos+1);
|
||||||
} else {
|
} else {
|
||||||
$tmp[0] = '';
|
$tmp[0] = '';
|
||||||
$tmp[1] = $str;
|
$tmp[1] = substr($str, 1);
|
||||||
}
|
}
|
||||||
return $tmp;
|
return $tmp;
|
||||||
}
|
}
|
||||||
|
@ -941,10 +941,9 @@ function fetch_files($path = '/')
|
||||||
// https://docs.microsoft.com/en-us/graph/api/driveitem-get?view=graph-rest-1.0
|
// https://docs.microsoft.com/en-us/graph/api/driveitem-get?view=graph-rest-1.0
|
||||||
// https://docs.microsoft.com/zh-cn/graph/api/driveitem-put-content?view=graph-rest-1.0&tabs=http
|
// https://docs.microsoft.com/zh-cn/graph/api/driveitem-put-content?view=graph-rest-1.0&tabs=http
|
||||||
// https://developer.microsoft.com/zh-cn/graph/graph-explorer
|
// https://developer.microsoft.com/zh-cn/graph/graph-explorer
|
||||||
$pos = strrpos($path, '/');
|
$pos = splitlast($path, '/');
|
||||||
if ($pos>1) {
|
$parentpath = $pos[0];
|
||||||
$parentpath = substr($path, 0, $pos);
|
$filename = $pos[1];
|
||||||
$filename = strtolower(substr($path, $pos+1));
|
|
||||||
if ($parentfiles = getcache('path_' . $parentpath. '/')) {
|
if ($parentfiles = getcache('path_' . $parentpath. '/')) {
|
||||||
if (isset($parentfiles['children'][$filename]['@microsoft.graph.downloadUrl'])) {
|
if (isset($parentfiles['children'][$filename]['@microsoft.graph.downloadUrl'])) {
|
||||||
if (in_array(splitlast($filename,'.')[1], $exts['txt'])) {
|
if (in_array(splitlast($filename,'.')[1], $exts['txt'])) {
|
||||||
|
@ -957,7 +956,7 @@ function fetch_files($path = '/')
|
||||||
return $parentfiles['children'][$filename];
|
return $parentfiles['children'][$filename];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
$url = $_SERVER['api_url'];
|
$url = $_SERVER['api_url'];
|
||||||
if ($path !== '/') {
|
if ($path !== '/') {
|
||||||
$url .= ':' . $path;
|
$url .= ':' . $path;
|
||||||
|
|
Loading…
Reference in New Issue