Search in sources :

Example 1 with HostMapperService

use of org.apache.knox.gateway.services.hostmap.HostMapperService in project knox by apache.

the class ServiceMappedAddressFunctionProcessor method initialize.

@Override
public void initialize(UrlRewriteEnvironment environment, ServiceMappedAddressFunctionDescriptor descriptor) throws Exception {
    super.initialize(environment, descriptor);
    HostMapperService hostmapService = services().getService(GatewayServices.HOST_MAPPING_SERVICE);
    if (hostmapService != null) {
        hostmap = hostmapService.getHostMapper(cluster());
    }
}
Also used : HostMapperService(org.apache.knox.gateway.services.hostmap.HostMapperService)

Example 2 with HostMapperService

use of org.apache.knox.gateway.services.hostmap.HostMapperService in project knox by apache.

the class ServiceMappedHostFunctionProcessor method initialize.

@Override
public void initialize(UrlRewriteEnvironment environment, ServiceMappedHostFunctionDescriptor descriptor) throws Exception {
    super.initialize(environment, descriptor);
    HostMapperService hostmapService = services().getService(GatewayServices.HOST_MAPPING_SERVICE);
    if (hostmapService != null) {
        hostmap = hostmapService.getHostMapper(cluster());
    }
}
Also used : HostMapperService(org.apache.knox.gateway.services.hostmap.HostMapperService)

Example 3 with HostMapperService

use of org.apache.knox.gateway.services.hostmap.HostMapperService in project knox by apache.

the class ServiceMappedUrlFunctionProcessor method initialize.

@Override
public void initialize(UrlRewriteEnvironment environment, ServiceMappedUrlFunctionDescriptor descriptor) throws Exception {
    super.initialize(environment, descriptor);
    HostMapperService hostmapService = services().getService(GatewayServices.HOST_MAPPING_SERVICE);
    if (hostmapService != null) {
        hostmap = hostmapService.getHostMapper(cluster());
    }
}
Also used : HostMapperService(org.apache.knox.gateway.services.hostmap.HostMapperService)

Example 4 with HostMapperService

use of org.apache.knox.gateway.services.hostmap.HostMapperService in project knox by apache.

the class HostmapFunctionProcessorTest method testBasicUseCase.

@Test
public void testBasicUseCase() throws Exception {
    URL configUrl = TestUtils.getResourceUrl(this.getClass(), "hostmap.txt");
    HostMapper hm = EasyMock.createNiceMock(HostMapper.class);
    EasyMock.expect(hm.resolveInboundHostName("test-inbound-host")).andReturn("test-inbound-rewritten-host").anyTimes();
    HostMapperService hms = EasyMock.createNiceMock(HostMapperService.class);
    GatewayServices gatewayServices = EasyMock.createNiceMock(GatewayServices.class);
    EasyMock.expect(gatewayServices.getService(GatewayServices.HOST_MAPPING_SERVICE)).andReturn(hms).anyTimes();
    UrlRewriteEnvironment environment = EasyMock.createNiceMock(UrlRewriteEnvironment.class);
    EasyMock.expect(environment.getAttribute(GatewayServices.GATEWAY_SERVICES_ATTRIBUTE)).andReturn(gatewayServices).anyTimes();
    EasyMock.expect(environment.resolve("cluster.name")).andReturn(Arrays.asList("test-cluster-name")).anyTimes();
    EasyMock.expect(environment.getResource("/WEB-INF/hostmap.txt")).andReturn(configUrl).anyTimes();
    Resolver resolver = EasyMock.createNiceMock(Resolver.class);
    EasyMock.expect(resolver.resolve("host")).andReturn(Arrays.asList("test-inbound-host")).anyTimes();
    EasyMock.replay(gatewayServices, hm, hms, environment, resolver);
    UrlRewriteRulesDescriptor descriptor = UrlRewriteRulesDescriptorFactory.create();
    UrlRewriteRuleDescriptor rule = descriptor.addRule("test-rule");
    rule.pattern("{*}://{host}:{*}/{**}?{**}");
    UrlRewriteActionRewriteDescriptorExt rewrite = rule.addStep("rewrite");
    rewrite.template("{*}://{$hostmap(host)}:{*}/{**}?{**}");
    UrlRewriteProcessor rewriter = new UrlRewriteProcessor();
    rewriter.initialize(environment, descriptor);
    Template input = Parser.parseLiteral("test-scheme://test-inbound-host:42/test-path/test-file?test-name=test-value");
    Template output = rewriter.rewrite(resolver, input, UrlRewriter.Direction.IN, null);
    // System.out.println( output );
    assertThat(output, notNullValue());
    assertThat(output.getHost().getFirstValue().getPattern(), is("test-inbound-rewritten-host"));
}
Also used : UrlRewriteEnvironment(org.apache.knox.gateway.filter.rewrite.api.UrlRewriteEnvironment) GatewayServices(org.apache.knox.gateway.services.GatewayServices) UrlRewriteProcessor(org.apache.knox.gateway.filter.rewrite.api.UrlRewriteProcessor) UrlRewriteActionRewriteDescriptorExt(org.apache.knox.gateway.filter.rewrite.ext.UrlRewriteActionRewriteDescriptorExt) Resolver(org.apache.knox.gateway.util.urltemplate.Resolver) UrlRewriteRuleDescriptor(org.apache.knox.gateway.filter.rewrite.api.UrlRewriteRuleDescriptor) HostMapper(org.apache.knox.gateway.services.hostmap.HostMapper) UrlRewriteRulesDescriptor(org.apache.knox.gateway.filter.rewrite.api.UrlRewriteRulesDescriptor) HostMapperService(org.apache.knox.gateway.services.hostmap.HostMapperService) URL(java.net.URL) Template(org.apache.knox.gateway.util.urltemplate.Template) Test(org.junit.Test)

Aggregations

HostMapperService (org.apache.knox.gateway.services.hostmap.HostMapperService)4 URL (java.net.URL)1 UrlRewriteEnvironment (org.apache.knox.gateway.filter.rewrite.api.UrlRewriteEnvironment)1 UrlRewriteProcessor (org.apache.knox.gateway.filter.rewrite.api.UrlRewriteProcessor)1 UrlRewriteRuleDescriptor (org.apache.knox.gateway.filter.rewrite.api.UrlRewriteRuleDescriptor)1 UrlRewriteRulesDescriptor (org.apache.knox.gateway.filter.rewrite.api.UrlRewriteRulesDescriptor)1 UrlRewriteActionRewriteDescriptorExt (org.apache.knox.gateway.filter.rewrite.ext.UrlRewriteActionRewriteDescriptorExt)1 GatewayServices (org.apache.knox.gateway.services.GatewayServices)1 HostMapper (org.apache.knox.gateway.services.hostmap.HostMapper)1 Resolver (org.apache.knox.gateway.util.urltemplate.Resolver)1 Template (org.apache.knox.gateway.util.urltemplate.Template)1 Test (org.junit.Test)1