use of org.sonarqube.ws.AlmIntegrations.ListBitbucketserverProjectsWsResponse in project sonarqube by SonarSource.
the class ListBitbucketServerProjectsAction method handle.
@Override
public void handle(Request request, Response response) {
ListBitbucketserverProjectsWsResponse wsResponse = doHandle(request);
writeProtobuf(wsResponse, request, response);
}
use of org.sonarqube.ws.AlmIntegrations.ListBitbucketserverProjectsWsResponse in project sonarqube by SonarSource.
the class ListBitbucketServerProjectsActionTest method list_projects.
@Test
public void list_projects() {
UserDto user = db.users().insertUser();
userSession.logIn(user).addPermission(PROVISION_PROJECTS);
AlmSettingDto almSetting = db.almSettings().insertGitHubAlmSetting();
db.almPats().insert(dto -> {
dto.setAlmSettingUuid(almSetting.getUuid());
dto.setUserUuid(user.getUuid());
});
ListBitbucketserverProjectsWsResponse response = ws.newRequest().setParam("almSetting", almSetting.getKey()).executeProtobuf(ListBitbucketserverProjectsWsResponse.class);
assertThat(response.getProjectsCount()).isOne();
assertThat(response.getProjectsList()).extracting(AlmIntegrations.AlmProject::getKey, AlmIntegrations.AlmProject::getName).containsExactly(tuple("key", "name"));
}
use of org.sonarqube.ws.AlmIntegrations.ListBitbucketserverProjectsWsResponse in project sonarqube by SonarSource.
the class ListBitbucketServerProjectsAction method doHandle.
private ListBitbucketserverProjectsWsResponse doHandle(Request request) {
try (DbSession dbSession = dbClient.openSession(false)) {
userSession.checkLoggedIn().checkPermission(PROVISION_PROJECTS);
String almSettingKey = request.mandatoryParam(PARAM_ALM_SETTING);
String userUuid = requireNonNull(userSession.getUuid(), "User UUID is not null");
AlmSettingDto almSettingDto = dbClient.almSettingDao().selectByKey(dbSession, almSettingKey).orElseThrow(() -> new NotFoundException(String.format("ALM Setting '%s' not found", almSettingKey)));
Optional<AlmPatDto> almPatDto = dbClient.almPatDao().selectByUserAndAlmSetting(dbSession, userUuid, almSettingDto);
String pat = almPatDto.map(AlmPatDto::getPersonalAccessToken).orElseThrow(() -> new IllegalArgumentException("No personal access token found"));
String url = requireNonNull(almSettingDto.getUrl(), "URL cannot be null");
ProjectList projectList = bitbucketServerRestClient.getProjects(url, pat);
List<AlmProject> values = projectList.getValues().stream().map(ListBitbucketServerProjectsAction::toAlmProject).collect(Collectors.toList());
ListBitbucketserverProjectsWsResponse.Builder builder = ListBitbucketserverProjectsWsResponse.newBuilder().addAllProjects(values);
return builder.build();
}
}
Aggregations