2021-07-14 14:55:41 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Sakura\Controllers;
|
|
|
|
|
|
|
|
use WP_REST_Server;
|
|
|
|
use WP_REST_Request;
|
|
|
|
use WP_Error;
|
|
|
|
use Sakura\Models\OptionModel;
|
|
|
|
|
2021-07-18 19:52:09 +08:00
|
|
|
class OptionController extends BaseController
|
2021-07-14 14:55:41 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*
|
|
|
|
* @since 5.0.0
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->namespace = 'sakura/v1';
|
|
|
|
$this->rest_base = 'config';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the routes for comments.
|
|
|
|
*
|
2021-07-14 16:54:49 +08:00
|
|
|
* @since 5.0.0
|
2021-07-14 14:55:41 +08:00
|
|
|
*
|
|
|
|
* @see register_rest_route()
|
|
|
|
*/
|
|
|
|
public function register_routes()
|
|
|
|
{
|
|
|
|
register_rest_route(
|
|
|
|
$this->namespace,
|
|
|
|
'/' . $this->rest_base,
|
|
|
|
array(
|
|
|
|
array(
|
|
|
|
'methods' => WP_REST_Server::READABLE,
|
2021-07-18 19:52:09 +08:00
|
|
|
'callback' => array($this, 'get_public_config'),
|
|
|
|
'permission_callback' => array($this, 'get_public_config_permissions_check'),
|
2021-07-14 14:55:41 +08:00
|
|
|
// 'args' => $this->get_collection_params(),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'methods' => WP_REST_Server::EDITABLE,
|
|
|
|
'callback' => array($this, 'update_config'),
|
|
|
|
'permission_callback' => array($this, 'update_config_permissions_check'),
|
|
|
|
// 'args' => $this->get_endpoint_args_for_item_schema(WP_REST_Server::CREATABLE),
|
|
|
|
),
|
|
|
|
// 'schema' => array($this, 'get_public_item_schema'),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-07-18 19:52:09 +08:00
|
|
|
public function get_public_config(WP_REST_Request $request)
|
|
|
|
{
|
|
|
|
return $this->get_public_display_options();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_public_config_permissions_check(WP_REST_Request $request)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-07-14 14:55:41 +08:00
|
|
|
public function get_config(WP_REST_Request $request)
|
|
|
|
{
|
|
|
|
$config = (array) OptionModel::get($this->rest_base);
|
|
|
|
if (!$config) {
|
|
|
|
return new WP_Error(
|
|
|
|
'no_such_option',
|
|
|
|
__('Maybe you should save the configuration bufore using it.', self::$text_domain),
|
|
|
|
array('status' => 500)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_config_permissions_check(WP_REST_Request $request)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-07-14 16:54:49 +08:00
|
|
|
public function update_config(WP_REST_Request $request)
|
2021-07-14 14:55:41 +08:00
|
|
|
{
|
2021-07-18 19:52:09 +08:00
|
|
|
$db = (array) $this->get_config($request);
|
|
|
|
$cache = $db;
|
2021-07-14 14:55:41 +08:00
|
|
|
$json = (array) self::json_validate($request->get_body());
|
2021-07-18 19:52:09 +08:00
|
|
|
$hasNoDiff = true;
|
|
|
|
|
|
|
|
foreach ($json as $key => $value) {
|
|
|
|
if (array_key_exists($key, $cache)) {
|
|
|
|
$nv = json_encode($value);
|
|
|
|
$ov = json_encode($cache[$key]);
|
|
|
|
if ($hasNoDiff) $hasNoDiff = $nv === $ov;
|
|
|
|
} else {
|
|
|
|
if ($hasNoDiff) $hasNoDiff = false;
|
|
|
|
}
|
|
|
|
$db[$key] = $value;
|
2021-07-14 14:55:41 +08:00
|
|
|
}
|
|
|
|
|
2021-07-18 19:52:09 +08:00
|
|
|
if ($hasNoDiff) {
|
|
|
|
return [
|
|
|
|
'code' => 'save_config_succeed',
|
|
|
|
'message' => __('Configurations already up to date.', self::$text_domain),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
$config = OptionModel::update($this->rest_base, $db);
|
2021-07-14 14:55:41 +08:00
|
|
|
if (!$config) {
|
|
|
|
return new WP_Error(
|
|
|
|
'save_config_failure',
|
|
|
|
__('Unable to save configuration.', self::$text_domain),
|
|
|
|
array('status' => 500)
|
|
|
|
);
|
|
|
|
} else {
|
2021-07-18 19:52:09 +08:00
|
|
|
return [
|
|
|
|
'code' => 'save_config_succeed',
|
|
|
|
'message' => __('Configurations saved successfully.', self::$text_domain),
|
|
|
|
];
|
2021-07-14 14:55:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 16:54:49 +08:00
|
|
|
public function update_config_permissions_check(WP_REST_Request $request)
|
2021-07-14 14:55:41 +08:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-07-18 19:52:09 +08:00
|
|
|
// public function inite_theme()
|
|
|
|
// {
|
|
|
|
// $config = OptionModel::create($this->rest_base, (array)[]);
|
|
|
|
// }
|
2021-07-14 14:55:41 +08:00
|
|
|
|
|
|
|
public static function json_validate(string $string)
|
|
|
|
{
|
|
|
|
$json = json_decode($string);
|
|
|
|
|
|
|
|
return $json;
|
|
|
|
}
|
2021-07-14 16:54:49 +08:00
|
|
|
|
|
|
|
public function set_key_value(string $key, $value)
|
|
|
|
{
|
|
|
|
$json = (array) OptionModel::get($this->rest_base);
|
|
|
|
if (!$json) {
|
|
|
|
return new WP_Error(
|
|
|
|
'no_such_option',
|
|
|
|
__('Maybe you should save the configuration bufore using it.', self::$text_domain),
|
|
|
|
array('status' => 500)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$json[$key] = $value;
|
|
|
|
$config = OptionModel::update($this->rest_base, $json);
|
|
|
|
$config = $config ? $config : OptionModel::create($this->rest_base, $json);
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function sakura_options(string $namespace, $default)
|
|
|
|
{
|
|
|
|
$config = (array) OptionModel::get($this->rest_base);
|
|
|
|
if (array_key_exists($namespace, $config)) {
|
|
|
|
return $config[$namespace];
|
|
|
|
} else {
|
|
|
|
$this->set_key_value($namespace, $default);
|
|
|
|
return $default;
|
|
|
|
}
|
|
|
|
// translators: %s: $namespace */
|
|
|
|
// throw new Exception(
|
|
|
|
// sprintf(__("No existing database saving value or default value for option '%s'.", self::$text_domain), $namespace)
|
|
|
|
// );
|
|
|
|
}
|
2021-07-18 19:52:09 +08:00
|
|
|
|
|
|
|
public static function get_option_json()
|
|
|
|
{
|
|
|
|
$options = file_get_contents(__DIR__ . "/../configs/options.json");
|
|
|
|
return json_decode($options, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_public_display_options()
|
|
|
|
{
|
|
|
|
$output = [];
|
|
|
|
$defaults = (array) self::get_option_json();
|
|
|
|
// return $defaults;
|
|
|
|
foreach ($defaults as $key => $value) {
|
|
|
|
if ($value['public']) {
|
|
|
|
$output[$value['namespace']] = $this->sakura_options($value['namespace'], $value['default']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use in admin page only
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_all_options()
|
|
|
|
{
|
|
|
|
$output = [];
|
|
|
|
$defaults = (array) self::get_option_json();
|
|
|
|
// return $defaults;
|
|
|
|
foreach ($defaults as $key => $value) {
|
|
|
|
$output[$value['namespace']] = $this->sakura_options($value['namespace'], $value['default']);
|
|
|
|
}
|
|
|
|
return $output;
|
|
|
|
}
|
2021-07-14 14:55:41 +08:00
|
|
|
}
|