/* * SonarQube * Copyright (C) 2009-2024 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.server.common.almsettings.azuredevops; import java.util.Map; import java.util.Optional; import org.sonar.alm.client.azure.AzureDevOpsHttpClient; import org.sonar.db.DbClient; import org.sonar.db.DbSession; import org.sonar.db.alm.setting.ALM; import org.sonar.db.alm.setting.AlmSettingDto; import org.sonar.server.common.almintegration.ProjectKeyGenerator; import org.sonar.server.common.almsettings.DevOpsProjectCreator; import org.sonar.server.common.almsettings.DevOpsProjectCreatorFactory; import org.sonar.server.common.almsettings.DevOpsProjectDescriptor; import org.sonar.server.common.project.ProjectCreator; import org.sonar.server.user.UserSession; public class AzureDevOpsProjectCreatorFactory implements DevOpsProjectCreatorFactory { private final DbClient dbClient; private final UserSession userSession; private final AzureDevOpsHttpClient azureDevOpsHttpClient; private final ProjectCreator projectCreator; private final ProjectKeyGenerator projectKeyGenerator; public AzureDevOpsProjectCreatorFactory(DbClient dbClient, UserSession userSession, AzureDevOpsHttpClient azureDevOpsHttpClient, ProjectCreator projectCreator, ProjectKeyGenerator projectKeyGenerator) { this.dbClient = dbClient; this.userSession = userSession; this.azureDevOpsHttpClient = azureDevOpsHttpClient; this.projectCreator = projectCreator; this.projectKeyGenerator = projectKeyGenerator; } @Override public Optional getDevOpsProjectCreator(DbSession dbSession, Map characteristics) { return Optional.empty(); } @Override public Optional getDevOpsProjectCreator(AlmSettingDto almSettingDto, DevOpsProjectDescriptor devOpsProjectDescriptor) { if (almSettingDto.getAlm() != ALM.AZURE_DEVOPS) { return Optional.empty(); } return Optional.of(new AzureDevOpsProjectCreator(dbClient, almSettingDto, devOpsProjectDescriptor, userSession, azureDevOpsHttpClient, projectCreator, projectKeyGenerator)); } }