vijos/openvj

View on GitHub

Showing 103 of 103 total issues

Method import has 58 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function import(callable $progress = null)
    {
        if (Application::coll('User')->count() > 0) {
            throw new UserException('User.Importer.VijosImporter.userCollectionNotEmpty');
        }
Severity: Major
Found in src/User/Importer/VijosImporter.php - About 2 hrs to fix

    Method joinDomainById has 58 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function joinDomainById($uid, \MongoId $domainId)
        {
            if (!Validator::int()->validate($uid)) {
                throw new InvalidArgumentException('uid', 'type_invalid');
            }
    Severity: Major
    Found in src/User/DomainManager.php - About 2 hrs to fix

      Method createReply has 57 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function createReply(\MongoId $commentId, $ref, $owner, $markdown)
          {
              if (!is_string($ref)) {
                  throw new InvalidArgumentException('ref', 'type_invalid');
              }
      Severity: Major
      Found in src/Comment/CommentUtil.php - About 2 hrs to fix

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

            public function generate($purpose, $identifier, $expireAt, $data = null, $length = 30)
            {
                if (!is_string($purpose)) {
                    throw new InvalidArgumentException('purpose', 'type_invalid');
                }
        Severity: Major
        Found in src/Security/TokenManager.php - About 2 hrs to fix

          Method modifyReply has 49 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public static function modifyReply(\MongoId $commentId, $ref, \MongoId $replyId, $markdown)
              {
                  if (!is_string($ref)) {
                      throw new InvalidArgumentException('ref', 'type_invalid');
                  }
          Severity: Minor
          Found in src/Comment/CommentUtil.php - About 1 hr to fix

            Method modifyContent has 48 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public static function modifyContent(\MongoId $pid, $uid, $markdown)
                {
                    if (!Validator::int()->validate($uid)) {
                        throw new InvalidArgumentException('uid', 'type_invalid');
                    }
            Severity: Minor
            Found in src/Problem/ProblemUtil.php - About 1 hr to fix

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

                  public static function createProblem($uid, $title, array $visibleDomains)
                  {
                      if (!Validator::int()->validate($uid)) {
                          throw new InvalidArgumentException('uid', 'type_invalid');
                      }
              Severity: Minor
              Found in src/Problem/ProblemUtil.php - About 1 hr to fix

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

                    public static function modifyMeta(\MongoId $pid, $title, array $tags, array $visibleDomains)
                    {
                        if (!is_string($title)) {
                            throw new InvalidArgumentException('title', 'type_invalid');
                        }
                Severity: Minor
                Found in src/Problem/ProblemUtil.php - About 1 hr to fix

                  Function route has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public static function route()
                      {
                          $dispatcher = Application::get('dispatcher');
                          $request = Application::get('request');
                          $response = Application::get('response');
                  Severity: Minor
                  Found in src/Core/RouteTrait.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 createComment has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public static function createComment($ref, $owner, $markdown)
                      {
                          if (!is_string($ref)) {
                              throw new InvalidArgumentException('ref', 'type_invalid');
                          }
                  Severity: Minor
                  Found in src/Comment/CommentUtil.php - About 1 hr to fix

                    Method modifyComment has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public static function modifyComment(\MongoId $commentId, $ref, $markdown)
                        {
                            if (!is_string($ref)) {
                                throw new InvalidArgumentException('ref', 'type_invalid');
                            }
                    Severity: Minor
                    Found in src/Comment/CommentUtil.php - About 1 hr to fix

                      Method contains has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public function contains($text, $cacheKey, callable $miss)
                          {
                              $value = $this->redis->hget($this->prefix, $cacheKey);
                              if ($value === false) {
                                  // Haven't found data in the cache, we need to build the tree
                      Severity: Minor
                      Found in src/Security/KeywordFilter.php - About 1 hr to fix

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

                            public static function createDiscussion(\MongoId $topicId, $owner, $title, $markdown)
                            {
                                if (!Validator::int()->validate($owner)) {
                                    throw new InvalidArgumentException('owner', 'type_invalid');
                                }
                        Severity: Minor
                        Found in src/Discussion/DiscussionUtil.php - About 1 hr to fix

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

                              public static function createRole($name, $internal = false, \MongoId $domain = null, $owner = null)
                              {
                                  if (!is_string($name)) {
                                      throw new InvalidArgumentException('name', 'type_invalid');
                                  }
                          Severity: Minor
                          Found in src/User/RoleManager.php - About 1 hr to fix

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

                                private static function initConfig()
                                {
                                    if (file_exists(self::$CONFIG_DIRECTORY . '/config.yml')) {
                                        // config file exists
                                        $cachePath = self::$CACHE_DIRECTORY . '/config.php';
                            Severity: Minor
                            Found in src/Core/Application.php - About 1 hr to fix

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

                                  public static function route()
                                  {
                                      $dispatcher = Application::get('dispatcher');
                                      $request = Application::get('request');
                                      $response = Application::get('response');
                              Severity: Minor
                              Found in src/Core/RouteTrait.php - About 1 hr to fix

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

                                    public function onEvent(GenericEvent $event, $eventName, $dispatchStatus, array $dispatchHandler = null)
                                    {
                                        if ($dispatchStatus == Dispatcher::FOUND) {
                                            if (isset($dispatchHandler['csrf']) && $dispatchHandler['csrf'] === true) {
                                                $csrfToken = $this->request->headers->get('csrfToken');
                                Severity: Minor
                                Found in src/EventListener/CsrfTokenCheckingService.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 verify has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                                Open

                                    public function verify($password, $salt, $hash)
                                    {
                                        $component = explode('|', $hash);
                                        if (count($component) < 2) {
                                            return false;
                                Severity: Minor
                                Found in src/User/PasswordEncoder.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 createUser has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                                Open

                                    public function createUser($username, $password, $email)
                                    {
                                        if (!is_string($username)) {
                                            throw new InvalidArgumentException('username', 'type_invalid');
                                        }
                                Severity: Minor
                                Found in src/User/UserManager.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 generate has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                                Open

                                    public function generate($purpose, $identifier, $expireAt, $data = null, $length = 30)
                                    {
                                        if (!is_string($purpose)) {
                                            throw new InvalidArgumentException('purpose', 'type_invalid');
                                        }
                                Severity: Minor
                                Found in src/Security/TokenManager.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

                                Severity
                                Category
                                Status
                                Source
                                Language