alot/crypto.py

Summary

Maintainability
C
1 day
Test Coverage

Function get_key has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

def get_key(keyid, validate=False, encrypt=False, sign=False,
            signed_only=False):
    """
    Gets a key from the keyring by filtering for the specified keyid, but
    only if the given keyid is specific enough (if it matches multiple
Severity: Minor
Found in alot/crypto.py - About 3 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

File crypto.py has 259 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright (C) 2011-2012  Patrick Totzke <patricktotzke@gmail.com>
# Copyright © 2017-2018 Dylan Baker <dylan@pnwbakers.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
import gpg
Severity: Minor
Found in alot/crypto.py - About 2 hrs to fix

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

    def get_key(keyid, validate=False, encrypt=False, sign=False,
    Severity: Minor
    Found in alot/crypto.py - About 35 mins to fix

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

          if encrypt and not key.can_encrypt:
              raise GPGProblem(
                  'The key "{}" cannot be used to encrypt'.format(key.uids[0].uid),
                  code=GPGCode.KEY_CANNOT_ENCRYPT)
      Severity: Major
      Found in alot/crypto.py and 1 other location - About 1 hr to fix
      alot/crypto.py on lines 300..303

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

      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

          if sign and not key.can_sign:
              raise GPGProblem(
                  'The key "{}" cannot be used to sign'.format(key.uids[0].uid),
                  code=GPGCode.KEY_CANNOT_SIGN)
      Severity: Major
      Found in alot/crypto.py and 1 other location - About 1 hr to fix
      alot/crypto.py on lines 296..299

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

      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

      Continuation line over-indented for hanging indent
      Open

                      encrypted, verify=True)
      Severity: Minor
      Found in alot/crypto.py by pep8

      Continuation lines indentation.

      Continuation lines should align wrapped elements either vertically
      using Python's implicit line joining inside parentheses, brackets
      and braces, or using a hanging indent.
      
      When using a hanging indent these considerations should be applied:
      - there should be no arguments on the first line, and
      - further indentation should be used to clearly distinguish itself
        as a continuation line.
      
      Okay: a = (\n)
      E123: a = (\n    )
      
      Okay: a = (\n    42)
      E121: a = (\n   42)
      E122: a = (\n42)
      E123: a = (\n    42\n    )
      E124: a = (24,\n     42\n)
      E125: if (\n    b):\n    pass
      E126: a = (\n        42)
      E127: a = (24,\n      42)
      E128: a = (24,\n    42)
      E129: if (a or\n    b):\n    pass
      E131: a = (\n    42\n 24)

      Line break after binary operator
      Open

              return (email == key_uid.email and
      Severity: Minor
      Found in alot/crypto.py by pep8

      Avoid breaks after binary operators.

      The preferred place to break around a binary operator is before the
      operator, not after it.
      
      W504: (width == 0 +\n height == 0)
      W504: (width == 0 and\n height == 0)
      W504: var = (1 &\n       ~2)
      
      Okay: foo(\n    -x)
      Okay: foo(x\n    [])
      Okay: x = '''\n''' + ''
      Okay: x = '' + '''\n'''
      Okay: foo(x,\n    -y)
      Okay: foo(x,  # comment\n    -y)
      
      The following should be W504 but unary_context is tricky with these
      Okay: var = (1 /\n       -2)
      Okay: var = (1 +\n       -1 +\n       -2)

      Line break after binary operator
      Open

                      not key_uid.revoked and
      Severity: Minor
      Found in alot/crypto.py by pep8

      Avoid breaks after binary operators.

      The preferred place to break around a binary operator is before the
      operator, not after it.
      
      W504: (width == 0 +\n height == 0)
      W504: (width == 0 and\n height == 0)
      W504: var = (1 &\n       ~2)
      
      Okay: foo(\n    -x)
      Okay: foo(x\n    [])
      Okay: x = '''\n''' + ''
      Okay: x = '' + '''\n'''
      Okay: foo(x,\n    -y)
      Okay: foo(x,  # comment\n    -y)
      
      The following should be W504 but unary_context is tricky with these
      Okay: var = (1 /\n       -2)
      Okay: var = (1 +\n       -1 +\n       -2)

      Line break after binary operator
      Open

                      not key_uid.invalid and
      Severity: Minor
      Found in alot/crypto.py by pep8

      Avoid breaks after binary operators.

      The preferred place to break around a binary operator is before the
      operator, not after it.
      
      W504: (width == 0 +\n height == 0)
      W504: (width == 0 and\n height == 0)
      W504: var = (1 &\n       ~2)
      
      Okay: foo(\n    -x)
      Okay: foo(x\n    [])
      Okay: x = '''\n''' + ''
      Okay: x = '' + '''\n'''
      Okay: foo(x,\n    -y)
      Okay: foo(x,  # comment\n    -y)
      
      The following should be W504 but unary_context is tricky with these
      Okay: var = (1 /\n       -2)
      Okay: var = (1 +\n       -1 +\n       -2)

      There are no issues that match your filters.

      Category
      Status