Kylob/BootPress

View on GitHub
src/Admin/Pages/Analytics.php

Summary

Maintainability
F
1 wk
Test Coverage

File Analytics.php has 947 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace BootPress\Admin\Pages;

use BootPress\Admin\Component as Admin;
Severity: Major
Found in src/Admin/Pages/Analytics.php - About 2 days to fix

    Function users has a Cognitive Complexity of 90 (exceeds 5 allowed). Consider refactoring.
    Open

        private function users($data = null)
        {
            extract(Admin::params('bp', 'blog', 'website', 'page'));
            $page->title = 'User Analytics at '.$website;
            $html = '';
    Severity: Minor
    Found in src/Admin/Pages/Analytics.php - About 1 day 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 users has 216 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        private function users($data = null)
        {
            extract(Admin::params('bp', 'blog', 'website', 'page'));
            $page->title = 'User Analytics at '.$website;
            $html = '';
    Severity: Major
    Found in src/Admin/Pages/Analytics.php - About 1 day to fix

      Method robots has 131 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function robots()
          {
              extract(Admin::params('bp', 'blog', 'website', 'page'));
              $page->title = 'Robot Analytics at '.$website;
              $html = '';
      Severity: Major
      Found in src/Admin/Pages/Analytics.php - About 5 hrs to fix

        Method visitors has 127 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            private function visitors()
            {
                extract(Admin::params('bp', 'website', 'page', 'path', 'admin'));
                $page->title = 'Visitors at '.$website;
                $html = '';
        Severity: Major
        Found in src/Admin/Pages/Analytics.php - About 5 hrs to fix

          Function robots has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring.
          Open

              private function robots()
              {
                  extract(Admin::params('bp', 'blog', 'website', 'page'));
                  $page->title = 'Robot Analytics at '.$website;
                  $html = '';
          Severity: Minor
          Found in src/Admin/Pages/Analytics.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

          Method server has 97 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private function server()
              {
                  extract(Admin::params('bp', 'website', 'page'));
                  $page->title = 'Server Analytics at '.$website;
                  $page->link(array(
          Severity: Major
          Found in src/Admin/Pages/Analytics.php - About 3 hrs to fix

            Function visitors has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
            Open

                private function visitors()
                {
                    extract(Admin::params('bp', 'website', 'page', 'path', 'admin'));
                    $page->title = 'Visitors at '.$website;
                    $html = '';
            Severity: Minor
            Found in src/Admin/Pages/Analytics.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

            Function startStop has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
            Open

                private function startStop($count, $range, $label = 'Y-m-d H:i:s', array $values = array())
                {
                    $array = array();
                    $range = substr($range, 0, 3);
                    if (in_array($range, array('sec', 'min', 'hou', 'day', 'wee', 'mon', 'yea'))) {
            Severity: Minor
            Found in src/Admin/Pages/Analytics.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 pages has 56 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                private function pages()
                {
                    extract(Admin::params('bp', 'website', 'page', 'path', 'admin'));
                    $page->title = 'Analytic Pages at '.$website;
                    $url = $page->url($admin, $path, 'users'); // for linking most recent users
            Severity: Major
            Found in src/Admin/Pages/Analytics.php - About 2 hrs to fix

              Method referrers has 45 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private function referrers()
                  {
                      extract(Admin::params('bp', 'website', 'page'));
                      $page->title = 'Referrer Analytics at '.$website;
                      $db = BPA::database();
              Severity: Minor
              Found in src/Admin/Pages/Analytics.php - About 1 hr to fix

                Method startStop has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    private function startStop($count, $range, $label = 'Y-m-d H:i:s', array $values = array())
                    {
                        $array = array();
                        $range = substr($range, 0, 3);
                        if (in_array($range, array('sec', 'min', 'hou', 'day', 'wee', 'mon', 'yea'))) {
                Severity: Minor
                Found in src/Admin/Pages/Analytics.php - About 1 hr to fix

                  Method timeRange has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      private function timeRange($time, $range, $label = '')
                      {
                          // H - hour - 00 to 23
                          // i - minute - 00 to 59
                          // s - second - 00 to 59
                  Severity: Minor
                  Found in src/Admin/Pages/Analytics.php - About 1 hr to fix

                    Method userHits has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        private function userHits($start = null, $stop = null, $default = 0)
                        {
                            if (empty($this->user_id)) {
                                $row = $this->db->row(array(
                                    'SELECT',
                    Severity: Minor
                    Found in src/Admin/Pages/Analytics.php - About 1 hr to fix

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

                          private function timeRange($time, $range, $label = '')
                          {
                              // H - hour - 00 to 23
                              // i - minute - 00 to 59
                              // s - second - 00 to 59
                      Severity: Minor
                      Found in src/Admin/Pages/Analytics.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 next has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                          private function next(&$delayed, $time)
                          {
                              $html = '-';
                              if (!empty($delayed)) {
                                  $delay = $delayed - $time;
                      Severity: Minor
                      Found in src/Admin/Pages/Analytics.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 pages has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          private function pages()
                          {
                              extract(Admin::params('bp', 'website', 'page', 'path', 'admin'));
                              $page->title = 'Analytic Pages at '.$website;
                              $url = $page->url($admin, $path, 'users'); // for linking most recent users
                      Severity: Minor
                      Found in src/Admin/Pages/Analytics.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 3 locations. Consider refactoring.
                      Open

                              foreach ($this->startStop(168, 'hour', 'Y-m-d H:i:s') as $x => $info) { // D M j
                                  list($start, $stop) = $info;
                                  $this->db->execute($stmt, array($start, $stop));
                                  list($loaded, $server) = $this->db->fetch($stmt);
                                  $data[] = '{x:"'.$x.'", loaded:'.round($loaded, 2).', server:'.round($server, 2).'}';
                      Severity: Major
                      Found in src/Admin/Pages/Analytics.php and 2 other locations - About 2 hrs to fix
                      src/Admin/Pages/Analytics.php on lines 697..702
                      src/Admin/Pages/Analytics.php on lines 754..759

                      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 130.

                      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 3 locations. Consider refactoring.
                      Open

                              foreach ($this->startStop(180, 'minute', 'Y-m-d H:i:s') as $x => $info) { // D M j
                                  list($start, $stop) = $info;
                                  $this->db->execute($stmt, array($start, $stop));
                                  list($loaded, $server) = $this->db->fetch($stmt);
                                  $data[] = '{x:"'.$x.'", loaded:'.round($loaded, 2).', server:'.round($server, 2).'}';
                      Severity: Major
                      Found in src/Admin/Pages/Analytics.php and 2 other locations - About 2 hrs to fix
                      src/Admin/Pages/Analytics.php on lines 725..730
                      src/Admin/Pages/Analytics.php on lines 754..759

                      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 130.

                      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 3 locations. Consider refactoring.
                      Open

                              foreach ($this->startStop(180, 'day', 'Y-m-d H:i:s') as $x => $info) { // D M j
                                  list($start, $stop) = $info;
                                  $this->db->execute($stmt, array($start, $stop));
                                  list($loaded, $server) = $this->db->fetch($stmt);
                                  $data[] = '{x:"'.$x.'", loaded:'.round($loaded, 2).', server:'.round($server, 2).'}';
                      Severity: Major
                      Found in src/Admin/Pages/Analytics.php and 2 other locations - About 2 hrs to fix
                      src/Admin/Pages/Analytics.php on lines 697..702
                      src/Admin/Pages/Analytics.php on lines 725..730

                      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 130.

                      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

                                  if ($data = $this->users($platforms)) {
                                      $html .= '<br>'.$bp->row('sm', array(
                                          $bp->col('6 vcenter', '<div class="canvas-container"><canvas id="platformsChart" height="250"></canvas></div>'),
                                          $bp->col('5 vcenter', '<p class="lead">Platforms</p><div id="platformsChartLegend"></div>'),
                                      )).'<br>';
                      Severity: Minor
                      Found in src/Admin/Pages/Analytics.php and 1 other location - About 55 mins to fix
                      src/Admin/Pages/Analytics.php on lines 513..523

                      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 99.

                      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

                                  if ($data = $this->users($browsers)) {
                                      $html .= '<br>'.$bp->row('sm', array(
                                          $bp->col('6 vcenter', '<div class="canvas-container"><canvas id="browsersChart" height="250"></canvas></div>'),
                                          $bp->col('5 vcenter', '<p class="lead">Browsers</p><div id="browsersChartLegend"></div>'),
                                      )).'<br>';
                      Severity: Minor
                      Found in src/Admin/Pages/Analytics.php and 1 other location - About 55 mins to fix
                      src/Admin/Pages/Analytics.php on lines 493..503

                      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 99.

                      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

                      Blank line found at end of control structure
                      Open

                                      

                      There are no issues that match your filters.

                      Category
                      Status