edgewall/trac

View on GitHub
trac/web/api.py

Summary

Maintainability
F
4 days
Test Coverage

File api.py has 891 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
#
# Copyright (C) 2005-2023 Edgewall Software
# Copyright (C) 2005-2006 Christopher Lenz <cmlenz@gmx.de>
# All rights reserved.
Severity: Major
Found in trac/web/api.py - About 2 days to fix

    Function parse_form_data has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
    Open

        def parse_form_data(environ):
            if environ['REQUEST_METHOD'] != 'POST':
                query_string = environ.get('QUERY_STRING', '')
                for name, value in parse_arg_list(query_string):
                    _raise_if_null_bytes(name)
    Severity: Minor
    Found in trac/web/api.py - About 6 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

    Request has 38 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Request(object):
        """Represents a HTTP request/response pair.
    
        This class provides a convenience API over WSGI.
        """
    Severity: Minor
    Found in trac/web/api.py - About 5 hrs to fix

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

          def write(self, data):
              """Write the given data to the response body.
      
              *data* **must** be a `bytes` string or an iterable instance
              which iterates `bytes` strings, encoded with the charset which
      Severity: Minor
      Found in trac/web/api.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 parse_form_data has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def parse_form_data(environ):
              environ = environ.copy()
              fp = environ['wsgi.input']
      
              # Avoid letting cgi.FieldStorage consume the input stream when the
      Severity: Minor
      Found in trac/web/api.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 _getfile has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def _getfile(self, upload):
              filename = fileobj = size = None
              if hasattr(upload, 'filename'):
                  filename = normalize_filename(upload.filename)
              if hasattr(upload, 'file'):
      Severity: Minor
      Found in trac/web/api.py - About 55 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 send_file has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def send_file(self, path, mimetype=None):
              """Send a local file to the browser.
      
              This method includes the "Last-Modified", "Content-Type" and
              "Content-Length" headers in the response, corresponding to the file
      Severity: Minor
      Found in trac/web/api.py - About 55 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 arg_list_to_args has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      def arg_list_to_args(arg_list):
          """Convert a list of `(name, value)` tuples into into a `_RequestArgs`."""
          args = _RequestArgs()
          for name, value in arg_list:
              if name in args:
      Severity: Minor
      Found in trac/web/api.py - About 45 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 _parse_languages has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def _parse_languages(self):
              """The list of languages preferred by the remote user, taken from the
              ``Accept-Language`` header.
              """
              header = self.get_header('Accept-Language') or 'en-us'
      Severity: Minor
      Found in trac/web/api.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 check_modified has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def check_modified(self, datetime, extra=''):
              """Check the request "If-None-Match" header against an entity tag.
      
              The entity tag is generated from the specified last modified time
              (`datetime`), optionally appending an `extra` string to
      Severity: Minor
      Found in trac/web/api.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

      There are no issues that match your filters.

      Category
      Status