taskrabbit/elasticsearch-dump

View on GitHub
lib/transports/elasticsearch.js

Summary

Maintainability
D
1 day
Test Coverage

Function constructor has 45 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  constructor (parent, url, options) {
    super()
    this.base = parseBaseURL(url, options)
    this.options = options
    this.parent = parent
Severity: Minor
Found in lib/transports/elasticsearch.js - About 1 hr to fix

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

      set (data, limit, offset, callback) {
        const type = this.parent.options.type
        this.version('output', err => {
          if (err) { return callback(err) }
    
    
    Severity: Minor
    Found in lib/transports/elasticsearch.js - About 1 hr to fix

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

        get (limit, offset, callback) {
          const type = this.parent.options.type
          this.version('input', err => {
            if (err) { return callback(err) }
      
      
      Severity: Minor
      Found in lib/transports/elasticsearch.js - About 1 hr to fix

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

              } else if (type === 'component_template' || type === 'index_template') {
                if (semver.gte(this.ESFullversion, '7.8.0')) {
                  this.featureFlag = true
                  this.getTemplates(limit, offset, callback)
                } else {
        Severity: Major
        Found in lib/transports/elasticsearch.js and 1 other location - About 2 hrs to fix
        lib/transports/elasticsearch.js on lines 103..118

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

        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

              } else if (type === 'policy') {
                if (semver.gte(this.ESFullversion, '6.6.0')) {
                  this.featureFlag = true
                  this.getPolicies(limit, offset, callback)
                } else {
        Severity: Major
        Found in lib/transports/elasticsearch.js and 1 other location - About 2 hrs to fix
        lib/transports/elasticsearch.js on lines 96..118

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

        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

              } else if (type === 'component_template' || type === 'index_template') {
                if (semver.gte(this.ESFullversion, '7.8.0')) {
                  this.setTemplates(data, limit, offset, callback)
                } else {
                  callback(new Error(`feature not supported in Elasticsearch ${this.ESFullversion}, only version 7.8.0 or higher`), null)
        Severity: Major
        Found in lib/transports/elasticsearch.js and 2 other locations - About 1 hr to fix
        lib/transports/elasticsearch.js on lines 147..161
        lib/transports/elasticsearch.js on lines 153..161

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

        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

              } else if (type === 'policy') {
                if (semver.gte(this.ESFullversion, '6.6.0')) {
                  this.setPolicies(data, limit, offset, callback)
                } else {
                  callback(new Error(`feature not supported in Elasticsearch ${this.ESFullversion}, only version 6.6.0 or higher`), null)
        Severity: Major
        Found in lib/transports/elasticsearch.js and 2 other locations - About 1 hr to fix
        lib/transports/elasticsearch.js on lines 141..161
        lib/transports/elasticsearch.js on lines 153..161

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

        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

              } else if (type === 'script') {
                if (semver.gte(this.ESFullversion, '7.10.0')) {
                  this.setScripts(data, limit, offset, callback)
                } else {
                  callback(new Error(`feature not supported in Elasticsearch ${this.ESFullversion}, only version 7.10.0 or higher`), null)
        Severity: Major
        Found in lib/transports/elasticsearch.js and 2 other locations - About 1 hr to fix
        lib/transports/elasticsearch.js on lines 141..161
        lib/transports/elasticsearch.js on lines 147..161

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

        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