core/common/OutsideComm.php

Summary

Maintainability
D
2 days
Test Coverage

Method adminInvitationMail has 89 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function adminInvitationMail($targets, $introtext, $newtoken, $idpPrettyName, $federation, $type)
    {
        if (!in_array($introtext, OutsideComm::INVITE_CONTEXTS)) {
            throw new \Exception("Unknown invite mode!");
        }
Severity: Major
Found in core/common/OutsideComm.php - About 3 hrs to fix

    Function mailAddressValidSecure has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function mailAddressValidSecure($address)
        {
            $loggerInstance = new \core\common\Logging();
            if (!filter_var($address, FILTER_VALIDATE_EMAIL)) {
                $loggerInstance->debug(4, "OutsideComm::mailAddressValidSecure: invalid mail address.");
    Severity: Minor
    Found in core/common/OutsideComm.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

    Function adminInvitationMail has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function adminInvitationMail($targets, $introtext, $newtoken, $idpPrettyName, $federation, $type)
        {
            if (!in_array($introtext, OutsideComm::INVITE_CONTEXTS)) {
                throw new \Exception("Unknown invite mode!");
            }
    Severity: Minor
    Found in core/common/OutsideComm.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

    File OutsideComm.php has 301 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /*
     * *****************************************************************************
     * Contributions to this work were made on behalf of the GÉANT project, a 
    Severity: Minor
    Found in core/common/OutsideComm.php - About 3 hrs to fix

      Method mailAddressValidSecure has 53 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function mailAddressValidSecure($address)
          {
              $loggerInstance = new \core\common\Logging();
              if (!filter_var($address, FILTER_VALIDATE_EMAIL)) {
                  $loggerInstance->debug(4, "OutsideComm::mailAddressValidSecure: invalid mail address.");
      Severity: Major
      Found in core/common/OutsideComm.php - About 2 hrs to fix

        Method sendSMS has 47 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static function sendSMS($number, $content)
            {
                $loggerInstance = new \core\common\Logging();
                switch (\config\ConfAssistant::SMSSETTINGS['provider']) {
                    case 'Nexmo':
        Severity: Minor
        Found in core/common/OutsideComm.php - About 1 hr to fix

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

              public static function sendSMS($number, $content)
              {
                  $loggerInstance = new \core\common\Logging();
                  switch (\config\ConfAssistant::SMSSETTINGS['provider']) {
                      case 'Nexmo':
          Severity: Minor
          Found in core/common/OutsideComm.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 adminInvitationMail has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public static function adminInvitationMail($targets, $introtext, $newtoken, $idpPrettyName, $federation, $type)
          Severity: Minor
          Found in core/common/OutsideComm.php - About 45 mins to fix

            Avoid too many return statements within this method.
            Open

                    return $retval;
            Severity: Major
            Found in core/common/OutsideComm.php - About 30 mins to fix

              There are no issues that match your filters.

              Category
              Status