* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare (strict_types=1); namespace WindPress\WindPress\Api\Admin; use WIND_PRESS; use WP_REST_Request; use WP_REST_Response; use WP_REST_Server; use WindPress\WindPress\Api\AbstractApi; use WindPress\WindPress\Api\ApiInterface; use WindPress\WindPress\Utils\Common; class Tailwind extends AbstractApi implements ApiInterface { public function __construct() { } public function get_prefix() : string { return 'admin/tailwind'; } public function register_custom_endpoints() : void { \register_rest_route(self::API_NAMESPACE, $this->get_prefix() . '/index', ['methods' => WP_REST_Server::READABLE, 'callback' => fn(\WP_REST_Request $wprestRequest): \WP_REST_Response => $this->index($wprestRequest), 'permission_callback' => fn(\WP_REST_Request $wprestRequest): bool => $this->permission_callback($wprestRequest)]); \register_rest_route(self::API_NAMESPACE, $this->get_prefix() . '/store', ['methods' => WP_REST_Server::CREATABLE, 'callback' => fn(\WP_REST_Request $wprestRequest): \WP_REST_Response => $this->store($wprestRequest), 'permission_callback' => fn(\WP_REST_Request $wprestRequest): bool => $this->permission_callback($wprestRequest)]); } public function index(WP_REST_Request $wprestRequest) : WP_REST_Response { // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents -- Local file $stub_main_css = \file_get_contents(\dirname(WIND_PRESS::FILE) . '/stubs/main.css'); $main_css = $stub_main_css; $main_css_path = \wp_upload_dir()['basedir'] . WIND_PRESS::DATA_DIR . 'main.css'; if (\file_exists($main_css_path)) { // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents -- Local file $main_css = \file_get_contents($main_css_path); } $tailwind_data = ['main_css' => $main_css, '_main_css' => $stub_main_css, 'wizard' => null]; $tailwind_data = \apply_filters('f!windpress/api/admin/tailwind:index', \json_decode(\wp_json_encode($tailwind_data))); return new WP_REST_Response(['tailwind' => $tailwind_data, '_custom' => ['main_css' => ['prepend' => \apply_filters('f!windpress/core/runtime:main_css.prepend', ''), 'append' => \apply_filters('f!windpress/core/runtime:main_css.append', '')]]]); } public function store(WP_REST_Request $wprestRequest) : WP_REST_Response { $payload = $wprestRequest->get_json_params(); $main_css = $payload['tailwind']['main_css']; $main_css_path = \wp_upload_dir()['basedir'] . WIND_PRESS::DATA_DIR . 'main.css'; Common::save_file($main_css, $main_css_path); return new WP_REST_Response(['message' => 'data stored successfully']); } }