Search in sources :

Example 1 with LoginResponse

use of com.willshex.blogwt.shared.api.user.call.LoginResponse in project blogwt by billy1380.

the class SessionController method createAsyncResponse.

/**
 * @param input
 * @return
 */
private AsyncCallback<LoginResponse> createAsyncResponse(final LoginRequest input) {
    return new AsyncCallback<LoginResponse>() {

        @Override
        public void onSuccess(LoginResponse result) {
            if (result.status == StatusType.StatusTypeSuccess && result.session != null) {
                session = result.session;
                Cookies.setCookie(COOKIE_KEY_ID, session.id.toString(), DateTimeHelper.millisFromNow(DateTimeHelper.MILLIS_PER_DAY * 365L * 20L));
                if (user() != null && user().lastLoggedIn == null) {
                    user().lastLoggedIn = new Date();
                }
            }
            DefaultEventBus.get().fireEventFromSource(new LoginSuccess(input, result), SessionController.this);
        }

        @Override
        public void onFailure(Throwable caught) {
            DefaultEventBus.get().fireEventFromSource(new LoginFailure(input, caught), SessionController.this);
        }
    };
}
Also used : LoginResponse(com.willshex.blogwt.shared.api.user.call.LoginResponse) AsyncCallback(com.google.gwt.user.client.rpc.AsyncCallback) LoginSuccess(com.willshex.blogwt.client.api.user.event.LoginEventHandler.LoginSuccess) LoginFailure(com.willshex.blogwt.client.api.user.event.LoginEventHandler.LoginFailure) Date(java.util.Date)

Example 2 with LoginResponse

use of com.willshex.blogwt.shared.api.user.call.LoginResponse in project blogwt by billy1380.

the class UserService method login.

public Request login(LoginRequest input, AsyncSuccess<LoginRequest, LoginResponse> onSuccess, AsyncFailure<LoginRequest> onFailure) {
    Request handle = null;
    try {
        handle = sendRequest(UserMethodLogin, input, new RequestCallback() {

            @Override
            public void onResponseReceived(Request request, Response response) {
                try {
                    LoginResponse outputParameter = new LoginResponse();
                    parseResponse(response, outputParameter);
                    if (onSuccess != null) {
                        onSuccess.call(input, outputParameter);
                    }
                    onCallSuccess(UserService.this, UserMethodLogin, input, outputParameter);
                } catch (JSONException | HttpException exception) {
                    if (onFailure != null) {
                        onFailure.call(input, exception);
                    }
                    onCallFailure(UserService.this, UserMethodLogin, input, exception);
                }
            }

            @Override
            public void onError(Request request, Throwable exception) {
                if (onFailure != null) {
                    onFailure.call(input, exception);
                }
                onCallFailure(UserService.this, UserMethodLogin, input, exception);
            }
        });
        onCallStart(UserService.this, UserMethodLogin, input, handle);
    } catch (RequestException exception) {
        if (onFailure != null) {
            onFailure.call(input, exception);
        }
        onCallFailure(UserService.this, UserMethodLogin, input, exception);
    }
    return handle;
}
Also used : GetPermissionsResponse(com.willshex.blogwt.shared.api.user.call.GetPermissionsResponse) GetUsersResponse(com.willshex.blogwt.shared.api.user.call.GetUsersResponse) Response(com.google.gwt.http.client.Response) ChangeUserAccessResponse(com.willshex.blogwt.shared.api.user.call.ChangeUserAccessResponse) ResetPasswordResponse(com.willshex.blogwt.shared.api.user.call.ResetPasswordResponse) LogoutResponse(com.willshex.blogwt.shared.api.user.call.LogoutResponse) GetUserDetailsResponse(com.willshex.blogwt.shared.api.user.call.GetUserDetailsResponse) RegisterUserResponse(com.willshex.blogwt.shared.api.user.call.RegisterUserResponse) VerifyAccountResponse(com.willshex.blogwt.shared.api.user.call.VerifyAccountResponse) FollowUsersResponse(com.willshex.blogwt.shared.api.user.call.FollowUsersResponse) GetRolesResponse(com.willshex.blogwt.shared.api.user.call.GetRolesResponse) GetEmailAvatarResponse(com.willshex.blogwt.shared.api.user.call.GetEmailAvatarResponse) GetRolesAndPermissionsResponse(com.willshex.blogwt.shared.api.user.call.GetRolesAndPermissionsResponse) ChangeUserDetailsResponse(com.willshex.blogwt.shared.api.user.call.ChangeUserDetailsResponse) IsAuthorisedResponse(com.willshex.blogwt.shared.api.user.call.IsAuthorisedResponse) ChangePasswordResponse(com.willshex.blogwt.shared.api.user.call.ChangePasswordResponse) CheckUsernameResponse(com.willshex.blogwt.shared.api.user.call.CheckUsernameResponse) LoginResponse(com.willshex.blogwt.shared.api.user.call.LoginResponse) BlockUsersResponse(com.willshex.blogwt.shared.api.user.call.BlockUsersResponse) ForgotPasswordResponse(com.willshex.blogwt.shared.api.user.call.ForgotPasswordResponse) LoginResponse(com.willshex.blogwt.shared.api.user.call.LoginResponse) RequestCallback(com.google.gwt.http.client.RequestCallback) ForgotPasswordRequest(com.willshex.blogwt.shared.api.user.call.ForgotPasswordRequest) ChangeUserAccessRequest(com.willshex.blogwt.shared.api.user.call.ChangeUserAccessRequest) GetUserDetailsRequest(com.willshex.blogwt.shared.api.user.call.GetUserDetailsRequest) ChangePasswordRequest(com.willshex.blogwt.shared.api.user.call.ChangePasswordRequest) GetEmailAvatarRequest(com.willshex.blogwt.shared.api.user.call.GetEmailAvatarRequest) IsAuthorisedRequest(com.willshex.blogwt.shared.api.user.call.IsAuthorisedRequest) RegisterUserRequest(com.willshex.blogwt.shared.api.user.call.RegisterUserRequest) GetRolesRequest(com.willshex.blogwt.shared.api.user.call.GetRolesRequest) LogoutRequest(com.willshex.blogwt.shared.api.user.call.LogoutRequest) ChangeUserDetailsRequest(com.willshex.blogwt.shared.api.user.call.ChangeUserDetailsRequest) GetRolesAndPermissionsRequest(com.willshex.blogwt.shared.api.user.call.GetRolesAndPermissionsRequest) VerifyAccountRequest(com.willshex.blogwt.shared.api.user.call.VerifyAccountRequest) ResetPasswordRequest(com.willshex.blogwt.shared.api.user.call.ResetPasswordRequest) GetUsersRequest(com.willshex.blogwt.shared.api.user.call.GetUsersRequest) FollowUsersRequest(com.willshex.blogwt.shared.api.user.call.FollowUsersRequest) BlockUsersRequest(com.willshex.blogwt.shared.api.user.call.BlockUsersRequest) CheckUsernameRequest(com.willshex.blogwt.shared.api.user.call.CheckUsernameRequest) LoginRequest(com.willshex.blogwt.shared.api.user.call.LoginRequest) GetPermissionsRequest(com.willshex.blogwt.shared.api.user.call.GetPermissionsRequest) Request(com.google.gwt.http.client.Request) JSONException(com.google.gwt.json.client.JSONException) HttpException(com.willshex.gson.web.service.client.HttpException) RequestException(com.google.gwt.http.client.RequestException)

