onddo/postfixadmin-cookbook

View on GitHub

Showing 14 of 14 total issues

File metadata.rb has 298 lines of code (exceeds 250 allowed). Consider refactoring.
Open

name 'postfixadmin'
maintainer 'Xabier de Zuazo'
maintainer_email 'xabier@zuazo.org'
license 'Apache 2.0'
description 'Installs and configures PostfixAdmin, a web based interface used '\
Severity: Minor
Found in metadata.rb - About 3 hrs to fix

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

    action :delete do
      self.class.send(:include, Chef::EncryptedAttributesHelpers)
      @encrypted_attributes_enabled = node['postfixadmin']['encrypt_attributes']
      api = PostfixadminCookbook::API.new(ssl, port, login_username, login_password)
      next unless api.domain_exist?(domain)
    Severity: Major
    Found in resources/domain.rb and 3 other locations - About 1 hr to fix
    resources/alias.rb on lines 58..70
    resources/alias_domain.rb on lines 53..65
    resources/mailbox.rb on lines 61..73

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

    action :delete do
      self.class.send(:include, Chef::EncryptedAttributesHelpers)
      @encrypted_attributes_enabled = node['postfixadmin']['encrypt_attributes']
      api = PostfixadminCookbook::API.new(ssl, port, login_username, login_password)
      next unless api.alias_exist?(address)
    Severity: Major
    Found in resources/alias.rb and 3 other locations - About 1 hr to fix
    resources/alias_domain.rb on lines 53..65
    resources/domain.rb on lines 57..69
    resources/mailbox.rb on lines 61..73

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

    action :delete do
      self.class.send(:include, Chef::EncryptedAttributesHelpers)
      @encrypted_attributes_enabled = node['postfixadmin']['encrypt_attributes']
      api = PostfixadminCookbook::API.new(ssl, port, login_username, login_password)
      next unless api.alias_domain_exist?(alias_domain)
    Severity: Major
    Found in resources/alias_domain.rb and 3 other locations - About 1 hr to fix
    resources/alias.rb on lines 58..70
    resources/domain.rb on lines 57..69
    resources/mailbox.rb on lines 61..73

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

    action :delete do
      self.class.send(:include, Chef::EncryptedAttributesHelpers)
      @encrypted_attributes_enabled = node['postfixadmin']['encrypt_attributes']
      api = PostfixadminCookbook::API.new(ssl, port, login_username, login_password)
      next unless api.mailbox_exist?(mailbox)
    Severity: Major
    Found in resources/mailbox.rb and 3 other locations - About 1 hr to fix
    resources/alias.rb on lines 58..70
    resources/alias_domain.rb on lines 53..65
    resources/domain.rb on lines 57..69

    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

    Method initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

            def initialize(method, path, body, ssl, port)
    Severity: Minor
    Found in libraries/api_http.rb - About 35 mins to fix

      Method request has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

            def request(method, path, body, ssl, port)
      Severity: Minor
      Found in libraries/api_http.rb - About 35 mins to fix

        Method parse_response has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

              def parse_response(body, regexps = nil)
                (regexps ? [regexps].flatten : ERROR_REGEXS).each do |regexp|
                  next unless body.match(regexp)
                  error(strip_html(body.gsub(regexp, '\1')))
                end
        Severity: Minor
        Found in libraries/api_http.rb - About 35 mins 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

        Method create_to_table has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def create_to_table(table, value)
              %i(active superadmin welcome_mail default_aliases).each do |key|
                value[key] = value[key] ? 1 : 0 if value.key?(key)
              end
              value[:password2] = value[:password] if value.key?(:password)
        Severity: Minor
        Found in libraries/api.rb - About 35 mins 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

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

            default['postfixadmin']['packages']['requirements'] =
              %w(php53-imap php53-mbstring)
            default['postfixadmin']['packages']['mysql'] = %w(php53-mysql)
            default['postfixadmin']['packages']['postgresql'] = %w(php53-pgsql)
        Severity: Minor
        Found in attributes/packages.rb and 1 other location - About 25 mins to fix
        attributes/packages.rb on lines 30..33

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

        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

            default['postfixadmin']['packages']['requirements'] =
              %w(php-imap php-mbstring)
            default['postfixadmin']['packages']['mysql'] = %w(php-mysql)
            default['postfixadmin']['packages']['postgresql'] = %w(php-pgsql)
        Severity: Minor
        Found in attributes/packages.rb and 1 other location - About 25 mins to fix
        attributes/packages.rb on lines 25..28

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

        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

          default['postfixadmin']['packages']['requirements'] = %w(php5-imap)
          default['postfixadmin']['packages']['mysql'] = %w(php5-mysql)
          default['postfixadmin']['packages']['postgresql'] = %w(php5-pgsql)
        Severity: Minor
        Found in attributes/packages.rb and 2 other locations - About 20 mins to fix
        attributes/packages.rb on lines 37..39
        attributes/packages.rb on lines 41..43

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

        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

            default['postfixadmin']['packages']['requirements'] = %w(php5-imap)
            default['postfixadmin']['packages']['mysql'] = %w(php5-mysql)
            default['postfixadmin']['packages']['postgresql'] = %w(php5-pgsql)
        Severity: Minor
        Found in attributes/packages.rb and 2 other locations - About 20 mins to fix
        attributes/packages.rb on lines 41..43
        attributes/packages.rb on lines 46..48

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

        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

            default['postfixadmin']['packages']['requirements'] = %w(php-imap)
            default['postfixadmin']['packages']['mysql'] = %w(php-mysql)
            default['postfixadmin']['packages']['postgresql'] = %w(php-pgsql)
        Severity: Minor
        Found in attributes/packages.rb and 2 other locations - About 20 mins to fix
        attributes/packages.rb on lines 37..39
        attributes/packages.rb on lines 46..48

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

        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