Search in sources :

Example 1 with GetUsersResponse

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

the class UserController method fetchUsers.

private void fetchUsers() {
    final GetUsersRequest input = ApiHelper.setAccessCode(new GetUsersRequest());
    input.pager = pager;
    input.session = SessionController.get().sessionForApiCall();
    if (getUsersRequest != null) {
        getUsersRequest.cancel();
    }
    getUsersRequest = ApiHelper.createUserClient().getUsers(input, new AsyncCallback<GetUsersResponse>() {

        @Override
        public void onSuccess(GetUsersResponse output) {
            getUsersRequest = null;
            if (output.status == StatusType.StatusTypeSuccess) {
                if (output.users != null && output.users.size() > 0) {
                    pager = output.pager;
                    updateRowCount(input.pager.count == null ? 0 : input.pager.count.intValue(), input.pager.count == null || input.pager.count.intValue() == 0);
                    updateRowData(input.pager.start.intValue(), output.users);
                } else {
                    updateRowCount(input.pager.start.intValue(), true);
                    updateRowData(input.pager.start.intValue(), Collections.<User>emptyList());
                }
            }
            DefaultEventBus.get().fireEventFromSource(new GetUsersSuccess(input, output), UserController.this);
        }

        @Override
        public void onFailure(Throwable caught) {
            getUsersRequest = null;
            DefaultEventBus.get().fireEventFromSource(new GetUsersFailure(input, caught), UserController.this);
        }
    });
}
Also used : GetUsersResponse(com.willshex.blogwt.shared.api.user.call.GetUsersResponse) AsyncCallback(com.google.gwt.user.client.rpc.AsyncCallback) GetUsersFailure(com.willshex.blogwt.client.api.user.event.GetUsersEventHandler.GetUsersFailure) GetUsersSuccess(com.willshex.blogwt.client.api.user.event.GetUsersEventHandler.GetUsersSuccess) GetUsersRequest(com.willshex.blogwt.shared.api.user.call.GetUsersRequest)

Example 2 with GetUsersResponse

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

the class UserService method getUsers.

public Request getUsers(GetUsersRequest input, AsyncSuccess<GetUsersRequest, GetUsersResponse> onSuccess, AsyncFailure<GetUsersRequest> onFailure) {
    Request handle = null;
    try {
        handle = sendRequest(UserMethodGetUsers, input, new RequestCallback() {

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

            @Override
            public void onError(Request request, Throwable exception) {
                if (onFailure != null) {
                    onFailure.call(input, exception);
                }
                onCallFailure(UserService.this, UserMethodGetUsers, input, exception);
            }
        });
        onCallStart(UserService.this, UserMethodGetUsers, input, handle);
    } catch (RequestException exception) {
        if (onFailure != null) {
            onFailure.call(input, exception);
        }
        onCallFailure(UserService.this, UserMethodGetUsers, 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) GetUsersResponse(com.willshex.blogwt.shared.api.user.call.GetUsersResponse) 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)

Example 3 with GetUsersResponse

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

the class UserOracle method lookup.

/* (non-Javadoc)
	 * 
	 * @see
	 * com.willshex.blogwt.client.oracle.SuggestOracle#lookup(com.google.gwt
	 * .user.client.ui.SuggestOracle.Request,
	 * com.google.gwt.user.client.ui.SuggestOracle.Callback) */
@Override
protected void lookup(final Request request, final Callback callback) {
    final GetUsersRequest input = ApiHelper.setAccessCode(new GetUsersRequest());
    input.session = SessionController.get().sessionForApiCall();
    input.query = request.getQuery();
    input.pager = PagerHelper.createDefaultPager();
    input.pager.count = Integer.valueOf(request.getLimit());
    if (getUsersRequest != null) {
        getUsersRequest.cancel();
    }
    clearSelected();
    getUsersRequest = ApiHelper.createUserClient().getUsers(input, new AsyncCallback<GetUsersResponse>() {

        @Override
        public void onSuccess(GetUsersResponse output) {
            if (output.status == StatusType.StatusTypeSuccess && output.pager != null) {
                foundItems(request, callback, output.users);
            } else {
                foundItems(request, callback, Collections.<User>emptyList());
            }
        }

        @Override
        public void onFailure(Throwable caught) {
            GWT.log("Error getting users with query " + input.query, caught);
            foundItems(request, callback, Collections.<User>emptyList());
        }
    });
}
Also used : GetUsersResponse(com.willshex.blogwt.shared.api.user.call.GetUsersResponse) AsyncCallback(com.google.gwt.user.client.rpc.AsyncCallback) GetUsersRequest(com.willshex.blogwt.shared.api.user.call.GetUsersRequest)

Aggregations

GetUsersRequest (com.willshex.blogwt.shared.api.user.call.GetUsersRequest)3 GetUsersResponse (com.willshex.blogwt.shared.api.user.call.GetUsersResponse)3 AsyncCallback (com.google.gwt.user.client.rpc.AsyncCallback)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 GetUsersFailure (com.willshex.blogwt.client.api.user.event.GetUsersEventHandler.GetUsersFailure)1 GetUsersSuccess (com.willshex.blogwt.client.api.user.event.GetUsersEventHandler.GetUsersSuccess)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