lsm/micromono

View on GitHub
lib/web/router.js

Summary

Maintainability
C
1 day
Test Coverage

Function rebuildRemoteMiddlewares has 70 lines of code (exceeds 25 allowed). Consider refactoring.
Open

exports.rebuildRemoteMiddlewares = function(middlewares, service) {
  Object.keys(middlewares).forEach(function(mName) {
    var middleware = middlewares[mName]
    var _path = middleware.path

Severity: Major
Found in lib/web/router.js - About 2 hrs to fix

    Function handler has 58 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        var handler = function() {
          return function(req, res, next) {
            var provider = service.scheduler.get()
            if (!provider) {
              exports.noProviderAvailable(req, res, next)
    Severity: Major
    Found in lib/web/router.js - About 2 hrs to fix

      Function getProxyHandler has 45 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      exports.getProxyHandler = function(scheduler, httpServer, upgradeUrl) {
        var proxy = httpProxy.createProxyServer({})
      
        if (httpServer && upgradeUrl) {
          var re = new RegExp('^' + upgradeUrl)
      Severity: Minor
      Found in lib/web/router.js - About 1 hr to fix

        Function normalizeRoutes has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        exports.normalizeRoutes = function(route, page, pageApiBaseUrl) {
          var _routes = {}
        
          Object.keys(route).forEach(function(routePath) {
            var middleware
        Severity: Minor
        Found in lib/web/router.js - About 1 hr to fix

          Function generateRouteByName has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          exports.generateRouteByName = function(routeName, defaultMethod) {
            if ('string' === typeof routeName) {
              var _path = routeName.split('::')
              var method = defaultMethod || 'get'
              var route = {
          Severity: Minor
          Found in lib/web/router.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

          There are no issues that match your filters.

          Category
          Status