Ryuno-Ki/webmention-tools

View on GitHub

Showing 8 of 8 total issues

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

def _ensure_url(target_url: str, url_string: str = "") -> str:
    parts = []

    parsed = urlsplit(url_string)
    parsed_url = urlsplit(target_url)
Severity: Minor
Found in webmentiontools/parser.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 image has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    def image(self):
        """
        Gets an image for this URL.
        """
        if 'image' in self.data:
Severity: Minor
Found in webmentiontools/urlinfo.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_html has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

def parse_html(target_url: str, html: str) -> Optional[str]:
    """
    Searches the markup for a valid Webmention endpoint.

    :param target_url: The URL from which the HTML is passed.
Severity: Minor
Found in webmentiontools/parser.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

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

    def links_to_url(self, url):
        """
        Queries API for results with the given target
        """
        links = self.api_links_req('target', url)
Severity: Minor
Found in webmentiontools/webmentionio.py and 1 other location - About 50 mins to fix
webmentiontools/webmentionio.py on lines 54..61

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

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 links_to_domain(self, domain):
        """
        Queries API for results with the given domain
        """
        links = self.api_links_req('domain', domain)
Severity: Minor
Found in webmentiontools/webmentionio.py and 1 other location - About 50 mins to fix
webmentiontools/webmentionio.py on lines 45..52

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

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 __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def __init__(self,  # pylint: disable=too-many-arguments
Severity: Minor
Found in webmentiontools/send.py - About 45 mins to fix

    Avoid too many return statements within this function.
    Open

            return None
    Severity: Major
    Found in webmentiontools/urlinfo.py - About 30 mins to fix

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

          def snippet_with_link(self, url):
              """ This method will try to return the first
              <p> or <div> that contains an <a> tag linking to
              the given URL.
              """
      Severity: Minor
      Found in webmentiontools/urlinfo.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