zammad/zammad

View on GitHub
app/assets/javascripts/app/lib/base/qrcodegen.js

Summary

Maintainability
F
1 wk
Test Coverage

Function QrCode has 454 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    var QrCode = /** @class */ (function () {
        /*-- Constructor (low level) and fields --*/
        // Creates a new QR Code with the given version number,
        // error correction level, data codeword bytes, and mask number.
        // This is a low-level API that most users should not use directly.
Severity: Major
Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 2 days to fix

    File qrcodegen.js has 624 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /*
     * QR Code generator library (compiled from TypeScript)
     *
     * Copyright (c) Project Nayuki. (MIT License)
     * https://www.nayuki.io/page/qr-code-generator-library
    Severity: Major
    Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 1 day to fix

      Function QrSegment has 109 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          var QrSegment = /** @class */ (function () {
              /*-- Constructor (low level) and fields --*/
              // Creates a new QR Code segment with the given attributes and data.
              // The character count (numChars) must agree with the mode and the bit buffer length,
              // but the constraint isn't checked. The given bit buffer is cloned and stored.
      Severity: Major
      Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 4 hrs to fix

        Function getPenaltyScore has 65 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                QrCode.prototype.getPenaltyScore = function () {
                    var result = 0;
                    // Adjacent modules in row having same color, and finder-like patterns
                    for (var y = 0; y < this.size; y++) {
                        var runColor = false;
        Severity: Major
        Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 2 hrs to fix

          Function encodeSegments has 49 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  QrCode.encodeSegments = function (segs, ecl, minVersion, maxVersion, mask, boostEcl) {
                      if (minVersion === void 0) { minVersion = 1; }
                      if (maxVersion === void 0) { maxVersion = 40; }
                      if (mask === void 0) { mask = -1; }
                      if (boostEcl === void 0) { boostEcl = true; }
          Severity: Minor
          Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 1 hr to fix

            Function QrCode has 37 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    function QrCode(
                    // The version number of this QR Code, which is between 1 and 40 (inclusive).
                    // This determines the size of this barcode.
                    version, 
                    // The error correction level used in this QR Code.
            Severity: Minor
            Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 1 hr to fix

              Function applyMask has 36 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      QrCode.prototype.applyMask = function (mask) {
                          if (mask < 0 || mask > 7)
                              throw new RangeError("Mask value out of range");
                          for (var y = 0; y < this.size; y++) {
                              for (var x = 0; x < this.size; x++) {
              Severity: Minor
              Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 1 hr to fix

                Function addEccAndInterleave has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        QrCode.prototype.addEccAndInterleave = function (data) {
                            var ver = this.version;
                            var ecl = this.errorCorrectionLevel;
                            if (data.length != QrCode.getNumDataCodewords(ver, ecl))
                                throw new RangeError("Invalid argument");
                Severity: Minor
                Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 1 hr to fix

                  Function encodeSegments has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                          QrCode.encodeSegments = function (segs, ecl, minVersion, maxVersion, mask, boostEcl) {
                  Severity: Minor
                  Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 45 mins to fix

                    Consider simplifying this complex logical expression.
                    Open

                                        if (!(i == 0 && j == 0 || i == 0 && j == numAlign - 1 || i == numAlign - 1 && j == 0))
                                            this.drawAlignmentPattern(alignPatPos[i], alignPatPos[j]);
                    Severity: Major
                    Found in app/assets/javascripts/app/lib/base/qrcodegen.js - About 40 mins to fix

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

                                  for (var y = 0; y < this.size; y++) {
                                      var runColor = false;
                                      var runX = 0;
                                      var runHistory = [0, 0, 0, 0, 0, 0, 0];
                                      for (var x = 0; x < this.size; x++) {
                      Severity: Major
                      Found in app/assets/javascripts/app/lib/base/qrcodegen.js and 1 other location - About 1 day to fix
                      app/assets/javascripts/app/lib/base/qrcodegen.js on lines 428..449

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

                      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

                                  for (var x = 0; x < this.size; x++) {
                                      var runColor = false;
                                      var runY = 0;
                                      var runHistory = [0, 0, 0, 0, 0, 0, 0];
                                      for (var y = 0; y < this.size; y++) {
                      Severity: Major
                      Found in app/assets/javascripts/app/lib/base/qrcodegen.js and 1 other location - About 1 day to fix
                      app/assets/javascripts/app/lib/base/qrcodegen.js on lines 405..426

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

                      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

                              QrCode.NUM_ERROR_CORRECTION_BLOCKS = [
                                  // Version: (note that index 0 is for padding, and is set to an illegal value)
                                  //0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40    Error correction level
                                  [-1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 4, 4, 4, 4, 4, 6, 6, 6, 6, 7, 8, 8, 9, 9, 10, 12, 12, 12, 13, 14, 15, 16, 17, 18, 19, 19, 20, 21, 22, 24, 25],
                                  [-1, 1, 1, 1, 2, 2, 4, 4, 4, 5, 5, 5, 8, 9, 9, 10, 10, 11, 13, 14, 16, 17, 17, 18, 20, 21, 23, 25, 26, 28, 29, 31, 33, 35, 37, 38, 40, 43, 45, 47, 49],
                      Severity: Major
                      Found in app/assets/javascripts/app/lib/base/qrcodegen.js and 1 other location - About 1 day to fix
                      app/assets/javascripts/app/lib/base/qrcodegen.js on lines 607..614

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

                      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

                              QrCode.ECC_CODEWORDS_PER_BLOCK = [
                                  // Version: (note that index 0 is for padding, and is set to an illegal value)
                                  //0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40    Error correction level
                                  [-1, 7, 10, 15, 20, 26, 18, 20, 24, 30, 18, 20, 24, 26, 30, 22, 24, 28, 30, 28, 28, 28, 28, 30, 30, 26, 28, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30],
                                  [-1, 10, 16, 26, 18, 24, 16, 18, 22, 22, 26, 30, 22, 22, 24, 24, 28, 28, 26, 26, 26, 26, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28],
                      Severity: Major
                      Found in app/assets/javascripts/app/lib/base/qrcodegen.js and 1 other location - About 1 day to fix
                      app/assets/javascripts/app/lib/base/qrcodegen.js on lines 615..622

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

                      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

                      There are no issues that match your filters.

                      Category
                      Status