pull/144/head
spirit 2019-12-01 17:44:29 +08:00
parent 19a337ed17
commit c26c98b653
1 changed files with 29 additions and 23 deletions

View File

@ -311,12 +311,17 @@ function feature_gallery() {
* update manifest.json rest api
* @rest api接口路径https://sakura.2heng.xin/wp-json/sakura/v1/image/json
*/
function update_manifest_json(WP_REST_Request $request) {
if (is_admin()) {
function update_manifest_json() {
$username = $_SERVER['PHP_AUTH_USER'];
$password = $_SERVER['PHP_AUTH_PW'];
$user = wp_authenticate($username, $password);
if (is_a($user, 'WP_User')) {
if (in_array('administrator', (array) $user->roles)) {
global $wpdb;
$sakura_table_name = $wpdb->base_prefix.'sakura';
$manifest = array(
"key" => "manifest_json",
"value" => file_get_contents($_FILES["manifest_json"]["tmp_name"])
"value" => file_get_contents($_FILES["manifest"]["tmp_name"])
);
$time = array(
"key" => "json_time",
@ -336,6 +341,7 @@ function update_manifest_json(WP_REST_Request $request) {
$result = new WP_REST_Response($output, 200);
$result->set_headers(array('Content-Type' => 'application/json'));
return $result;
}
} else {
$output = array(
'status' => 401,