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 9, 2024
1 parent 7b05c1c commit 7571bdf
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 @@ -30,8 +28,6 @@ L.OSM.Map = L.Map.extend({
layerOptions.keyid = 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 @@ -25,7 +25,7 @@
code: "C"
keyId: "cyclemap"
nameId: "cycle_map"
apiKeyId: "THUNDERFOREST_KEY"
apiKeyId: "thunderforest_key"
credit:
id: "thunderforest_credit"
children:
Expand All @@ -37,7 +37,7 @@
code: "T"
keyId: "transportmap"
nameId: "transport_map"
apiKeyId: "THUNDERFOREST_KEY"
apiKeyId: "thunderforest_key"
credit:
id: "thunderforest_credit"
children:
Expand All @@ -49,7 +49,7 @@
code: "P"
keyId: "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 7571bdf

Please sign in to comment.