- Timestamp:
- 2018-05-30T19:04:15+02:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AddImageryLayerAction.java
r13839 r13872 167 167 try { 168 168 CheckParameterUtil.ensureThat(ImageryType.WMS_ENDPOINT.equals(info.getImageryType()), "wms_endpoint imagery type expected"); 169 final WMSImagery wms = new WMSImagery(info.getUrl()); 169 final WMSImagery wms = new WMSImagery(info.getUrl(), info.getCustomHttpHeaders()); 170 170 171 171 final WMSLayerTree tree = new WMSLayerTree(); … … 201 201 .map(LayerDetails::getName) 202 202 .collect(Collectors.joining(", ")); 203 ImageryInfo ret = new ImageryInfo(info.getName() + selectedLayers, 204 url, 205 "wms", 206 info.getEulaAcceptanceRequired(), 207 info.getCookies()); 208 203 // Use full copy of original Imagery info to copy all attributes. Only overwrite what's different 204 ImageryInfo ret = new ImageryInfo(info); 205 ret.setUrl(url); 206 ret.setImageryType(ImageryType.WMS); 207 ret.setName(info.getName() + selectedLayers); 209 208 ret.setServerProjections(wms.getServerProjections(tree.getSelectedLayers())); 210 211 209 return ret; 212 210 } catch (MalformedURLException ex) { -
trunk/src/org/openstreetmap/josm/data/imagery/WMSEndpointTileSource.java
r13829 r13872 43 43 CheckParameterUtil.ensure(info, "imageryType", x -> ImageryType.WMS_ENDPOINT.equals(x.getImageryType())); 44 44 try { 45 wmsi = new WMSImagery(info.getUrl()); 45 wmsi = new WMSImagery(info.getUrl(), info.getCustomHttpHeaders()); 46 46 } catch (IOException | WMSGetCapabilitiesException e) { 47 47 throw new IllegalArgumentException(e); -
trunk/src/org/openstreetmap/josm/io/imagery/WMSImagery.java
r13829 r13872 432 432 // TODO should we handle also POST? 433 433 if ("GET".equalsIgnoreCase(mode) && getMapUrl != null && !"".equals(getMapUrl)) { 434 this.getMapUrl = getMapUrl; 434 if (getMapUrl.endsWith("?")) { 435 this.getMapUrl = getMapUrl; 436 } else { 437 this.getMapUrl = getMapUrl + "?"; 438 } 435 439 } 436 440 } -
trunk/test/unit/org/openstreetmap/josm/data/imagery/WMSEndpointTileSourceTest.java
r13757 r13872 8 8 import java.util.Arrays; 9 9 10 import org.fest.util.Collections; 10 11 import org.junit.Rule; 11 12 import org.junit.Test; 12 13 import org.openstreetmap.josm.Main; 13 14 import org.openstreetmap.josm.TestUtils; 15 import org.openstreetmap.josm.data.imagery.ImageryInfo.ImageryType; 14 16 import org.openstreetmap.josm.data.projection.Projections; 15 17 import org.openstreetmap.josm.spi.preferences.Config; … … 83 85 + "BBOX=20037506.6204108,-60112521.5836107,60112521.5836107,-20037506.6204108", tileSource.getTileUrl(1, 1, 1)); 84 86 } 87 88 @Test 89 public void testCustomHeaders() throws Exception { 90 tileServer.stubFor( 91 WireMock.get(WireMock.urlEqualTo("/capabilities?SERVICE=WMS&REQUEST=GetCapabilities")) 92 .willReturn( 93 WireMock.aResponse() 94 .withBody(Files.readAllBytes(Paths.get(TestUtils.getTestDataRoot() + "wms/webatlas.no.xml"))) 95 ) 96 ); 97 98 tileServer.stubFor(WireMock.get(WireMock.urlEqualTo("//maps")).willReturn(WireMock.aResponse().withBody( 99 "<?xml version='1.0' encoding='UTF-8'?>\n" + 100 "<imagery xmlns=\"http://josm.openstreetmap.de/maps-1.0\">\n" + 101 " <entry>\n" + 102 " <name>Norway Orthophoto (historic)</name>\n" + 103 " <name lang=\"nb\">Norge i Bilder (historisk)</name>\n" + 104 " <id>geovekst-nib-historic</id>\n" + 105 " <type>wms_endpoint</type>\n" + 106 " <country-code>NO</country-code>\n" + 107 " <description lang=\"en\">Historic Norwegian orthophotos and maps, courtesy of Geovekst and Norkart.</description>\n" + 108 " <url><![CDATA[" + tileServer.url("/capabilities?SERVICE=WMS&REQUEST=GetCapabilities") + "]]></url>\n" + 109 " <custom-http-header header-name=\"X-WAAPI-TOKEN\" header-value=\"b8e36d51-119a-423b-b156-d744d54123d5\" />\n" + 110 " <attribution-text>© Geovekst</attribution-text>\n" + 111 " <attribution-url>https://www.norgeibilder.no/</attribution-url>\n" + 112 " <permission-ref>https://forum.openstreetmap.org/viewtopic.php?id=62083</permission-ref>\n" + 113 " <icon>https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png</icon>\n" + 114 " <max-zoom>21</max-zoom>\n" + 115 " <valid-georeference>true</valid-georeference>\n" + 116 "</entry>\n" + 117 "</imagery>" 118 ))); 119 120 Config.getPref().putList("imagery.layers.sites", Arrays.asList(tileServer.url("//maps"))); 121 ImageryLayerInfo.instance.loadDefaults(true, null, false); 122 ImageryInfo wmsImageryInfo = ImageryLayerInfo.instance.getDefaultLayers().get(0); 123 wmsImageryInfo.setDefaultLayers(Collections.list(new DefaultLayer(ImageryType.WMS_ENDPOINT, "historiske-ortofoto", "", ""))); 124 WMSEndpointTileSource tileSource = new WMSEndpointTileSource(wmsImageryInfo, Main.getProjection()); 125 tileSource.initProjection(Projections.getProjectionByCode("EPSG:3857")); 126 assertEquals("b8e36d51-119a-423b-b156-d744d54123d5", wmsImageryInfo.getCustomHttpHeaders().get("X-WAAPI-TOKEN")); 127 assertEquals("b8e36d51-119a-423b-b156-d744d54123d5", tileSource.getHeaders().get("X-WAAPI-TOKEN")); 128 assertEquals(true, wmsImageryInfo.isGeoreferenceValid()); 129 tileServer.verify( 130 WireMock.getRequestedFor(WireMock.urlEqualTo("/capabilities?SERVICE=WMS&REQUEST=GetCapabilities")) 131 .withHeader("X-WAAPI-TOKEN", WireMock.equalTo("b8e36d51-119a-423b-b156-d744d54123d5"))); 132 assertEquals("http://waapi.webatlas.no/wms-orto-hist/?" 133 + "FORMAT=image/png&" 134 + "TRANSPARENT=TRUE&" 135 + "VERSION=1.1.1&" 136 + "SERVICE=WMS&" 137 + "REQUEST=GetMap&" 138 + "LAYERS=historiske-ortofoto&" 139 + "STYLES=&" 140 + "SRS=EPSG:3857&" 141 + "WIDTH=512&" 142 + "HEIGHT=512&" 143 + "BBOX=20037506.6204108,-60112521.5836107,60112521.5836107,-20037506.6204108", 144 tileSource.getTileUrl(1, 1, 1)); 145 146 } 85 147 }
Note:
See TracChangeset
for help on using the changeset viewer.