Linux heracles.o2switch.net 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
/
home
/
ophq1335
/
www
/
wp-content
/
plugins
/
wp-seopress
/
src
/
Actions
/
Api
/
Options
/
/home/ophq1335/www/wp-content/plugins/wp-seopress/src/Actions/Api/Options/SocialSettings.php
<?php // phpcs:ignore namespace SEOPress\Actions\Api\Options; if ( ! defined( 'ABSPATH' ) ) { exit; } use SEOPress\Core\Hooks\ExecuteHooks; /** * Social Settings */ class SocialSettings implements ExecuteHooks { /** * Current user ID * * @var int */ private $current_user = ''; /** * The Social Settings hooks. * * @since 5.0.0 */ public function hooks() { $this->current_user = wp_get_current_user()->ID; add_action( 'rest_api_init', array( $this, 'register' ) ); } /** * The Social Settings permission check. * * @param \WP_REST_Request $request The request. * * @since 5.5 * * @return boolean */ public function permissionCheck( \WP_REST_Request $request ) { $current_user = $this->current_user ? $this->current_user : wp_get_current_user()->ID; if ( ! user_can( $current_user, 'manage_options' ) ) { return false; } return true; } /** * The Social Settings register. * * @since 5.5 * * @return void */ public function register() { register_rest_route( 'seopress/v1', '/options/social-settings', array( 'methods' => 'GET', 'callback' => array( $this, 'processGet' ), 'permission_callback' => array( $this, 'permissionCheck' ), ) ); register_rest_route( 'seopress/v1', '/options/social-settings', array( 'methods' => 'POST', 'callback' => array( $this, 'processPost' ), 'permission_callback' => array( $this, 'permissionCheck' ), ) ); } /** * The Social Settings process post. * * @param \WP_REST_Request $request The request. * * @since 5.5 * * @return \WP_REST_Response|\WP_Error */ public function processPost( \WP_REST_Request $request ) { $new_options = $request->get_json_params(); if ( empty( $new_options ) || ! is_array( $new_options ) ) { return new \WP_Error( 'invalid_data', __( 'Invalid data provided.', 'wp-seopress' ), array( 'status' => 400 ) ); } // Sanitize using the same function as PHP form saves. $sanitized_options = seopress_sanitize_options_fields( $new_options ); update_option( 'seopress_social_option_name', $sanitized_options ); do_action( 'seopress_social_settings_updated', $sanitized_options ); return new \WP_REST_Response( array( 'success' => true, 'message' => __( 'Settings saved successfully.', 'wp-seopress' ), 'data' => $sanitized_options, ), 200 ); } /** * The Social Settings process get. * * @param \WP_REST_Request $request The request. * * @since 5.5 */ public function processGet( \WP_REST_Request $request ) { $options = get_option( 'seopress_social_option_name' ); if ( empty( $options ) ) { return new \WP_REST_Response( array() ); } $data = array(); foreach ( $options as $key => $value ) { $data[ $key ] = $value; } return new \WP_REST_Response( $data ); } }