Package org.apache.rave.rest.impl

Source Code of org.apache.rave.rest.impl.DefaultPageForRenderResource

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package org.apache.rave.rest.impl;


import com.google.common.collect.Lists;
import org.apache.rave.rest.exception.ResourceNotFoundException;
import org.apache.rave.portal.service.PageService;
import org.apache.rave.portal.service.UserService;
import org.apache.rave.portal.web.renderer.RenderService;
import org.apache.rave.rest.PagesForRenderResource;
import org.apache.rave.rest.PagesResource;
import org.apache.rave.rest.exception.BadRequestException;
import org.apache.rave.rest.model.Page;
import org.apache.rave.rest.model.RegionWidget;
import org.apache.rave.rest.model.SearchResult;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.inject.Inject;
import javax.ws.rs.core.Response;
import java.util.Arrays;
import java.util.List;

public class DefaultPageForRenderResource implements PagesForRenderResource {

    public static final String SELF = "@self";
    private PageService pageService;
    private RenderService renderService;
    private UserService userService;

    @Override
    public SearchResult<Page> getPagesForRender(String context, String identifier) {
        List<org.apache.rave.model.Page> pages;
        if("portal".equals(context)) {
            try{
                String userId = SELF.equals(identifier) ? userService.getAuthenticatedUser().getId() : identifier;
                pages = pageService.getAllUserPages(userId);
            }catch(Exception e){
                throw new ResourceNotFoundException(identifier);
            }
        } else if("profile".equals(context)) {
            try{
                pages = Arrays.asList(pageService.getPersonProfilePage(identifier));
            }catch(Exception e){
                throw new ResourceNotFoundException(identifier);
            }
        } else {
            throw new ResourceNotFoundException("Context "+context+" not found");
        }

        if(pages == null){
            throw new ResourceNotFoundException(identifier);
        }

        List<Page> converted = Lists.newArrayList();
        for(org.apache.rave.model.Page page : pages) {
            Page convert = new Page(page);
            converted.add(renderService.prepareForRender(convert));
        }
        return new SearchResult<Page>(converted, converted.size());
    }

    @Override
    public Page getPageForRender(String context, String identifier, String id) {
        org.apache.rave.model.Page page;
        if("portal".equals(context)) {
            String userId = SELF.equals(identifier) ? userService.getAuthenticatedUser().getId() : identifier;
            page = pageService.getPage(id);
        } else if("profile".equals(context)) {
            try{
                page = pageService.getPersonProfilePage(identifier);
            }catch (Exception e){
                throw new ResourceNotFoundException(identifier);
            }
        } else {
            throw new ResourceNotFoundException("Context "+context+" not found");
        }

        if(page == null){
            throw new ResourceNotFoundException(id);
        }

        Page converted = renderService.prepareForRender(new Page(page));

        return converted;
    }

    @Inject
    public void setPageService(PageService pageService) {
        this.pageService = pageService;
    }

    @Inject
    public void setRenderService(RenderService renderService) {
        this.renderService = renderService;
    }

    @Inject
    public void setUserService(UserService userService) {
        this.userService = userService;
    }
}
TOP

Related Classes of org.apache.rave.rest.impl.DefaultPageForRenderResource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.