]> git.openstreetmap.org Git - rails.git/blob - lib/osm_community_index/osm_community_index.rb
Merge branch 'master' into feature/add-communities-page
[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     protected
16
17     def self.community_index_from_json
18       json_file = Rails.root.join("node_modules/osm-community-index/dist/resources.json")
19       JSON.parse(File.read(json_file))
20     end
21
22     def self.locale_hash_from_json(locale_in)
23       locale = locale_in.to_s.tr("-", "_")
24       # try the passed in locale
25       json = load_locale_json(locale)
26       unless json.nil?
27         return json
28       end
29
30       # now try it without it's country part (eg 'en' instead of 'en_GB')
31       shortened_locale = locale.split("_").first
32       unless shortened_locale === locale
33         json = load_locale_json(shortened_locale)
34         unless json.nil?
35           return json
36         end
37       end
38
39       # if nothing else works, then return "en"
40       load_locale_json("en")
41     end
42
43     def self.load_locale_json(locale)
44       json_path = Rails.root.join("node_modules/osm-community-index/i18n/#{locale}.yaml")
45       if File.exist?(json_path)
46         return YAML.safe_load(File.read(json_path))[locale]
47       end
48       nil
49     end
50
51   end
52 end