NodeBB/NodeBB

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

Summary

Maintainability
C
1 day
Test Coverage

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

module.exports = function (module) {
    const helpers = require('./helpers');
    const util = require('util');
    const Cursor = require('pg-cursor');
    Cursor.prototype.readAsync = util.promisify(Cursor.prototype.read);
Severity: Minor
Found in src/database/postgres/sorted.js - About 2 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 603 lines of code (exceeds 75 allowed). Consider refactoring.
Invalid

module.exports = function (module) {
    const helpers = require('./helpers');
    const util = require('util');
    const Cursor = require('pg-cursor');
    Cursor.prototype.readAsync = util.promisify(Cursor.prototype.read);
Severity: Major
Found in src/database/postgres/sorted.js - About 2 days to fix

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

    'use strict';
    
    module.exports = function (module) {
        const helpers = require('./helpers');
        const util = require('util');
    Severity: Major
    Found in src/database/postgres/sorted.js - About 4 hrs 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/postgres/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/postgres/sorted.js - About 45 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/postgres/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/postgres/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/postgres/sorted.js - About 35 mins to fix

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

                    async function getSortedSetRange(key, start, stop, sort, withScores) {
                Severity: Minor
                Found in src/database/postgres/sorted.js - About 35 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/postgres/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/postgres/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/postgres/sorted.js - About 35 mins to fix

                        There are no issues that match your filters.

                        Category
                        Status