From 804cb0af1ac4c95dd4142a5b2f4dcfe9fc7a3bd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Wed, 22 Nov 2023 14:24:25 +0100 Subject: [PATCH] fix phpcs errors --- includes/activity/class-event.php | 2 +- includes/activity/class-note.php | 2 +- includes/class-admin.php | 17 ++++++++------- includes/model/class-post.php | 4 ++-- includes/rest/class-outbox.php | 2 +- includes/transformer/class-base.php | 21 +++++++++++++------ .../class-transformers-manager.php | 19 ++++++++--------- 7 files changed, 39 insertions(+), 28 deletions(-) diff --git a/includes/activity/class-event.php b/includes/activity/class-event.php index a38880c..9359336 100644 --- a/includes/activity/class-event.php +++ b/includes/activity/class-event.php @@ -19,5 +19,5 @@ use Activitypub\Activity\Base_Object; * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-event */ class Note extends Base_Object { - protected $type = 'Event'; + protected $type = 'Event'; } diff --git a/includes/activity/class-note.php b/includes/activity/class-note.php index d49be5c..328ec79 100644 --- a/includes/activity/class-note.php +++ b/includes/activity/class-note.php @@ -19,5 +19,5 @@ use Activitypub\Activity\Base_Object; * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note */ class Note extends Base_Object { - protected $type = 'Note'; + protected $type = 'Note'; } diff --git a/includes/class-admin.php b/includes/class-admin.php index 1105a0a..b5000ff 100644 --- a/includes/class-admin.php +++ b/includes/class-admin.php @@ -25,9 +25,13 @@ class Admin { } add_filter( - 'activitypub/transformers/is_transformer_enabled', function( $should_register, Transformer_Base $widget_instance ) { - return ! Options::is_transformer_disabled( $transformer_instance->get_name() ); - }, 10, 2 ); + 'activitypub/transformers/is_transformer_enabled', + function( $should_register, Transformer_Base $transformer_instance ) { + return ! Options::is_transformer_disabled( $transformer_instance->get_name() ); + }, + 10, + 2 + ); } /** @@ -187,7 +191,7 @@ class Admin { ), 'sanitize_callback' => function ( $value ) { // Check if $value is an array - if (!is_array($value)) { + if ( ! is_array( $value ) ) { return array(); } $value_keys = array_keys( $value ); @@ -196,12 +200,11 @@ class Admin { // Unset the keys that are missing in $keysToCheck foreach ( array_diff( $value_keys, $all_public_post_types ) as $missing_key ) { - unset($value[$missing_key]); + unset( $value[ $missing_key ] ); } // var_dump($value); return $value; - - } + }, ) ); \register_setting( diff --git a/includes/model/class-post.php b/includes/model/class-post.php index ac451d0..6aeea14 100644 --- a/includes/model/class-post.php +++ b/includes/model/class-post.php @@ -1,7 +1,7 @@ post = $post; - $this->object = Post_Transformer->set_wp_post( $post )->to_object(); + $this->object = Transformer_Post->set_wp_post( $post )->to_object(); } /** diff --git a/includes/rest/class-outbox.php b/includes/rest/class-outbox.php index e5ff834..56f5220 100644 --- a/includes/rest/class-outbox.php +++ b/includes/rest/class-outbox.php @@ -59,7 +59,7 @@ class Outbox { return $user; } - $post_types = array_keys( \get_option( 'activitypub_transformer_mapping', array( 'post' => 'activitypub/default', 'page' => 'activitypub/default') ) ); + $post_types = array_keys( \get_option( 'activitypub_transformer_mapping', array( 'post' => 'activitypub/default', 'page' => 'activitypub/default' ) ) ); $page = $request->get_param( 'page', 1 ); diff --git a/includes/transformer/class-base.php b/includes/transformer/class-base.php index d4062a9..27f4a67 100644 --- a/includes/transformer/class-base.php +++ b/includes/transformer/class-base.php @@ -37,15 +37,20 @@ abstract class Base { * @return void */ public function set_wp_post( WP_Post $wp_post ) { - if ( $this->supports_post_type( get_post_type( $wp_post ) ) ) { - $this->wp_post = $wp_post; - } else { - // TODO Error, this should not happen. + $post_type = get_post_type( $wp_post ); + if ( ! $this->supports_post_type( $post_type ) ) { + _doing_it_wrong( + __METHOD__, + /* translators: %s: Block name. */ + sprintf( 'The Transformer "%s" does not support the post type "%s".', esc_html( $this->get_label() ), esc_html( $post_type ) ), + 'version_number_transformer_management_placeholder' + ); } + $this->wp_post = $wp_post; } /** - * Get the supported WP post_types that the transformer can use as an input. + * Get the supported WP post types that the transformer can use as an input. * * By default all post types are supported. * You may very likely wish to override this function. @@ -74,7 +79,11 @@ abstract class Base { $plugins_data = get_plugins( '/' . $plugin_directory ); $plugin_data = array_shift( $plugins_data ); - return $plugin_data['Name'] ?? esc_html__( 'Unknown', 'activitypub' ); + if ( isset( $plugin_data['Name'] ) ) { + return $plugin_data['Name']; + } else { + return esc_html__( 'Unknown', 'activitypub' ); + } } /** diff --git a/includes/transformer/class-transformers-manager.php b/includes/transformer/class-transformers-manager.php index 9d8de30..f83f5c4 100644 --- a/includes/transformer/class-transformers-manager.php +++ b/includes/transformer/class-transformers-manager.php @@ -91,7 +91,7 @@ class Transformers_Manager { return get_called_class(); } - /** + /** * Transformers manager constructor. * * Initializing ActivityPub transformers manager. @@ -137,12 +137,12 @@ class Transformers_Manager { * * @return bool True if the ActivityPub transformer was registered. */ - public function register( \ActivityPub\Transformer\Base $transformer_instance) { + public function register( \ActivityPub\Transformer\Base $transformer_instance ) { if ( ! $transformer_instance instanceof \ActivityPub\Transformer\Base ) { _doing_it_wrong( __METHOD__, - __( 'ActivityPub transformer instance must be a of \ActivityPub\Transformer_Base class.' ), + \esc_html__( 'ActivityPub transformer instance must be a of \ActivityPub\Transformer_Base class.' ), 'version_number_transformer_management_placeholder' ); return false; @@ -152,7 +152,7 @@ class Transformers_Manager { if ( preg_match( '/[A-Z]+/', $transformer_name ) ) { _doing_it_wrong( __METHOD__, - __( 'ActivityPub transformer names must not contain uppercase characters.' ), + \esc_html__( 'ActivityPub transformer names must not contain uppercase characters.' ), 'version_number_transformer_management_placeholder' ); return false; @@ -162,7 +162,7 @@ class Transformers_Manager { if ( ! preg_match( $name_matcher, $transformer_name ) ) { _doing_it_wrong( __METHOD__, - __( 'ActivityPub transformer names must contain a namespace prefix. Example: my-plugin/my-custom-transformer' ), + \esc_html__( 'ActivityPub transformer names must contain a namespace prefix. Example: my-plugin/my-custom-transformer' ), 'version_number_transformer_management_placeholder' ); return false; @@ -172,7 +172,7 @@ class Transformers_Manager { _doing_it_wrong( __METHOD__, /* translators: %s: Block name. */ - sprintf( __( 'ActivityPub transformer with name "%s" is already registered.' ), $transformer_name ), + sprintf( 'ActivityPub transformer with name "%s" is already registered.', esc_html( $transformer_name ) ), 'version_number_transformer_management_placeholder' ); return false; @@ -190,7 +190,7 @@ class Transformers_Manager { // $should_register = apply_filters( 'activitypub/transformers/is_transformer_enabled', true, $transformer_instance ); // if ( ! $should_register ) { - // return false; + // return false; // } $this->transformers[ $transformer_name ] = $transformer_instance; @@ -209,7 +209,7 @@ class Transformers_Manager { */ private function init_transformers() { $builtin_transformers = [ - 'post' + 'post', ]; $this->transformers = []; @@ -270,7 +270,7 @@ class Transformers_Manager { * @since version_number_transformer_management_placeholder * @access public * - * @param WP_Post|WP_Comment $wp_post The WordPress Post/Comment. + * @param WP_Post|WP_Comment $wp_post The WordPress Post/Comment. * * @return \ActivityPub\Transformer\Base|null Registered transformers. */ @@ -290,4 +290,3 @@ class Transformers_Manager { } } } -