Search in sources :

Example 1 with GetRatingsRequest

use of com.willshex.blogwt.shared.api.blog.call.GetRatingsRequest in project blogwt by billy1380.

the class BlogJsonServlet method processAction.

@Override
protected String processAction(String action, JsonObject request) {
    String output = "null";
    if ("GetProperties".equals(action)) {
        GetPropertiesRequest input = new GetPropertiesRequest();
        input.fromJson(request);
        output = new GetPropertiesActionHandler().handle(input).toString();
    } else if ("GetRatings".equals(action)) {
        GetRatingsRequest input = new GetRatingsRequest();
        input.fromJson(request);
        output = new GetRatingsActionHandler().handle(input).toString();
    } else if ("SubmitRating".equals(action)) {
        SubmitRatingRequest input = new SubmitRatingRequest();
        input.fromJson(request);
        output = new SubmitRatingActionHandler().handle(input).toString();
    } else if ("UpdateResource".equals(action)) {
        UpdateResourceRequest input = new UpdateResourceRequest();
        input.fromJson(request);
        output = new UpdateResourceActionHandler().handle(input).toString();
    } else if ("GetResource".equals(action)) {
        GetResourceRequest input = new GetResourceRequest();
        input.fromJson(request);
        output = new GetResourceActionHandler().handle(input).toString();
    } else if ("GetPosts".equals(action)) {
        GetPostsRequest input = new GetPostsRequest();
        input.fromJson(request);
        output = new GetPostsActionHandler().handle(input).toString();
    } else if ("GetArchiveEntries".equals(action)) {
        GetArchiveEntriesRequest input = new GetArchiveEntriesRequest();
        input.fromJson(request);
        output = new GetArchiveEntriesActionHandler().handle(input).toString();
    } else if ("DeleteResource".equals(action)) {
        DeleteResourceRequest input = new DeleteResourceRequest();
        input.fromJson(request);
        output = new DeleteResourceActionHandler().handle(input).toString();
    } else if ("GetResources".equals(action)) {
        GetResourcesRequest input = new GetResourcesRequest();
        input.fromJson(request);
        output = new GetResourcesActionHandler().handle(input).toString();
    } else if ("GetRelatedPosts".equals(action)) {
        GetRelatedPostsRequest input = new GetRelatedPostsRequest();
        input.fromJson(request);
        output = new GetRelatedPostsActionHandler().handle(input).toString();
    } else if ("UpdateProperties".equals(action)) {
        UpdatePropertiesRequest input = new UpdatePropertiesRequest();
        input.fromJson(request);
        output = new UpdatePropertiesActionHandler().handle(input).toString();
    } else if ("GetTags".equals(action)) {
        GetTagsRequest input = new GetTagsRequest();
        input.fromJson(request);
        output = new GetTagsActionHandler().handle(input).toString();
    } else if ("GetPost".equals(action)) {
        GetPostRequest input = new GetPostRequest();
        input.fromJson(request);
        output = new GetPostActionHandler().handle(input).toString();
    } else if ("DeletePost".equals(action)) {
        DeletePostRequest input = new DeletePostRequest();
        input.fromJson(request);
        output = new DeletePostActionHandler().handle(input).toString();
    } else if ("SetupBlog".equals(action)) {
        SetupBlogRequest input = new SetupBlogRequest();
        input.fromJson(request);
        output = new SetupBlogActionHandler().handle(input).toString();
    } else if ("CreatePost".equals(action)) {
        CreatePostRequest input = new CreatePostRequest();
        input.fromJson(request);
        output = new CreatePostActionHandler().handle(input).toString();
    } else if ("UpdatePost".equals(action)) {
        UpdatePostRequest input = new UpdatePostRequest();
        input.fromJson(request);
        output = new UpdatePostActionHandler().handle(input).toString();
    }
    return output;
}
Also used : SubmitRatingRequest(com.willshex.blogwt.shared.api.blog.call.SubmitRatingRequest) GetPostsActionHandler(com.willshex.blogwt.server.api.blog.action.GetPostsActionHandler) SetupBlogRequest(com.willshex.blogwt.shared.api.blog.call.SetupBlogRequest) CreatePostRequest(com.willshex.blogwt.shared.api.blog.call.CreatePostRequest) DeleteResourceActionHandler(com.willshex.blogwt.server.api.blog.action.DeleteResourceActionHandler) GetResourceRequest(com.willshex.blogwt.shared.api.blog.call.GetResourceRequest) GetPostsRequest(com.willshex.blogwt.shared.api.blog.call.GetPostsRequest) DeletePostActionHandler(com.willshex.blogwt.server.api.blog.action.DeletePostActionHandler) GetRatingsActionHandler(com.willshex.blogwt.server.api.blog.action.GetRatingsActionHandler) DeletePostRequest(com.willshex.blogwt.shared.api.blog.call.DeletePostRequest) UpdatePropertiesRequest(com.willshex.blogwt.shared.api.blog.call.UpdatePropertiesRequest) SetupBlogActionHandler(com.willshex.blogwt.server.api.blog.action.SetupBlogActionHandler) SubmitRatingActionHandler(com.willshex.blogwt.server.api.blog.action.SubmitRatingActionHandler) GetTagsActionHandler(com.willshex.blogwt.server.api.blog.action.GetTagsActionHandler) UpdateResourceRequest(com.willshex.blogwt.shared.api.blog.call.UpdateResourceRequest) UpdatePostActionHandler(com.willshex.blogwt.server.api.blog.action.UpdatePostActionHandler) GetRatingsRequest(com.willshex.blogwt.shared.api.blog.call.GetRatingsRequest) GetRelatedPostsActionHandler(com.willshex.blogwt.server.api.blog.action.GetRelatedPostsActionHandler) UpdatePropertiesActionHandler(com.willshex.blogwt.server.api.blog.action.UpdatePropertiesActionHandler) GetPostActionHandler(com.willshex.blogwt.server.api.blog.action.GetPostActionHandler) GetResourcesRequest(com.willshex.blogwt.shared.api.blog.call.GetResourcesRequest) GetPropertiesRequest(com.willshex.blogwt.shared.api.blog.call.GetPropertiesRequest) GetPropertiesActionHandler(com.willshex.blogwt.server.api.blog.action.GetPropertiesActionHandler) GetResourceActionHandler(com.willshex.blogwt.server.api.blog.action.GetResourceActionHandler) GetPostRequest(com.willshex.blogwt.shared.api.blog.call.GetPostRequest) GetTagsRequest(com.willshex.blogwt.shared.api.blog.call.GetTagsRequest) UpdatePostRequest(com.willshex.blogwt.shared.api.blog.call.UpdatePostRequest) GetResourcesActionHandler(com.willshex.blogwt.server.api.blog.action.GetResourcesActionHandler) GetArchiveEntriesRequest(com.willshex.blogwt.shared.api.blog.call.GetArchiveEntriesRequest) UpdateResourceActionHandler(com.willshex.blogwt.server.api.blog.action.UpdateResourceActionHandler) GetArchiveEntriesActionHandler(com.willshex.blogwt.server.api.blog.action.GetArchiveEntriesActionHandler) CreatePostActionHandler(com.willshex.blogwt.server.api.blog.action.CreatePostActionHandler) GetRelatedPostsRequest(com.willshex.blogwt.shared.api.blog.call.GetRelatedPostsRequest) DeleteResourceRequest(com.willshex.blogwt.shared.api.blog.call.DeleteResourceRequest)

