org.sonar.db.qualitygate.QualityGateDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-db-dao Show documentation
Show all versions of sonar-db-dao Show documentation
Open source platform for continuous inspection of code quality
The newest version!
/*
* SonarQube
* Copyright (C) 2009-2018 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.db.qualitygate;
import java.util.Collection;
import java.util.Date;
import javax.annotation.CheckForNull;
import org.sonar.db.Dao;
import org.sonar.db.DatabaseUtils;
import org.sonar.db.DbSession;
import org.sonar.db.organization.OrganizationDto;
public class QualityGateDao implements Dao {
public QualityGateDto insert(DbSession session, QualityGateDto newQualityGate) {
mapper(session).insertQualityGate(newQualityGate.setCreatedAt(new Date()));
return newQualityGate;
}
public void associate(DbSession dbSession, String uuid, OrganizationDto organization, QualityGateDto qualityGate) {
mapper(dbSession).insertOrgQualityGate(uuid, organization.getUuid(), qualityGate.getUuid());
}
public Collection selectAll(DbSession session, OrganizationDto organization) {
return mapper(session).selectAll(organization.getUuid());
}
@CheckForNull
public QualityGateDto selectByName(DbSession session, String name) {
return mapper(session).selectByName(name);
}
@CheckForNull
public QualityGateDto selectById(DbSession session, long id) {
return mapper(session).selectById(id);
}
@CheckForNull
public QGateWithOrgDto selectByOrganizationAndUuid(DbSession dbSession, OrganizationDto organization, String qualityGateUuid) {
return mapper(dbSession).selectByUuidAndOrganization(qualityGateUuid, organization.getUuid());
}
@CheckForNull
public QGateWithOrgDto selectByOrganizationAndName(DbSession session, OrganizationDto organization, String name) {
return mapper(session).selectByNameAndOrganization(name, organization.getUuid());
}
@CheckForNull
public QGateWithOrgDto selectByOrganizationAndId(DbSession session, OrganizationDto organization, long id) {
return mapper(session).selectByIdAndOrganization(id, organization.getUuid());
}
public QGateWithOrgDto selectDefault(DbSession dbSession, OrganizationDto organization) {
return mapper(dbSession).selectDefault(organization.getUuid());
}
public void delete(QualityGateDto qGate, DbSession session) {
mapper(session).delete(qGate.getUuid());
mapper(session).deleteOrgQualityGatesByQualityGateUuid(qGate.getUuid());
}
public void deleteByUuids(DbSession session, Collection uuids) {
QualityGateMapper mapper = mapper(session);
DatabaseUtils.executeLargeUpdates(uuids, mapper::deleteByUuids);
}
public void deleteOrgQualityGatesByOrganization(DbSession session, OrganizationDto organization) {
mapper(session).deleteOrgQualityGatesByOrganization(organization.getUuid());
}
public void update(QualityGateDto qGate, DbSession session) {
mapper(session).update(qGate.setUpdatedAt(new Date()));
}
public void ensureOneBuiltInQualityGate(DbSession dbSession, String builtInName) {
mapper(dbSession).ensureOneBuiltInQualityGate(builtInName);
}
public QualityGateDto selectBuiltIn(DbSession dbSession) {
return mapper(dbSession).selectBuiltIn();
}
private static QualityGateMapper mapper(DbSession session) {
return session.getMapper(QualityGateMapper.class);
}
}