Showing 4,751 of 10,525 total issues

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

def access_control(req):
    """
        Check user privilege in request headers to protect resources from invalid access
        :param req: HTTP request
        :return: HTTPError if invalid else None
Severity: Major
Found in myems-api/core/useractivity.py and 1 other location - About 4 days to fix
myems-api/core/useractivity.py on lines 12..62

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

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

angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
function getDecimals(n) {
  n = n + '';
  var i = n.indexOf('.');
Severity: Major
Found in myems-admin/js/angular/i18n/angular-locale_sl.js and 1 other location - About 4 days to fix
myems-admin/js/angular/i18n/angular-locale_sl-si.js on lines 2..143

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

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

angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
function getDecimals(n) {
  n = n + '';
  var i = n.indexOf('.');
Severity: Major
Found in myems-admin/js/angular/i18n/angular-locale_sl-si.js and 1 other location - About 4 days to fix
myems-admin/js/angular/i18n/angular-locale_sl.js on lines 2..143

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

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 meta_result['stores'] is not None and len(meta_result['stores']) > 0:
                for store in meta_result['stores']:
                    cursor.execute(" SELECT name "
                                   " FROM tbl_stores "
                                   " WHERE id = %s ", (store['id'],))
Severity: Major
Found in myems-api/core/space.py and 1 other location - About 4 days to fix
myems-api/core/space.py on lines 4364..4411

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

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 new_values['stores'] is not None and len(new_values['stores']) > 0:
            for store in new_values['stores']:
                cursor.execute(" SELECT name "
                               " FROM tbl_stores "
                               " WHERE id = %s ", (store['id'],))
Severity: Major
Found in myems-api/core/space.py and 1 other location - About 4 days to fix
myems-api/core/space.py on lines 5111..5158

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

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

app.factory('DistributionSystemService', function($http) {
    return {
        getAllDistributionSystems:function(headers, callback){
            $http.get(getAPI()+'distributionsystems', {headers})
            .then(function (response) {
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('TariffService', function($http) {
    return {
        getAllTariffs:function(headers, callback){
            $http.get(getAPI()+'tariffs', {headers})
            .then(function (response) {
Severity: Major
Found in myems-admin/app/services/settings/tariff/tariff.service.js and 10 other locations - About 4 days to fix
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('SensorService', function($http) {
    return {
        getAllSensors:function(headers, callback){
            $http.get(getAPI()+'sensors', {headers})
            .then(function (response) {
Severity: Major
Found in myems-admin/app/services/settings/sensor/sensor.service.js and 10 other locations - About 4 days to fix
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('MicrogridService', function($http) {
    return {
        getAllMicrogrids:function(headers, callback){
            $http.get(getAPI()+'microgrids', {headers})
            .then(function (response) {
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('VirtualPowerPlantService', function($http) {
    return {
        getAllVirtualPowerPlants:function(headers, callback){
            $http.get(getAPI()+'virtualpowerplants', {headers})
            .then(function (response) {
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('PhotovoltaicPowerStationService', function($http) {
    return {
        getAllPhotovoltaicPowerStations:function(headers, callback){
            $http.get(getAPI()+'photovoltaicpowerstations', {headers})
            .then(function (response) {
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('SVGService', function($http) {
    return {
        getAllSVGs:function(headers, callback){
            $http.get(getAPI()+'svgs', {headers})
            .then(function (response) {
Severity: Major
Found in myems-admin/app/services/settings/svg/svg.service.js and 10 other locations - About 4 days to fix
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('WindFarmService', function($http) {
    return {
        getAllWindFarms:function(headers, callback){
            $http.get(getAPI()+'windfarms', {headers})
            .then(function (response) {
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69

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

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

app.factory('CombinedEquipmentService', function($http) {
    return {
        getAllCombinedEquipments:function(headers, callback){
            $http.get(getAPI()+'combinedequipments', {headers})
            .then(function (response) {
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('EnergyFlowDiagramService', function($http) {
    return {
        getAllEnergyFlowDiagrams:function(headers, callback){
            $http.get(getAPI()+'energyflowdiagrams', {headers})
            .then(function (response) {
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energystoragepowerstation/energystoragepowerstation.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

app.factory('EnergyStoragePowerStationService', function($http) {
    return {
        getAllEnergyStoragePowerStations:function(headers, callback){
            $http.get(getAPI()+'energystoragepowerstations', {headers})
            .then(function (response) {
myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js on lines 2..69
myems-admin/app/services/settings/distributionsystem/distributionsystem.service.js on lines 2..69
myems-admin/app/services/settings/energyflowdiagram/energyflowdiagram.service.js on lines 2..69
myems-admin/app/services/settings/microgrid/microgrid.service.js on lines 2..69
myems-admin/app/services/settings/photovoltaicpowerstation/photovoltaicpowerstation.service.js on lines 2..69
myems-admin/app/services/settings/sensor/sensor.service.js on lines 2..69
myems-admin/app/services/settings/svg/svg.service.js on lines 2..69
myems-admin/app/services/settings/tariff/tariff.service.js on lines 2..69
myems-admin/app/services/settings/virtualpowerplant/virtualpowerplant.service.js on lines 2..69
myems-admin/app/services/settings/windfarm/windfarm.service.js on lines 2..69

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

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

  useEffect(() => {
    let isResponseOK = false;
    fetch(APIBaseURL + '/spaces/tree', {
      method: 'GET',
      headers: {
myems-web/src/components/MyEMS/Tenant/TenantBill.js on lines 169..253

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

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

  useEffect(() => {
    let isResponseOK = false;
    fetch(APIBaseURL + '/spaces/tree', {
      method: 'GET',
      headers: {
Severity: Major
Found in myems-web/src/components/MyEMS/Tenant/TenantBill.js and 1 other location - About 4 days to fix
myems-web/src/components/MyEMS/Monitoring/CombinedEquipments.js on lines 77..161

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

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

class ActiveUsersBarChart extends Component {
  _isMounted = false;
  refreshInterval;
  refreshTimeout;
  state = {
myems-web/src/components/MyEMS/Store/ActiveUsersBarChart.js on lines 37..118
myems-web/src/components/MyEMS/Tenant/ActiveUsersBarChart.js on lines 37..119

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

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

class ActiveUsersBarChart extends Component {
  _isMounted = false;
  refreshInterval;
  refreshTimeout;
  state = {
Severity: Major
Found in myems-web/src/components/MyEMS/Store/ActiveUsersBarChart.js and 2 other locations - About 4 days to fix
myems-web/src/components/MyEMS/Shopfloor/ActiveUsersBarChart.js on lines 37..118
myems-web/src/components/MyEMS/Tenant/ActiveUsersBarChart.js on lines 37..119

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

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

Severity
Category
Status
Source
Language