fabiocaccamo/django-freeze

View on GitHub

Showing 12 of 12 total issues

Function write has a Cognitive Complexity of 102 (exceeds 5 allowed). Consider refactoring.
Open

def write(
    data,
    include_media=settings.FREEZE_INCLUDE_MEDIA,
    include_static=settings.FREEZE_INCLUDE_STATIC,
    html_in_memory=False,
Severity: Minor
Found in freeze/writer.py - About 2 days 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 scan has a Cognitive Complexity of 60 (exceeds 5 allowed). Consider refactoring.
Open

def scan(
    site_url=settings.FREEZE_SITE_URL,
    base_url=settings.FREEZE_BASE_URL,
    relative_urls=settings.FREEZE_RELATIVE_URLS,
    local_urls=settings.FREEZE_LOCAL_URLS,
Severity: Minor
Found in freeze/scanner.py - About 1 day 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 download_static_site has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

def download_static_site(request):
    if request.user and request.user.is_staff and request.user.is_active:
        try:
            include_media_get = request.GET.get("include_media")
            include_media_default = settings.FREEZE_INCLUDE_MEDIA
Severity: Minor
Found in freeze/views.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

Function parse_html_urls has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

def parse_html_urls(
    html,
    site_url=settings.FREEZE_SITE_URL,
    base_url="/",
    media_urls=False,
Severity: Minor
Found in freeze/parser.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

Function parse_sitemap_urls has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

def parse_sitemap_urls(
    site_url=settings.FREEZE_SITE_URL,
    request_headers=settings.FREEZE_REQUEST_HEADERS,
):
    if site_url is None:
Severity: Minor
Found in freeze/parser.py - 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

Function scan has 8 arguments (exceeds 4 allowed). Consider refactoring.
Open

def scan(
Severity: Major
Found in freeze/scanner.py - About 1 hr to fix

    Avoid deeply nested control flow statements.
    Open

                        if root.find(media_dir_path) == 0:
                            include_dir = True
                            break
                else:
    Severity: Major
    Found in freeze/writer.py - About 45 mins to fix

      Function parse_html_urls has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def parse_html_urls(
      Severity: Minor
      Found in freeze/parser.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                            if not os.path.exists(file_dst_dirname):
                                os.makedirs(file_dst_dirname)
        
        
        Severity: Major
        Found in freeze/writer.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                              if root.find(static_dir_path) == 0:
                                  include_dir = True
                                  break
                      else:
          Severity: Major
          Found in freeze/writer.py - About 45 mins to fix

            Function write has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            def write(
            Severity: Minor
            Found in freeze/writer.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                  if not os.path.exists(file_dst_dirname):
                                      os.makedirs(file_dst_dirname)
              
              
              Severity: Major
              Found in freeze/writer.py - About 45 mins to fix
                Severity
                Category
                Status
                Source
                Language