Changeset 36372 in osm


Ignore:
Timestamp:
2025-01-27T14:43:10+01:00 (2 months ago)
Author:
taylor.smock
Message:

See #23913: Fetch remote API keys for Bing imagery

Location:
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/AbstractTMSTileSource.java

    r36223 r36372  
    4444            baseUrl = baseUrl.substring(0, baseUrl.length()-1);
    4545        }
    46         this.id = info.getUrl();
     46        this.id = info.getId();
    4747        this.noTileHeaders = info.getNoTileHeaders();
    4848        this.noTileChecksums = info.getNoTileChecksums();
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/BingAerialTileSource.java

    r36329 r36372  
    8181     */
    8282    public BingAerialTileSource() {
    83         super(new TileSourceInfo("Bing", null, null));
     83        super(new TileSourceInfo("Bing", null, "Bing"));
    8484        minZoom = 1;
    8585    }
     
    132132        try {
    133133            return new URI(FeatureAdapter.getSetting(METADATA_API_SETTING, METADATA_API_URL)
    134                     .replace(API_KEY_PLACEHOLDER, FeatureAdapter.getSetting(API_KEY_SETTING, API_KEY))
     134                    .replace(API_KEY_PLACEHOLDER, getKey())
    135135                    .replace(API_KEY_LAYER, this.layer)).toURL();
    136136        } catch (URISyntaxException e) {
     
    139139            throw malformedURLException;
    140140        }
     141    }
     142
     143    /**
     144     * Get the API key for Bing imagery
     145     * Order of preference is as follows:
     146     * <ol>
     147     *     <li>Custom API key provided by {@link FeatureAdapter#getSetting(String, String)} via {@link #API_KEY_SETTING}</li>
     148     *     <li>API key provided by {@link FeatureAdapter#retrieveApiKey(String)}</li>
     149     *     <li>The hardcoded API key. This should not be used whenever possible.</li>
     150     * </ol>
     151     * @return The API key to use
     152     */
     153    private String getKey() {
     154        // Preference order for key
     155        // 1. Custom API key
     156        // 2. Remote API key
     157        // 3. Hardcoded API key
     158        String key = FeatureAdapter.getSetting(API_KEY_SETTING, API_KEY);
     159        if (API_KEY.equals(key)) { // If the API key has not been customized, we try to retrieve the API key
     160            try {
     161                key = FeatureAdapter.retrieveApiKey(this.getId());
     162            } catch (IOException ioException) {
     163                FeatureAdapter.getLogger(this.getClass()).log(Level.WARNING, "Failed to retrieve api key", ioException);
     164            }
     165        }
     166        return key;
    141167    }
    142168
Note: See TracChangeset for help on using the changeset viewer.