Example 2 with GetRatingsRequest

use of com.willshex.blogwt.shared.api.blog.call.GetRatingsRequest in project blogwt by billy1380.

the class BlogService method getRatings.

public Request getRatings(GetRatingsRequest input, AsyncSuccess<GetRatingsRequest, GetRatingsResponse> onSuccess, AsyncFailure<GetRatingsRequest> onFailure) {
    Request handle = null;
    try {
        handle = sendRequest(BlogMethodGetRatings, input, new RequestCallback() {

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

            @Override
            public void onError(Request request, Throwable exception) {
                if (onFailure != null) {
                    onFailure.call(input, exception);
                }
                onCallFailure(BlogService.this, BlogMethodGetRatings, input, exception);
            }
        });
        onCallStart(BlogService.this, BlogMethodGetRatings, input, handle);
    } catch (RequestException exception) {
        if (onFailure != null) {
            onFailure.call(input, exception);
        }
        onCallFailure(BlogService.this, BlogMethodGetRatings, input, exception);
    }
    return handle;
}
Also used : GetRatingsResponse(com.willshex.blogwt.shared.api.blog.call.GetRatingsResponse) UpdatePropertiesResponse(com.willshex.blogwt.shared.api.blog.call.UpdatePropertiesResponse) SubmitRatingResponse(com.willshex.blogwt.shared.api.blog.call.SubmitRatingResponse) UpdatePostResponse(com.willshex.blogwt.shared.api.blog.call.UpdatePostResponse) GetTagsResponse(com.willshex.blogwt.shared.api.blog.call.GetTagsResponse) DeleteResourceResponse(com.willshex.blogwt.shared.api.blog.call.DeleteResourceResponse) GetArchiveEntriesResponse(com.willshex.blogwt.shared.api.blog.call.GetArchiveEntriesResponse) Response(com.google.gwt.http.client.Response) GetPostResponse(com.willshex.blogwt.shared.api.blog.call.GetPostResponse) SetupBlogResponse(com.willshex.blogwt.shared.api.blog.call.SetupBlogResponse) GetResourcesResponse(com.willshex.blogwt.shared.api.blog.call.GetResourcesResponse) CreatePostResponse(com.willshex.blogwt.shared.api.blog.call.CreatePostResponse) GetRelatedPostsResponse(com.willshex.blogwt.shared.api.blog.call.GetRelatedPostsResponse) GetResourceResponse(com.willshex.blogwt.shared.api.blog.call.GetResourceResponse) GetPostsResponse(com.willshex.blogwt.shared.api.blog.call.GetPostsResponse) UpdateResourceResponse(com.willshex.blogwt.shared.api.blog.call.UpdateResourceResponse) DeletePostResponse(com.willshex.blogwt.shared.api.blog.call.DeletePostResponse) GetPropertiesResponse(com.willshex.blogwt.shared.api.blog.call.GetPropertiesResponse) GetRatingsResponse(com.willshex.blogwt.shared.api.blog.call.GetRatingsResponse) RequestCallback(com.google.gwt.http.client.RequestCallback) UpdatePostRequest(com.willshex.blogwt.shared.api.blog.call.UpdatePostRequest) GetResourcesRequest(com.willshex.blogwt.shared.api.blog.call.GetResourcesRequest) GetResourceRequest(com.willshex.blogwt.shared.api.blog.call.GetResourceRequest) DeleteResourceRequest(com.willshex.blogwt.shared.api.blog.call.DeleteResourceRequest) GetRelatedPostsRequest(com.willshex.blogwt.shared.api.blog.call.GetRelatedPostsRequest) GetTagsRequest(com.willshex.blogwt.shared.api.blog.call.GetTagsRequest) UpdatePropertiesRequest(com.willshex.blogwt.shared.api.blog.call.UpdatePropertiesRequest) GetRatingsRequest(com.willshex.blogwt.shared.api.blog.call.GetRatingsRequest) DeletePostRequest(com.willshex.blogwt.shared.api.blog.call.DeletePostRequest) SubmitRatingRequest(com.willshex.blogwt.shared.api.blog.call.SubmitRatingRequest) CreatePostRequest(com.willshex.blogwt.shared.api.blog.call.CreatePostRequest) GetArchiveEntriesRequest(com.willshex.blogwt.shared.api.blog.call.GetArchiveEntriesRequest) Request(com.google.gwt.http.client.Request) UpdateResourceRequest(com.willshex.blogwt.shared.api.blog.call.UpdateResourceRequest) GetPostsRequest(com.willshex.blogwt.shared.api.blog.call.GetPostsRequest) GetPropertiesRequest(com.willshex.blogwt.shared.api.blog.call.GetPropertiesRequest) GetPostRequest(com.willshex.blogwt.shared.api.blog.call.GetPostRequest) SetupBlogRequest(com.willshex.blogwt.shared.api.blog.call.SetupBlogRequest) JSONException(com.google.gwt.json.client.JSONException) HttpException(com.willshex.gson.web.service.client.HttpException) RequestException(com.google.gwt.http.client.RequestException)

