MaazAli/phanime

View on GitHub
server/restapi/libraryEntries.js

Summary

Maintainability
D
2 days
Test Coverage

Avoid too many return statements within this function.
Open

            return restAPIHelpers.returns.invalidInput();
Severity: Major
Found in server/restapi/libraryEntries.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                return restAPIHelpers.returns.invalidInput();
    Severity: Major
    Found in server/restapi/libraryEntries.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

              return restAPIHelpers.returns.notUnique();
      Severity: Major
      Found in server/restapi/libraryEntries.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                    return restAPIHelpers.returns.invalidInput();
        Severity: Major
        Found in server/restapi/libraryEntries.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                      return restAPIHelpers.returns.invalidInput();
          Severity: Major
          Found in server/restapi/libraryEntries.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                        return restAPIHelpers.returns.invalidInput();
            Severity: Major
            Found in server/restapi/libraryEntries.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                      return restAPIHelpers.returns.invalidInput();
              Severity: Major
              Found in server/restapi/libraryEntries.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                            return restAPIHelpers.returns.invalidInput();
                Severity: Major
                Found in server/restapi/libraryEntries.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                          return restAPIHelpers.returns.responseJSON(response, 201);
                  Severity: Major
                  Found in server/restapi/libraryEntries.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                            return restAPIHelpers.returns.invalidInput();
                    Severity: Major
                    Found in server/restapi/libraryEntries.js - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                              return restAPIHelpers.returns.responseJSON(response);
                      Severity: Major
                      Found in server/restapi/libraryEntries.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                return restAPIHelpers.returns.invalidInput();
                        Severity: Major
                        Found in server/restapi/libraryEntries.js - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                      return restAPIHelpers.returns.invalidInput();
                          Severity: Major
                          Found in server/restapi/libraryEntries.js - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                        return restAPIHelpers.returns.invalidInput();
                            Severity: Major
                            Found in server/restapi/libraryEntries.js - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                          return restAPIHelpers.returns.invalidInput();
                              Severity: Major
                              Found in server/restapi/libraryEntries.js - About 30 mins to fix

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

                                    if (updatedLibraryEntry.episodesSeen) {
                                    
                                        // We aren't doing an exhaustive check like figuring out if the episodesSeen lies 
                                        // in between the total episodes or not.
                                        // we really should be doing that though.
                                Severity: Minor
                                Found in server/restapi/libraryEntries.js and 1 other location - About 55 mins to fix
                                server/restapi/libraryEntries.js on lines 185..194

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

                                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

                                    if (libraryEntry.episodesSeen) {
                                    
                                        // We aren't doing an exhaustive check like figuring out if the episodesSeen lies 
                                        // in between the total episodes or not.
                                        // we really should be doing that though.
                                Severity: Minor
                                Found in server/restapi/libraryEntries.js and 1 other location - About 55 mins to fix
                                server/restapi/libraryEntries.js on lines 56..65

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

                                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

                                    if (updatedLibraryEntry.rewatching) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkRewatching(updatedLibraryEntry.Rewatching)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Minor
                                Found in server/restapi/libraryEntries.js and 1 other location - About 55 mins to fix
                                server/restapi/libraryEntries.js on lines 232..239

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

                                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

                                    if (libraryEntry.rewatching) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkRewatching(libraryEntry.Rewatching)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Minor
                                Found in server/restapi/libraryEntries.js and 1 other location - About 55 mins to fix
                                server/restapi/libraryEntries.js on lines 103..110

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

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

                                    if (updatedLibraryEntry.privacy) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkPrivacy(updatedLibraryEntry.privacy)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Major
                                Found in server/restapi/libraryEntries.js and 7 other locations - About 50 mins to fix
                                server/restapi/libraryEntries.js on lines 67..74
                                server/restapi/libraryEntries.js on lines 76..83
                                server/restapi/libraryEntries.js on lines 94..101
                                server/restapi/libraryEntries.js on lines 196..203
                                server/restapi/libraryEntries.js on lines 205..212
                                server/restapi/libraryEntries.js on lines 214..221
                                server/restapi/libraryEntries.js on lines 223..230

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

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

                                    if (libraryEntry.comments) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkComments(libraryEntry.comments)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Major
                                Found in server/restapi/libraryEntries.js and 7 other locations - About 50 mins to fix
                                server/restapi/libraryEntries.js on lines 67..74
                                server/restapi/libraryEntries.js on lines 76..83
                                server/restapi/libraryEntries.js on lines 85..92
                                server/restapi/libraryEntries.js on lines 94..101
                                server/restapi/libraryEntries.js on lines 205..212
                                server/restapi/libraryEntries.js on lines 214..221
                                server/restapi/libraryEntries.js on lines 223..230

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

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

                                    if (libraryEntry.privacy) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkPrivacy(libraryEntry.privacy)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Major
                                Found in server/restapi/libraryEntries.js and 7 other locations - About 50 mins to fix
                                server/restapi/libraryEntries.js on lines 67..74
                                server/restapi/libraryEntries.js on lines 76..83
                                server/restapi/libraryEntries.js on lines 85..92
                                server/restapi/libraryEntries.js on lines 94..101
                                server/restapi/libraryEntries.js on lines 196..203
                                server/restapi/libraryEntries.js on lines 205..212
                                server/restapi/libraryEntries.js on lines 223..230

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

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

                                    if (libraryEntry.highPriority) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkHighPriority(libraryEntry.highPriority)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Major
                                Found in server/restapi/libraryEntries.js and 7 other locations - About 50 mins to fix
                                server/restapi/libraryEntries.js on lines 67..74
                                server/restapi/libraryEntries.js on lines 76..83
                                server/restapi/libraryEntries.js on lines 85..92
                                server/restapi/libraryEntries.js on lines 94..101
                                server/restapi/libraryEntries.js on lines 196..203
                                server/restapi/libraryEntries.js on lines 205..212
                                server/restapi/libraryEntries.js on lines 214..221

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

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

                                    if (libraryEntry.rating) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkRating(libraryEntry.rating)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Major
                                Found in server/restapi/libraryEntries.js and 7 other locations - About 50 mins to fix
                                server/restapi/libraryEntries.js on lines 67..74
                                server/restapi/libraryEntries.js on lines 76..83
                                server/restapi/libraryEntries.js on lines 85..92
                                server/restapi/libraryEntries.js on lines 94..101
                                server/restapi/libraryEntries.js on lines 196..203
                                server/restapi/libraryEntries.js on lines 214..221
                                server/restapi/libraryEntries.js on lines 223..230

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

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

                                    if (updatedLibraryEntry.rating) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkRating(updatedLibraryEntry.rating)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Major
                                Found in server/restapi/libraryEntries.js and 7 other locations - About 50 mins to fix
                                server/restapi/libraryEntries.js on lines 67..74
                                server/restapi/libraryEntries.js on lines 85..92
                                server/restapi/libraryEntries.js on lines 94..101
                                server/restapi/libraryEntries.js on lines 196..203
                                server/restapi/libraryEntries.js on lines 205..212
                                server/restapi/libraryEntries.js on lines 214..221
                                server/restapi/libraryEntries.js on lines 223..230

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

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

                                    if (updatedLibraryEntry.comments) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkComments(updatedLibraryEntry.comments)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Major
                                Found in server/restapi/libraryEntries.js and 7 other locations - About 50 mins to fix
                                server/restapi/libraryEntries.js on lines 76..83
                                server/restapi/libraryEntries.js on lines 85..92
                                server/restapi/libraryEntries.js on lines 94..101
                                server/restapi/libraryEntries.js on lines 196..203
                                server/restapi/libraryEntries.js on lines 205..212
                                server/restapi/libraryEntries.js on lines 214..221
                                server/restapi/libraryEntries.js on lines 223..230

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

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

                                    if (updatedLibraryEntry.highPriority) {
                                    
                                        // if we don't pass we should return
                                        if (!restAPIHelpers.allowedValues.checkHighPriority(updatedLibraryEntry.highPriority)) {
                                            return restAPIHelpers.returns.invalidInput();
                                Severity: Major
                                Found in server/restapi/libraryEntries.js and 7 other locations - About 50 mins to fix
                                server/restapi/libraryEntries.js on lines 67..74
                                server/restapi/libraryEntries.js on lines 76..83
                                server/restapi/libraryEntries.js on lines 85..92
                                server/restapi/libraryEntries.js on lines 196..203
                                server/restapi/libraryEntries.js on lines 205..212
                                server/restapi/libraryEntries.js on lines 214..221
                                server/restapi/libraryEntries.js on lines 223..230

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

                                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

                                    var response = {libraryEntry: LibraryEntries.findOne({_id: this.params._id, userId: this.user._id })};
                                Severity: Minor
                                Found in server/restapi/libraryEntries.js and 1 other location - About 35 mins to fix
                                server/restapi/libraryEntries.js on lines 117..117

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

                                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

                                        var response = {libraryEntry: LibraryEntries.findOne({_id: this.params._id, userId: this.user._id })};
                                Severity: Minor
                                Found in server/restapi/libraryEntries.js and 1 other location - About 35 mins to fix
                                server/restapi/libraryEntries.js on lines 27..27

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

                                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