use of com.willshex.blogwt.client.api.blog.BlogService in project blogwt by billy1380.
the class PostController method createPost.
public void createPost(String title, Boolean listed, Boolean commentsEnabled, String summary, String content, Boolean publish, String tags) {
BlogService blogService = ApiHelper.createBlogClient();
final CreatePostRequest input = SessionController.get().setSession(ApiHelper.setAccessCode(new CreatePostRequest())).post(new Post().title(title).summary(summary).content(new PostContent().body(content)).tags(TagHelper.convertToTagList(tags)).listed(listed).commentsEnabled(commentsEnabled)).publish(publish);
blogService.createPost(input, new AsyncCallback<CreatePostResponse>() {
@Override
public void onSuccess(CreatePostResponse output) {
if (output.status == StatusType.StatusTypeSuccess) {
}
DefaultEventBus.get().fireEventFromSource(new CreatePostSuccess(input, output), PostController.this);
}
@Override
public void onFailure(Throwable caught) {
DefaultEventBus.get().fireEventFromSource(new CreatePostFailure(input, caught), PostController.this);
}
});
}
use of com.willshex.blogwt.client.api.blog.BlogService in project blogwt by billy1380.
the class PropertyController method setupBlog.
public void setupBlog(List<Property> properties, List<User> users) {
final SetupBlogRequest input = ApiHelper.setAccessCode(new SetupBlogRequest()).properties(properties).users(users);
BlogService blogService = ApiHelper.createBlogClient();
blogService.setupBlog(input, new AsyncCallback<SetupBlogResponse>() {
@Override
public void onSuccess(SetupBlogResponse output) {
DefaultEventBus.get().fireEventFromSource(new SetupBlogSuccess(input, output), PropertyController.this);
}
@Override
public void onFailure(Throwable caught) {
DefaultEventBus.get().fireEventFromSource(new SetupBlogFailure(input, caught), PropertyController.this);
}
});
}
use of com.willshex.blogwt.client.api.blog.BlogService in project blogwt by billy1380.
the class ApiHelper method createBlogClient.
public static BlogService createBlogClient() {
BlogService service = new BlogService();
service.setUrl(BLOG_END_POINT);
service.setBus(DefaultEventBus.get());
return service;
}
Aggregations