stingus/StingusJiraBundle

View on GitHub

Showing 23 of 23 total issues

Method execute has 86 lines of code (exceeds 25 allowed). Consider refactoring.
Open

protected function execute(InputInterface $input, OutputInterface $output)
{
$output->writeln('<info>Generate private / public keys for JIRA</info>');
 
$countryQuestion = new Question('Enter the country name (eg. US): ');
Severity: Major
Found in Command/GenerateCertCommand.php - About 3 hrs to fix

    Method callbackAction has 42 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    public function callbackAction(Request $request): RedirectResponse
    {
    try {
    $oauthToken = null;
    if ($this->has('stingus_jira.oauth_token_manager')) {
    Severity: Minor
    Found in Controller/OauthController.php - About 1 hr to fix

      Avoid excessively long variable names like $organizationalUnitQuestion. Keep variable name length under 20.
      Open

      $organizationalUnitQuestion = new Question('Enter the organization unit name: ');
      Severity: Minor
      Found in Command/GenerateCertCommand.php by phpmd

      Method connectAction has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      public function connectAction(Request $request): RedirectResponse
      {
      $tokenId = $request->query->get('tokenId');
      $consumerKey = $request->query->get('consumerKey');
      $baseUrl = $request->query->get('baseUrl');
      Severity: Minor
      Found in Controller/OauthController.php - About 1 hr to fix

        Method getConfigTreeBuilder has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        public function getConfigTreeBuilder()
        {
        $treeBuilder = new TreeBuilder();
        $rootNode = $treeBuilder->root('stingus_jira');
         
         
        Severity: Minor
        Found in DependencyInjection/Configuration.php - About 1 hr to fix

          Function callbackAction has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          public function callbackAction(Request $request): RedirectResponse
          {
          try {
          $oauthToken = null;
          if ($this->has('stingus_jira.oauth_token_manager')) {
          Severity: Minor
          Found in Controller/OauthController.php - About 55 mins to fix

          Avoid variables with short names like $id. Configured minimum length is 3.
          Open

          protected $id;
          Severity: Minor
          Found in Model/AbstractOauthToken.php by phpmd

          Avoid variables with short names like $id. Configured minimum length is 3.
          Open

          public function setId($id): OauthTokenInterface;
          Severity: Minor
          Found in Model/OauthTokenInterface.php by phpmd

          Avoid variables with short names like $id. Configured minimum length is 3.
          Open

          public function setId($id): OauthTokenInterface
          Severity: Minor
          Found in Model/AbstractOauthToken.php by phpmd

          Avoid variables with short names like $dn. Configured minimum length is 3.
          Open

          $dn = [
          Severity: Minor
          Found in Command/GenerateCertCommand.php by phpmd

          Missing class import via use statement (line '126', column '27').
          Open

          $expiresAt = (new \DateTime())
          Severity: Minor
          Found in Oauth/Oauth.php by phpmd

          Missing class import via use statement (line '128', column '31').
          Open

          $authExpiresAt = (new \DateTime())
          Severity: Minor
          Found in Oauth/Oauth.php by phpmd

          Missing class import via use statement (line '127', column '23').
          Open

          ->add(new \DateInterval(sprintf('PT%sS', $responseTokens['oauth_expires_in'])));
          Severity: Minor
          Found in Oauth/Oauth.php by phpmd

          Missing class import via use statement (line '129', column '23').
          Open

          ->add(new \DateInterval(sprintf('PT%sS', $responseTokens['oauth_authorization_expires_in'])));
          Severity: Minor
          Found in Oauth/Oauth.php by phpmd

          Remove error control operator '@' on line 112.
          Open

          protected function execute(InputInterface $input, OutputInterface $output)
          {
          $output->writeln('<info>Generate private / public keys for JIRA</info>');
           
          $countryQuestion = new Question('Enter the country name (eg. US): ');
          Severity: Minor
          Found in Command/GenerateCertCommand.php by phpmd

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

          public function connectAction(Request $request): RedirectResponse
          {
          $tokenId = $request->query->get('tokenId');
          $consumerKey = $request->query->get('consumerKey');
          $baseUrl = $request->query->get('baseUrl');
          Severity: Minor
          Found in Controller/OauthController.php - About 25 mins to fix

          Avoid assigning values to variables in if clauses and the like (line '33', column '22').
          Open

          public function connectAction(Request $request): RedirectResponse
          {
          $tokenId = $request->query->get('tokenId');
          $consumerKey = $request->query->get('consumerKey');
          $baseUrl = $request->query->get('baseUrl');
          Severity: Minor
          Found in Controller/OauthController.php by phpmd

          Avoid using static access to class '\Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass' in method 'build'.
          Open

          DoctrineOrmMappingsPass::createXmlMappingDriver(
          $mappings,
          ['stingus_jira.model_manager_name'],
          'stingus_jira.backend_type_orm'
          )
          Severity: Minor
          Found in StingusJiraBundle.php by phpmd

          The method connectAction uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
          Open

          } else {
          $this->addFlash(
          'error',
          $this->get('translator')->trans('jira.errors.general', [], 'StingusJiraBundle')
          );
          Severity: Minor
          Found in Controller/OauthController.php by phpmd

          Avoid using static access to class '\GuzzleHttp\HandlerStack' in method 'getClient'.
          Open

          $stack = HandlerStack::create();
          Severity: Minor
          Found in Oauth/OauthClient.php by phpmd
          Severity
          Category
          Status
          Source
          Language