snap-cloud/snapcon

View on GitHub

Showing 90 of 161 total issues

Class Conference has 83 methods (exceeds 20 allowed). Consider refactoring.
Open

class Conference < ApplicationRecord
  include RevisionCount
  require 'uri'
  serialize :events_per_week, Hash
  # Needed to call 'Conference.with_role' in /models/ability.rb
Severity: Major
Found in app/models/conference.rb - About 1 day to fix

    File conference.rb has 651 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    class Conference < ApplicationRecord
      include RevisionCount
      require 'uri'
      serialize :events_per_week, Hash
      # Needed to call 'Conference.with_role' in /models/ability.rb
    Severity: Major
    Found in app/models/conference.rb - About 1 day to fix

      Method calendar has a Cognitive Complexity of 47 (exceeds 5 allowed). Consider refactoring.
      Open

        def calendar
          respond_to do |format|
            format.ics do
              calendar = Icalendar::Calendar.new
              Conference.all.each do |conf|
      Severity: Minor
      Found in app/controllers/conferences_controller.rb - About 7 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

      Class Event has 36 methods (exceeds 20 allowed). Consider refactoring.
      Open

      class Event < ApplicationRecord
        include ActionView::Helpers::NumberHelper # for number_with_precision
        include ActionView::Helpers::SanitizeHelper
        include ActiveRecord::Transitions
        include RevisionCount
      Severity: Minor
      Found in app/models/event.rb - About 4 hrs to fix

        Class Program has 31 methods (exceeds 20 allowed). Consider refactoring.
        Open

        class Program < ApplicationRecord
          has_paper_trail on: [:update], ignore: [:updated_at], meta: { conference_id: :conference_id }
        
          belongs_to :conference
        
        
        Severity: Minor
        Found in app/models/program.rb - About 3 hrs to fix

          Method icalendar_proposals has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
          Open

            def icalendar_proposals(calendar, proposals, conference)
              proposals.each do |proposal|
                calendar.event do |e|
                  e.dtstart = proposal.time
                  e.dtend = proposal.time + (proposal.event_type.length * 60)
          Severity: Minor
          Found in app/helpers/conference_helper.rb - About 3 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 join_event_link has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
          Open

            def join_event_link(event, event_schedule, current_user, small: false)
              return if !event_schedule || event.ended?
          
              unless event_schedule.room_url.present?
                return content_tag :span, 'In-person only', class: 'label label-default'
          Severity: Minor
          Found in app/helpers/events_helper.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

          File event.rb has 287 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          class Event < ApplicationRecord
            include ActionView::Helpers::NumberHelper # for number_with_precision
            include ActionView::Helpers::SanitizeHelper
            include ActiveRecord::Transitions
            include RevisionCount
          Severity: Minor
          Found in app/models/event.rb - About 2 hrs to fix

            File events_helper.rb has 273 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            module EventsHelper
              ##
              # Includes functions related to events
              ##
              ##
            Severity: Minor
            Found in app/helpers/events_helper.rb - About 2 hrs to fix

              Method show has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
              Open

                def show
                  # load conference with header content
                  @conference = Conference.unscoped.eager_load(
                    :splashpage,
                    :program,
              Severity: Minor
              Found in app/controllers/conferences_controller.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 signed_in_with_organizer_role has 55 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                def signed_in_with_organizer_role(user, conf_ids_for_organization_admin = [])
                  # ids of all the conferences for which the user has the 'organizer' role and
                  # conferences that belong to organizations for which user is 'organization_admin'
                  conf_ids = conf_ids_for_organization_admin.concat(Conference.with_role(:organizer, user).pluck(:id)).uniq
                  # ids of all the tracks that belong to the programs of the above conferences
              Severity: Major
              Found in app/models/admin_ability.rb - About 2 hrs to fix

                Class EventSchedule has 21 methods (exceeds 20 allowed). Consider refactoring.
                Open

                class EventSchedule < ApplicationRecord
                  default_scope { where(enabled: true) }
                
                  belongs_to :schedule, touch: true
                  belongs_to :event, touch: true
                Severity: Minor
                Found in app/models/event_schedule.rb - About 2 hrs to fix

                  Method state_dropdown has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    def state_dropdown(event, conference_id, email_settings)
                      selection = event.state.humanize
                      options = []
                      if event.transition_possible? :accept
                        options << [
                  Severity: Major
                  Found in app/helpers/events_helper.rb - About 2 hrs to fix

                    Method retrieve_values has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      def retrieve_values(event = nil, booth = nil, quantity = nil, ticket = nil)
                        h = {
                          'email'                  => @user.email,
                          'name'                   => @user.name,
                          'conference'             => @conference.title,
                    Severity: Major
                    Found in app/services/email_template_parser.rb - About 2 hrs to fix

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

                        def overlapping
                          return unless start_date && end_date && room && program.try(:tracks)
                      
                          (program.tracks.accepted + program.tracks.confirmed - [self]).each do |existing_track|
                            next unless existing_track.room == room && existing_track.start_date && existing_track.end_date
                      Severity: Minor
                      Found in app/models/track.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 signed_in has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                        def signed_in(user)
                          # Abilities from not_signed_in user are also inherited
                          not_signed_in
                          can :manage, User, id: user.id
                      
                      
                      Severity: Minor
                      Found in app/models/ability.rb - About 1 hr to fix

                        Method toggle_user has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                        Open

                            def toggle_user
                              user = User.find_by(email: user_params[:email])
                              state = user_params[:state]
                        
                              url = if @track
                        Severity: Minor
                        Found in app/controllers/admin/roles_controller.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 show has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                          def show
                            # load conference with header content
                            @conference = Conference.unscoped.eager_load(
                              :splashpage,
                              :program,
                        Severity: Minor
                        Found in app/controllers/conferences_controller.rb - About 1 hr to fix

                          Method common_abilities_for_roles has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                            def common_abilities_for_roles(user)
                              can :manage, Registration, user_id: user.id
                          
                              can :index, Conference
                              can :show, Registration, &:new_record?
                          Severity: Minor
                          Found in app/models/admin_ability.rb - About 1 hr to fix

                            Method index has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                def index
                                  # Redirect to new form if there is no conference
                                  if Conference.count == 0
                                    redirect_to new_admin_conference_path
                                    return
                            Severity: Minor
                            Found in app/controllers/admin/conferences_controller.rb - About 1 hr to fix
                              Severity
                              Category
                              Status
                              Source
                              Language