Aggregations

LoginResponse (com.willshex.blogwt.shared.api.user.call.LoginResponse)2 Request (com.google.gwt.http.client.Request)1 RequestCallback (com.google.gwt.http.client.RequestCallback)1 RequestException (com.google.gwt.http.client.RequestException)1 Response (com.google.gwt.http.client.Response)1 JSONException (com.google.gwt.json.client.JSONException)1 AsyncCallback (com.google.gwt.user.client.rpc.AsyncCallback)1 LoginFailure (com.willshex.blogwt.client.api.user.event.LoginEventHandler.LoginFailure)1 LoginSuccess (com.willshex.blogwt.client.api.user.event.LoginEventHandler.LoginSuccess)1 BlockUsersRequest (com.willshex.blogwt.shared.api.user.call.BlockUsersRequest)1 BlockUsersResponse (com.willshex.blogwt.shared.api.user.call.BlockUsersResponse)1 ChangePasswordRequest (com.willshex.blogwt.shared.api.user.call.ChangePasswordRequest)1 ChangePasswordResponse (com.willshex.blogwt.shared.api.user.call.ChangePasswordResponse)1 ChangeUserAccessRequest (com.willshex.blogwt.shared.api.user.call.ChangeUserAccessRequest)1 ChangeUserAccessResponse (com.willshex.blogwt.shared.api.user.call.ChangeUserAccessResponse)1 ChangeUserDetailsRequest (com.willshex.blogwt.shared.api.user.call.ChangeUserDetailsRequest)1 ChangeUserDetailsResponse (com.willshex.blogwt.shared.api.user.call.ChangeUserDetailsResponse)1 CheckUsernameRequest (com.willshex.blogwt.shared.api.user.call.CheckUsernameRequest)1 CheckUsernameResponse (com.willshex.blogwt.shared.api.user.call.CheckUsernameResponse)1 FollowUsersRequest (com.willshex.blogwt.shared.api.user.call.FollowUsersRequest)1