]> git.openstreetmap.org Git - rails.git/blob - lib/osm_community_index/osm_community_index.rb
caa47304c1181272c13b705ffae0a87768987f05
[rails.git] / lib / osm_community_index / osm_community_index.rb
1 module OsmCommunityIndex
2   class OsmCommunityIndex
3     require "yaml"
4
5     @localised_strings = {}
6
7     def self.community_index
8       @community_index ||= community_index_from_json
9     end
10
11     def self.localised_strings(locale)
12       @localised_strings[locale] ||= locale_hash_from_json(locale)
13     end
14
15     def self.community_index_from_json
16       json_file = Rails.root.join("node_modules/osm-community-index/dist/resources.json")
17       JSON.parse(File.read(json_file))
18     end
19
20     def self.locale_hash_from_json(locale_in)
21       locale = locale_in.to_s.tr("-", "_")
22       # try the passed in locale
23       json = load_locale_json(locale)
24       return json unless json.nil?
25
26       # now try it without it's country part (eg 'en' instead of 'en_GB')
27       shortened_locale = locale.split("_").first
28       unless shortened_locale == locale
29         json = load_locale_json(shortened_locale)
30         return json unless json.nil?
31       end
32
33       # if nothing else works, then return "en"
34       load_locale_json("en")
35     end
36
37     def self.load_locale_json(locale)
38       json_path = Rails.root.join("node_modules/osm-community-index/i18n/#{locale}.yaml")
39       return YAML.safe_load(File.read(json_path))[locale] if File.exist?(json_path)
40
41       nil
42     end
43   end
44 end