batiste/django-page-cms

View on GitHub
pages/managers.py

Summary

Maintainability
C
1 day
Test Coverage

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

    def get_content(self, page, language, ctype, language_fallback=False):
        """Gets the latest content string for a particular page, language and
        placeholder.

        :param page: the concerned page object.
Severity: Minor
Found in pages/managers.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

File managers.py has 270 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
"""Django page CMS ``managers``."""
from pages import settings
from pages.cache import cache
from pages.utils import normalize_url, get_now
Severity: Minor
Found in pages/managers.py - About 2 hrs to fix

    Function from_path has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        def from_path(self, complete_path, lang, exclude_drafts=True):
            """Return a :class:`Page <pages.models.Page>` according to
            the page's path."""
            if complete_path.endswith("/"):
                complete_path = complete_path[:-1]
    Severity: Minor
    Found in pages/managers.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

    Avoid too many return statements within this function.
    Open

            return None
    Severity: Major
    Found in pages/managers.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                          return page
      Severity: Major
      Found in pages/managers.py - About 30 mins to fix

        There are no issues that match your filters.

        Category
        Status