RackHD/on-wss

View on GitHub

Showing 11 of 17 total issues

Function webSocketServiceFactory has 188 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function webSocketServiceFactory(
    Logger,
    serviceConfiguration,
    uuid,
    WebSocketError,
Severity: Major
Found in lib/ws-service.js - About 7 hrs to fix

    Function webSocketServiceFactory has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
    Open

    function webSocketServiceFactory(
        Logger,
        serviceConfiguration,
        uuid,
        WebSocketError,
    Severity: Minor
    Found in lib/ws-service.js - About 6 hrs 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 webSocketResourcesFactory has 96 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function webSocketResourcesFactory(Constants, Logger, collections, messenger) {
        var logger = Logger.initialize(webSocketResourcesFactory);
    
        return {
            catalogs: mongoCollectionResource(collections, 'catalogs', 'catalogs'),
    Severity: Major
    Found in lib/ws-resources.js - About 3 hrs to fix

      Function prepareGrunt has 92 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function prepareGrunt(grunt) {
          var allFiles = [
              'package.json',
              'Gruntfile.js',
              'lib/**/*.js',
      Severity: Major
      Found in Gruntfile.js - About 3 hrs to fix

        Function onWssContextFactory has 54 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function onWssContextFactory() {
            var core = onCore(),
                helper = core.helper,
                di = core.di;
        
        
        Severity: Major
        Found in index.js - About 2 hrs to fix

          Function _handleConnection has 50 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  _handleConnection(wsConn) {
                      wsConn.id = uuid('v4');
                      this.sessions[wsConn.id] = wsConn;
                      logger.debug('Client: %s connected to WebSocketServer.'.format(wsConn.id));
                      wsConn.addWatcher = (params, watcher) => {
          Severity: Minor
          Found in lib/ws-service.js - About 2 hrs to fix

            Function mongoCollectionResource has 48 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                function mongoCollectionResource(collections, name, resource) {
                    return {
                        query: function (msg, wsConn) {
                            return collections[name].find(msg.params).then(
                                function (items) { wsConn.sendList(resource, items); },
            Severity: Minor
            Found in lib/ws-resources.js - About 1 hr to fix

              Function constructor has 35 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      constructor() {
                          this.handlers = this._defaultMessageHandlers(),
                          this.resources = webSocketResources;
                          this.sessions = {};
                          var app = express();
              Severity: Minor
              Found in lib/ws-service.js - About 1 hr to fix

                Function run has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        run: function () {
                            var logger = this.logger,
                                messenger = this.messenger,
                                waterline = this.waterline,
                                wss = this.wss;
                Severity: Minor
                Found in index.js - About 1 hr to fix

                  Function start has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                          start(callback) {
                              try {
                                  logger.info('Creating WebSocketServer, and initializing WebSocketService...');
                                  this.webSocketServer = new WebSocketServer(this.wssOptions);
                                  this.webSocketServer.on('connection', this._handleConnection.bind(this));
                  Severity: Minor
                  Found in lib/ws-service.js - About 1 hr to fix

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

                        Logger,
                        serviceConfiguration,
                        uuid,
                        WebSocketError,
                        webSocketResources,
                    Severity: Minor
                    Found in lib/ws-service.js - About 45 mins to fix
                      Severity
                      Category
                      Status
                      Source
                      Language