APTrust/dart

View on GitHub

Showing 166 of 237 total issues

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

    _copyToClipboard() {
        var copyText = document.querySelector("#txtJson");
        copyText.select();
        document.execCommand("copy");
        $("#copied").show();
Severity: Major
Found in ui/controllers/settings_controller.js and 1 other location - About 2 hrs to fix
ui/controllers/workflow_controller.js on lines 118..124

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

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

    _validateAllowedTagFiles() {
        let allowed = this.profile.tagFilesAllowed || [];
        let tagFiles = this.tagFiles();
        for (let file of tagFiles) {
            if (file.relDestPath == 'bagit.txt') {
Severity: Minor
Found in bagit/validator.js - 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

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

                if (header.type === "file") {
                    tarReader.fileCount += 1;
                    tarReader.byteCount += Number(fileStat.size);
                } else if (header.type === "directory") {
                    tarReader.dirCount += 1;
Severity: Major
Found in plugins/formats/read/tar_reader.js and 1 other location - About 1 hr to fix
plugins/formats/read/tar_reader.js on lines 204..209

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

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

                if (header.type === "file") {
                    tarReader.fileCount += 1;
                    tarReader.byteCount += Number(fileStat.size);
                } else if (header.type === "directory") {
                    tarReader.dirCount += 1;
Severity: Major
Found in plugins/formats/read/tar_reader.js and 1 other location - About 1 hr to fix
plugins/formats/read/tar_reader.js on lines 134..139

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

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 profileFromStandardObject has 44 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    static profileFromStandardObject(obj) {
        if (BagItUtil.guessProfileType(obj) != 'bagit_profiles') {
            throw Context.y18n.__("Object does not look like a BagIt profile");
        }
        var p = new BagItProfile();
Severity: Minor
Found in bagit/bagit_util.js - About 1 hr to fix

    Function _addObjType has 44 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        _addObjType() {
            let objType = `objType_${this.rowCount}`
            let question = this.obj.questions[this.rowCount];
            let value = question ? question.objType : "";
            this.fields[objType] = new Field(
    Severity: Minor
    Found in ui/forms/settings_questions_form.js - About 1 hr to fix

      Function _validateTagsInFile has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          _validateTagsInFile(filename, tagFile) {
              var requiredTags = this.profile.tagsGroupedByFile();
              for (var tagDef of requiredTags[filename]) {
                  var parsedTagValues = tagFile.keyValueCollection.all(tagDef.tagName);
                  if (parsedTagValues == null) {
      Severity: Minor
      Found in bagit/validator.js - 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 uploadSucceeded has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          uploadSucceeded() {
              let anyAttempted = false;
              let allSucceeded = true;
              if (this.uploadOps) {
                  for (let op of this.uploadOps) {
      Severity: Minor
      Found in core/job.js - 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 run has 43 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          run() {
              var creator = this;
              if (!this.job.packageOp.validate()) {
                  return new Promise(function(resolve, reject) {
                      let errors = Object.values(creator.job.packageOp.errors);
      Severity: Minor
      Found in workers/bag_creator.js - About 1 hr to fix

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

            show() {
                let form = new JobTagsForm(this.job);
                let data = { job: this.job, form: form };
                return this.containerContent(Templates.jobMetadata(data));
            }
        Severity: Major
        Found in ui/controllers/job_metadata_controller.js and 1 other location - About 1 hr to fix
        ui/controllers/job_upload_controller.js on lines 32..36

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

        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

            show() {
                let form = new JobUploadForm(this.job);
                let data = { job: this.job, form: form };
                return this.containerContent(Templates.jobUpload(data));
            }
        Severity: Major
        Found in ui/controllers/job_upload_controller.js and 1 other location - About 1 hr to fix
        ui/controllers/job_metadata_controller.js on lines 37..41

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

        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 _importProfileObject has 40 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            _importProfileObject(json, profileUrl) {
                let obj;
                try {
                    obj = JSON.parse(json);
                } catch (ex) {
        Severity: Minor
        Found in ui/controllers/bagit_profile_controller.js - About 1 hr to fix

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

          if (process.env.TRAVIS_OS_NAME) {
              mkdirp(path.dirname(options.travisLogFile.filename));
              logFile = options.travisLogFile.filename;
              transports = [ new winston.transports.File(options.travisLogFile) ];
          } else if (process.env.NODE_ENV=='test') {
          Severity: Major
          Found in util/logger.js and 1 other location - About 1 hr to fix
          util/logger.js on lines 80..88

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

          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

                  if (tagsFromProfile.length > 0) {
                      tagDef = tagsFromProfile[0];
                  } else {
                      tagDef = new TagDefinition({
                          tagFile: "bag-info.txt",
          Severity: Major
          Found in bagit/bagit_util.js and 1 other location - About 1 hr to fix
          bagit/bagit_util.js on lines 79..87

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

          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

                      if (tagsFromProfile.length > 0) {
                          tagDef = tagsFromProfile[0];
                      } else {
                          tagDef = new TagDefinition({
                              tagFile: "bag-info.txt",
          Severity: Major
          Found in bagit/bagit_util.js and 1 other location - About 1 hr to fix
          bagit/bagit_util.js on lines 190..198

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

          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

          } else if (process.env.NODE_ENV=='test') {
              mkdirp(path.dirname(options.testLogFile.filename));
              logFile = options.testLogFile.filename;
              transports = [ new winston.transports.File(options.testLogFile) ];
          } else {
          Severity: Major
          Found in util/logger.js and 1 other location - About 1 hr to fix
          util/logger.js on lines 76..88

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

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

              static profileToStandardObject(p) {
                  var obj = {};
                  obj["Accept-BagIt-Version"] = p.acceptBagItVersion;
                  obj["Accept-Serialization"] = p.acceptSerialization;
                  obj["Allow-Fetch.txt"] = p.allowFetchTxt;
          Severity: Minor
          Found in bagit/bagit_util.js - 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 _updatePackaging has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

              _updatePackaging(withValidation) {
                  let form = this._parseJobPackagingForm();
                  if (withValidation) {
                      if (this.job.packageOp.packageFormat == Context.y18n.__('Choose One')) {
                          form.obj.errors['packageFormat'] = Context.y18n.__("You must specify a package format.");
          Severity: Minor
          Found in ui/controllers/job_packaging_controller.js - 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 _validatePayloadOxum has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

              _validatePayloadOxum() {
                  //Context.logger.info(`Validator: Validating Payload-Oxum in ${this.pathToBag}`);
                  let found = false;
                  let bagInfo = this.files["bag-info.txt"];
                  if (bagInfo && bagInfo.keyValueCollection) {
          Severity: Minor
          Found in bagit/validator.js - 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 attachDragAndDropEvents has 39 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              attachDragAndDropEvents() {
                  let controller = this;
                  $('#dropZone').on('drop', function(e) {
                      e.preventDefault();
                      e.stopPropagation();
          Severity: Minor
          Found in ui/controllers/job_files_controller.js - About 1 hr to fix
            Severity
            Category
            Status
            Source
            Language