connectors/class-connector-buddypress.php

Summary

Maintainability
F
5 days
Test Coverage
F
0%

File class-connector-buddypress.php has 676 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Connector for BuddyPress
 *
 * @package WP_Stream
Severity: Major
Found in connectors/class-connector-buddypress.php - About 1 day to fix

    Connector_BuddyPress has 40 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Connector_BuddyPress extends Connector {
    
        /**
         * Connector slug
         *
    Severity: Minor
    Found in connectors/class-connector-buddypress.php - About 5 hrs to fix

      Method action_links has 114 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function action_links( $links, $record ) {
              if ( in_array( $record->context, array( 'components' ), true ) ) {
                  $option_key = $record->get_meta( 'option_key', true );
      
                  if ( 'bp-active-components' === $option_key ) {
      Severity: Major
      Found in connectors/class-connector-buddypress.php - About 4 hrs to fix

        Function action_links has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
        Open

            public function action_links( $links, $record ) {
                if ( in_array( $record->context, array( 'components' ), true ) ) {
                    $option_key = $record->get_meta( 'option_key', true );
        
                    if ( 'bp-active-components' === $option_key ) {
        Severity: Minor
        Found in connectors/class-connector-buddypress.php - About 3 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method group_action has 51 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function group_action( $group, $action, $meta = array(), $message = null ) {
                if ( is_numeric( $group ) ) {
                    $group = \groups_get_group(
                        array(
                            'group_id' => $group,
        Severity: Major
        Found in connectors/class-connector-buddypress.php - About 2 hrs to fix

          Method register has 46 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function register() {
                  parent::register();
          
                  $this->options = array_merge(
                      $this->options,
          Severity: Minor
          Found in connectors/class-connector-buddypress.php - About 1 hr to fix

            Method check_bp_pages has 37 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function check_bp_pages( $old_value, $new_value ) {
                    $options = array();
            
                    if ( ! is_array( $old_value ) || ! is_array( $new_value ) ) {
                        return;
            Severity: Minor
            Found in connectors/class-connector-buddypress.php - About 1 hr to fix

              Method callback_bp_activity_deleted_activities has 37 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function callback_bp_activity_deleted_activities( $activities_ids ) {
                      if ( 1 === count( $activities_ids ) && isset( $this->deleted_activity ) ) { // Single activity deletion.
                          $activity = $this->deleted_activity;
                          $this->log(
                              sprintf(
              Severity: Minor
              Found in connectors/class-connector-buddypress.php - About 1 hr to fix

                Function group_action has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function group_action( $group, $action, $meta = array(), $message = null ) {
                        if ( is_numeric( $group ) ) {
                            $group = \groups_get_group(
                                array(
                                    'group_id' => $group,
                Severity: Minor
                Found in connectors/class-connector-buddypress.php - About 1 hr to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Method check_bp_active_components has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function check_bp_active_components( $old_value, $new_value ) {
                        $options = array();
                
                        if ( ! is_array( $old_value ) || ! is_array( $new_value ) ) {
                            return;
                Severity: Minor
                Found in connectors/class-connector-buddypress.php - About 1 hr to fix

                  Method field_action has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function field_action( $field, $action, $meta = array(), $message = null ) {
                          $replacements = array(
                              $field->name,
                          );
                  
                  
                  Severity: Minor
                  Found in connectors/class-connector-buddypress.php - About 1 hr to fix

                    Method field_group_action has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function field_group_action( $group, $action, $meta = array(), $message = null ) {
                            $replacements = array(
                                $group->name,
                            );
                    
                    
                    Severity: Minor
                    Found in connectors/class-connector-buddypress.php - About 1 hr to fix

                      Method check has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public function check( $option, $old_value, $new_value ) {
                              if ( ! array_key_exists( $option, $this->options ) ) {
                                  return;
                              }
                      
                      
                      Severity: Minor
                      Found in connectors/class-connector-buddypress.php - About 1 hr to fix

                        Function bp_get_directory_pages has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            private function bp_get_directory_pages() {
                                $bp              = \buddypress();
                                $directory_pages = array();
                        
                                // Loop through loaded components and collect directories.
                        Severity: Minor
                        Found in connectors/class-connector-buddypress.php - About 35 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function check_bp_active_components has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function check_bp_active_components( $old_value, $new_value ) {
                                $options = array();
                        
                                if ( ! is_array( $old_value ) || ! is_array( $new_value ) ) {
                                    return;
                        Severity: Minor
                        Found in connectors/class-connector-buddypress.php - About 35 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function check_bp_pages has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function check_bp_pages( $old_value, $new_value ) {
                                $options = array();
                        
                                if ( ! is_array( $old_value ) || ! is_array( $new_value ) ) {
                                    return;
                        Severity: Minor
                        Found in connectors/class-connector-buddypress.php - About 35 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function field_group_action has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function field_group_action( $group, $action, $meta = array(), $message = null ) {
                                $replacements = array(
                                    $group->name,
                                );
                        
                        
                        Severity: Minor
                        Found in connectors/class-connector-buddypress.php - About 25 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function field_action has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function field_action( $field, $action, $meta = array(), $message = null ) {
                                $replacements = array(
                                    $field->name,
                                );
                        
                        
                        Severity: Minor
                        Found in connectors/class-connector-buddypress.php - About 25 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            public function get_action_labels() {
                                return array(
                                    'created'     => esc_html_x( 'Created', 'buddypress', 'stream' ),
                                    'updated'     => esc_html_x( 'Updated', 'buddypress', 'stream' ),
                                    'activated'   => esc_html_x( 'Activated', 'buddypress', 'stream' ),
                        Severity: Major
                        Found in connectors/class-connector-buddypress.php and 1 other location - About 4 hrs to fix
                        connectors/class-connector-jetpack.php on lines 93..105

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 170.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            public function callback_bp_activity_mark_as_ham( $activity, $by ) {
                                unset( $by );
                        
                                $this->log(
                                    sprintf(
                        Severity: Minor
                        Found in connectors/class-connector-buddypress.php and 1 other location - About 55 mins to fix
                        connectors/class-connector-buddypress.php on lines 639..658

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 98.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            public function callback_bp_activity_mark_as_spam( $activity, $by ) {
                                unset( $by );
                        
                                $this->log(
                                    sprintf(
                        Severity: Minor
                        Found in connectors/class-connector-buddypress.php and 1 other location - About 55 mins to fix
                        connectors/class-connector-buddypress.php on lines 668..687

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 98.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        There are no issues that match your filters.

                        Category
                        Status