restocat/restocat

View on GitHub

Showing 16 of 19 total issues

Function requestListener has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  async requestListener(request, response) {
    request.time = response.time = Date.now();
    request.uuid = helpers.uuid();

    this._events.emit('incomingMessage', request);
Severity: Minor
Found in lib/router/RequestRouter.js - About 1 hr to fix

    Function _createDescriptor has 34 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      _createDescriptor(filename) {
        if (!filename) {
          return null;
        }
    
    
    Severity: Minor
    Found in lib/finders/CollectionsFinder.js - About 1 hr to fix

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

        _getContentType(context) {
          let type = context.response.getHeader('Content-Type');
      
          if (!type) {
            if (context.request.accepts(this.acceptable)) {
      Severity: Minor
      Found in lib/FormatterProvider.js - 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 send has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

      ServerResponse.prototype.send = function send(code, body, headers) {
        if (code === undefined) {
          this.statusCode = 200;
        } else if (code.constructor.name === 'Number') {
          this.statusCode = code;
      Severity: Minor
      Found in lib/http/ServerResponse.js - About 55 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 getFormatter has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        getFormatter(context) {
          let formatter;
      
          if (this.formatters === null) {
            this._prepareFormatters();
      Severity: Minor
      Found in lib/FormatterProvider.js - About 55 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 match has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

        match(path) {
          if (!path) {
            return false;
          }
      
      
      Severity: Minor
      Found in lib/router/Route.js - About 45 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 getContentLength has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

      IncomingMessage.prototype.getContentLength = function getContentLength() {
        if (this._clen !== undefined) {
          return (this._clen === false ? undefined : this._clen);
        }
      
      
      Severity: Minor
      Found in lib/http/IncomingMessage.js - About 35 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 header has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

      ServerResponse.prototype.setHeader = function header(name, value) {
        if (value === undefined) {
          return null;
        }
      
      
      Severity: Minor
      Found in lib/http/ServerResponse.js - About 35 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

      Avoid too many return statements within this function.
      Open

            return this.errorHandler(request, response, reason);
      Severity: Major
      Found in lib/router/RequestRouter.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

            return {
              name: collection_name,
              path: pathCollectionJson,
              properties,
              directory,
        Severity: Major
        Found in lib/finders/CollectionsFinder.js - About 30 mins to fix

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

            _getCollection(descriptor) {
              const logic_path = this._getLogicPath(descriptor);
          
              let constructor;
              try {
          Severity: Minor
          Found in lib/loaders/CollectionsLoader.js - 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 requestListener has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            async requestListener(request, response) {
              request.time = response.time = Date.now();
              request.uuid = helpers.uuid();
          
              this._events.emit('incomingMessage', request);
          Severity: Minor
          Found in lib/router/RequestRouter.js - 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 getContentType has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          IncomingMessage.prototype.getContentType = function getContentType() {
            if (this._contentType !== undefined) {
              return (this._contentType);
            }
          
          
          Severity: Minor
          Found in lib/http/IncomingMessage.js - 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 _createDescriptor has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            _createDescriptor(filename) {
              if (!filename) {
                return null;
              }
          
          
          Severity: Minor
          Found in lib/finders/CollectionsFinder.js - 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 constructor has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            constructor(locator) {
          
              /**
               * Service Locator
               * @type {ServiceLocator}
          Severity: Minor
          Found in lib/Server.js - 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 errorHandler has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            async errorHandler(request, response, error) {
              const $context = this._contextFactory.create(request, response);
          
              if (!error) {
                error = new httpErrors.InternalServerError('Call error handler without error');
          Severity: Minor
          Found in lib/router/RequestRouter.js - 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

          Severity
          Category
          Status
          Source
          Language