notduncansmith/summit

View on GitHub

Showing 51 of 96 total issues

Function exports has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function (app) {
  return app.collection({
    name: 'Page',
    isPostType: true,
    timestamps: true,
Severity: Minor
Found in cms/page.js - About 1 hr to fix

    Function bogartHandlebarsCallback has 40 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      var callback = function bogartHandlebarsCallback(app, injector, next) {
        var localsDefaults = {};
    
        return Promise.all(loadViews)
        .then(function (viewMapArray) {
    Severity: Minor
    Found in lib/middleware/handlebars_middleware.js - About 1 hr to fix

      Function exports has 40 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      module.exports = function (db) {
        return function search (opts) {
          var opts = _.extend({}, {include_docs: true}, opts || {});
      
          if (!opts.filter && opts.collection) {
      Severity: Minor
      Found in lib/drivers/search/pouch.js - About 1 hr to fix

        Function search has 38 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          return function search (opts) {
            var opts = _.extend({}, {include_docs: true}, opts || {});
        
            if (!opts.filter && opts.collection) {
              if (typeof opts.collection === 'string') {
        Severity: Minor
        Found in lib/drivers/search/pouch.js - About 1 hr to fix

          Function setup has 37 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          Collection.prototype.setup = function () {
            var doc = helpers.designDoc(this);
            var self = this;
            var ensureStaticDocs = [];
          
          
          Severity: Minor
          Found in lib/collection.js - About 1 hr to fix

            Function search has 37 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            Collection.prototype.search = function (opts, filtered) {
              /*
                Only supports ElasticSearch since
                that's what apps currently in
                production were using before the
            Severity: Minor
            Found in lib/collection.js - About 1 hr to fix

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

              module.exports = function facebook (app) {
                var router = app.router(false);
              
                router.get('/facebook/login', function facebookLogin (req, next) {
              
              
              Severity: Minor
              Found in lib/middleware/facebook_middleware.js - About 1 hr to fix

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

                function getInput (name, type) {
                  var base = '<div class="form-group">'
                    , $ = cheerio.load(base);
                
                  switch (type) {
                Severity: Minor
                Found in lib/collection/forms.js - About 1 hr to fix

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

                  function errorResponse(config, req, err) {
                    var message = '<h3>Message:</h3>';
                  
                    if (config.showError) {
                      if (typeof err === 'string') {
                  Severity: Minor
                  Found in lib/middleware/error_middleware.js - About 1 hr to fix

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

                    function makeApiRoutes (collection) {
                      // Get a router
                      var router = collection.router;
                      var name = inflection.dasherize(collection.name.toLowerCase());
                    
                    
                    Severity: Minor
                    Found in lib/collection/collection_routes.js - About 1 hr to fix

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

                      module.exports = function () {
                        var helpers = [
                            'res'
                          , 'file'
                          , 'text'
                      Severity: Minor
                      Found in lib/summit.js - About 1 hr to fix

                        Function attachments has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        module.exports = function attachments (app) {
                          var router = app.router(false);
                        
                          router.get('/attachment/:docId/:attId', function (req) {
                            var att;
                        Severity: Minor
                        Found in lib/middleware/attachments_middleware.js - About 1 hr to fix

                          Function put has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          Database.prototype.put = function (name, doc, force) {
                            var args = []
                              , self = this;
                          
                            if (force && force === true) {
                          Severity: Minor
                          Found in lib/drivers/database/nano.js - About 1 hr to fix

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

                            Item.prototype.save = function () {
                              var self = this
                                , fields = this._collection.fields
                                , uploadFields
                                , attachmentPaths;
                            Severity: Minor
                            Found in lib/collection/item.js - About 1 hr to fix

                              Function authenticatePassword has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              function authenticatePassword (data) {
                                if (!data.username) {
                                  throw new Error('`username` is required for password authenticate');
                                }
                              
                              
                              Severity: Minor
                              Found in lib/collection/user.js - About 1 hr to fix

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

                                module.exports = function (app) {
                                  var User = app.collection({
                                    name: 'User',
                                    isUserType: true,
                                    fields: {
                                Severity: Minor
                                Found in lib/services/user.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 defaultConfig has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                                Open

                                module.exports = function defaultConfig (userConfig) {
                                  var userConfig = userConfig || {};
                                
                                  var hostname = process.env.HOSTNAME || 'localhost'
                                    , port = process.env.PORT || 1337
                                Severity: Minor
                                Found in lib/configure.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 put has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                Database.prototype.put = function (name, doc, force) {
                                  var args = []
                                    , self = this;
                                
                                  if (force && force === true) {
                                Severity: Minor
                                Found in lib/drivers/database/pouch.js - About 1 hr to fix

                                  Function follow has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                  Collection.prototype.follow = function (opts, handler) {
                                    var opts = opts || {}
                                      , args = {}
                                      , handler = handler || function(){}
                                      , feed;
                                  Severity: Minor
                                  Found in lib/collection.js - About 1 hr to fix

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

                                          withToken: function (token) {
                                            return coll.get(token)
                                            .then(function (fpRecord) {
                                              var timestamp = moment(fpRecord.createdAt, moment.ISO_8601)
                                                , weekAgo = moment().add(1, 'weeks');
                                    Severity: Minor
                                    Found in lib/services/forgot_password.js - About 1 hr to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language