BigstickCarpet/swagger-express-middleware

View on GitHub
lib/request-validator.js

Summary

Maintainability
A
3 hrs
Test Coverage

Function http401 has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function http401 (req, res, next) {
  if (util.isSwaggerRequest(req) && req.swagger.security.length > 0) {
    let securityTypes = [];

    util.debug("Validating security requirements");
Severity: Minor
Found in lib/request-validator.js - About 1 hr to fix

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

    function http415 (req, res, next) {
      if (util.isSwaggerRequest(req)) {
        // Only validate the Content-Type if there's body content
        if (!_.isEmpty(req.body)) {
          // Get the MIME types that this operation consumes
    Severity: Minor
    Found in lib/request-validator.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 http413 has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    function http413 (req, res, next) {
      if (util.isSwaggerRequest(req)) {
        // Determine if the request allows body content
        let bodyAllowed = req.swagger.params.some((param) => {
          return param.in === "body" || param.in === "formData";
    Severity: Minor
    Found in lib/request-validator.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 http406 has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    function http406 (req, res, next) {
      if (util.isSwaggerRequest(req)) {
        // Get the MIME types that this operation produces
        let produces = req.swagger.operation.produces || req.swagger.api.produces || [];
    
    
    Severity: Minor
    Found in lib/request-validator.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

    There are no issues that match your filters.

    Category
    Status