NodeBB/NodeBB

View on GitHub
src/database/mongo/sorted.js

Summary

Maintainability
C
1 day
Test Coverage

Function exports has a Cognitive Complexity of 185 (exceeds 10 allowed). Consider refactoring.
Invalid

module.exports = function (module) {
    const helpers = require('./helpers');
    const dbHelpers = require('../helpers');

    const util = require('util');
Severity: Minor
Found in src/database/mongo/sorted.js - About 3 days 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 exports has 516 lines of code (exceeds 75 allowed). Consider refactoring.
Invalid

module.exports = function (module) {
    const helpers = require('./helpers');
    const dbHelpers = require('../helpers');

    const util = require('util');
Severity: Major
Found in src/database/mongo/sorted.js - About 2 days to fix

    File sorted.js has 521 lines of code (exceeds 500 allowed). Consider refactoring.
    Open

    'use strict';
    
    const _ = require('lodash');
    const utils = require('../../utils');
    
    
    Severity: Major
    Found in src/database/mongo/sorted.js - About 2 hrs to fix

      Function getSortedSetRange has 76 lines of code (exceeds 75 allowed). Consider refactoring.
      Open

          async function getSortedSetRange(key, start, stop, min, max, sort, withScores) {
              if (!key) {
                  return;
              }
              const isArray = Array.isArray(key);
      Severity: Major
      Found in src/database/mongo/sorted.js - About 1 hr to fix

        Function getSortedSetRange has 7 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            async function getSortedSetRange(key, start, stop, min, max, sort, withScores) {
        Severity: Major
        Found in src/database/mongo/sorted.js - About 50 mins to fix

          Function getSortedSetRangeByScore has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              async function getSortedSetRangeByScore(key, start, count, min, max, sort, withScores) {
          Severity: Major
          Found in src/database/mongo/sorted.js - About 50 mins to fix

            Function sortedSetLex has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                async function sortedSetLex(key, min, max, sort, start, count) {
            Severity: Minor
            Found in src/database/mongo/sorted.js - About 45 mins to fix

              Function getSortedSetRangeByScoreWithScores has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  module.getSortedSetRangeByScoreWithScores = async function (key, start, count, min, max) {
              Severity: Minor
              Found in src/database/mongo/sorted.js - About 35 mins to fix

                Function getSortedSetRevRangeByScoreWithScores has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    module.getSortedSetRevRangeByScoreWithScores = async function (key, start, count, max, min) {
                Severity: Minor
                Found in src/database/mongo/sorted.js - About 35 mins to fix

                  Function getSortedSetRangeByLex has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      module.getSortedSetRangeByLex = async function (key, min, max, start, count) {
                  Severity: Minor
                  Found in src/database/mongo/sorted.js - About 35 mins to fix

                    Function getSortedSetRevRangeByScore has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        module.getSortedSetRevRangeByScore = async function (key, start, count, max, min) {
                    Severity: Minor
                    Found in src/database/mongo/sorted.js - About 35 mins to fix

                      Function getSortedSetRangeByScore has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          module.getSortedSetRangeByScore = async function (key, start, count, min, max) {
                      Severity: Minor
                      Found in src/database/mongo/sorted.js - About 35 mins to fix

                        Function getSortedSetRevRangeByLex has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            module.getSortedSetRevRangeByLex = async function (key, max, min, start, count) {
                        Severity: Minor
                        Found in src/database/mongo/sorted.js - About 35 mins to fix

                          There are no issues that match your filters.

                          Category
                          Status