CORE-POS/IS4C

View on GitHub
fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php

Summary

Maintainability
D
3 days
Test Coverage

Function run has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
Open

    public function run()
    {
        global $FANNIE_OP_DB, $FANNIE_PLUGIN_SETTINGS, $argv;
        $dbc = FannieDB::get($FANNIE_OP_DB);
        $this->custdata = new CustdataModel($dbc);
Severity: Minor
Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.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

File MailChimpTask.php has 325 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/*******************************************************************************

    Copyright 2013 Whole Foods Co-op

Severity: Minor
Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php - About 3 hrs to fix

    Method run has 71 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function run()
        {
            global $FANNIE_OP_DB, $FANNIE_PLUGIN_SETTINGS, $argv;
            $dbc = FannieDB::get($FANNIE_OP_DB);
            $this->custdata = new CustdataModel($dbc);
    Severity: Major
    Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php - About 2 hrs to fix

      Function isSubscribed has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function isSubscribed($record, $columns, $chimp, $LISTID, $memlist)
          {
              list($card_no, $email, $fname, $lname, $changed) = $this->unpackRecord($record, $columns);
              $memlist .= sprintf('%d,', $card_no);
              $this->custdata->reset();
      Severity: Minor
      Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.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 isSubscribed has 59 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function isSubscribed($record, $columns, $chimp, $LISTID, $memlist)
          {
              list($card_no, $email, $fname, $lname, $changed) = $this->unpackRecord($record, $columns);
              $memlist .= sprintf('%d,', $card_no);
              $this->custdata->reset();
      Severity: Major
      Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php - About 2 hrs to fix

        Method addNew has 42 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function addNew($chimp, $LISTID, $dbc, $memlist)
            {
                /**
                  Finally, find new members and add them to MailChimp
                */
        Severity: Minor
        Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php - About 1 hr to fix

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

              protected function addNew($chimp, $LISTID, $dbc, $memlist)
              {
                  /**
                    Finally, find new members and add them to MailChimp
                  */
          Severity: Minor
          Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.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 unknownSubscribed has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              protected function unknownSubscribed($record, $columns, $chimp, $LISTID, $memlist)
              {
                  list($card_no, $email, $fname, $lname, $changed) = $this->unpackRecord($record, $columns);
                  if ($card_no === false) {
                      return $memlist;
          Severity: Minor
          Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php - About 1 hr to fix

            Method unknownSubscribed has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                protected function unknownSubscribed($record, $columns, $chimp, $LISTID, $memlist)
            Severity: Minor
            Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php - About 35 mins to fix

              Method isSubscribed has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  protected function isSubscribed($record, $columns, $chimp, $LISTID, $memlist)
              Severity: Minor
              Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php - About 35 mins to fix

                Avoid too many return statements within this method.
                Open

                        return true;
                Severity: Major
                Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php - About 30 mins to fix

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

                      protected function unknownSubscribed($record, $columns, $chimp, $LISTID, $memlist)
                      {
                          list($card_no, $email, $fname, $lname, $changed) = $this->unpackRecord($record, $columns);
                          if ($card_no === false) {
                              return $memlist;
                  Severity: Minor
                  Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.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 readMergeFields has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                      protected function readMergeFields($chimp, $LISTID)
                      {
                          $vars = $chimp->get("lists/{$LISTID}/merge-fields");
                          $field_id = false;
                          foreach ($vars['merge_fields'] as $mf) {
                  Severity: Minor
                  Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.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

                                      switch ($status) {
                                          /**
                                            If subscribed list member has been tagged with a POS member number, compare
                                            MailChimp fields to POS fields. If name disagrees, use POS value
                                            for both. If email disagrees, use MailChimp value for both.
                  Severity: Minor
                  Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php and 1 other location - About 30 mins to fix
                  fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php on lines 175..198

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

                  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

                                      switch ($status) {
                                          // subscribed users can be updated easily
                                          case 'subscribed':
                                              $memlist = $this->unknownSubscribed($record, $columns, $chimp3, $LISTID, $memlist);
                                              break;
                  Severity: Minor
                  Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php and 1 other location - About 30 mins to fix
                  fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php on lines 141..166

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

                  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 (strtoupper(trim($this->custdata->FirstName())) != strtoupper($fname)) {
                              $this->cronMsg(sprintf("MISMATCH: POS says %s, MailChimp says %s",
                                  $this->custdata->FirstName(), $fname), FannieLogger::INFO);
                              $update['FNAME'] = trim($this->custdata->FirstName());
                          }
                  Severity: Minor
                  Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php and 1 other location - About 30 mins to fix
                  fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php on lines 335..339

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

                  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 (strtoupper(trim($this->custdata->LastName())) != strtoupper($lname)) {
                              $this->cronMsg(sprintf("MISMATCH: POS says %s, MailChimp says %s",
                                  $this->custdata->LastName(), $lname), FannieLogger::INFO);
                              $update['LNAME'] = trim($this->custdata->LastName());
                          }
                  Severity: Minor
                  Found in fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php and 1 other location - About 30 mins to fix
                  fannie/modules/plugins2.0/MailChimpSync/MailChimpTask.php on lines 330..334

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

                  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