portainer/portainer

View on GitHub
app/kubernetes/views/applications/create/createApplicationController.js

Summary

Maintainability
F
6 days
Test Coverage

File createApplicationController.js has 945 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import angular from 'angular';
import _ from 'lodash-es';
import filesizeParser from 'filesize-parser';
import * as JsonPatch from 'fast-json-patch';
import { RegistryTypes } from '@/portainer/models/registryTypes';

    KubernetesCreateApplicationController has 73 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class KubernetesCreateApplicationController {
      /* #region  CONSTRUCTOR */
    
      /* @ngInject */
      constructor(

      Function $onInit has 119 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        $onInit() {
          return this.$async(async () => {
            try {
              this.endpoint = await this.EndpointService.endpoint(this.endpoint.Id);
              await this.StateManager.updateEndpointState(this.endpoint);

        Function constructor has 107 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          constructor(
            $scope,
            $async,
            $state,
            $timeout,

          Function checkIngressesToUpdate has 46 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            async checkIngressesToUpdate() {
              let ingressesToUpdate = [];
              let servicePortsToUpdate = [];
              const fullIngresses = await getIngresses(this.endpoint.Id, this.formValues.ResourcePool.Namespace.Name);
              this.formValues.Services.forEach((updatedService) => {

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

              updateSliders(namespaceWithQuota) {
                const quota = namespaceWithQuota.Quota;
                let minCpu = 0,
                  minMemory = 0,
                  maxCpu = this.state.namespaceLimits.cpu,

              Avoid deeply nested control flow statements.
              Open

                                if (!servicePortsToUpdate.includes(newServicePort)) {
                                  servicePortsToUpdate.push(newServicePort);
                                }
              Severity: Major
              Found in app/kubernetes/views/applications/create/createApplicationController.js - About 45 mins to fix

                Function confirmUpdateApplicationAsync has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                  async confirmUpdateApplicationAsync() {
                    const [ingressesToUpdate, servicePortsToUpdate] = await this.checkIngressesToUpdate();
                    // if there is an ingressesToUpdate, then show a warning modal with asking if they want to update the ingresses
                    if (ingressesToUpdate.length) {
                      const result = await confirmUpdateAppIngress(ingressesToUpdate, servicePortsToUpdate);
                Severity: Minor
                Found in app/kubernetes/views/applications/create/createApplicationController.js - About 45 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Avoid deeply nested control flow statements.
                Open

                                  if (ingressUpdateIndex === -1) {
                                    // then add it to the list with the new port
                                    const ingressToUpdate = angular.copy(ingressForService);
                                    ingressToUpdate.Paths[ingressPathIndex].Port = newServicePort;
                                    ingressesToUpdate.push(ingressToUpdate);
                Severity: Major
                Found in app/kubernetes/views/applications/create/createApplicationController.js - About 45 mins to fix

                  Function updateSliders has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                  Open

                    updateSliders(namespaceWithQuota) {
                      const quota = namespaceWithQuota.Quota;
                      let minCpu = 0,
                        minMemory = 0,
                        maxCpu = this.state.namespaceLimits.cpu,
                  Severity: Minor
                  Found in app/kubernetes/views/applications/create/createApplicationController.js - About 35 mins to fix

                  Cognitive Complexity

                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                  A method's cognitive complexity is based on a few simple rules:

                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                  • Code is considered more complex for each "break in the linear flow of the code"
                  • Code is considered more complex when "flow breaking structures are nested"

                  Further reading

                  Function updateApplicationAsync has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                    async updateApplicationAsync(ingressesToUpdate) {
                      if (ingressesToUpdate.length) {
                        try {
                          await Promise.all(ingressesToUpdate.map((ing) => updateIngress(this.endpoint.Id, ing)));
                          this.Notifications.success('Success', `Ingress ${ingressesToUpdate.length > 1 ? 'rules' : 'rule'} successfully updated`);
                  Severity: Minor
                  Found in app/kubernetes/views/applications/create/createApplicationController.js - About 25 mins to fix

                  Cognitive Complexity

                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                  A method's cognitive complexity is based on a few simple rules:

                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                  • Code is considered more complex for each "break in the linear flow of the code"
                  • Code is considered more complex when "flow breaking structures are nested"

                  Further reading

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

                          await this.StackService.updateKubeStack(
                            { EndpointId: this.endpoint.Id, Id: this.application.StackId },
                            { stackFile: this.stackFileContent, stackName: this.formValues.StackName }
                          );
                  app/portainer/components/forms/kubernetes-redeploy-app-git-form/kubernetes-redeploy-app-git-form.controller.js on lines 149..149

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 68.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

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

                      this.state.duplicates.existingVolumes.hasRefs = Object.keys(this.state.duplicates.existingVolumes.refs).length > 0;
                  app/kubernetes/views/applications/create/createApplicationController.js on lines 372..372

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

                  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

                      this.state.duplicates.persistedFolders.hasRefs = Object.keys(this.state.duplicates.persistedFolders.refs).length > 0;
                  app/kubernetes/views/applications/create/createApplicationController.js on lines 398..398

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

                  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 (this.oldFormValues.MemoryLimit !== this.formValues.MemoryLimit && this.state.isExistingMemoryReservationUnchanged) {
                          this.state.isExistingMemoryReservationUnchanged = false;
                        }
                  app/kubernetes/views/applications/create/createApplicationController.js on lines 522..524

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

                  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 (this.oldFormValues.CpuLimit !== this.formValues.CpuLimit && this.state.isExistingCPUReservationUnchanged) {
                          this.state.isExistingCPUReservationUnchanged = false;
                        }
                  app/kubernetes/views/applications/create/createApplicationController.js on lines 525..527

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

                  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