simplelocalize/simplelocalize-cli

View on GitHub
src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java

Summary

Maintainability
D
2 days
Test Coverage

File SimplelocalizeCliCommand.java has 475 lines of code (exceeds 250 allowed). Consider refactoring.
Open

package io.simplelocalize.cli;

import io.simplelocalize.cli.client.SimpleLocalizeClient;
import io.simplelocalize.cli.client.dto.proxy.AutoTranslationConfiguration;
import io.simplelocalize.cli.client.dto.proxy.Configuration;
Severity: Minor
Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 7 hrs to fix

    Method upload has 61 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      @Command(
              name = "upload",
              description = "Upload translations or translation keys to SimpleLocalize editor. Use 'simplelocalize upload --help' to learn more about the parameters.")
      public void upload(
              @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
    Severity: Major
    Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 2 hrs to fix

      Method download has 49 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        @Command(
                name = "download",
                description = "Download translations in ready to use format for your i18n library. Use 'simplelocalize download --help' to learn more about the parameters.")
        public void download(
                @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
      Severity: Minor
      Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr to fix

        Method upload has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

          @Command(
                  name = "upload",
                  description = "Upload translations or translation keys to SimpleLocalize editor. Use 'simplelocalize upload --help' to learn more about the parameters.")
          public void upload(
                  @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
        Severity: Minor
        Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr 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

        Method sync has 11 arguments (exceeds 4 allowed). Consider refactoring.
        Open

                  @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
                  @Option(names = {"--uploadPath"}, description = "Path to file with translation or translation keys to upload. Use '{lang}' to define language key if you are uploading more than one file with translations.") String uploadPath,
                  @Option(names = {"--uploadFormat"}, description = "Translations file format") String uploadFormat,
                  @Option(names = {"--uploadOptions"}, split = ",", description = "(Optional) Upload options") List<String> uploadOptions,
                  @Option(names = {"--downloadPath"}, description = "Directory where translations should be downloaded") String downloadPath,
        Severity: Major
        Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr to fix

          Method pull has 34 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            @Command(
                    name = "pull",
                    description = "Pull translations from Translation Hosting Use 'simplelocalize pull --help' to learn more about the parameters.")
            public void pull(
                    @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
          Severity: Minor
          Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr to fix

            Method upload has 10 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                      @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
                      @Option(names = {"--uploadPath"}, description = "Path to file with translation or translation keys to upload. Use '{lang}' to define language key if you are uploading more than one file with translations.") String uploadPath,
                      @Option(names = {"--uploadFormat"}, description = "Translations file format") String uploadFormat,
                      @Option(names = {"--overwrite"}, description = "(Optional) Overwrite existing translations", defaultValue = "false") Boolean overwrite,
                      @Option(names = {"--delete"}, description = "(Optional) Delete translations which are not present in uploaded file", defaultValue = "false") Boolean delete,
            Severity: Major
            Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr to fix

              Method autoTranslate has 29 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                @Command(
                        name = "auto-translate",
                        description = "Start auto-translation. 'simplelocalize auto-translate --help' to learn more about the parameters.")
                public void autoTranslate(
                        @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
              Severity: Minor
              Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr to fix

                Method download has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                Open

                  @Command(
                          name = "download",
                          description = "Download translations in ready to use format for your i18n library. Use 'simplelocalize download --help' to learn more about the parameters.")
                  public void download(
                          @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
                Severity: Minor
                Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr 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

                Method publish has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  @Command(
                          name = "publish",
                          description = "Publish translations to Translation Hosting. Use 'simplelocalize publish --help' to learn more about the parameters.")
                  public void publish(
                          @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
                Severity: Minor
                Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr to fix

                  Method download has 8 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                            @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
                            @Option(names = {"--downloadPath"}, description = "Directory where translations should be downloaded") String downloadPath,
                            @Option(names = {"--downloadFormat"}, description = "Translations file format") String downloadFormat,
                            @Option(names = {"--downloadOptions"}, split = ",", description = "(Optional) Download options") List<String> downloadOptions,
                            @Option(names = {"--downloadSort"}, description = "(Optional) Download sorting") String downloadSort,
                  Severity: Major
                  Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 1 hr to fix

                    Method pull has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                              @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
                              @Option(names = {"--pullPath"}, description = "Directory where translations should be saved") String pullPath,
                              @Option(names = {"--environment"}, description = "Translation Hosting environment ('latest' or 'production')") String environment,
                              @Option(names = {"--filterRegex"}, description = "(Optional) Filter which resources should be downloaded") String filterRegex,
                              @Option(names = {"--baseUrl"}, description = "(Optional) Set custom server URL") String baseUrl
                    Severity: Minor
                    Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - About 35 mins to fix

                      Method trySendException has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        private void trySendException(Exception exception)
                        {
                          try
                          {
                            SimpleLocalizeClient client = SimpleLocalizeClient.create(effectiveCommandConfiguration.getBaseUrl(), effectiveCommandConfiguration.getApiKey());
                      Severity: Minor
                      Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - 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

                      Method pull has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        @Command(
                                name = "pull",
                                description = "Pull translations from Translation Hosting Use 'simplelocalize pull --help' to learn more about the parameters.")
                        public void pull(
                                @Option(names = {"--apiKey"}, description = "Project API Key") String apiKey,
                      Severity: Minor
                      Found in src/main/java/io/simplelocalize/cli/SimplelocalizeCliCommand.java - 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

                      There are no issues that match your filters.

                      Category
                      Status