Skip to content

Commit

Permalink
Put api keys directly in js layer definitions
Browse files Browse the repository at this point in the history
Also don't generate definitions for layers that have require missing api keys.
  • Loading branch information
AntonKhorev committed Dec 20, 2024
1 parent 33bca7c commit 2588e2b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
4 changes: 0 additions & 4 deletions app/assets/javascripts/leaflet.map.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ L.OSM.Map = L.Map.extend({
this.baseLayers = [];

for (const layerDefinition of OSM.LAYER_DEFINITIONS) {
if (layerDefinition.apiKeyId && !OSM[layerDefinition.apiKeyId]) continue;

let layerConstructor = L.OSM.TileLayer;
const layerOptions = {};

Expand All @@ -28,8 +26,6 @@ L.OSM.Map = L.Map.extend({
layerOptions.attribution = makeAttribution(value);
} else if (property === "nameId") {
layerOptions.name = I18n.t(`javascripts.map.base.${value}`);
} else if (property === "apiKeyId") {
layerOptions.apikey = OSM[value];
} else if (property === "leafletOsmId") {
layerConstructor = L.OSM[value];
} else {
Expand Down
10 changes: 1 addition & 9 deletions app/assets/javascripts/osm.js.erb
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,7 @@ OSM = {
FOSSGIS_VALHALLA_URL: <%= Settings.fossgis_valhalla_url.to_json %>,
DEFAULT_LOCALE: <%= I18n.default_locale.to_json %>,

<% if Settings.key?(:thunderforest_key) %>
THUNDERFOREST_KEY: <%= Settings.thunderforest_key.to_json %>,
<% end %>

<% if Settings.key?(:tracestrack_key) %>
TRACESTRACK_KEY: <%= Settings.tracestrack_key.to_json %>,
<% end %>

LAYER_DEFINITIONS: <%= YAML.load_file(Rails.root.join("config/layers.yml")).to_json %>,
LAYER_DEFINITIONS: <%= MapLayers::definitions("config/layers.yml").to_json %>,
LAYERS_WITH_MAP_KEY: <%= YAML.load_file(Rails.root.join("config/key.yml")).keys.to_json %>,

MARKER_GREEN: <%= image_path("marker-green.png").to_json %>,
Expand Down
6 changes: 3 additions & 3 deletions config/layers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
code: "C"
layerId: "cyclemap"
nameId: "cycle_map"
apiKeyId: "THUNDERFOREST_KEY"
apiKeyId: "thunderforest_key"
canEmbed: true
canDownloadImage: true
credit:
Expand All @@ -42,7 +42,7 @@
code: "T"
layerId: "transportmap"
nameId: "transport_map"
apiKeyId: "THUNDERFOREST_KEY"
apiKeyId: "thunderforest_key"
canEmbed: true
canDownloadImage: true
credit:
Expand All @@ -56,7 +56,7 @@
code: "P"
layerId: "tracestracktopo"
nameId: "tracestracktop_topo"
apiKeyId: "TRACESTRACK_KEY"
apiKeyId: "tracestrack_key"
credit:
id: "tracestrack_credit"
children:
Expand Down
13 changes: 13 additions & 0 deletions lib/map_layers.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module MapLayers
def self.definitions(layers_filename)
YAML.load_file(Rails.root.join(layers_filename)).filter_map do |layer|
if layer["apiKeyId"]
next unless Settings[layer["apiKeyId"]]

layer["apikey"] = Settings[layer["apiKeyId"]]
layer.delete "apiKeyId"
end
layer
end
end
end

0 comments on commit 2588e2b

Please sign in to comment.