Search in sources :

Example 1 with FetcherConfiguration

use of io.gravitee.fetcher.api.FetcherConfiguration in project gravitee-management-rest-api by gravitee-io.

the class FetcherConfigurationFactoryTest method createFetcherWithConfigurationAndWithoutConfigurationData.

@Test
public void createFetcherWithConfigurationAndWithoutConfigurationData() {
    FetcherConfiguration fetcherConfiguration = fetcherConfigurationFactory.create(DummyFetcherConfiguration.class, null);
    Assert.assertNull(fetcherConfiguration);
}
Also used : FetcherConfiguration(io.gravitee.fetcher.api.FetcherConfiguration) Test(org.junit.Test)

Example 2 with FetcherConfiguration

use of io.gravitee.fetcher.api.FetcherConfiguration in project gravitee-management-rest-api by gravitee-io.

the class FetcherConfigurationFactoryTest method createFetcherWithConfigurationAndEmptyConfigurationData.

@Test
public void createFetcherWithConfigurationAndEmptyConfigurationData() {
    FetcherConfiguration fetcherConfiguration = fetcherConfigurationFactory.create(DummyFetcherConfiguration.class, "");
    Assert.assertNull(fetcherConfiguration);
}
Also used : FetcherConfiguration(io.gravitee.fetcher.api.FetcherConfiguration) Test(org.junit.Test)

Example 3 with FetcherConfiguration

use of io.gravitee.fetcher.api.FetcherConfiguration in project gravitee-management-rest-api by gravitee-io.

the class PageServiceImpl method getContentFromFetcher.

private String getContentFromFetcher(PageSource ps) throws FetcherException {
    if (ps.getConfiguration().isEmpty()) {
        return null;
    }
    try {
        FetcherPlugin fetcherPlugin = fetcherPluginManager.get(ps.getType());
        ClassLoader fetcherCL = fetcherPlugin.fetcher().getClassLoader();
        Class<? extends FetcherConfiguration> fetcherConfigurationClass = (Class<? extends FetcherConfiguration>) fetcherCL.loadClass(fetcherPlugin.configuration().getName());
        Class<? extends Fetcher> fetcherClass = (Class<? extends Fetcher>) fetcherCL.loadClass(fetcherPlugin.clazz());
        FetcherConfiguration fetcherConfigurationInstance = fetcherConfigurationFactory.create(fetcherConfigurationClass, ps.getConfiguration());
        Fetcher fetcher = fetcherClass.getConstructor(fetcherConfigurationClass).newInstance(fetcherConfigurationInstance);
        // Autowire fetcher
        applicationContext.getAutowireCapableBeanFactory().autowireBean(fetcher);
        StringBuilder sb = new StringBuilder();
        try (BufferedReader br = new BufferedReader(new InputStreamReader(fetcher.fetch()))) {
            String line;
            while ((line = br.readLine()) != null) {
                sb.append(line);
                sb.append("\n");
            }
        }
        return sb.toString();
    } catch (Exception e) {
        logger.error(e.getMessage(), e);
        throw new FetcherException(e.getMessage(), e);
    }
}
Also used : FetcherConfiguration(io.gravitee.fetcher.api.FetcherConfiguration) InputStreamReader(java.io.InputStreamReader) TemplateException(freemarker.template.TemplateException) TechnicalException(io.gravitee.repository.exceptions.TechnicalException) PageAlreadyExistsException(io.gravitee.management.service.exceptions.PageAlreadyExistsException) PageNotFoundException(io.gravitee.management.service.exceptions.PageNotFoundException) FetcherException(io.gravitee.fetcher.api.FetcherException) TechnicalManagementException(io.gravitee.management.service.exceptions.TechnicalManagementException) BeansException(org.springframework.beans.BeansException) IOException(java.io.IOException) FetcherPlugin(io.gravitee.plugin.fetcher.FetcherPlugin) FetcherException(io.gravitee.fetcher.api.FetcherException) BufferedReader(java.io.BufferedReader) Fetcher(io.gravitee.fetcher.api.Fetcher)

Aggregations

FetcherConfiguration (io.gravitee.fetcher.api.FetcherConfiguration)3 Test (org.junit.Test)2 TemplateException (freemarker.template.TemplateException)1 Fetcher (io.gravitee.fetcher.api.Fetcher)1 FetcherException (io.gravitee.fetcher.api.FetcherException)1 PageAlreadyExistsException (io.gravitee.management.service.exceptions.PageAlreadyExistsException)1 PageNotFoundException (io.gravitee.management.service.exceptions.PageNotFoundException)1 TechnicalManagementException (io.gravitee.management.service.exceptions.TechnicalManagementException)1 FetcherPlugin (io.gravitee.plugin.fetcher.FetcherPlugin)1 TechnicalException (io.gravitee.repository.exceptions.TechnicalException)1 BufferedReader (java.io.BufferedReader)1 IOException (java.io.IOException)1 InputStreamReader (java.io.InputStreamReader)1 BeansException (org.springframework.beans.BeansException)1