glitch-soc/mastodon

View on GitHub
app/services/activitypub/process_status_update_service.rb

Summary

Maintainability
C
1 day
Test Coverage

Class ProcessStatusUpdateService has 24 methods (exceeds 20 allowed). Consider refactoring.
Open

class ActivityPub::ProcessStatusUpdateService < BaseService
  include JsonLdHelper
  include Redisable
  include Lockable

Severity: Minor
Found in app/services/activitypub/process_status_update_service.rb - About 2 hrs to fix

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

      def update_emojis!
        return if skip_download?
    
        @raw_emojis.each do |raw_emoji|
          custom_emoji_parser = ActivityPub::Parser::CustomEmojiParser.new(raw_emoji)
    Severity: Minor
    Found in app/services/activitypub/process_status_update_service.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 update_poll! has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

      def update_poll!(allow_significant_changes: true)
        previous_poll        = @status.preloadable_poll
        @previous_expires_at = previous_poll&.expires_at
        poll_parser          = ActivityPub::Parser::PollParser.new(@json)
    
    
    Severity: Minor
    Found in app/services/activitypub/process_status_update_service.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 update_mentions! has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

      def update_mentions!
        previous_mentions = @status.active_mentions.includes(:account).to_a
        current_mentions  = []
    
        @raw_mentions.each do |href|
    Severity: Minor
    Found in app/services/activitypub/process_status_update_service.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 download_media_files! has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

      def download_media_files!
        @next_media_attachments.each do |media_attachment|
          next if media_attachment.skip_download
    
          media_attachment.download_file! if media_attachment.remote_url_previously_changed?
    Severity: Minor
    Found in app/services/activitypub/process_status_update_service.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 update_media_attachments! has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

      def update_media_attachments!
        previous_media_attachments     = @status.media_attachments.to_a
        previous_media_attachments_ids = @status.ordered_media_attachment_ids || previous_media_attachments.map(&:id)
        @next_media_attachments        = []
    
    
    Severity: Minor
    Found in app/services/activitypub/process_status_update_service.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 update_metadata! has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

      def update_metadata!
        @raw_tags     = []
        @raw_mentions = []
        @raw_emojis   = []
    
    
    Severity: Minor
    Found in app/services/activitypub/process_status_update_service.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 call has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def call(status, activity_json, object_json, request_id: nil)
        raise ArgumentError, 'Status has unsaved changes' if status.changed?
    
        @activity_json             = activity_json
        @json                      = object_json
    Severity: Minor
    Found in app/services/activitypub/process_status_update_service.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 handle_explicit_update! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def handle_explicit_update!
        last_edit_date = @status.edited_at.presence || @status.created_at
    
        # Only allow processing one create/update per status at a time
        with_redis_lock("create:#{@uri}") do
    Severity: Minor
    Found in app/services/activitypub/process_status_update_service.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

    There are no issues that match your filters.

    Category
    Status