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

org.sonar.plugins.javascript.eslint.NodeDeprecationWarning 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 static java.util.Map.entry;

import java.util.Arrays;
import java.util.List;
import java.util.Map;
import org.sonar.api.scanner.ScannerSide;
import org.sonar.api.utils.Version;
import org.sonar.api.utils.log.Logger;
import org.sonar.api.utils.log.Loggers;
import org.sonarsource.api.sonarlint.SonarLintSide;

/**
 * Currently supported versions ('supported' means that we execute the analysis):
 * 14 - deprecated (support will be removed not earlier than April 1, 2023)
 * 15 - deprecated (support will be removed not earlier than April 1, 2023), not recommended
 * 16 - nothing to warn, recommended version
 * 17 - not recommended
 * 18 - nothing to warn, recommended version
 */
@ScannerSide
@SonarLintSide(lifespan = SonarLintSide.MULTIPLE_ANALYSES)
public class NodeDeprecationWarning {

  static final Map REMOVAL_DATE = Map.ofEntries(
    entry(14, "May 1st, 2023"),
    entry(15, "May 1st, 2023")
  );

  private static final Logger LOG = Loggers.get(NodeDeprecationWarning.class);
  /**
   * This version should be kept in sync with sonar-javascript-plugin/pom.xml#nodeJsMinVersion.
   *
   * The minor version is a requirement from the ESLint version that eslint-bridge uses.
   * @see https://github.com/eslint/eslint/blob/d75d3c68ad8c98828aaa522b87ec267ab2dcb002/package.json#L169
   */
  static final Version MIN_SUPPORTED_NODE_VERSION = Version.create(14, 17, 0);
  static final int MIN_RECOMMENDED_NODE_VERSION = 16;
  static final List RECOMMENDED_NODE_VERSIONS = Arrays.asList(16, 18);
  static final List ALL_RECOMMENDED_NODE_VERSIONS = Arrays.asList(14, 16, 18);
  private final AnalysisWarningsWrapper analysisWarnings;

  public NodeDeprecationWarning(AnalysisWarningsWrapper analysisWarnings) {
    this.analysisWarnings = analysisWarnings;
  }

  void logNodeDeprecation(int actualNodeVersion) {
    if (actualNodeVersion < MIN_RECOMMENDED_NODE_VERSION) {
      String msg = String.format(
        "Using Node.js version %d to execute analysis is deprecated and will stop being supported no earlier than %s." +
        " Please upgrade to a newer LTS version of Node.js %s",
        actualNodeVersion,
        REMOVAL_DATE.get(actualNodeVersion),
        RECOMMENDED_NODE_VERSIONS
      );
      LOG.warn(msg);
      analysisWarnings.addUnique(msg);
    }

    if (!ALL_RECOMMENDED_NODE_VERSIONS.contains(actualNodeVersion)) {
      String msg = String.format(
        "Node.js version %d is not recommended, you might experience issues. Please use " +
        "a recommended version of Node.js %s",
        actualNodeVersion,
        RECOMMENDED_NODE_VERSIONS
      );
      LOG.warn(msg, actualNodeVersion);
      analysisWarnings.addUnique(msg);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy