edgewall/trac

View on GitHub
trac/versioncontrol/admin.py

Summary

Maintainability
F
4 days
Test Coverage

Function render_admin_panel has a Cognitive Complexity of 90 (exceeds 5 allowed). Consider refactoring.
Open

    def render_admin_panel(self, req, category, page, path_info):
        # Retrieve info for all repositories
        rm = RepositoryManager(self.env)
        all_repos = rm.get_all_repositories()
        db_provider = self.env[DbRepositoryProvider]
Severity: Minor
Found in trac/versioncontrol/admin.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

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

# -*- coding: utf-8 -*-
#
# Copyright (C) 2008-2023 Edgewall Software
# All rights reserved.
#
Severity: Minor
Found in trac/versioncontrol/admin.py - About 4 hrs to fix

    Function _sync has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

        def _sync(self, reponame, rev, clean):
            rm = RepositoryManager(self.env)
            if reponame == '*':
                if rev is not None:
                    raise TracError(_('Cannot synchronize a single revision '
    Severity: Minor
    Found in trac/versioncontrol/admin.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 _extend_info has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def _extend_info(self, reponame, info, editable):
            """Extend repository info for rendering."""
            info['name'] = reponame
            info['hidden'] = as_bool(info.get('hidden'))
            info['sync_per_request'] = as_bool(info.get('sync_per_request'))
    Severity: Minor
    Found in trac/versioncontrol/admin.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

    Avoid deeply nested control flow statements.
    Open

                            for name in sel:
                                db_provider.remove_repository(name)
                            add_notice(req, _('The selected repositories have '
    Severity: Major
    Found in trac/versioncontrol/admin.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              if 'dir' in changes:
                                  msg = tag_('You should now run %(resync)s to '
                                             'synchronize Trac with the repository.',
                                             resync=resync)
                                  add_notice(req, msg)
      Severity: Major
      Found in trac/versioncontrol/admin.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if (value is not None
                                    or field in ('hidden', 'sync_per_request')) \
                                        and value != info.get(field):
                                    changes[field] = value
                            if 'dir' in changes and not \
        Severity: Major
        Found in trac/versioncontrol/admin.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if name and name != path_info and 'alias' not in info:
                                      cset_added = tag.code('trac-admin "%s" changeset '
                                                            'added "%s" $REV'
                                                            % (self.env.path,
                                                               pretty_name))
          Severity: Major
          Found in trac/versioncontrol/admin.py - About 45 mins to fix

            Consider simplifying this complex logical expression.
            Open

                            if db_provider and req.args.get('add_repos'):
                                name = req.args.get('name')
                                pretty_name = name or '(default)'
                                if name in all_repos:
                                    raise TracError(_('The repository "%(name)s" already '
            Severity: Major
            Found in trac/versioncontrol/admin.py - About 40 mins to fix

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

                  def _do_changeset_added(self, reponame, first_rev, *revs):
                      if is_default(reponame):
                          reponame = ''
                      rm = RepositoryManager(self.env)
                      errors = rm.notify('changeset_added', reponame, (first_rev,) + revs)
              Severity: Major
              Found in trac/versioncontrol/admin.py and 1 other location - About 4 hrs to fix
              trac/versioncontrol/admin.py on lines 105..112

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

              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

                  def _do_changeset_modified(self, reponame, first_rev, *revs):
                      if is_default(reponame):
                          reponame = ''
                      rm = RepositoryManager(self.env)
                      errors = rm.notify('changeset_modified', reponame, (first_rev,) + revs)
              Severity: Major
              Found in trac/versioncontrol/admin.py and 1 other location - About 4 hrs to fix
              trac/versioncontrol/admin.py on lines 96..103

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

              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