Showing 204 of 257 total issues

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

    def __init__(self, request, response, pool, name, content_handler):
Severity: Minor
Found in src/pyff/fetch.py - About 35 mins to fix

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

        def i_handle(self, t: Resource, url=None, response=None, exception=None, last_fetched=None):
    Severity: Minor
    Found in src/pyff/resource.py - About 35 mins to fix

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

          def __call__(self, watched=None, url=None, response=None, exception=None, last_fetched=None):
      Severity: Minor
      Found in src/pyff/resource.py - About 35 mins to fix

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

        def discojson(e, sources=None, langs=None, fallback_to_favicon=False, icon_store=None):
        Severity: Minor
        Found in src/pyff/samlmd.py - About 35 mins to fix

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

          def _any(lst, d):
              for x in lst:
                  if x in d:
                      if type(d) == dict:
                          return d[x]
          Severity: Minor
          Found in src/pyff/builtins.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 metadata_expiration has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          def metadata_expiration(t: ElementTree) -> Optional[timedelta]:
              relt = root(t)
              if relt.tag in ('{%s}EntityDescriptor' % NS['md'], '{%s}EntitiesDescriptor' % NS['md']):
                  cache_duration = config.default_cache_duration
                  valid_until = relt.get('validUntil', None)
          Severity: Minor
          Found in src/pyff/samlmd.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 url_get has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          def url_get(url: str, verify_tls: Optional[bool] = False) -> Response:
              """
              Download an URL using a cache and return the response object
              :param url:
              :return:
          Severity: Minor
          Found in src/pyff/utils.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 _select has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              def _select(self, member=None):
                  if member is None:
                      member = "entities"
          
                  if is_text(member):
          Severity: Minor
          Found in src/pyff/store.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 entity_extended_display has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          def entity_extended_display(entity, langs=None):
              """Utility-method for computing a displayable string for a given entity.
          
              :param entity: An EntityDescriptor element
              :param langs: The list of languages to search in priority order
          Severity: Minor
          Found in src/pyff/samlmd.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 filter_or_validate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          def filter_or_validate(
              t: ElementTree,
              filter_invalid: bool = False,
              base_url: str = "",
              source=None,
          Severity: Minor
          Found in src/pyff/samlmd.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 filter_lang has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          def filter_lang(elts: Any, langs: Optional[Sequence[str]] = None) -> List[Element]:
              if langs is None or type(langs) is not list:
                  langs = config.langs
          
              # log.debug("langs: {}".format(langs))
          Severity: Minor
          Found in src/pyff/utils.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 short_spec has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              def short_spec(self):
                  if self.short:
                      if (hasattr(self, 'typeconv') and self.typeconv == as_bool) or isinstance(self, InvertedSetting):
                          return self.short
                      else:
          Severity: Minor
          Found in src/pyff/constants.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 _all_domains_and_subdomains has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          def _all_domains_and_subdomains(entity):
              dlist = []
              try:
                  for dn in _domains(entity):
                      for sub in subdomains(dn):
          Severity: Minor
          Found in src/pyff/samlmd.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

              @property  # type: ignore
              @contextmanager
              def writelock(self):
                  """Yields a write lock"""
                  self.acquireWrite()
          Severity: Minor
          Found in src/pyff/locks.py and 1 other location - About 30 mins to fix
          src/pyff/locks.py on lines 109..117

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

          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

              @property  # type: ignore
              @contextmanager
              def readlock(self):
                  """Yields a read lock"""
                  self.acquireRead()
          Severity: Minor
          Found in src/pyff/locks.py and 1 other location - About 30 mins to fix
          src/pyff/locks.py on lines 119..127

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

          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 parse has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              def parse(self, resource: Resource, content: str) -> ParserInfo:
                  info = ParserInfo(description='XRD links', expiration_time='never expires')
                  t = parse_xml(unicode_stream(content))
          
                  relt = root(t)
          Severity: Minor
          Found in src/pyff/parse.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

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

          def set_nodecountry(e, country_code):
              """Set eidas:NodeCountry on an EntityDescriptor
          
              :param e: The EntityDescriptor element
              :param country_code: An ISO country code
          Severity: Minor
          Found in src/pyff/samlmd.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

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

          def xslt_transform(t, stylesheet, params=None):
              if not params:
                  params = dict()
          
              if not hasattr(thread_data, 'xslt'):
          Severity: Minor
          Found in src/pyff/utils.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

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

          def b2u(data: Union[str, bytes, Tuple, List, Set]) -> Union[str, bytes, Tuple, List, Set]:
              if is_text(data):
                  return data
              elif isinstance(data, six.binary_type):
                  return data.decode("utf-8")
          Severity: Minor
          Found in src/pyff/utils.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

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

          def entity_attribute_dict(entity):
              d = {}
          
              def _u(an, values):
                  d[an] = values
          Severity: Minor
          Found in src/pyff/samlmd.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

          Severity
          Category
          Status
          Source
          Language