groupdocs-conversion/GroupDocs.Conversion-for-Java-Spring

View on GitHub

Showing 9 of 13 total issues

Method getPosibleConversions has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public String[] getPosibleConversions(String extension)
    {
        switch (extension)
        {
            default:

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

        public ResponseEntity download(String path) throws IOException {
            if(path != null && !path.isEmpty()){
    
                String destinationPath = FilenameUtils.concat(conversionConfiguration.getResultDirectory(),path);
                String ext = FilenameUtils.getExtension(destinationPath);

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

        public ResponseEntity download(String path) throws IOException {
            if(path != null && !path.isEmpty()){
    
                String destinationPath = FilenameUtils.concat(conversionConfiguration.getResultDirectory(),path);
                String ext = FilenameUtils.getExtension(destinationPath);

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

          public static String uploadFile(String documentStoragePath, MultipartFile content, String url, Boolean rewrite) {
              String filePath;
              try {
                  String fileName;
                  // save from file content
      Severity: Minor
      Found in src/main/java/com/groupdocs/ui/util/Utils.java - About 1 hr to fix

        Method loadFiles has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            @Override
            public List<ConversionTypesEntity> loadFiles(FileTreeRequest fileTreeRequest) {
                String currentPath = fileTreeRequest.getPath();
                if (StringUtils.isEmpty(currentPath)) {
                    currentPath = conversionConfiguration.getFilesDirectory();
        Severity: Minor
        Found in src/main/java/com/groupdocs/ui/conversion/ConversionServiceImpl.java - 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

        Method uploadFile has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            public static String uploadFile(String documentStoragePath, MultipartFile content, String url, Boolean rewrite) {
                String filePath;
                try {
                    String fileName;
                    // save from file content
        Severity: Minor
        Found in src/main/java/com/groupdocs/ui/util/Utils.java - 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

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

                @Override
                public int compare(File file1, File file2) {
        
                    if (file1.isDirectory() && file2.isFile()) {
                        return -1;
        Severity: Minor
        Found in src/main/java/com/groupdocs/ui/util/Utils.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 getYamlPropertiesFactoryBean has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            public static YamlPropertiesFactoryBean getYamlPropertiesFactoryBean() {
                YamlPropertiesFactoryBean propertiesFactoryBean = new YamlPropertiesFactoryBean();
                ClassPathResource defaultResource = new ClassPathResource(DEFAULT_CONFIGURATION_FILE);
        
                File file = StringUtils.isEmpty(configurationFile) ? null : new File(configurationFile);
        Severity: Minor
        Found in src/main/java/com/groupdocs/ui/Application.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 convert has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            @Override
            public void convert(ConversionPostedData postedData) {
                String sourceType = FilenameUtils.getExtension(postedData.getGuid());
                String destinationType = postedData.getDestinationType();
                String destinationFile = FilenameUtils.removeExtension(FilenameUtils.getName(postedData.getGuid())) + "." + destinationType;
        Severity: Minor
        Found in src/main/java/com/groupdocs/ui/conversion/ConversionServiceImpl.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

        Severity
        Category
        Status
        Source
        Language