tuomas2/serviceform

View on GitHub

Showing 197 of 197 total issues

File serviceform.py has 526 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
# (c) 2017 Tuomas Airaksinen
#
# This file is part of Serviceform.
#
Severity: Major
Found in serviceform/serviceform/models/serviceform.py - About 1 day to fix

    Function clean has a Cognitive Complexity of 51 (exceeds 5 allowed). Consider refactoring.
    Open

        def clean(self):
            for key, value in self.post_data.items():
                if key.startswith('SRV_'):
                    parts = key.split('_')
                    if 'EXTRA' in parts:
    Severity: Minor
    Found in serviceform/serviceform/forms.py - 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

    File forms.py has 470 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    # -*- coding: utf-8 -*-
    # (c) 2017 Tuomas Airaksinen
    #
    # This file is part of Serviceform.
    #
    Severity: Minor
    Found in serviceform/serviceform/forms.py - About 7 hrs to fix

      Function shuffle_person_data has a Cognitive Complexity of 46 (exceeds 5 allowed). Consider refactoring.
      Open

      def shuffle_person_data(service_form: 'ServiceForm') -> None:
          from .models import Participant, ResponsibilityPerson, Question
          letters = len(string.ascii_letters)
          forenames = set()
          surnames = set()
      Severity: Minor
      Found in serviceform/serviceform/utils.py - 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

      Function init_serviceform_counters has a Cognitive Complexity of 41 (exceeds 5 allowed). Consider refactoring.
      Open

      def init_serviceform_counters(service_form: 'ServiceForm', all_responsibles: bool=True) -> None:
          """
          Initializes counters and collects responsibles from subitems
      
          :return:
      Severity: Minor
      Found in serviceform/serviceform/utils.py - About 6 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

      Function areYouSure has 144 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        $.fn.areYouSure = function(options) {
            
          var settings = $.extend(
            {
              'message' : 'You have unsaved changes!',
      Severity: Major
      Found in serviceform/serviceform/static/jquery.are-you-sure.js - About 5 hrs to fix

        Cyclomatic complexity is too high in method clean. (20)
        Open

            def clean(self):
                for key, value in self.post_data.items():
                    if key.startswith('SRV_'):
                        parts = key.split('_')
                        if 'EXTRA' in parts:
        Severity: Minor
        Found in serviceform/serviceform/forms.py by radon

        Cyclomatic Complexity

        Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

        Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

        Construct Effect on CC Reasoning
        if +1 An if statement is a single decision.
        elif +1 The elif statement adds another decision.
        else +0 The else statement does not cause a new decision. The decision is at the if.
        for +1 There is a decision at the start of the loop.
        while +1 There is a decision at the while statement.
        except +1 Each except branch adds a new conditional path of execution.
        finally +0 The finally block is unconditionally executed.
        with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
        assert +1 The assert statement internally roughly equals a conditional statement.
        Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
        Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

        Source: http://radon.readthedocs.org/en/latest/intro.html

        Function menu_items has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
        Open

        def menu_items(context: Context, menu_name: str) -> MenuItems:
            """
            This is used for:
             - Reports menu
             - Participation password_login page menu
        Severity: Minor
        Found in serviceform/serviceform/templatetags/serviceform_tags.py - 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

        File utils.py has 307 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        # -*- coding: utf-8 -*-
        # (c) 2017 Tuomas Airaksinen
        #
        # This file is part of Serviceform.
        #
        Severity: Minor
        Found in serviceform/serviceform/utils.py - About 3 hrs to fix

          File people.py has 289 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          # -*- coding: utf-8 -*-
          # (c) 2017 Tuomas Airaksinen
          #
          # This file is part of Serviceform.
          #
          Severity: Minor
          Found in serviceform/serviceform/models/people.py - About 2 hrs to fix

            File settings.py has 285 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            import os
            import socket
            import sys
            from logging.config import dictConfig
            from django.utils.translation import ugettext_lazy as _
            Severity: Minor
            Found in serviceform_project/settings.py - About 2 hrs to fix

              Cyclomatic complexity is too high in method create_email_templates. (12)
              Open

                  def create_email_templates(self) -> None:
                      if not self.pk:
                          logger.error('Cannot create email template if form is not saved')
                          return
              
              

              Cyclomatic Complexity

              Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

              Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

              Construct Effect on CC Reasoning
              if +1 An if statement is a single decision.
              elif +1 The elif statement adds another decision.
              else +0 The else statement does not cause a new decision. The decision is at the if.
              for +1 There is a decision at the start of the loop.
              while +1 There is a decision at the while statement.
              except +1 Each except branch adds a new conditional path of execution.
              finally +0 The finally block is unconditionally executed.
              with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
              assert +1 The assert statement internally roughly equals a conditional statement.
              Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
              Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

              Source: http://radon.readthedocs.org/en/latest/intro.html

              Participant has 25 functions (exceeds 20 allowed). Consider refactoring.
              Open

              class Participant(ContactDetailsMixin, PasswordMixin, models.Model):
                  email: str
              
                  class Meta:
                      verbose_name = _('Participant')
              Severity: Minor
              Found in serviceform/serviceform/models/people.py - About 2 hrs to fix

                File admin.py has 282 lines of code (exceeds 250 allowed). Consider refactoring.
                Open

                # -*- coding: utf-8 -*-
                # (c) 2017 Tuomas Airaksinen
                #
                # This file is part of Serviceform.
                #
                Severity: Minor
                Found in serviceform/serviceform/admin.py - About 2 hrs to fix

                  Function require_authenticated_participant has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def require_authenticated_participant(function=None, check_flow=True):
                      def actual_decorator(func):
                          @wraps(func)
                          def wrapper(request: HttpRequest, *args, title: str='', **kwargs) -> HttpResponse:
                              current_view = request.resolver_match.view_name
                  Severity: Minor
                  Found in serviceform/serviceform/views/decorators.py - 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

                  Cyclomatic complexity is too high in function shuffle_person_data. (11)
                  Open

                  def shuffle_person_data(service_form: 'ServiceForm') -> None:
                      from .models import Participant, ResponsibilityPerson, Question
                      letters = len(string.ascii_letters)
                      forenames = set()
                      surnames = set()
                  Severity: Minor
                  Found in serviceform/serviceform/utils.py by radon

                  Cyclomatic Complexity

                  Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

                  Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

                  Construct Effect on CC Reasoning
                  if +1 An if statement is a single decision.
                  elif +1 The elif statement adds another decision.
                  else +0 The else statement does not cause a new decision. The decision is at the if.
                  for +1 There is a decision at the start of the loop.
                  while +1 There is a decision at the while statement.
                  except +1 Each except branch adds a new conditional path of execution.
                  finally +0 The finally block is unconditionally executed.
                  with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
                  assert +1 The assert statement internally roughly equals a conditional statement.
                  Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
                  Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

                  Source: http://radon.readthedocs.org/en/latest/intro.html

                  Cyclomatic complexity is too high in method send_email_to_responsibles. (11)
                  Open

                      def send_email_to_responsibles(self) -> None:
                          """
                          Go through choices, activities, their categories and send email to responsibles.
                  
                          :return:

                  Cyclomatic Complexity

                  Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

                  Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

                  Construct Effect on CC Reasoning
                  if +1 An if statement is a single decision.
                  elif +1 The elif statement adds another decision.
                  else +0 The else statement does not cause a new decision. The decision is at the if.
                  for +1 There is a decision at the start of the loop.
                  while +1 There is a decision at the while statement.
                  except +1 Each except branch adds a new conditional path of execution.
                  finally +0 The finally block is unconditionally executed.
                  with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
                  assert +1 The assert statement internally roughly equals a conditional statement.
                  Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
                  Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

                  Source: http://radon.readthedocs.org/en/latest/intro.html

                  Cyclomatic complexity is too high in method clean. (11)
                  Open

                      def clean(self):
                          had_values = set()
                          for key, value in self.data.items():
                              if key.startswith('SRV_'):
                                  parts = key.split('_')
                  Severity: Minor
                  Found in serviceform/serviceform/forms.py by radon

                  Cyclomatic Complexity

                  Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

                  Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

                  Construct Effect on CC Reasoning
                  if +1 An if statement is a single decision.
                  elif +1 The elif statement adds another decision.
                  else +0 The else statement does not cause a new decision. The decision is at the if.
                  for +1 There is a decision at the start of the loop.
                  while +1 There is a decision at the while statement.
                  except +1 Each except branch adds a new conditional path of execution.
                  finally +0 The finally block is unconditionally executed.
                  with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
                  assert +1 The assert statement internally roughly equals a conditional statement.
                  Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
                  Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

                  Source: http://radon.readthedocs.org/en/latest/intro.html

                  Function clean has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def clean(self):
                          had_values = set()
                          for key, value in self.data.items():
                              if key.startswith('SRV_'):
                                  parts = key.split('_')
                  Severity: Minor
                  Found in serviceform/serviceform/forms.py - 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

                  Cyclomatic complexity is too high in method can_access_view. (10)
                  Open

                      def can_access_view(self, view_name: str, auth: bool=False) -> bool:
                          """
                              Access is granted to next view after last finished view
                  
                              auth: if query is for authentication (if we can already really proceed to view or not).

                  Cyclomatic Complexity

                  Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

                  Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

                  Construct Effect on CC Reasoning
                  if +1 An if statement is a single decision.
                  elif +1 The elif statement adds another decision.
                  else +0 The else statement does not cause a new decision. The decision is at the if.
                  for +1 There is a decision at the start of the loop.
                  while +1 There is a decision at the while statement.
                  except +1 Each except branch adds a new conditional path of execution.
                  finally +0 The finally block is unconditionally executed.
                  with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
                  assert +1 The assert statement internally roughly equals a conditional statement.
                  Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
                  Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

                  Source: http://radon.readthedocs.org/en/latest/intro.html

                  Severity
                  Category
                  Status
                  Source
                  Language