fisharebest/webtrees

View on GitHub
app/Http/Middleware/BadBotBlocker.php

Summary

Maintainability
D
1 day
Test Coverage

Function process has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
Open

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $ua      = Validator::serverParams($request)->string('HTTP_USER_AGENT', '');
        $ip      = Validator::attributes($request)->string('client-ip');
        $address = IPFactory::parseAddressString($ip);
Severity: Minor
Found in app/Http/Middleware/BadBotBlocker.php - 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

Method process has 64 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $ua      = Validator::serverParams($request)->string('HTTP_USER_AGENT', '');
        $ip      = Validator::attributes($request)->string('client-ip');
        $address = IPFactory::parseAddressString($ip);
Severity: Major
Found in app/Http/Middleware/BadBotBlocker.php - About 2 hrs to fix

    File BadBotBlocker.php has 267 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /**
     * webtrees: online genealogy
     * Copyright (C) 2023 webtrees development team
    Severity: Minor
    Found in app/Http/Middleware/BadBotBlocker.php - About 2 hrs to fix

      Avoid too many return statements within this method.
      Open

                      return $this->response();
      Severity: Major
      Found in app/Http/Middleware/BadBotBlocker.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                            return $this->response();
        Severity: Major
        Found in app/Http/Middleware/BadBotBlocker.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                  return $handler->handle($request);
          Severity: Major
          Found in app/Http/Middleware/BadBotBlocker.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                                return $this->response();
            Severity: Major
            Found in app/Http/Middleware/BadBotBlocker.php - About 30 mins to fix

              There are no issues that match your filters.

              Category
              Status