use of com.sequenceiq.environment.api.v1.tags.model.response.AccountTagResponse in project cloudbreak by hortonworks.
the class AccountTagClientService method list.
public Map<String, String> list() {
try {
String accountId = ThreadBasedUserCrnProvider.getAccountId();
AccountTagResponses list = ThreadBasedUserCrnProvider.doAsInternalActor(regionAwareInternalCrnGeneratorFactory.iam().getInternalCrnForServiceAsString(), () -> accountTagEndpoint.listInAccount(accountId));
return list.getResponses().stream().collect(Collectors.toMap(AccountTagResponse::getKey, AccountTagResponse::getValue));
} catch (WebApplicationException | ProcessingException | IllegalStateException e) {
String message = String.format("Failed to GET AccountTags with account id, due to: '%s' ", e.getMessage());
LOGGER.error(message, e);
throw new CloudbreakServiceException(message, e);
}
}
use of com.sequenceiq.environment.api.v1.tags.model.response.AccountTagResponse in project cloudbreak by hortonworks.
the class AccountTagService method list.
public Map<String, String> list() {
String accountId = ThreadBasedUserCrnProvider.getAccountId();
AccountTagResponses list = ThreadBasedUserCrnProvider.doAsInternalActor(regionAwareInternalCrnGeneratorFactory.iam().getInternalCrnForServiceAsString(), () -> accountTagEndpoint.listInAccount(accountId));
return list.getResponses().stream().collect(Collectors.toMap(AccountTagResponse::getKey, AccountTagResponse::getValue));
}
use of com.sequenceiq.environment.api.v1.tags.model.response.AccountTagResponse in project cloudbreak by hortonworks.
the class EnvironmentDtoConverter method getTags.
private Json getTags(EnvironmentCreationDto creationDto) {
boolean internalTenant = entitlementService.internalTenant(creationDto.getAccountId());
Map<String, String> userDefinedTags = creationDto.getTags();
Set<AccountTag> accountTags = accountTagService.get(creationDto.getAccountId());
List<AccountTagResponse> accountTagResponses = accountTags.stream().map(accountTagToAccountTagResponsesConverter::convert).collect(Collectors.toList());
defaultInternalAccountTagService.merge(accountTagResponses);
Map<String, String> accountTagsMap = accountTagResponses.stream().collect(Collectors.toMap(AccountTagResponse::getKey, AccountTagResponse::getValue));
CDPTagGenerationRequest request = CDPTagGenerationRequest.Builder.builder().withCreatorCrn(creationDto.getCreator()).withEnvironmentCrn(creationDto.getCrn()).withAccountId(creationDto.getAccountId()).withPlatform(creationDto.getCloudPlatform()).withResourceCrn(creationDto.getCrn()).withIsInternalTenant(internalTenant).withUserName(getUserNameFromCrn(creationDto.getCreator())).withAccountTags(accountTagsMap).withUserDefinedTags(userDefinedTags).build();
try {
Map<String, String> defaultTags = costTagging.prepareDefaultTags(request);
return new Json(new EnvironmentTags(Objects.requireNonNullElseGet(userDefinedTags, HashMap::new), defaultTags));
} catch (AccountTagValidationFailed aTVF) {
throw new BadRequestException(aTVF.getMessage());
} catch (Exception e) {
throw new BadRequestException("Failed to convert dynamic tags. " + e.getMessage(), e);
}
}
use of com.sequenceiq.environment.api.v1.tags.model.response.AccountTagResponse in project cloudbreak by hortonworks.
the class EnvironmentTagProviderTest method init.
@BeforeAll
static void init() {
AccountTagResponse accountTagResponse = new AccountTagResponse();
accountTagResponse.setAccountId(ACCOUNT_ID);
accountTagResponse.setKey(OWNER_TAG);
accountTagResponse.setValue("{{{userName}}}");
ACCOUNT_TAGS.add(accountTagResponse);
USER_DEFINED_TAGS.put("userKey", "userValue");
ENVIRONMENT.setAccountId(ACCOUNT_ID);
ENVIRONMENT.setTags(new EnvironmentTags(USER_DEFINED_TAGS, Map.of()));
ENVIRONMENT.setCreator(USER_CRN);
ENVIRONMENT.setResourceCrn(ENV_CRN);
ENVIRONMENT.setCloudPlatform("platform");
ENVIRONMENT.setNetwork(NetworkDto.builder().withResourceCrn(NETWORK_CRN).build());
}
use of com.sequenceiq.environment.api.v1.tags.model.response.AccountTagResponse in project cloudbreak by hortonworks.
the class DefaultInternalAccountTagService method init.
@PostConstruct
public void init() throws IOException {
String internalTags = cloudbreakResourceReaderService.resourceDefinition("default-internal-tags");
Map<String, String> definition = JsonUtil.readValue(internalTags, Map.class);
Set<AccountTagResponse> responses = new HashSet<>();
for (Map.Entry<String, String> entry : definition.entrySet()) {
AccountTagResponse accountTagResponse = new AccountTagResponse();
accountTagResponse.setKey(entry.getKey());
accountTagResponse.setValue(entry.getValue());
accountTagResponse.setStatus(AccountTagStatus.DEFAULT);
responses.add(accountTagResponse);
}
internalAccountTagResponses = new AccountTagResponses(responses);
}
Aggregations