shetabit/multipay

View on GitHub

Showing 108 of 108 total issues

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

    public function purchase()
    {
        if (!empty($this->invoice->getDetails()['description'])) {
            $description = $this->invoice->getDetails()['description'];
        } else {
Severity: Major
Found in src/Drivers/Zarinpal/Strategies/Zaringate.php and 1 other location - About 1 day to fix
src/Drivers/Zarinpal/Strategies/Sandbox.php on lines 51..89

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

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

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

    public function purchase()
    {
        if (!empty($this->invoice->getDetails()['description'])) {
            $description = $this->invoice->getDetails()['description'];
        } else {
Severity: Major
Found in src/Drivers/Zarinpal/Strategies/Sandbox.php and 1 other location - About 1 day to fix
src/Drivers/Zarinpal/Strategies/Zaringate.php on lines 51..89

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

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

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

    public function verify() : ReceiptInterface
    {
        $authority = $this->invoice->getTransactionId() ?? Request::input('Authority');
        $data = [
            'MerchantID' => $this->settings->merchantId,
Severity: Major
Found in src/Drivers/Zarinpal/Strategies/Zaringate.php and 1 other location - About 4 hrs to fix
src/Drivers/Zarinpal/Strategies/Sandbox.php on lines 114..132

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

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

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

    public function verify() : ReceiptInterface
    {
        $authority = $this->invoice->getTransactionId() ?? Request::input('Authority');
        $data = [
            'MerchantID' => $this->settings->merchantId,
Severity: Major
Found in src/Drivers/Zarinpal/Strategies/Sandbox.php and 1 other location - About 4 hrs to fix
src/Drivers/Zarinpal/Strategies/Zaringate.php on lines 114..132

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

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

    private function notVerified($status, $method)
    {
        $message = "";
        if ($method == 'token') {
            switch ($status) {
Severity: Minor
Found in src/Drivers/Rayanpay/Rayanpay.php - 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

Identical blocks of code found in 3 locations. Consider refactoring.
Open

    private function translateStatus($status)
    {
        $translations = [
            '100' => 'تراکنش با موفقیت انجام گردید',
            '101' => 'عمليات پرداخت موفق بوده و قبلا عملیات وریفای تراكنش انجام شده است',
Severity: Major
Found in src/Drivers/Zarinpal/Strategies/Sandbox.php and 2 other locations - About 3 hrs to fix
src/Drivers/Zarinpal/Strategies/Normal.php on lines 230..258
src/Drivers/Zarinpal/Strategies/Zaringate.php on lines 183..211

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

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

Identical blocks of code found in 3 locations. Consider refactoring.
Open

    private function translateStatus($status)
    {
        $translations = [
            '100' => 'تراکنش با موفقیت انجام گردید',
            '101' => 'عمليات پرداخت موفق بوده و قبلا عملیات وریفای تراكنش انجام شده است',
Severity: Major
Found in src/Drivers/Zarinpal/Strategies/Normal.php and 2 other locations - About 3 hrs to fix
src/Drivers/Zarinpal/Strategies/Sandbox.php on lines 183..211
src/Drivers/Zarinpal/Strategies/Zaringate.php on lines 183..211

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

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

Identical blocks of code found in 3 locations. Consider refactoring.
Open

    private function translateStatus($status)
    {
        $translations = [
            '100' => 'تراکنش با موفقیت انجام گردید',
            '101' => 'عمليات پرداخت موفق بوده و قبلا عملیات وریفای تراكنش انجام شده است',
Severity: Major
Found in src/Drivers/Zarinpal/Strategies/Zaringate.php and 2 other locations - About 3 hrs to fix
src/Drivers/Zarinpal/Strategies/Normal.php on lines 230..258
src/Drivers/Zarinpal/Strategies/Sandbox.php on lines 183..211

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

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

Method purchase has 70 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function purchase()
    {
        $terminalId = $this->settings->terminalId;
        $orderId = crc32($this->invoice->getUuid());
        $amount = $this->invoice->getAmount() * ($this->settings->currency == 'T' ? 10 : 1); // convert to rial
Severity: Major
Found in src/Drivers/Sadad/Sadad.php - About 2 hrs to fix

    Method notVerified has 70 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        private function notVerified($status, $method)
        {
            $message = "";
            if ($method == 'token') {
                switch ($status) {
    Severity: Major
    Found in src/Drivers/Rayanpay/Rayanpay.php - About 2 hrs to fix

      Method notVerified has 62 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function notVerified($status)
          {
              $translations = [
                  5 => 'از انجام تراکنش صرف نظر شد',
                  17 => 'از انجام تراکنش صرف نظر شد',
      Severity: Major
      Found in src/Drivers/Irankish/Irankish.php - About 2 hrs to fix

        Method translateStatusCode has 61 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            private function translateStatusCode($code): string
            {
                $translations = [
                    0 => 'پرداخت تکمیل و با موفقیت انجام شده است',
                    -1 => 'منتظر ارسال تراکنش و ادامه پرداخت',
        Severity: Major
        Found in src/Drivers/Nextpay/Nextpay.php - About 2 hrs to fix

          Function verify has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
          Open

              public function verify() : ReceiptInterface
              {
                  $successFlag = Request::input('success');
                  $status = Request::input('status');
                  $orderId = Request::input('orderId');
          Severity: Minor
          Found in src/Drivers/Zibal/Zibal.php - About 2 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

          Function purchase has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

              public function purchase()
              {
                  $terminalId = $this->settings->terminalId;
                  $orderId = crc32($this->invoice->getUuid());
                  $amount = $this->invoice->getAmount() * ($this->settings->currency == 'T' ? 10 : 1); // convert to rial
          Severity: Minor
          Found in src/Drivers/Sadad/Sadad.php - About 2 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

          Method purchase has 51 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function purchase()
              {
                  $details = $this->invoice->getDetails();
          
                  $phone = null;
          Severity: Major
          Found in src/Drivers/Idpay/Idpay.php - About 2 hrs to fix

            Method translateStatus has 51 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                private function translateStatus($status)
                {
                    $translations = [
                        '0' => 'تراکنش با موفقیت انجام شد',
                        '3' => 'پذيرنده کارت فعال نیست لطفا با بخش امور پذيرندگان، تماس حاصل فرمائید',
            Severity: Major
            Found in src/Drivers/Sadad/Sadad.php - About 2 hrs to fix

              Method translateStatus has 50 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private function translateStatus($status)
                  {
                      $translations = [
                          '0' => 'تراکنش با موفقیت انجام شد',
                          '11' => 'شماره کارت نامعتبر است',
              Severity: Minor
              Found in src/Drivers/Behpardakht/Behpardakht.php - About 2 hrs to fix

                Method verify has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function verify() : ReceiptInterface
                    {
                        $successFlag = Request::input('success');
                        $status = Request::input('status');
                        $orderId = Request::input('orderId');
                Severity: Minor
                Found in src/Drivers/Zibal/Zibal.php - About 1 hr to fix

                  Method translateStatus has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      private function translateStatus($status): string
                      {
                          $translations = [
                              'erSucceed' => 'سرویس با موفقیت اجراء شد.',
                              'erAAS_UseridOrPassIsRequired' => 'کد کاربری و رمز الزامی هست.',
                  Severity: Minor
                  Found in src/Drivers/Omidpay/Omidpay.php - About 1 hr to fix

                    Function fn_atipay_get_token has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                    Open

                    function fn_atipay_get_token($params)
                    {
                        $r = wsRequestPost(ATIPAY_TOKEN_URL, $params);
                        $return = array();
                        if ($r) {
                    Severity: Minor
                    Found in src/Drivers/Atipay/Core/fn.atipay.php - 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

                    Severity
                    Category
                    Status
                    Source
                    Language