notduncansmith/summit

View on GitHub

Showing 96 of 96 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

function authenticateFacebook (data) {
  var self = this;

  if (!data.token) {
    throw new Error('`token` is required for Facebook authentication.');
Severity: Major
Found in lib/collection/user.js and 1 other location - About 5 hrs to fix
lib/collection/user.js on lines 366..388

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 151.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

function authenticateTwitter (data) {
  var self = this;

  if (!data.token) {
    throw new Error('`token` is required for Facebook authentication.');
Severity: Major
Found in lib/collection/user.js and 1 other location - About 5 hrs to fix
lib/collection/user.js on lines 342..364

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 151.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

File user.js has 372 lines of code (exceeds 250 allowed). Consider refactoring.
Open

var bcrypt = require('bcrypt')
  , Item = require('./item')
  , _ = require('lodash')
  , Promise = require('bluebird')
  , crypto = require('crypto')
Severity: Minor
Found in lib/collection/user.js - About 4 hrs to fix

    File collection.js has 331 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    var _ = require('lodash')
      , makeForm = require('./collection/forms.js')
      , Promise = require('bluebird')
      , Item = require('./collection/item')
      , UserCollection = require('./collection/user')
    Severity: Minor
    Found in lib/collection.js - About 3 hrs to fix

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

      module.exports = function (app) {
        var router = app.router();
      
        router.post('/page', savePage);
        router.post('/page/:id', savePage);
      Severity: Major
      Found in cms/router.js - About 3 hrs to fix

        File summit.js has 282 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        require('sys').puts = console.log;
        
        var databaseProvider = require('./db')
          , searchProvider = require('./search')
        
        
        Severity: Minor
        Found in lib/summit.js - About 2 hrs to fix

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

          module.exports = function (db, config) {
            var client = new elasticsearch.Client({
              host: config.db.search.host + ':' + config.db.search.port,
              log: 'trace'
            });
          Severity: Major
          Found in lib/drivers/search/elasticsearch.js - About 2 hrs to fix

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            function unsafeFacebookLogin (data) {
              var secret = this.app.env.unsafeLoginSecret
                , token = data.token
                , facebookId = data.facebookId;
            
            
            Severity: Major
            Found in lib/collection/user.js and 1 other location - About 2 hrs to fix
            lib/collection/user.js on lines 390..403

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 90.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            function unsafeTwitterLogin (data) {
              var secret = this.app.env.unsafeLoginSecret
                , token = data.token
                , twitterId = data.twitterId;
            
            
            Severity: Major
            Found in lib/collection/user.js and 1 other location - About 2 hrs to fix
            lib/collection/user.js on lines 405..418

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 90.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Function Summit has 65 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function Summit (userConfig) {
              var viewDir = path.join(Summit.maindir(), 'views');
            
              this.config = configure(userConfig);
              this.env = this.config.environment;
            Severity: Major
            Found in lib/summit.js - About 2 hrs to fix

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

              module.exports = function (app) {
                var coll = app.collection({
                  name: 'ForgotPasswordToken',
                  fields: {
                    email: 'email',
              Severity: Major
              Found in lib/services/forgot_password.js - About 2 hrs to fix

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

                module.exports = function (db, config) {
                  var client = new elasticsearch.Client({
                    host: config.db.search.host + ':' + config.db.search.port,
                    log: 'trace'
                  });
                Severity: Minor
                Found in lib/drivers/search/elasticsearch.js - About 2 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 exports has 62 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                module.exports = function (app) {
                  var router = app.router(false);
                
                  router.post('/forgot-password', function (req, respond, views, ForgotPassword) {
                    return ForgotPassword.withEmail(req.params.email)
                Severity: Major
                Found in lib/middleware/forgot_password_middleware.js - About 2 hrs to fix

                  Function BogartHandlebarsMiddleware has 60 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function BogartHandlebarsMiddleware(viewPaths, options) {
                    if (!viewPaths || !viewPaths.length) {
                      throw new Error('bogart-handlebars missing required parameter `viewsPath`');
                    }
                  
                  
                  Severity: Major
                  Found in lib/middleware/handlebars_middleware.js - About 2 hrs to fix

                    Function defaultConfig has 60 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    module.exports = function defaultConfig (userConfig) {
                      var userConfig = userConfig || {};
                    
                      var hostname = process.env.HOSTNAME || 'localhost'
                        , port = process.env.PORT || 1337
                    Severity: Major
                    Found in lib/configure.js - About 2 hrs to fix

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

                        return function search (opts) {
                          var matchField = opts.exact === false ? 'term' : 'match';
                          var collection = opts.collection;
                          var query = opts.query;
                      
                      
                      Severity: Major
                      Found in lib/drivers/search/elasticsearch.js - About 2 hrs to fix

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

                        function makeMethodRoutes (collection) {
                          var router = collection.router;
                        
                          for (var k in collection.methods) {
                            if (k.indexOf('$GET') === k.length - 4) {
                        Severity: Minor
                        Found in lib/collection/collection_routes.js - About 2 hrs to fix

                          Function _setup has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          Summit.prototype._setup = function () {
                            var self = this;
                            var defaultViewDir = path.join(__dirname, '..', 'views');
                          
                            this.viewDirs.push(defaultViewDir);
                          Severity: Minor
                          Found in lib/summit.js - About 1 hr to fix

                            Function exports has 47 lines of code (exceeds 25 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

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

                              module.exports = function (app) {
                                return app.collection({
                                  name: 'Post',
                                  isPostType: true,
                                  timestamps: true,
                              Severity: Minor
                              Found in cms/post.js - About 1 hr to fix
                                Severity
                                Category
                                Status
                                Source
                                Language