CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-includes/user.php

Summary

Maintainability
F
3 days
Test Coverage

File user.php has 351 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * WordPress User API
 *
 * @package WordPress
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 4 hrs to fix

    Function sanitize_user_field has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
    Open

    function sanitize_user_field($field, $value, $user_id, $context) {
        $int_fields = array('ID');
        if ( in_array($field, $int_fields) )
            $value = (int) $value;
    
    
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 4 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

    Function sanitize_user_object has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

    function sanitize_user_object($user, $context = 'display') {
        if ( is_object($user) ) {
            if ( !isset($user->ID) )
                $user->ID = 0;
            if ( isset($user->data) )
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 2 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 wp_dropdown_users has 47 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function wp_dropdown_users( $args = '' ) {
        global $wpdb;
        $defaults = array(
            'show_option_all' => '', 'show_option_none' => '',
            'orderby' => 'display_name', 'order' => 'ASC',
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 1 hr to fix

      Method sanitize_user_field has 41 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function sanitize_user_field($field, $value, $user_id, $context) {
          $int_fields = array('ID');
          if ( in_array($field, $int_fields) )
              $value = (int) $value;
      
      
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 1 hr to fix

        Function wp_dropdown_users has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

        function wp_dropdown_users( $args = '' ) {
            global $wpdb;
            $defaults = array(
                'show_option_all' => '', 'show_option_none' => '',
                'orderby' => 'display_name', 'order' => 'ASC',
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/user.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

        Function wp_signon has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

        function wp_signon( $credentials = '', $secure_cookie = '' ) {
            if ( empty($credentials) ) {
                if ( ! empty($_POST['log']) )
                    $credentials['user_login'] = $_POST['log'];
                if ( ! empty($_POST['pwd']) )
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/user.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

        Function get_usermeta has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

        function get_usermeta( $user_id, $meta_key = '') {
            global $wpdb;
            $user_id = (int) $user_id;
        
            if ( !$user_id )
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/user.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

        Function update_usermeta has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

        function update_usermeta( $user_id, $meta_key, $meta_value ) {
            global $wpdb;
            if ( !is_numeric( $user_id ) )
                return false;
            $meta_key = preg_replace('|[^a-z0-9_]|i', '', $meta_key);
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/user.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 wp_signon has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function wp_signon( $credentials = '', $secure_cookie = '' ) {
            if ( empty($credentials) ) {
                if ( ! empty($_POST['log']) )
                    $credentials['user_login'] = $_POST['log'];
                if ( ! empty($_POST['pwd']) )
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 1 hr to fix

          Function wp_authenticate_username_password has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

          function wp_authenticate_username_password($user, $username, $password) {
              if ( is_a($user, 'WP_User') ) { return $user; }
          
              if ( empty($username) || empty($password) ) {
                  $error = new WP_Error();
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/user.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

          Function wp_authenticate_cookie has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

          function wp_authenticate_cookie($user, $username, $password) {
              if ( is_a($user, 'WP_User') ) { return $user; }
          
              if ( empty($username) && empty($password) ) {
                  $user_id = wp_validate_auth_cookie();
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/user.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

          Function delete_usermeta has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

          function delete_usermeta( $user_id, $meta_key, $meta_value = '' ) {
              global $wpdb;
              if ( !is_numeric( $user_id ) )
                  return false;
              $meta_key = preg_replace('|[^a-z0-9_]|i', '', $meta_key);
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 45 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 _fill_user has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          function _fill_user( &$user ) {
              global $wpdb;
          
              $show = $wpdb->hide_errors();
              $metavalues = $wpdb->get_results($wpdb->prepare("SELECT meta_key, meta_value FROM $wpdb->usermeta WHERE user_id = %d", $user->ID));
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/user.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

          Avoid too many return statements within this method.
          Open

                  return new WP_Error('incorrect_password', sprintf(__('<strong>ERROR</strong>: Incorrect password. <a href="%s" title="Password Lost and Found">Lost your password</a>?'), site_url('wp-login.php?action=lostpassword', 'login')));
          Severity: Major
          Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                    return $metas;
            Severity: Major
            Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                  return $user;
              Severity: Major
              Found in Web.Admin/2014/wordpress/wp-includes/user.php - About 30 mins to fix

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

                function get_user_option( $option, $user = 0, $check_blog_options = true ) {
                    global $wpdb;
                
                    $option = preg_replace('|[^a-z0-9_]|i', '', $option);
                    if ( empty($user) )
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/user.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

                There are no issues that match your filters.

                Category
                Status