wikimedia/mediawiki-extensions-UploadWizard

View on GitHub
resources/mw.UploadWizardUpload.js

Summary

Maintainability
F
3 days
Test Coverage

File mw.UploadWizardUpload.js has 541 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * Represents the upload -- in its local and remote state. (Possibly those could be separate objects too...)
 * This is our 'model' object if we are thinking MVC. Needs to be better factored, lots of feature envy with the UploadWizard
 * states:
 *   'new' 'transporting' 'transported' 'metadata' 'stashed' 'details' 'submitting-details' 'complete' 'error'
Severity: Major
Found in resources/mw.UploadWizardUpload.js - About 1 day to fix

    Function getTransformedCanvasElement has 54 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        mw.UploadWizardUpload.prototype.getTransformedCanvasElement = function ( image, constraints ) {
            var angle, scaling, width, height,
                dimensions, dx, dy, x, y, $canvas, ctx,
                scaleConstraints = constraints,
                rotation = 0;
    Severity: Major
    Found in resources/mw.UploadWizardUpload.js - About 2 hrs to fix

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

          mw.UploadWizardUpload.prototype.makePreview = function ( width ) {
              var first, video, url, dataUrlReader,
                  deferred = $.Deferred(),
                  upload = this;
      
      
      Severity: Minor
      Found in resources/mw.UploadWizardUpload.js - About 1 hr to fix

        Function getImageInfo has 45 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            mw.UploadWizardUpload.prototype.getImageInfo = function ( callback, props, width, height ) {
                var requestedTitle, params;
        
                function ok( data ) {
                    var found;
        Severity: Minor
        Found in resources/mw.UploadWizardUpload.js - About 1 hr to fix

          Function getApiThumbnail has 43 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              mw.UploadWizardUpload.prototype.getApiThumbnail = function ( width, height ) {
                  var deferred = $.Deferred();
          
                  function thumbnailPublisher( thumbnails ) {
                      if ( thumbnails === null ) {
          Severity: Minor
          Found in resources/mw.UploadWizardUpload.js - About 1 hr to fix

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

                mw.UploadWizardUpload.prototype.extractMetadataFromJpegMeta = function () {
                    var binReader, jpegmeta,
                        deferred = $.Deferred(),
                        upload = this;
                    if ( this.file && this.file.type === 'image/jpeg' ) {
            Severity: Minor
            Found in resources/mw.UploadWizardUpload.js - About 1 hr to fix

              Function thumbnailPublisher has 34 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      function thumbnailPublisher( thumbnails ) {
                          if ( thumbnails === null ) {
                              // the api call failed somehow, no thumbnail data.
                              deferred.resolve( null );
                          } else {
              Severity: Minor
              Found in resources/mw.UploadWizardUpload.js - About 1 hr to fix

                Function getStashImageInfo has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    mw.UploadWizardUpload.prototype.getStashImageInfo = function ( callback, props, width, height ) {
                        var params = {
                            prop: 'stashimageinfo',
                            siifilekey: this.fileKey,
                            siiprop: props.join( '|' )
                Severity: Minor
                Found in resources/mw.UploadWizardUpload.js - About 1 hr to fix

                  Function getThumbnail has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      mw.UploadWizardUpload.prototype.getThumbnail = function ( width, height ) {
                          var upload = this,
                              deferred = $.Deferred();
                  
                          if ( this.thumbnailPromise[ width + 'x' + height ] ) {
                  Severity: Minor
                  Found in resources/mw.UploadWizardUpload.js - About 1 hr to fix

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

                            if ( width !== undefined || height !== undefined ) {
                                if ( props.indexOf( 'url' ) === -1 ) {
                                    props.push( 'url' );
                                }
                                if ( width !== undefined ) {
                    Severity: Major
                    Found in resources/mw.UploadWizardUpload.js and 1 other location - About 3 hrs to fix
                    resources/mw.UploadWizardUpload.js on lines 439..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 95.

                    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 ( width !== undefined || height !== undefined ) {
                                if ( props.indexOf( 'url' ) === -1 ) {
                                    props.push( 'url' );
                                }
                                if ( width !== undefined ) {
                    Severity: Major
                    Found in resources/mw.UploadWizardUpload.js and 1 other location - About 3 hrs to fix
                    resources/mw.UploadWizardUpload.js on lines 373..383

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

                    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