plainblack/Lacuna-Web-Client

View on GitHub
app/js-yui/building/security.js

Summary

Maintainability
F
1 wk
Test Coverage

File security.js has 319 lines of code (exceeds 250 allowed). Consider refactoring.
Open

YAHOO.namespace("lacuna.buildings");

if (typeof YAHOO.lacuna.buildings.Security == "undefined" || !YAHOO.lacuna.buildings.Security) {
    
(function(){
Severity: Minor
Found in app/js-yui/building/security.js - About 3 hrs to fix

    Function PrisonersPopulate has 58 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            PrisonersPopulate : function() {
                var details = Dom.get("prisonersDetails");
                if(details) {
                    var prisoners = this.prisoners,
                        div = document.createElement("div"),
    Severity: Major
    Found in app/js-yui/building/security.js - About 2 hrs to fix

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

              SpyPopulate : function() {
                  var details = Dom.get("securityDetails");
                  if(details) {
                      var spies = this.spies,
                          div = document.createElement("div"),
      Severity: Minor
      Found in app/js-yui/building/security.js - About 1 hr to fix

        Function spiesView has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                spiesView : function(e) {
                    if(e.newValue) {
                        if(!this.spies) {
                            require('js/actions/menu/loader').show();
                            this.service.view_foreign_spies({session_id:Game.GetSession(),building_id:this.building.id}, {
        Severity: Minor
        Found in app/js-yui/building/security.js - About 1 hr to fix

          Function prisonersView has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  prisonersView : function(e) {
                      if(e.newValue) {
                          if(!this.prisoners) {
                              require('js/actions/menu/loader').show();
                              this.service.view_prisoners({session_id:Game.GetSession(),building_id:this.building.id}, {
          Severity: Minor
          Found in app/js-yui/building/security.js - About 1 hr to fix

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

                    PrisonersRelease : function() {
                        if(confirm(["Are you sure you want to release ",this.Prisoner.name,"?"].join(''))) {
                            require('js/actions/menu/loader').show();
                            
                            this.Self.service.release_prisoner({
            Severity: Major
            Found in app/js-yui/building/security.js and 1 other location - About 1 day to fix
            app/js-yui/building/security.js on lines 199..224

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

            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

                    PrisonersExecute : function() {
                        if(confirm(["Are you sure you want to execute ",this.Prisoner.name,"?"].join(''))) {
                            require('js/actions/menu/loader').show();
                            
                            this.Self.service.execute_prisoner({
            Severity: Major
            Found in app/js-yui/building/security.js and 1 other location - About 1 day to fix
            app/js-yui/building/security.js on lines 225..250

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

            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

                    spiesView : function(e) {
                        if(e.newValue) {
                            if(!this.spies) {
                                require('js/actions/menu/loader').show();
                                this.service.view_foreign_spies({session_id:Game.GetSession(),building_id:this.building.id}, {
            Severity: Major
            Found in app/js-yui/building/security.js and 1 other location - About 1 day to fix
            app/js-yui/building/security.js on lines 76..106

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

            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

                    prisonersView : function(e) {
                        if(e.newValue) {
                            if(!this.prisoners) {
                                require('js/actions/menu/loader').show();
                                this.service.view_prisoners({session_id:Game.GetSession(),building_id:this.building.id}, {
            Severity: Major
            Found in app/js-yui/building/security.js and 1 other location - About 1 day to fix
            app/js-yui/building/security.js on lines 252..282

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

            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

                    SpyHandlePagination : function(newState) {
                        require('js/actions/menu/loader').show();
                        this.service.view_foreign_spies({
                            session_id:Game.GetSession(),
                            building_id:this.building.id,
            Severity: Major
            Found in app/js-yui/building/security.js and 1 other location - About 7 hrs to fix
            app/js-yui/building/security.js on lines 179..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 179.

            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

                    PrisonersHandlePagination : function(newState) {
                        require('js/actions/menu/loader').show();
                        this.service.view_prisoners({
                            session_id:Game.GetSession(),
                            building_id:this.building.id,
            Severity: Major
            Found in app/js-yui/building/security.js and 1 other location - About 7 hrs to fix
            app/js-yui/building/security.js on lines 336..355

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

            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 7 locations. Consider refactoring.
            Open

                var Lang = YAHOO.lang,
                    Util = YAHOO.util,
                    Dom = Util.Dom,
                    Event = Util.Event,
                    Pager = YAHOO.widget.Paginator,
            Severity: Major
            Found in app/js-yui/building/security.js and 6 other locations - About 2 hrs to fix
            app/js-yui/building/intelligence.js on lines 6..14
            app/js-yui/building/libraryOfJith.js on lines 6..14
            app/js-yui/building/observatory.js on lines 6..14
            app/js-yui/building/templeOfTheDrajilites.js on lines 6..14
            app/js-yui/messaging.js on lines 12..20
            app/js-yui/module/policeStation.js on lines 6..14

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

            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 4 locations. Consider refactoring.
            Open

                    destroy : function() {
                        if(this.pagerPrisoners) {
                            this.pagerPrisoners.destroy();
                        }
                        if(this.pagerSpies) {
            Severity: Major
            Found in app/js-yui/building/security.js and 3 other locations - About 2 hrs to fix
            app/js-yui/building/mercenariesGuild.js on lines 31..39
            app/js-yui/building/tradeMinistry.js on lines 160..168
            app/js-yui/building/transporter.js on lines 160..168

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

            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 3 locations. Consider refactoring.
            Open

                var Security = function(result){
                    Security.superclass.constructor.call(this, result);
                    
                    this.service = Game.Services.Buildings.Security;
                    
            Severity: Major
            Found in app/js-yui/building/security.js and 2 other locations - About 1 hr to fix
            app/js-yui/building/entertainment.js on lines 13..18
            app/js-yui/module/policeStation.js on lines 16..22

            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

                                var prisoner = prisoners[i],
                                    nDiv = div.cloneNode(false),
                                    nUl = ul.cloneNode(false),
                                    nLi = li.cloneNode(false);
            Severity: Minor
            Found in app/js-yui/building/security.js and 1 other location - About 45 mins to fix
            app/js-yui/building/security.js on lines 297..300

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

            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

                            var prisoners = this.prisoners,
                                div = document.createElement("div"),
                                ul = document.createElement("ul"),
                                li = document.createElement("li");
            Severity: Minor
            Found in app/js-yui/building/security.js and 1 other location - About 45 mins to fix
            app/js-yui/building/security.js on lines 286..289

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

            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

                                var spy = spies[i],
                                    nDiv = div.cloneNode(false),
                                    nUl = ul.cloneNode(false),
                                    nLi = li.cloneNode(false);
            Severity: Minor
            Found in app/js-yui/building/security.js and 1 other location - About 45 mins to fix
            app/js-yui/building/security.js on lines 120..123

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

            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

                            var spies = this.spies,
                                div = document.createElement("div"),
                                ul = document.createElement("ul"),
                                li = document.createElement("li");
            Severity: Minor
            Found in app/js-yui/building/security.js and 1 other location - About 45 mins to fix
            app/js-yui/building/security.js on lines 110..113

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

            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