Search in sources :

Example 6 with ServiceResponse

use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.

the class SendEmailClickListener method buttonClick.

@Override
public void buttonClick(final ClickEvent event) {
    final ServiceResponse response = ApplicationMangerAccess.getApplicationManager().service(sendEmailRequest);
    if (ServiceResult.SUCCESS == response.getResult()) {
        LOGGER.info(LOG_MSG_SEND_EMAIL, sendEmailRequest.getEmail());
        Notification.show(EMAIL_SENT);
    } else {
        Notification.show(SEND_EMAIL_FAILEDFAILED, response.getErrorMessage(), Notification.Type.WARNING_MESSAGE);
        LOGGER.info(SEND_EMAIL_FAILURE, sendEmailRequest.getEmail());
    }
}
Also used : ServiceResponse(com.hack23.cia.service.api.action.common.ServiceResponse)

Example 7 with ServiceResponse

use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.

the class LogoutClickListener method buttonClick.

@Override
public void buttonClick(final ClickEvent event) {
    final ServiceResponse response = ApplicationMangerAccess.getApplicationManager().service(logoutRequest);
    if (ServiceResult.SUCCESS == response.getResult()) {
        UI.getCurrent().getNavigator().navigateTo(CommonsViews.MAIN_VIEW_NAME);
        UI.getCurrent().getSession().close();
        VaadinService.getCurrentRequest().getWrappedSession().invalidate();
    } else {
        Notification.show(LOGOUT_FAILED, ERROR_MESSAGE, Notification.Type.WARNING_MESSAGE);
        LOGGER.info(LOG_MSG_LOGOUT_FAILURE, logoutRequest.getSessionId());
    }
}
Also used : ServiceResponse(com.hack23.cia.service.api.action.common.ServiceResponse)

Example 8 with ServiceResponse

use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.

the class ManageUserAccountClickListener method buttonClick.

@Override
public void buttonClick(final ClickEvent event) {
    final ServiceResponse response = ApplicationMangerAccess.getApplicationManager().service(manageUserAccountRequest);
    if (ServiceResult.SUCCESS == response.getResult()) {
        LOGGER.info(LOG_MSG, manageUserAccountRequest.getUserAcountId());
        Notification.show(OPERATION_COMPLETED);
    } else {
        Notification.show(OPERATION_FAILED, response.getErrorMessage(), Notification.Type.WARNING_MESSAGE);
        LOGGER.info(OPERATION_FAILURE, manageUserAccountRequest.getUserAcountId());
    }
}
Also used : ServiceResponse(com.hack23.cia.service.api.action.common.ServiceResponse)

Example 9 with ServiceResponse

use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.

the class ApplicationManagerImpl method asyncService.

@Async("SecureTaskExecutor")
@Secured({ "ROLE_ANONYMOUS", "ROLE_USER", "ROLE_ADMIN" })
@Override
public Future<ServiceResponse> asyncService(final ServiceRequest serviceRequest) {
    final BusinessService businessService = serviceRequestBusinessServiceMap.get(serviceRequest.getClass());
    ServiceResponse serviceResponse = null;
    if (businessService != null) {
        serviceResponse = businessService.processService(serviceRequest);
    }
    return new AsyncResult<>(serviceResponse);
}
Also used : BusinessService(com.hack23.cia.service.impl.action.common.BusinessService) ServiceResponse(com.hack23.cia.service.api.action.common.ServiceResponse) AsyncResult(org.springframework.scheduling.annotation.AsyncResult) Secured(org.springframework.security.access.annotation.Secured) Async(org.springframework.scheduling.annotation.Async)

Example 10 with ServiceResponse

use of com.hack23.cia.service.api.action.common.ServiceResponse in project cia by Hack23.

the class SetGoogleAuthenticatorCredentialServiceITest method servicesetGoogleAuthenticatorCredentialRequestSuccessTest.

/**
 * Serviceset google authenticator credential request success test.
 *
 * @throws Exception
 *             the exception
 */
@Test
@PerfTest(threads = 2, duration = 4000, warmUp = 1500)
@Required(max = 3000, average = 2500, percentile95 = 2700, throughput = 1)
public void servicesetGoogleAuthenticatorCredentialRequestSuccessTest() throws Exception {
    final CreateApplicationSessionRequest createApplicationSesstion = createApplicationSesstionWithRoleAnonymous();
    final RegisterUserRequest serviceRequest = new RegisterUserRequest();
    serviceRequest.setCountry("Sweden");
    serviceRequest.setUsername(UUID.randomUUID().toString());
    serviceRequest.setEmail(serviceRequest.getUsername() + "@email.com");
    serviceRequest.setUserpassword("Userpassword1!");
    serviceRequest.setUserType(UserType.PRIVATE);
    serviceRequest.setSessionId(createApplicationSesstion.getSessionId());
    final RegisterUserResponse response = (RegisterUserResponse) applicationManager.service(serviceRequest);
    assertNotNull(EXPECT_A_RESULT, response);
    assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, response.getResult());
    final DataContainer<UserAccount, Long> dataContainer = applicationManager.getDataContainer(UserAccount.class);
    final List<UserAccount> allBy = dataContainer.getAllBy(UserAccount_.username, serviceRequest.getUsername());
    assertEquals(1, allBy.size());
    final LoginRequest loginRequest = new LoginRequest();
    loginRequest.setEmail(serviceRequest.getEmail());
    loginRequest.setSessionId(serviceRequest.getSessionId());
    loginRequest.setUserpassword(serviceRequest.getUserpassword());
    final LoginResponse loginResponse = (LoginResponse) applicationManager.service(loginRequest);
    assertNotNull(EXPECT_A_RESULT, loginResponse);
    assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, loginResponse.getResult());
    final SetGoogleAuthenticatorCredentialRequest setGoogleAuthenticatorCredentialRequest = new SetGoogleAuthenticatorCredentialRequest();
    setGoogleAuthenticatorCredentialRequest.setSessionId(serviceRequest.getSessionId());
    final ServiceResponse setGoogleAuthenticatorCredentialResponse = applicationManager.service(setGoogleAuthenticatorCredentialRequest);
    assertNotNull(EXPECT_A_RESULT, setGoogleAuthenticatorCredentialResponse);
    assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, setGoogleAuthenticatorCredentialResponse.getResult());
    final LogoutRequest logoutRequest = new LogoutRequest();
    logoutRequest.setSessionId(serviceRequest.getSessionId());
    final ServiceResponse logoutResponse = applicationManager.service(logoutRequest);
    assertNotNull(EXPECT_A_RESULT, logoutResponse);
    assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, logoutResponse.getResult());
}
Also used : ServiceResponse(com.hack23.cia.service.api.action.common.ServiceResponse) LoginResponse(com.hack23.cia.service.api.action.application.LoginResponse) CreateApplicationSessionRequest(com.hack23.cia.service.api.action.application.CreateApplicationSessionRequest) RegisterUserRequest(com.hack23.cia.service.api.action.application.RegisterUserRequest) RegisterUserResponse(com.hack23.cia.service.api.action.application.RegisterUserResponse) SetGoogleAuthenticatorCredentialRequest(com.hack23.cia.service.api.action.user.SetGoogleAuthenticatorCredentialRequest) LogoutRequest(com.hack23.cia.service.api.action.application.LogoutRequest) LoginRequest(com.hack23.cia.service.api.action.application.LoginRequest) UserAccount(com.hack23.cia.model.internal.application.user.impl.UserAccount) Required(org.databene.contiperf.Required) PerfTest(org.databene.contiperf.PerfTest) Test(org.junit.Test) AbstractServiceFunctionalIntegrationTest(com.hack23.cia.service.impl.AbstractServiceFunctionalIntegrationTest) PerfTest(org.databene.contiperf.PerfTest)

Aggregations

ServiceResponse (com.hack23.cia.service.api.action.common.ServiceResponse)12 CreateApplicationSessionRequest (com.hack23.cia.service.api.action.application.CreateApplicationSessionRequest)5 AbstractServiceFunctionalIntegrationTest (com.hack23.cia.service.impl.AbstractServiceFunctionalIntegrationTest)4 PerfTest (org.databene.contiperf.PerfTest)4 Required (org.databene.contiperf.Required)4 Test (org.junit.Test)4 Secured (org.springframework.security.access.annotation.Secured)4 UserAccount (com.hack23.cia.model.internal.application.user.impl.UserAccount)3 LoginRequest (com.hack23.cia.service.api.action.application.LoginRequest)3 LoginResponse (com.hack23.cia.service.api.action.application.LoginResponse)3 LogoutRequest (com.hack23.cia.service.api.action.application.LogoutRequest)3 RegisterUserRequest (com.hack23.cia.service.api.action.application.RegisterUserRequest)3 RegisterUserResponse (com.hack23.cia.service.api.action.application.RegisterUserResponse)3 CounterStatisticModel (com.github.markash.ui.component.card.CounterStatisticModel)2 CounterStatisticsCard (com.github.markash.ui.component.card.CounterStatisticsCard)2 ComplianceCheckRequest (com.hack23.cia.service.api.action.kpi.ComplianceCheckRequest)2 ComplianceCheckResponse (com.hack23.cia.service.api.action.kpi.ComplianceCheckResponse)2 ResourceType (com.hack23.cia.service.api.action.kpi.ResourceType)2 Status (com.hack23.cia.service.api.action.kpi.Status)2 SetGoogleAuthenticatorCredentialRequest (com.hack23.cia.service.api.action.user.SetGoogleAuthenticatorCredentialRequest)2