![JAR search and dependency download from the Maven repository](/logo.png)
org.sonar.server.computation.issue.ScmAccountToUserLoader Maven / Gradle / Ivy
/*
* SonarQube
* Copyright (C) 2009-2016 SonarSource SA
* mailto:contact 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.computation.issue;
import com.google.common.base.Function;
import com.google.common.base.Joiner;
import com.google.common.collect.FluentIterable;
import com.google.common.collect.Ordering;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import org.sonar.api.utils.log.Logger;
import org.sonar.api.utils.log.Loggers;
import org.sonar.server.user.index.UserDoc;
import org.sonar.server.user.index.UserIndex;
import org.sonar.server.util.cache.CacheLoader;
/**
* Loads the association between a SCM account and a SQ user
*/
public class ScmAccountToUserLoader implements CacheLoader {
private static final Logger LOGGER = Loggers.get(ScmAccountToUserLoader.class);
private final UserIndex index;
public ScmAccountToUserLoader(UserIndex index) {
this.index = index;
}
@Override
public String load(String scmAccount) {
List users = index.getAtMostThreeActiveUsersForScmAccount(scmAccount);
if (users.size() == 1) {
return users.get(0).login();
}
if (!users.isEmpty()) {
// multiple users are associated to the same SCM account, for example
// the same email
Collection logins = FluentIterable.from(users).transform(UserDocToLogin.INSTANCE).toSortedList(Ordering.natural());
LOGGER.warn(String.format("Multiple users share the SCM account '%s': %s", scmAccount, Joiner.on(", ").join(logins)));
}
return null;
}
@Override
public Map loadAll(Collection extends String> scmAccounts) {
throw new UnsupportedOperationException("Loading by multiple scm accounts is not supported yet");
}
private enum UserDocToLogin implements Function {
INSTANCE;
@Nullable
@Override
public String apply(@Nonnull UserDoc user) {
return user.login();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy