django/django

View on GitHub
django/contrib/auth/models.py

Summary

Maintainability
C
1 day
Test Coverage

File models.py has 398 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from collections.abc import Iterable

from django.apps import apps
from django.contrib import auth
from django.contrib.auth.base_user import AbstractBaseUser, BaseUserManager
Severity: Minor
Found in django/contrib/auth/models.py - About 5 hrs to fix

    Function with_perm has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def with_perm(
    Severity: Minor
    Found in django/contrib/auth/models.py - About 35 mins to fix

      Function email_user has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def email_user(self, subject, message, from_email=None, **kwargs):
      Severity: Minor
      Found in django/contrib/auth/models.py - About 35 mins to fix

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

            def with_perm(
                self, perm, is_active=True, include_superusers=True, backend=None, obj=None
            ):
                if backend is None:
                    backends = auth._get_backends(return_tuples=True)
        Severity: Minor
        Found in django/contrib/auth/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 _user_has_module_perms has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def _user_has_module_perms(user, app_label):
            """
            A backend can raise `PermissionDenied` to short-circuit permission checking.
            """
            for backend in auth.get_backends():
        Severity: Minor
        Found in django/contrib/auth/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 _user_has_perm has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def _user_has_perm(user, perm, obj):
            """
            A backend can raise `PermissionDenied` to short-circuit permission checking.
            """
            for backend in auth.get_backends():
        Severity: Minor
        Found in django/contrib/auth/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

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

            user_permissions = models.ManyToManyField(
                Permission,
                verbose_name=_("user permissions"),
                blank=True,
                help_text=_("Specific permissions for this user."),
        Severity: Minor
        Found in django/contrib/auth/models.py and 1 other location - About 45 mins to fix
        django/contrib/auth/models.py on lines 257..261

        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 35.

        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

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

            groups = models.ManyToManyField(
                Group,
                verbose_name=_("groups"),
                blank=True,
                help_text=_(
        Severity: Minor
        Found in django/contrib/auth/models.py and 1 other location - About 45 mins to fix
        django/contrib/auth/models.py on lines 268..272

        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 35.

        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

        There are no issues that match your filters.

        Category
        Status