Strider-CD/strider

View on GitHub
apps/strider/dist-lib/routes/api/repo.js

Summary

Maintainability
F
2 wks
Test Coverage

Function createProject has 130 lines of code (exceeds 25 allowed). Consider refactoring.
Open

exports.createProject = function (req, res, next) {
    if (req.params.org === 'auth') {
        return next();
    }
    let name = `${req.params.org}/${req.params.repo}`;
Severity: Major
Found in apps/strider/dist-lib/routes/api/repo.js - About 5 hrs to fix

    Function createProject has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

    exports.createProject = function (req, res, next) {
        if (req.params.org === 'auth') {
            return next();
        }
        let name = `${req.params.org}/${req.params.repo}`;
    Severity: Minor
    Found in apps/strider/dist-lib/routes/api/repo.js - About 3 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 createProjectWithKey has 44 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function createProjectWithKey(err, privkey, pubkey) {
            if (err)
                return error(500, 'Failed to generate ssh keypair');
            const project = {
                name: name,
    Severity: Minor
    Found in apps/strider/dist-lib/routes/api/repo.js - About 1 hr to fix

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

      exports.deleteProject = function (req, res) {
          async.parallel([
              function (next) {
                  const provider = req.project.provider;
                  const plugin = common.extensions.provider[provider.id];
      Severity: Minor
      Found in apps/strider/dist-lib/routes/api/repo.js - About 1 hr to fix

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

            function projectCreated(err, p) {
                if (err) {
                    debug(`Error creating repo ${name} for user ${req.user.email}: ${err}`);
                    debug(err.stack);
                    return error(500, 'internal server error');
        Severity: Minor
        Found in apps/strider/dist-lib/routes/api/repo.js - About 1 hr to fix

          Avoid too many return statements within this function.
          Open

                      return error(400, 'provider.repo_id is required');
          Severity: Major
          Found in apps/strider/dist-lib/routes/api/repo.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                    return error(400, 'Project type specified is not available; one or more required plugins is not installed');
            Severity: Major
            Found in apps/strider/dist-lib/routes/api/repo.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                      return error(400, 'Invalid project type specified');
              Severity: Major
              Found in apps/strider/dist-lib/routes/api/repo.js - About 30 mins to fix

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

                exports.createProject = function (req, res, next) {
                    if (req.params.org === 'auth') {
                        return next();
                    }
                    let name = `${req.params.org}/${req.params.repo}`;
                Severity: Major
                Found in apps/strider/dist-lib/routes/api/repo.js and 1 other location - About 1 wk to fix
                apps/strider/lib/routes/api/repo.js on lines 107..282

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

                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

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

                exports.deleteProject = function (req, res) {
                    async.parallel([
                        function (next) {
                            const provider = req.project.provider;
                            const plugin = common.extensions.provider[provider.id];
                Severity: Major
                Found in apps/strider/dist-lib/routes/api/repo.js and 1 other location - About 2 days to fix
                apps/strider/lib/routes/api/repo.js on lines 296..354

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

                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

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

                function clearProjectCache(project, cb) {
                    const runners = [];
                    const tasks = [];
                    project.branches.forEach(function (branch) {
                        const nonMasterMirrored = branch.name !== 'master' && branch.mirror_master;
                Severity: Major
                Found in apps/strider/dist-lib/routes/api/repo.js and 1 other location - About 1 day to fix
                apps/strider/lib/routes/api/repo.js on lines 62..89

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

                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

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

                function makePlugins(plugins) {
                    const configs = [];
                    let plugin;
                    for (let i = 0; i < plugins.length; i++) {
                        plugin = common.extensions.job[plugins[i]];
                Severity: Major
                Found in apps/strider/dist-lib/routes/api/repo.js and 1 other location - About 4 hrs to fix
                apps/strider/lib/routes/api/repo.js on lines 15..34

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

                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

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

                exports.clearCache = function (req, res) {
                    clearProjectCache(req.project, function (err, result) {
                        if (err) {
                            return res.status(500).send('failed to clear cache');
                        }
                Severity: Major
                Found in apps/strider/dist-lib/routes/api/repo.js and 1 other location - About 3 hrs to fix
                apps/strider/lib/routes/api/repo.js on lines 48..60

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

                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

                There are no issues that match your filters.

                Category
                Status