All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.apio.architect.sample.internal.router.BlogPostingActionRouter Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.apio.architect.sample.internal.router;

import static com.liferay.apio.architect.sample.internal.auth.PermissionChecker.hasPermission;
import static com.liferay.apio.architect.sample.internal.converter.BlogPostingConverter.toBlogPosting;
import static com.liferay.apio.architect.sample.internal.converter.BlogSubscriptionConverter.toBlogSubscription;
import static com.liferay.apio.architect.sample.internal.converter.ReviewConverter.toReviewModels;

import com.liferay.apio.architect.annotations.Actions.Create;
import com.liferay.apio.architect.annotations.Actions.Remove;
import com.liferay.apio.architect.annotations.Actions.Replace;
import com.liferay.apio.architect.annotations.Actions.Retrieve;
import com.liferay.apio.architect.annotations.Body;
import com.liferay.apio.architect.annotations.Id;
import com.liferay.apio.architect.credentials.Credentials;
import com.liferay.apio.architect.pagination.PageItems;
import com.liferay.apio.architect.pagination.Pagination;
import com.liferay.apio.architect.router.ActionRouter;
import com.liferay.apio.architect.sample.internal.action.Subscribe;
import com.liferay.apio.architect.sample.internal.converter.BlogPostingConverter;
import com.liferay.apio.architect.sample.internal.dao.BlogPostingModelService;
import com.liferay.apio.architect.sample.internal.dao.BlogSubscriptionModelService;
import com.liferay.apio.architect.sample.internal.dao.PersonModelService;
import com.liferay.apio.architect.sample.internal.dto.BlogPostingModel;
import com.liferay.apio.architect.sample.internal.dto.BlogSubscriptionModel;
import com.liferay.apio.architect.sample.internal.dto.PersonModel;
import com.liferay.apio.architect.sample.internal.type.BlogPosting;
import com.liferay.apio.architect.sample.internal.type.BlogSubscription;

import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import java.util.stream.Stream;

import javax.ws.rs.ForbiddenException;
import javax.ws.rs.NotFoundException;

import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;

/**
 * Provides all the information necessary to expose BlogPosting resources through a web
 * API. The resources are mapped from the internal {@link BlogPostingModel}
 * model.
 *
 * @author Alejandro Hernández
 */
@Component(
	immediate = true,
	service = {ActionRouter.class, BlogPostingActionRouter.class}
)
public class BlogPostingActionRouter implements ActionRouter {

	@Create
	public BlogPosting create(
		@Body BlogPosting blogPosting, Credentials credentials) {

		if (!hasPermission(credentials)) {
			throw new ForbiddenException();
		}

		BlogPostingModel blogPostingModel = _blogPostingModelService.create(
			blogPosting.getArticleBody(), blogPosting.getCreatorId(),
			blogPosting.getAlternativeHeadline(), blogPosting.getHeadline(),
			toReviewModels(blogPosting.getReviews()));

		return toBlogPosting(blogPostingModel);
	}

	@Remove
	public void remove(@Id long id, Credentials credentials) {
		if (!hasPermission(credentials)) {
			throw new ForbiddenException();
		}

		_blogPostingModelService.remove(id);
	}

	@Replace
	public BlogPosting replace(
		@Id long id, @Body BlogPosting blogPosting, Credentials credentials) {

		if (!hasPermission(credentials)) {
			throw new ForbiddenException();
		}

		Optional optional = _blogPostingModelService.update(
			id, blogPosting.getArticleBody(), blogPosting.getCreatorId(),
			blogPosting.getAlternativeHeadline(), blogPosting.getHeadline(),
			toReviewModels(blogPosting.getReviews()));

		return optional.map(
			BlogPostingConverter::toBlogPosting
		).orElseThrow(
			() -> new NotFoundException("Unable to get blog posting " + id)
		);
	}

	@Retrieve
	public BlogPosting retrieve(@Id long id) {
		Optional optional = _blogPostingModelService.get(id);

		return optional.map(
			BlogPostingConverter::toBlogPosting
		).orElseThrow(
			() -> new NotFoundException("Unable to get blog posting " + id)
		);
	}

	@Retrieve
	public PageItems retrievePage(Pagination pagination) {
		List blogPostingModels =
			_blogPostingModelService.getPage(
				pagination.getStartPosition(), pagination.getEndPosition());
		int count = _blogPostingModelService.getCount();

		Stream stream = blogPostingModels.stream();

		List blogPostings = stream.map(
			BlogPostingConverter::toBlogPosting
		).collect(
			Collectors.toList()
		);

		return new PageItems<>(blogPostings, count);
	}

	@Subscribe
	public BlogSubscription subscribe(
		@Id long id, @Body BlogSubscription blogSubscription) {

		Optional personModelOptional = _personModelService.get(
			blogSubscription.getPersonId());

		PersonModel personModel = personModelOptional.orElseThrow(
			NotFoundException::new);

		Optional blogPostingModelOptional =
			_blogPostingModelService.get(id);

		BlogPostingModel blogPostingModel =
			blogPostingModelOptional.orElseThrow(NotFoundException::new);

		BlogSubscriptionModel blogSubscriptionModel =
			_blogSubscriptionModelService.create(blogPostingModel, personModel);

		return toBlogSubscription(blogSubscriptionModel);
	}

	@Reference
	private BlogPostingModelService _blogPostingModelService;

	@Reference
	private BlogSubscriptionModelService _blogSubscriptionModelService;

	@Reference
	private PersonModelService _personModelService;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy