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
/
/home/ophq1335/www/wp-content/plugins/wp-seopress/src/Actions/Api/CountTargetKeywordsUse.php
<?php // phpcs:ignore namespace SEOPress\Actions\Api; if ( ! defined( 'ABSPATH' ) ) { exit; } use SEOPress\Core\Hooks\ExecuteHooks; use SEOPress\ManualHooks\ApiHeader; /** * Count Target Keywords Use */ class CountTargetKeywordsUse implements ExecuteHooks { /** * The current user. * * @var int|null */ private $current_user; /** * The Count Target Keywords Use 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 Count Target Keywords Use register. * * @since 5.0.0 * * @return void */ public function register() { register_rest_route( 'seopress/v1', '/posts/(?P<id>\d+)/count-target-keywords-use', array( 'methods' => 'GET', 'callback' => array( $this, 'get' ), 'args' => array( 'id' => array( 'validate_callback' => function ( $param, $request, $key ) { // phpcs:ignore return is_numeric( $param ); }, ), ), 'permission_callback' => function ( $request ) { $post_id = $request['id']; $current_user = $this->current_user ? $this->current_user : wp_get_current_user()->ID; if ( ! user_can( $current_user, 'edit_post', $post_id ) ) { return false; } return true; }, ) ); } /** * The Count Target Keywords Use process get. * * @param \WP_REST_Request $request The request. * * @since 5.0.0 */ public function get( \WP_REST_Request $request ) { $api_header = new ApiHeader(); $api_header->hooks(); $id = (int) $request->get_param( 'id' ); $target_keywords = $request->get_param( 'keywords' ); $data = seopress_get_service( 'CountTargetKeywordsUse' )->getCountByKeywords( $target_keywords, $id ); $data = apply_filters( 'seopress_get_count_target_keywords', $data ); return new \WP_REST_Response( $data ); } }