mashirozx/mastodon

View on GitHub
lib/mastodon/maintenance_cli.rb

Summary

Maintainability
F
4 days
Test Coverage

File maintenance_cli.rb has 525 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require 'tty-prompt'
require_relative '../../config/boot'
require_relative '../../config/environment'
require_relative 'cli_helper'

Severity: Major
Found in lib/mastodon/maintenance_cli.rb - About 1 day to fix

    Class MaintenanceCLI has 28 methods (exceeds 20 allowed). Consider refactoring.
    Open

      class MaintenanceCLI < Thor
        include CLIHelper
    
        def self.exit_on_failure?
          true
    Severity: Minor
    Found in lib/mastodon/maintenance_cli.rb - About 3 hrs to fix

      Method merge_with! has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

            def merge_with!(other_account)
              # Since it's the same remote resource, the remote resource likely
              # already believes we are following/blocking, so it's safe to
              # re-attribute the relationships too. However, during the presence
              # of the index bug users could have *also* followed the reference
      Severity: Minor
      Found in lib/mastodon/maintenance_cli.rb - About 2 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

      Method deduplicate_users! has 48 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def deduplicate_users!
            remove_index_if_exists!(:users, 'index_users_on_confirmation_token')
            remove_index_if_exists!(:users, 'index_users_on_email')
            remove_index_if_exists!(:users, 'index_users_on_remember_token')
            remove_index_if_exists!(:users, 'index_users_on_reset_password_token')
      Severity: Minor
      Found in lib/mastodon/maintenance_cli.rb - About 1 hr to fix

        Method merge_statuses! has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            def merge_statuses!(main_status, duplicate_status)
              owned_classes = [Favourite, Mention, Poll]
              owned_classes << Bookmark if ActiveRecord::Base.connection.table_exists?(:bookmarks)
              owned_classes.each do |klass|
                klass.where(status_id: duplicate_status.id).find_each do |record|
        Severity: Minor
        Found in lib/mastodon/maintenance_cli.rb - About 1 hr 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 merge_with! has 41 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              def merge_with!(other_account)
                # Since it's the same remote resource, the remote resource likely
                # already believes we are following/blocking, so it's safe to
                # re-attribute the relationships too. However, during the presence
                # of the index bug users could have *also* followed the reference
        Severity: Minor
        Found in lib/mastodon/maintenance_cli.rb - About 1 hr to fix

          Method fix_duplicates has 36 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              def fix_duplicates
                @prompt = TTY::Prompt.new
          
                if ActiveRecord::Migrator.current_version < MIN_SUPPORTED_VERSION
                  @prompt.error 'Your version of the database schema is too old and is not supported by this script.'
          Severity: Minor
          Found in lib/mastodon/maintenance_cli.rb - About 1 hr to fix

            Method merge_statuses! has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                def merge_statuses!(main_status, duplicate_status)
                  owned_classes = [Favourite, Mention, Poll]
                  owned_classes << Bookmark if ActiveRecord::Base.connection.table_exists?(:bookmarks)
                  owned_classes.each do |klass|
                    klass.where(status_id: duplicate_status.id).find_each do |record|
            Severity: Minor
            Found in lib/mastodon/maintenance_cli.rb - About 1 hr to fix

              Method fix_duplicates has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                  def fix_duplicates
                    @prompt = TTY::Prompt.new
              
                    if ActiveRecord::Migrator.current_version < MIN_SUPPORTED_VERSION
                      @prompt.error 'Your version of the database schema is too old and is not supported by this script.'
              Severity: Minor
              Found in lib/mastodon/maintenance_cli.rb - About 55 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

                  def deduplicate_account_identity_proofs!
                    return unless ActiveRecord::Base.connection.table_exists?(:account_identity_proofs)
              
                    remove_index_if_exists!(:account_identity_proofs, 'index_account_proofs_on_account_and_provider_and_username')
              
              
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 1 other location - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 311..323

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

              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

                  def deduplicate_announcement_reactions!
                    return unless ActiveRecord::Base.connection.table_exists?(:announcement_reactions)
              
                    remove_index_if_exists!(:announcement_reactions, 'index_announcement_reactions_on_account_id_and_announcement_id')
              
              
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 1 other location - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 297..309

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

              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

                  def deduplicate_webauthn_credentials!
                    return unless ActiveRecord::Base.connection.table_exists?(:webauthn_credentials)
              
                    remove_index_if_exists!(:webauthn_credentials, 'index_webauthn_credentials_on_external_id')
              
              
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 1 other location - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 422..434

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

              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

                  def deduplicate_unavailable_domains!
                    return unless ActiveRecord::Base.connection.table_exists?(:unavailable_domains)
              
                    remove_index_if_exists!(:unavailable_domains, 'index_unavailable_domains_on_domain')
              
              
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 1 other location - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 520..532

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

              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

                  def deduplicate_domain_allows!
                    remove_index_if_exists!(:domain_allows, 'index_domain_allows_on_domain')
              
                    @prompt.say 'Deduplicating domain_allows…'
                    ActiveRecord::Base.connection.select_all("SELECT string_agg(id::text, ',') AS ids FROM domain_allows GROUP BY domain HAVING count(*) > 1").each do |row|
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 1 other location - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 465..475

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

              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

                  def deduplicate_preview_cards!
                    remove_index_if_exists!(:preview_cards, 'index_preview_cards_on_url')
              
                    @prompt.say 'Deduplicating preview_cards…'
                    ActiveRecord::Base.connection.select_all("SELECT string_agg(id::text, ',') AS ids FROM preview_cards GROUP BY url HAVING count(*) > 1").each do |row|
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 1 other location - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 386..396

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

              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

                    ActiveRecord::Base.connection.select_all("SELECT string_agg(id::text, ',') AS ids FROM users WHERE reset_password_token IS NOT NULL GROUP BY reset_password_token HAVING count(*) > 1").each do |row|
                      users = User.where(id: row['ids'].split(',')).sort_by(&:updated_at).reverse.drop(1)
                      @prompt.warn "Unsetting password reset token for those accounts: #{users.map(&:account).map(&:acct).join(', ')}"
              
                      users.each do |user|
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 2 other locations - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 244..249
              lib/mastodon/maintenance_cli.rb on lines 254..259

              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

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

                    ActiveRecord::Base.connection.select_all("SELECT string_agg(id::text, ',') AS ids FROM users WHERE confirmation_token IS NOT NULL GROUP BY confirmation_token HAVING count(*) > 1").each do |row|
                      users = User.where(id: row['ids'].split(',')).sort_by(&:created_at).reverse.drop(1)
                      @prompt.warn "Unsetting confirmation token for those accounts: #{users.map(&:account).map(&:acct).join(', ')}"
              
                      users.each do |user|
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 2 other locations - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 254..259
              lib/mastodon/maintenance_cli.rb on lines 264..269

              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

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

                      ActiveRecord::Base.connection.select_all("SELECT string_agg(id::text, ',') AS ids FROM users WHERE remember_token IS NOT NULL GROUP BY remember_token HAVING count(*) > 1").each do |row|
                        users = User.where(id: row['ids'].split(',')).sort_by(&:updated_at).reverse.drop(1)
                        @prompt.warn "Unsetting remember token for those accounts: #{users.map(&:account).map(&:acct).join(', ')}"
              
                        users.each do |user|
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 2 other locations - About 1 hr to fix
              lib/mastodon/maintenance_cli.rb on lines 244..249
              lib/mastodon/maintenance_cli.rb on lines 264..269

              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

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

                    ActiveRecord::Base.connection.select_all("SELECT string_agg(id::text, ',') AS ids FROM conversations WHERE uri IS NOT NULL GROUP BY uri HAVING count(*) > 1").each do |row|
                      conversations = Conversation.where(id: row['ids'].split(',')).sort_by(&:id).reverse
              
                      ref_conversation = conversations.shift
              
              
              Severity: Minor
              Found in lib/mastodon/maintenance_cli.rb and 2 other locations - About 35 mins to fix
              lib/mastodon/maintenance_cli.rb on lines 352..359
              lib/mastodon/maintenance_cli.rb on lines 371..378

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

              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

                    ActiveRecord::Base.connection.select_all("SELECT string_agg(id::text, ',') AS ids FROM custom_emoji_categories GROUP BY name HAVING count(*) > 1").each do |row|
                      categories = CustomEmojiCategory.where(id: row['ids'].split(',')).sort_by(&:id).reverse
              
                      ref_category = categories.shift
              
              
              Severity: Minor
              Found in lib/mastodon/maintenance_cli.rb and 2 other locations - About 35 mins to fix
              lib/mastodon/maintenance_cli.rb on lines 329..336
              lib/mastodon/maintenance_cli.rb on lines 352..359

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

              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

                    ActiveRecord::Base.connection.select_all("SELECT string_agg(id::text, ',') AS ids FROM custom_emojis GROUP BY shortcode, domain HAVING count(*) > 1").each do |row|
                      emojis = CustomEmoji.where(id: row['ids'].split(',')).sort_by(&:id).reverse
              
                      ref_emoji = emojis.shift
              
              
              Severity: Minor
              Found in lib/mastodon/maintenance_cli.rb and 2 other locations - About 35 mins to fix
              lib/mastodon/maintenance_cli.rb on lines 329..336
              lib/mastodon/maintenance_cli.rb on lines 371..378

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

              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

                    if ActiveRecord::Migrator.current_version < 20220310060706 # rubocop:disable Style/NumericLiterals
                      ActiveRecord::Base.connection.add_index :statuses, ['uri'], name: 'index_statuses_on_uri', unique: true
                    else
                      ActiveRecord::Base.connection.add_index :statuses, ['uri'], name: 'index_statuses_on_uri', unique: true, where: 'uri IS NOT NULL', opclass: :text_pattern_ops
                    end
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 3 other locations - About 35 mins to fix
              lib/mastodon/maintenance_cli.rb on lines 278..282
              lib/mastodon/maintenance_cli.rb on lines 341..345
              lib/mastodon/maintenance_cli.rb on lines 458..462

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

              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

                    if ActiveRecord::Migrator.current_version < 20220310060641 # rubocop:disable Style/NumericLiterals
                      ActiveRecord::Base.connection.add_index :users, ['reset_password_token'], name: 'index_users_on_reset_password_token', unique: true
                    else
                      ActiveRecord::Base.connection.add_index :users, ['reset_password_token'], name: 'index_users_on_reset_password_token', unique: true, where: 'reset_password_token IS NOT NULL', opclass: :text_pattern_ops
                    end
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 3 other locations - About 35 mins to fix
              lib/mastodon/maintenance_cli.rb on lines 341..345
              lib/mastodon/maintenance_cli.rb on lines 458..462
              lib/mastodon/maintenance_cli.rb on lines 491..495

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

              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

                    if ActiveRecord::Migrator.current_version < 20220307083603 # rubocop:disable Style/NumericLiterals
                      ActiveRecord::Base.connection.add_index :conversations, ['uri'], name: 'index_conversations_on_uri', unique: true
                    else
                      ActiveRecord::Base.connection.add_index :conversations, ['uri'], name: 'index_conversations_on_uri', unique: true, where: 'uri IS NOT NULL', opclass: :text_pattern_ops
                    end
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 3 other locations - About 35 mins to fix
              lib/mastodon/maintenance_cli.rb on lines 278..282
              lib/mastodon/maintenance_cli.rb on lines 458..462
              lib/mastodon/maintenance_cli.rb on lines 491..495

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

              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

                    if ActiveRecord::Migrator.current_version < 20220310060626 # rubocop:disable Style/NumericLiterals
                      ActiveRecord::Base.connection.add_index :media_attachments, ['shortcode'], name: 'index_media_attachments_on_shortcode', unique: true
                    else
                      ActiveRecord::Base.connection.add_index :media_attachments, ['shortcode'], name: 'index_media_attachments_on_shortcode', unique: true, where: 'shortcode IS NOT NULL', opclass: :text_pattern_ops
                    end
              Severity: Major
              Found in lib/mastodon/maintenance_cli.rb and 3 other locations - About 35 mins to fix
              lib/mastodon/maintenance_cli.rb on lines 278..282
              lib/mastodon/maintenance_cli.rb on lines 341..345
              lib/mastodon/maintenance_cli.rb on lines 491..495

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

              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