28msec/28.io-angularjs

View on GitHub

Showing 171 of 171 total issues

Function Datasources has 1301 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        var Datasources = (function() {
            function Datasources(domain, cache) {
                if (typeof(domain) !== 'string') {
                    throw new Error('Domain parameter must be specified as a string.');
                }
Severity: Major
Found in src/datasources.api.28.io.js - About 6 days to fix

    Function Account has 1272 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            var Account = (function() {
                function Account(domain, cache) {
                    if (typeof(domain) !== 'string') {
                        throw new Error('Domain parameter must be specified as a string.');
                    }
    Severity: Major
    Found in src/account.api.28.io.js - About 6 days to fix

      Function Project has 1189 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              var Project = (function() {
                  function Project(domain, cache) {
                      if (typeof(domain) !== 'string') {
                          throw new Error('Domain parameter must be specified as a string.');
                      }
      Severity: Major
      Found in src/project.api.28.io.js - About 5 days to fix

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

                    Account.prototype.getSubscription = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/account.api.28.io.js and 2 other locations - About 4 days to fix
        src/datasources.api.28.io.js on lines 325..412
        src/datasources.api.28.io.js on lines 621..708

        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 740.

        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 3 locations. Consider refactoring.
        Open

                    Datasources.prototype.getDatasource = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/datasources.api.28.io.js and 2 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 1334..1421
        src/datasources.api.28.io.js on lines 621..708

        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 740.

        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 3 locations. Consider refactoring.
        Open

                    Datasources.prototype.getDatasourceContents = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/datasources.api.28.io.js and 2 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 1334..1421
        src/datasources.api.28.io.js on lines 325..412

        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 740.

        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

                    Datasources.prototype.createCollection = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/datasources.api.28.io.js and 1 other location - About 4 days to fix
        src/account.api.28.io.js on lines 1432..1523

        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 739.

        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

                    Account.prototype.updateSubscription = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/account.api.28.io.js and 1 other location - About 4 days to fix
        src/datasources.api.28.io.js on lines 719..810

        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 739.

        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

                    Datasources.prototype.removeCollection = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/datasources.api.28.io.js and 1 other location - About 4 days to fix
        src/datasources.api.28.io.js on lines 1261..1350

        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 729.

        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

                    Datasources.prototype.truncateCollection = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/datasources.api.28.io.js and 1 other location - About 4 days to fix
        src/datasources.api.28.io.js on lines 926..1015

        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 729.

        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

                    Modules.prototype.createModule = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/modules.api.28.io.js and 1 other location - About 4 days to fix
        src/modules.api.28.io.js on lines 341..430

        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 712.

        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

                    Modules.prototype.saveModule = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/modules.api.28.io.js and 1 other location - About 4 days to fix
        src/modules.api.28.io.js on lines 239..328

        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 712.

        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 13 locations. Consider refactoring.
        Open

                    Queries.prototype.getQueryPlan = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/queries.api.28.io.js and 12 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 235..315
        src/account.api.28.io.js on lines 591..671
        src/account.api.28.io.js on lines 858..938
        src/account.api.28.io.js on lines 1140..1220
        src/datasources.api.28.io.js on lines 126..206
        src/modules.api.28.io.js on lines 146..226
        src/project.api.28.io.js on lines 391..471
        src/project.api.28.io.js on lines 742..822
        src/project.api.28.io.js on lines 1074..1154
        src/project.api.28.io.js on lines 1349..1429
        src/queries.api.28.io.js on lines 45..125
        src/queries.api.28.io.js on lines 333..413

        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 683.

        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 13 locations. Consider refactoring.
        Open

                    Project.prototype.getDefaultMongoDBCredentials = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/project.api.28.io.js and 12 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 235..315
        src/account.api.28.io.js on lines 591..671
        src/account.api.28.io.js on lines 858..938
        src/account.api.28.io.js on lines 1140..1220
        src/datasources.api.28.io.js on lines 126..206
        src/modules.api.28.io.js on lines 146..226
        src/project.api.28.io.js on lines 391..471
        src/project.api.28.io.js on lines 1074..1154
        src/project.api.28.io.js on lines 1349..1429
        src/queries.api.28.io.js on lines 45..125
        src/queries.api.28.io.js on lines 333..413
        src/queries.api.28.io.js on lines 705..785

        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 683.

        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 13 locations. Consider refactoring.
        Open

                    Project.prototype.getCustomRewriteRules = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/project.api.28.io.js and 12 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 235..315
        src/account.api.28.io.js on lines 591..671
        src/account.api.28.io.js on lines 858..938
        src/account.api.28.io.js on lines 1140..1220
        src/datasources.api.28.io.js on lines 126..206
        src/modules.api.28.io.js on lines 146..226
        src/project.api.28.io.js on lines 391..471
        src/project.api.28.io.js on lines 742..822
        src/project.api.28.io.js on lines 1074..1154
        src/queries.api.28.io.js on lines 45..125
        src/queries.api.28.io.js on lines 333..413
        src/queries.api.28.io.js on lines 705..785

        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 683.

        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 13 locations. Consider refactoring.
        Open

                    Project.prototype.listCustomDomains = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/project.api.28.io.js and 12 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 235..315
        src/account.api.28.io.js on lines 591..671
        src/account.api.28.io.js on lines 858..938
        src/account.api.28.io.js on lines 1140..1220
        src/datasources.api.28.io.js on lines 126..206
        src/modules.api.28.io.js on lines 146..226
        src/project.api.28.io.js on lines 391..471
        src/project.api.28.io.js on lines 742..822
        src/project.api.28.io.js on lines 1349..1429
        src/queries.api.28.io.js on lines 45..125
        src/queries.api.28.io.js on lines 333..413
        src/queries.api.28.io.js on lines 705..785

        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 683.

        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 13 locations. Consider refactoring.
        Open

                    Account.prototype.checkResetToken = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/account.api.28.io.js and 12 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 235..315
        src/account.api.28.io.js on lines 858..938
        src/account.api.28.io.js on lines 1140..1220
        src/datasources.api.28.io.js on lines 126..206
        src/modules.api.28.io.js on lines 146..226
        src/project.api.28.io.js on lines 391..471
        src/project.api.28.io.js on lines 742..822
        src/project.api.28.io.js on lines 1074..1154
        src/project.api.28.io.js on lines 1349..1429
        src/queries.api.28.io.js on lines 45..125
        src/queries.api.28.io.js on lines 333..413
        src/queries.api.28.io.js on lines 705..785

        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 683.

        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 13 locations. Consider refactoring.
        Open

                    Project.prototype.getProjectMetadata = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/project.api.28.io.js and 12 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 235..315
        src/account.api.28.io.js on lines 591..671
        src/account.api.28.io.js on lines 858..938
        src/account.api.28.io.js on lines 1140..1220
        src/datasources.api.28.io.js on lines 126..206
        src/modules.api.28.io.js on lines 146..226
        src/project.api.28.io.js on lines 742..822
        src/project.api.28.io.js on lines 1074..1154
        src/project.api.28.io.js on lines 1349..1429
        src/queries.api.28.io.js on lines 45..125
        src/queries.api.28.io.js on lines 333..413
        src/queries.api.28.io.js on lines 705..785

        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 683.

        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 13 locations. Consider refactoring.
        Open

                    Modules.prototype.getModule = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/modules.api.28.io.js and 12 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 235..315
        src/account.api.28.io.js on lines 591..671
        src/account.api.28.io.js on lines 858..938
        src/account.api.28.io.js on lines 1140..1220
        src/datasources.api.28.io.js on lines 126..206
        src/project.api.28.io.js on lines 391..471
        src/project.api.28.io.js on lines 742..822
        src/project.api.28.io.js on lines 1074..1154
        src/project.api.28.io.js on lines 1349..1429
        src/queries.api.28.io.js on lines 45..125
        src/queries.api.28.io.js on lines 333..413
        src/queries.api.28.io.js on lines 705..785

        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 683.

        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 13 locations. Consider refactoring.
        Open

                    Account.prototype.getBillingData = function(parameters) {
                        if (parameters === undefined) {
                            parameters = {};
                        }
                        var deferred = $q.defer();
        Severity: Major
        Found in src/account.api.28.io.js and 12 other locations - About 4 days to fix
        src/account.api.28.io.js on lines 235..315
        src/account.api.28.io.js on lines 591..671
        src/account.api.28.io.js on lines 1140..1220
        src/datasources.api.28.io.js on lines 126..206
        src/modules.api.28.io.js on lines 146..226
        src/project.api.28.io.js on lines 391..471
        src/project.api.28.io.js on lines 742..822
        src/project.api.28.io.js on lines 1074..1154
        src/project.api.28.io.js on lines 1349..1429
        src/queries.api.28.io.js on lines 45..125
        src/queries.api.28.io.js on lines 333..413
        src/queries.api.28.io.js on lines 705..785

        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 683.

        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

        Severity
        Category
        Status
        Source
        Language