CaffGeek/MBACNationals

View on GitHub
Web.Admin/z-scripts/ng-file-upload-all.js

Summary

Maintainability
F
2 mos
Test Coverage

File ng-file-upload-all.js has 888 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**!
 * AngularJS file upload/drop directive and service with progress and abort
 * @author  Danial  <danial.farid@gmail.com>
 * @version 4.2.1
 */
Severity: Major
Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 2 days to fix

    Function linkDrop has 169 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function linkDrop(scope, elem, attr, ngModel, $parse, $timeout, $location) {
        var available = dropAvailable();
        if (attr.dropAvailable) {
            $timeout(function () {
                scope[attr.dropAvailable] ? scope[attr.dropAvailable].value = available : scope[attr.dropAvailable] = available;
    Severity: Major
    Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 6 hrs to fix

      Function extractFiles has 96 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function extractFiles(evt, callback, allowDir, multiple) {
              var files = [], rejFiles = [], items = evt.dataTransfer.items, processing = 0;
      
              function addFile(file) {
                  if (validate(scope, $parse, attr, file, evt)) {
      Severity: Major
      Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 3 hrs to fix

        Function linkFileSelect has 93 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function linkFileSelect(scope, elem, attr, ngModel, $parse, $timeout, $compile) {
            if (elem.attr('__ngf_gen__')) {
                return;
            }
            function isInputTypeFile() {
        Severity: Major
        Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 3 hrs to fix

          Function sendHttp has 75 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              function sendHttp(config) {
                  config.method = config.method || 'POST';
                  config.headers = config.headers || {};
                  config.transformRequest = config.transformRequest || function (data, headersGetter) {
                      if (window.ArrayBuffer && data instanceof window.ArrayBuffer) {
          Severity: Major
          Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 3 hrs to fix

            Consider simplifying this complex logical expression.
            Open

            if ((window.XMLHttpRequest && !window.FormData) || (window.FileAPI && FileAPI.forceLoad)) {
                var initializeUploadListener = function(xhr) {
                    if (!xhr.__listeners) {
                        if (!xhr.upload) xhr.upload = {};
                        xhr.__listeners = [];
            Severity: Critical
            Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 2 hrs to fix

              Function ngfFixIE has 66 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  FileAPI.ngfFixIE = function(elem, createFileElemFn, bindAttr, changeFn, resetModel) {
                      if (!hasFlash()) {
                          throw 'Adode Flash Player need to be installed. To check ahead use "FileAPI.hasFlash"';
                      }
                      var makeFlashInput = function(evt) {
              Severity: Major
              Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 2 hrs to fix

                Function upload has 56 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    this.upload = function (config) {
                        config.headers = config.headers || {};
                        config.headers['Content-Type'] = undefined;
                        config.transformRequest = config.transformRequest ?
                            (angular.isArray(config.transformRequest) ?
                Severity: Major
                Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 2 hrs to fix

                  Function FileReader has 55 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      window.FileReader = function() {
                          var _this = this, loadStarted = false;
                          this.listeners = {};
                          this.addEventListener = function(type, fn) {
                              _this.listeners[type] = _this.listeners[type] || [];
                  Severity: Major
                  Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 2 hrs to fix

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

                            function traverseFileTree(files, entry, path) {
                                if (entry != null) {
                                    if (entry.isDirectory) {
                                        var filePath = (path || '') + entry.name;
                                        addFile({name: entry.name, type: 'directory', path: filePath});
                    Severity: Minor
                    Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 1 hr to fix

                      Function makeFlashInput has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                              var makeFlashInput = function(evt) {
                                  if (elem.attr('disabled')) {
                                      elem.__ngf_elem__.removeClass('js-fileapi-wrapper');
                                  } else {
                                      var fileElem = elem.__ngf_elem__;
                      Severity: Minor
                      Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 1 hr to fix

                        Consider simplifying this complex logical expression.
                        Open

                                            if (file &&
                                                    validate(scope, $parse, attr, file, null) &&
                                                    (!window.FileAPI || navigator.userAgent.indexOf('MSIE 8') === -1 || file.size < 20000) && 
                                                    (!window.FileAPI || navigator.userAgent.indexOf('MSIE 9') === -1 || file.size < 4000000)) {
                                                $timeout(function() {
                        Severity: Critical
                        Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 1 hr to fix

                          Function updateModel has 10 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                          function updateModel($parse, $timeout, scope, ngModel, attr, fileChange, files, rejFiles, evt, noDelay) {
                          Severity: Major
                          Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 1 hr to fix

                            Function linkDrop has 7 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                            function linkDrop(scope, elem, attr, ngModel, $parse, $timeout, $location) {
                            Severity: Major
                            Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 50 mins to fix

                              Function linkFileSelect has 7 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                              function linkFileSelect(scope, elem, attr, ngModel, $parse, $timeout, $compile) {
                              Severity: Major
                              Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 50 mins to fix

                                Avoid deeply nested control flow statements.
                                Open

                                                            if (angular.isDate(val)) {
                                                                val = val.toISOString();
                                                            }
                                Severity: Major
                                Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 45 mins to fix

                                  Avoid deeply nested control flow statements.
                                  Open

                                                      if (index > -1) {
                                                          basePath = src.substring(0, index + 1);
                                                          break;
                                                      }
                                  Severity: Major
                                  Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 45 mins to fix

                                    Avoid deeply nested control flow statements.
                                    Open

                                                                if (angular.isString(val)) {
                                                                    formData.append(key, val);
                                                                } else {
                                                                    if (config.sendObjectsAsJsonBlob && angular.isObject(val)) {
                                                                        formData.append(key, new Blob([val], {type: 'application/json'}));
                                    Severity: Major
                                    Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 45 mins to fix

                                      Consider simplifying this complex logical expression.
                                      Open

                                                  if ((isInputTypeFile() && attribute.name !== 'type') 
                                                          || (attribute.name !== 'type' && attribute.name !== 'class' && 
                                                          attribute.name !== 'id' && attribute.name !== 'style')) {
                                                      fileElem.attr(attribute.name, attribute.value);
                                                  }
                                      Severity: Major
                                      Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 40 mins to fix

                                        Consider simplifying this complex logical expression.
                                        Open

                                                    if (arguments[0] && arguments[0].__isFileAPIShim) {
                                                        var formData = arguments[0];
                                                        var config = {
                                                            url: xhr.__url,
                                                            jsonp: false, //removes the callback form param
                                        Severity: Major
                                        Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 40 mins to fix

                                          Function validate has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                          Open

                                          function validate(scope, $parse, attr, file, evt) {
                                          Severity: Minor
                                          Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 35 mins to fix

                                            Function ngfFixIE has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                            Open

                                                FileAPI.ngfFixIE = function(elem, createFileElemFn, bindAttr, changeFn, resetModel) {
                                            Severity: Minor
                                            Found in Web.Admin/z-scripts/ng-file-upload-all.js - About 35 mins to fix

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

                                              (function () {
                                              
                                              var key, i;
                                              function patchXHR(fnName, newFn) {
                                                  window.XMLHttpRequest.prototype[fnName] = newFn(window.XMLHttpRequest.prototype[fnName]);
                                              Severity: Major
                                              Found in Web.Admin/z-scripts/ng-file-upload-all.js and 1 other location - About 1 mo to fix
                                              Web.Admin/z-scripts/ng-file-upload.js on lines 6..613

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

                                              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

                                              (function() {
                                              
                                              var hasFlash = function() {
                                                  try {
                                                    var fo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
                                              Severity: Major
                                              Found in Web.Admin/z-scripts/ng-file-upload-all.js and 1 other location - About 3 wks to fix
                                              Web.Admin/z-scripts/ng-file-upload-shim.js on lines 8..377

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

                                              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