WesternFriend/WF-website

View on GitHub

Showing 9 of 9 total issues

Function handle has 86 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def handle(self, *args: tuple, **options: dict[str, str]) -> None:
        root_page = get_or_create_site_root_page()

        home_page = HomePage(
            title="Welcome",
Severity: Major
Found in cli/management/commands/scaffold_initial_content.py - About 3 hrs to fix

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

        columns = [
            PageTitleColumn(
                "title",
                label="Title",
                sort_key="title",
    Severity: Major
    Found in news/views.py and 1 other location - About 2 hrs to fix
    magazine/views.py on lines 44..60

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 51.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

        columns = [
            PageTitleColumn(
                "title",
                label="Title",
                sort_key="title",
    Severity: Major
    Found in magazine/views.py and 1 other location - About 2 hrs to fix
    news/views.py on lines 32..48

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 51.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function get_context has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_context(
            self,
            request: HttpRequest,
            *args: tuple,
            **kwargs: dict,
    Severity: Minor
    Found in news/models.py - 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

    Function generateAutoslug has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    function generateAutoslug() {
      /*
      Auto-generate slug from given and family name fields.
      This is used for adding Person contacts and Memorials
      */
    Severity: Minor
    Found in contact/static/js/contact/person_url_slug.js - About 25 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

    Function create_news_item_topic has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def create_news_item_topic(self, create, extracted, **kwargs):
            """Create a NewsItemTopic for the NewsItem."""
            if not create or "news_item" in kwargs:
                # Avoid recursion if 'news_item' is in kwargs
                return
    Severity: Minor
    Found in news/factories.py - About 25 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

    Consider possible security implications associated with subprocess module.
    Open

    import subprocess
    Severity: Info
    Found in develop.py by bandit

    Standard pseudo-random generators are not suitable for security/cryptographic purposes.
    Open

            random_number = randint(1, 1000)
    Severity: Info
    Found in contact/factories.py by bandit

    subprocess call with shell=True identified, security issue.
    Open

        process = subprocess.run(command, shell=True, check=True)
    Severity: Major
    Found in develop.py by bandit
    Severity
    Category
    Status
    Source
    Language