use of com.willshex.blogwt.shared.api.page.call.GetPageRequest in project blogwt by billy1380.
the class PageJsonServlet method processAction.
@Override
protected String processAction(String action, JsonObject request) {
String output = "null";
if ("SubmitForm".equals(action)) {
SubmitFormRequest input = new SubmitFormRequest();
input.fromJson(request);
output = new SubmitFormActionHandler().handle(input).toString();
} else if ("GetPages".equals(action)) {
GetPagesRequest input = new GetPagesRequest();
input.fromJson(request);
output = new GetPagesActionHandler().handle(input).toString();
} else if ("GetPage".equals(action)) {
GetPageRequest input = new GetPageRequest();
input.fromJson(request);
output = new GetPageActionHandler().handle(input).toString();
} else if ("UpdatePage".equals(action)) {
UpdatePageRequest input = new UpdatePageRequest();
input.fromJson(request);
output = new UpdatePageActionHandler().handle(input).toString();
} else if ("DeletePage".equals(action)) {
DeletePageRequest input = new DeletePageRequest();
input.fromJson(request);
output = new DeletePageActionHandler().handle(input).toString();
} else if ("CreatePage".equals(action)) {
CreatePageRequest input = new CreatePageRequest();
input.fromJson(request);
output = new CreatePageActionHandler().handle(input).toString();
}
return output;
}
use of com.willshex.blogwt.shared.api.page.call.GetPageRequest in project blogwt by billy1380.
the class PageController method getPage.
/**
* @param page
*/
public void getPage(Page page, boolean includePosts) {
final GetPageRequest input = ApiHelper.setAccessCode(new GetPageRequest());
input.session = SessionController.get().sessionForApiCall();
input.page = page;
input.includePosts = Boolean.valueOf(includePosts);
if (getPageRequest != null) {
getPageRequest.cancel();
}
getPageRequest = ApiHelper.createPageClient().getPage(input, new AsyncCallback<GetPageResponse>() {
@Override
public void onSuccess(GetPageResponse output) {
getPageRequest = null;
if (output.status == StatusType.StatusTypeSuccess) {
}
DefaultEventBus.get().fireEventFromSource(new GetPageSuccess(input, output), PageController.this);
}
@Override
public void onFailure(Throwable caught) {
getPageRequest = null;
DefaultEventBus.get().fireEventFromSource(new GetPageFailure(input, caught), PageController.this);
}
});
}
use of com.willshex.blogwt.shared.api.page.call.GetPageRequest in project blogwt by billy1380.
the class StaticPage method lookupPage.
private void lookupPage() {
GetPageRequest input = input(GetPageRequest.class).includePosts(Boolean.TRUE).page(new Page().slug(slug));
output = (new GetPageActionHandler()).handle(input);
}
use of com.willshex.blogwt.shared.api.page.call.GetPageRequest in project blogwt by billy1380.
the class PageService method getPage.
public Request getPage(GetPageRequest input, AsyncSuccess<GetPageRequest, GetPageResponse> onSuccess, AsyncFailure<GetPageRequest> onFailure) {
Request handle = null;
try {
handle = sendRequest(PageMethodGetPage, input, new RequestCallback() {
@Override
public void onResponseReceived(Request request, Response response) {
try {
GetPageResponse outputParameter = new GetPageResponse();
parseResponse(response, outputParameter);
if (onSuccess != null) {
onSuccess.call(input, outputParameter);
}
onCallSuccess(PageService.this, PageMethodGetPage, input, outputParameter);
} catch (JSONException | HttpException exception) {
if (onFailure != null) {
onFailure.call(input, exception);
}
onCallFailure(PageService.this, PageMethodGetPage, input, exception);
}
}
@Override
public void onError(Request request, Throwable exception) {
if (onFailure != null) {
onFailure.call(input, exception);
}
onCallFailure(PageService.this, PageMethodGetPage, input, exception);
}
});
onCallStart(PageService.this, PageMethodGetPage, input, handle);
} catch (RequestException exception) {
if (onFailure != null) {
onFailure.call(input, exception);
}
onCallFailure(PageService.this, PageMethodGetPage, input, exception);
}
return handle;
}
Aggregations