All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.plugins.javascript.eslint.RulesBundles Maven / Gradle / Ivy

There is a newer version: 10.17.0.28100
Show newest version
/*
 * SonarQube JavaScript Plugin
 * Copyright (C) 2011-2023 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package org.sonar.plugins.javascript.eslint;

import java.io.IOException;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import org.sonar.api.scanner.ScannerSide;
import org.sonar.api.utils.log.Logger;
import org.sonar.api.utils.log.Loggers;
import org.sonar.plugins.javascript.api.RulesBundle;
import org.sonarsource.api.sonarlint.SonarLintSide;

@ScannerSide
@SonarLintSide(lifespan = SonarLintSide.MULTIPLE_ANALYSES)
public class RulesBundles {

  private static final Logger LOG = Loggers.get(RulesBundles.class);

  private final List bundleUrls;
  private final List bundles;

  /**
   * This constructor is used by pico container when no RulesBundle is provided on classpath
   */
  public RulesBundles() {
    this.bundles = Collections.emptyList();
    this.bundleUrls = Collections.emptyList();
  }

  public RulesBundles(RulesBundle[] rulesBundles) {
    bundles = List.of(rulesBundles);
    bundleUrls =
      Arrays
        .stream(rulesBundles)
        .map(bundle -> {
          URL resource = bundle.getClass().getResource(bundle.bundlePath());
          if (resource == null) {
            throw new IllegalStateException(
              String.format(
                "Resource for bundle %s from %s not found.",
                bundle.bundlePath(),
                bundle
              )
            );
          }
          return resource;
        })
        .collect(Collectors.toList());
  }

  /**
   * Deploy bundles in temporary directory and return list of paths for deployed modules
   *
   */
  public List deploy(Path target) {
    List unpackedBundles = new ArrayList<>();
    bundleUrls.forEach(bundle -> {
      try {
        Path location = Files.createTempDirectory(target, "custom-rules");
        LOG.debug("Deploying custom rules bundle {} to {}", bundle, location);
        BundleUtils.extractFromClasspath(bundle.openStream(), location);
        Path deployedBundle = location.resolve("package").toAbsolutePath();
        if (!Files.exists(deployedBundle)) {
          // Inside tgz we expect "package" directory, this is npm contract.
          // see https://stackoverflow.com/questions/29717774/npm-pack-rename-package-directory
          throw new IllegalStateException(
            "Failed to deploy bundle " + bundle + ". Didn't find 'package' dir."
          );
        }
        unpackedBundles.add(deployedBundle);
      } catch (IOException e) {
        LOG.error("Failed to extract bundle " + bundle, e);
      }
    });
    return unpackedBundles;
  }

  public Optional getUcfgRulesBundle() {
    return bundles.stream().filter(bundle -> "ucfg".equals(bundle.bundleKey())).findAny();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy