Search in sources :

Example 1 with Email

use of com.redhat.cloud.notifications.recipients.itservice.pojo.response.Email in project notifications-backend by RedHatInsights.

the class ITUserServiceTest method shouldPickPrimaryEMailAsUsersEmail.

@Test
void shouldPickPrimaryEMailAsUsersEmail() {
    ITUserResponse itUserResponse = new ITUserResponse();
    final PersonalInformation personalInformation = new PersonalInformation();
    personalInformation.firstName = "myFirstname";
    personalInformation.lastNames = "myLastname";
    itUserResponse.personalInformation = personalInformation;
    Authentication authentication = new Authentication();
    authentication.principal = "myPrincipal";
    authentication.providerName = "myProviderName";
    itUserResponse.authentications = new ArrayList<>();
    itUserResponse.authentications.add(authentication);
    final AccountRelationship accountRelationship = new AccountRelationship();
    Email primaryEmail = new Email();
    primaryEmail.isPrimary = true;
    primaryEmail.address = "first_adress@trashmail.org";
    Email nonPrimaryEmail = new Email();
    nonPrimaryEmail.isPrimary = false;
    nonPrimaryEmail.address = "second_adress@trashmail.org";
    accountRelationship.emails = new ArrayList<>();
    accountRelationship.emails.add(nonPrimaryEmail);
    accountRelationship.emails.add(primaryEmail);
    itUserResponse.accountRelationships = new ArrayList<>();
    itUserResponse.accountRelationships.add(accountRelationship);
    itUserResponse.accountRelationships.get(0).permissions = List.of();
    List<ITUserResponse> itUserResponses = List.of(itUserResponse);
    when(itUserService.getUsers(any(ITUserRequest.class))).thenReturn(itUserResponses);
    final List<User> someAccountId = rbacRecipientUsersProvider.getUsers("someAccountId", "someOrgId", true);
    assertTrue(someAccountId.get(0).isActive());
    assertEquals(someAccountId.get(0).getEmail(), "first_adress@trashmail.org");
}
Also used : PersonalInformation(com.redhat.cloud.notifications.recipients.itservice.pojo.response.PersonalInformation) Email(com.redhat.cloud.notifications.recipients.itservice.pojo.response.Email) User(com.redhat.cloud.notifications.recipients.User) AccountRelationship(com.redhat.cloud.notifications.recipients.itservice.pojo.response.AccountRelationship) Authentication(com.redhat.cloud.notifications.recipients.itservice.pojo.response.Authentication) ITUserRequest(com.redhat.cloud.notifications.recipients.itservice.pojo.request.ITUserRequest) ITUserResponse(com.redhat.cloud.notifications.recipients.itservice.pojo.response.ITUserResponse) QuarkusTest(io.quarkus.test.junit.QuarkusTest) Test(org.junit.jupiter.api.Test)

Example 2 with Email

use of com.redhat.cloud.notifications.recipients.itservice.pojo.response.Email in project notifications-backend by RedHatInsights.

the class RbacRecipientUsersProvider method transformToUser.

List<User> transformToUser(List<ITUserResponse> itUserResponses) {
    List<User> users = new ArrayList<>();
    for (ITUserResponse itUserResponse : itUserResponses) {
        User user = new User();
        user.setUsername(itUserResponse.authentications.get(0).principal);
        final List<Email> emails = itUserResponse.accountRelationships.get(0).emails;
        for (Email email : emails) {
            if (email != null && email.isPrimary != null && email.isPrimary) {
                String address = email.address;
                user.setEmail(address);
            }
        }
        user.setAdmin(false);
        if (itUserResponse.accountRelationships != null) {
            for (AccountRelationship accountRelationship : itUserResponse.accountRelationships) {
                if (accountRelationship.permissions != null) {
                    for (Permission permission : accountRelationship.permissions) {
                        if (ORG_ADMIN_PERMISSION.equals(permission.permissionCode)) {
                            user.setAdmin(true);
                        }
                    }
                }
            }
        }
        user.setActive(true);
        user.setFirstName(itUserResponse.personalInformation.firstName);
        user.setLastName(itUserResponse.personalInformation.lastNames);
        users.add(user);
    }
    return users;
}
Also used : User(com.redhat.cloud.notifications.recipients.User) Email(com.redhat.cloud.notifications.recipients.itservice.pojo.response.Email) AccountRelationship(com.redhat.cloud.notifications.recipients.itservice.pojo.response.AccountRelationship) ArrayList(java.util.ArrayList) Permission(com.redhat.cloud.notifications.recipients.itservice.pojo.response.Permission) ITUserResponse(com.redhat.cloud.notifications.recipients.itservice.pojo.response.ITUserResponse)

Aggregations

User (com.redhat.cloud.notifications.recipients.User)2 AccountRelationship (com.redhat.cloud.notifications.recipients.itservice.pojo.response.AccountRelationship)2 Email (com.redhat.cloud.notifications.recipients.itservice.pojo.response.Email)2 ITUserResponse (com.redhat.cloud.notifications.recipients.itservice.pojo.response.ITUserResponse)2 ITUserRequest (com.redhat.cloud.notifications.recipients.itservice.pojo.request.ITUserRequest)1 Authentication (com.redhat.cloud.notifications.recipients.itservice.pojo.response.Authentication)1 Permission (com.redhat.cloud.notifications.recipients.itservice.pojo.response.Permission)1 PersonalInformation (com.redhat.cloud.notifications.recipients.itservice.pojo.response.PersonalInformation)1 QuarkusTest (io.quarkus.test.junit.QuarkusTest)1 ArrayList (java.util.ArrayList)1 Test (org.junit.jupiter.api.Test)1