simplelocalize/simplelocalize-cli

View on GitHub

Showing 26 of 33 total issues

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 invoke has 85 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      public void invoke() throws IOException, InterruptedException
      {
        configurationValidator.validateUploadConfiguration(configuration);
        String uploadPath = configuration.getUploadPath();
        boolean isDryRun = Boolean.TRUE.equals(configuration.getDryRun());
    Severity: Major
    Found in src/main/java/io/simplelocalize/cli/command/UploadCommand.java - About 3 hrs to fix

      Method invoke has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
      Open

        public void invoke() throws IOException, InterruptedException
        {
          configurationValidator.validateUploadConfiguration(configuration);
          String uploadPath = configuration.getUploadPath();
          boolean isDryRun = Boolean.TRUE.equals(configuration.getDryRun());
      Severity: Minor
      Found in src/main/java/io/simplelocalize/cli/command/UploadCommand.java - About 3 hrs 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 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 invoke has 56 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          public void invoke() throws IOException, InterruptedException
          {
            String downloadPath = configuration.getDownloadPath();
            String downloadFormat = configuration.getDownloadFormat();
            String languageKey = configuration.getLanguageKey();
        Severity: Major
        Found in src/main/java/io/simplelocalize/cli/command/DownloadCommand.java - About 2 hrs to fix

          Method getHttpProxyValueOrNull has 55 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            public static ProxyConfiguration getHttpProxyValueOrNull(String httpProxyValue)
            {
              if (httpProxyValue == null || httpProxyValue.isEmpty())
              {
                return null;
          Severity: Major
          Found in src/main/java/io/simplelocalize/cli/client/SystemProxySelector.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 invoke has 44 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                public void invoke() throws IOException, InterruptedException
                {
                  String responseData = client.fetchProject();
                  DocumentContext json = jsonReader.read(responseData);
              
              
              Severity: Minor
              Found in src/main/java/io/simplelocalize/cli/command/PullHostingCommand.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 getHttpProxyValueOrNull has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                      public static ProxyConfiguration getHttpProxyValueOrNull(String httpProxyValue)
                      {
                        if (httpProxyValue == null || httpProxyValue.isEmpty())
                        {
                          return null;
                    Severity: Minor
                    Found in src/main/java/io/simplelocalize/cli/client/SystemProxySelector.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 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 invoke has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                        public void invoke() throws IOException, InterruptedException
                        {
                          int runningJobsCount = getRunningJobsCount();
                          while (runningJobsCount > 0)
                          {

                        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 buildDownloadUri has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                            URI buildDownloadUri(DownloadRequest downloadRequest)
                            {
                              String endpointUrl = baseUrl + "/cli/v2/download?downloadFormat=" + downloadRequest.format();
                              String languageKey = downloadRequest.languageKey();
                              boolean isRequestedTranslationsForSpecificLanguage = StringUtils.isNotEmpty(languageKey);

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

                              public void invoke() throws IOException, InterruptedException
                              {
                                String downloadPath = configuration.getDownloadPath();
                                String downloadFormat = configuration.getDownloadFormat();
                                String languageKey = configuration.getLanguageKey();
                            Severity: Minor
                            Found in src/main/java/io/simplelocalize/cli/command/DownloadCommand.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 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
                                Severity
                                Category
                                Status
                                Source
                                Language