Aggregations

CreatePostRequest (com.willshex.blogwt.shared.api.blog.call.CreatePostRequest)2 DeletePostRequest (com.willshex.blogwt.shared.api.blog.call.DeletePostRequest)2 DeleteResourceRequest (com.willshex.blogwt.shared.api.blog.call.DeleteResourceRequest)2 GetArchiveEntriesRequest (com.willshex.blogwt.shared.api.blog.call.GetArchiveEntriesRequest)2 GetPostRequest (com.willshex.blogwt.shared.api.blog.call.GetPostRequest)2 GetPostsRequest (com.willshex.blogwt.shared.api.blog.call.GetPostsRequest)2 GetPropertiesRequest (com.willshex.blogwt.shared.api.blog.call.GetPropertiesRequest)2 GetRatingsRequest (com.willshex.blogwt.shared.api.blog.call.GetRatingsRequest)2 GetRelatedPostsRequest (com.willshex.blogwt.shared.api.blog.call.GetRelatedPostsRequest)2 GetResourceRequest (com.willshex.blogwt.shared.api.blog.call.GetResourceRequest)2 GetResourcesRequest (com.willshex.blogwt.shared.api.blog.call.GetResourcesRequest)2 GetTagsRequest (com.willshex.blogwt.shared.api.blog.call.GetTagsRequest)2 SetupBlogRequest (com.willshex.blogwt.shared.api.blog.call.SetupBlogRequest)2 SubmitRatingRequest (com.willshex.blogwt.shared.api.blog.call.SubmitRatingRequest)2 UpdatePostRequest (com.willshex.blogwt.shared.api.blog.call.UpdatePostRequest)2 UpdatePropertiesRequest (com.willshex.blogwt.shared.api.blog.call.UpdatePropertiesRequest)2 UpdateResourceRequest (com.willshex.blogwt.shared.api.blog.call.UpdateResourceRequest)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