io.gravitee.repository.redis.management.RedisPageRepository.java Source code

Java tutorial

Introduction

Here is the source code for io.gravitee.repository.redis.management.RedisPageRepository.java

Source

/**
 * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
 *
 * Licensed 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 io.gravitee.repository.redis.management;

import io.gravitee.repository.exceptions.TechnicalException;
import io.gravitee.repository.management.api.PageRepository;
import io.gravitee.repository.management.model.Page;
import io.gravitee.repository.management.model.PageConfiguration;
import io.gravitee.repository.management.model.PageSource;
import io.gravitee.repository.management.model.PageType;
import io.gravitee.repository.redis.management.internal.PageRedisRepository;
import io.gravitee.repository.redis.management.model.RedisPage;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.util.Collection;
import java.util.Date;
import java.util.Optional;
import java.util.stream.Collectors;

/**
 * @author David BRASSELY (david.brassely at graviteesource.com)
 * @author GraviteeSource Team
 */
@Component
public class RedisPageRepository implements PageRepository {

    @Autowired
    private PageRedisRepository pageRedisRepository;

    @Override
    public Collection<Page> findByApi(String apiId) throws TechnicalException {
        return pageRedisRepository.findByApi(apiId).stream().map(this::convert).collect(Collectors.toSet());
    }

    @Override
    public Integer findMaxPageOrderByApi(String apiId) throws TechnicalException {
        return findByApi(apiId).stream().mapToInt(Page::getOrder).max().orElse(0);
    }

    @Override
    public Optional<Page> findById(String pageId) throws TechnicalException {
        RedisPage redisPage = pageRedisRepository.find(pageId);
        return Optional.ofNullable(convert(redisPage));
    }

    @Override
    public Page create(Page page) throws TechnicalException {
        RedisPage redisPage = pageRedisRepository.saveOrUpdate(convert(page));
        return convert(redisPage);
    }

    @Override
    public Page update(Page page) throws TechnicalException {
        RedisPage redisPage = pageRedisRepository.saveOrUpdate(convert(page));
        return convert(redisPage);
    }

    @Override
    public void delete(String pageId) throws TechnicalException {
        pageRedisRepository.delete(pageId);
    }

    private Page convert(RedisPage redisPage) {
        if (redisPage == null) {
            return null;
        }

        Page page = new Page();
        page.setId(redisPage.getId());
        page.setApi(redisPage.getApi());
        page.setContent(redisPage.getContent());
        page.setCreatedAt(new Date(redisPage.getCreatedAt()));
        page.setUpdatedAt(new Date(redisPage.getUpdatedAt()));
        page.setLastContributor(redisPage.getLastContributor());
        page.setName(redisPage.getName());
        page.setOrder(redisPage.getOrder());
        page.setPublished(redisPage.isPublished());
        page.setType(PageType.valueOf(redisPage.getType()));

        if (redisPage.getSourceType() != null) {
            PageSource pageSource = new PageSource();
            pageSource.setType(redisPage.getSourceType());
            pageSource.setConfiguration(redisPage.getSourceConfiguration());
            page.setSource(pageSource);
        }

        PageConfiguration configuration = new PageConfiguration();
        configuration.setTryIt(redisPage.isConfigurationTryIt());
        configuration.setTryItURL(redisPage.getConfigurationTryItURL());
        page.setConfiguration(configuration);

        return page;
    }

    private RedisPage convert(Page page) {
        RedisPage redisPage = new RedisPage();
        redisPage.setId(page.getId());
        redisPage.setApi(page.getApi());
        redisPage.setContent(page.getContent());
        redisPage.setCreatedAt(page.getCreatedAt().getTime());
        redisPage.setUpdatedAt(page.getUpdatedAt().getTime());
        redisPage.setLastContributor(page.getLastContributor());
        redisPage.setName(page.getName());
        redisPage.setOrder(page.getOrder());
        redisPage.setPublished(page.isPublished());
        redisPage.setType(page.getType().name());

        if (page.getSource() != null) {
            redisPage.setSourceType(page.getSource().getType());
            redisPage.setSourceConfiguration(page.getSource().getConfiguration());
        }

        if (page.getConfiguration() != null) {
            redisPage.setConfigurationTryIt(page.getConfiguration().isTryIt());
            redisPage.setConfigurationTryItURL(page.getConfiguration().getTryItURL());
        }
        return redisPage;
    }
}