]> git.openstreetmap.org Git - rails.git/blob - app/helpers/browse_helper.rb
45240e08268308d63fe1fa41717e411fb3c31749
[rails.git] / app / helpers / browse_helper.rb
1 module BrowseHelper
2   def printable_name(object, version = false)
3     if object.id.is_a?(Array)
4       id = object.id[0]
5     else
6       id = object.id
7     end
8     name = t 'printable_name.with_id', :id => id.to_s
9     if version
10       name = t 'printable_name.with_version', :id => name, :version => object.version.to_s
11     end
12
13     # don't look at object tags if redacted, so as to avoid giving
14     # away redacted version tag information.
15     unless object.redacted?
16       locale = I18n.locale.to_s
17
18       while locale =~ /-[^-]+/ && !object.tags.include?("name:#{I18n.locale}")
19         locale = locale.sub(/-[^-]+/, "")
20       end
21
22       if object.tags.include? "name:#{locale}"
23         name = t 'printable_name.with_name_html', :name => content_tag(:bdi, object.tags["name:#{locale}"].to_s), :id => content_tag(:bdi, name)
24       elsif object.tags.include? 'name'
25         name = t 'printable_name.with_name_html', :name => content_tag(:bdi, object.tags['name'].to_s), :id => content_tag(:bdi, name)
26       end
27     end
28
29     name
30   end
31
32   def link_class(type, object)
33     classes = [type]
34
35     if object.redacted?
36       classes << "deleted"
37     else
38       classes += icon_tags(object).flatten.map { |t| h(t) }
39       classes << "deleted" unless object.visible?
40     end
41
42     classes.join(" ")
43   end
44
45   def link_title(object)
46     if object.redacted?
47       ""
48     else
49       h(icon_tags(object).map { |k, v| k + '=' + v }.to_sentence)
50     end
51   end
52
53   def format_key(key)
54     if url = wiki_link("key", key)
55       link_to h(key), url, :title => t('browse.tag_details.wiki_link.key', :key => key)
56     else
57       h(key)
58     end
59   end
60
61   def format_value(key, value)
62     if wp = wikipedia_link(key, value)
63       link_to h(wp[:title]), wp[:url], :title => t('browse.tag_details.wikipedia_link', :page => wp[:title])
64     elsif wdt = wikidata_link(key, value)
65       link_to h(wdt[:title]), wdt[:url], :title => t('browse.tag_details.wikidata_link', :page => wdt[:title])
66     elsif url = wiki_link("tag", "#{key}=#{value}")
67       link_to h(value), url, :title => t('browse.tag_details.wiki_link.tag', :key => key, :value => value)
68     elsif url = telephone_link(key, value)
69       link_to h(value), url, :title => t('browse.tag_details.telephone_link', :phone_number => value)
70     else
71       linkify h(value)
72     end
73   end
74
75   def type_and_paginated_count(type, pages)
76     if pages.page_count == 1
77       t "browse.changeset.#{type}",
78         :count => pages.item_count
79     else
80       t "browse.changeset.#{type}_paginated",
81         :x => pages.current_page.first_item,
82         :y => pages.current_page.last_item,
83         :count => pages.item_count
84     end
85   end
86
87   private
88
89   ICON_TAGS = %w(aeroway amenity barrier building highway historic landuse leisure man_made natural railway shop tourism waterway)
90
91   def icon_tags(object)
92     object.tags.find_all { |k, _v| ICON_TAGS.include? k }.sort
93   end
94
95   def wiki_link(type, lookup)
96     locale = I18n.locale.to_s
97
98     # update-wiki-pages does s/ /_/g on keys before saving them, we
99     # have to replace spaces with underscore so we'll link
100     # e.g. `source=Isle of Man Government aerial imagery (2001)' to
101     # the correct page.
102     lookup_us = lookup.tr(" ", "_")
103
104     if page = WIKI_PAGES[locale][type][lookup_us] rescue nil
105       url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
106     elsif page = WIKI_PAGES["en"][type][lookup_us] rescue nil
107       url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
108     end
109
110     url
111   end
112
113   def wikipedia_link(key, value)
114     # Some k/v's are wikipedia=http://en.wikipedia.org/wiki/Full%20URL
115     return nil if value =~ /^https?:\/\//
116
117     if key == "wikipedia"
118       # This regex should match Wikipedia language codes, everything
119       # from de to zh-classical
120       if value =~ /^([a-z-]{2,12}):(.+)$/i
121         # Value is <lang>:<title> so split it up
122         # Note that value is always left as-is, see: https://trac.openstreetmap.org/ticket/4315
123         lang  = $1
124       else
125         # Value is <title> so default to English Wikipedia
126         lang = 'en'
127       end
128     elsif key =~ /^wikipedia:(\S+)$/
129       # Language is in the key, so assume value is the title
130       lang = $1
131     else
132       # Not a wikipedia key!
133       return nil
134     end
135
136     if value =~ /^([^#]*)(#.*)/
137       # Contains a reference to a section of the wikipedia article
138       # Must break it up to correctly build the url
139       value = $1
140       section = $2
141     else
142       section = ""
143     end
144
145     {
146       :url => "http://#{lang}.wikipedia.org/wiki/#{value}?uselang=#{I18n.locale}#{section}",
147       :title => value + section
148     }
149   end
150
151   def wikidata_link(key, value)
152     if key == "wikidata" && value =~ /^[Qq][1-9][0-9]*$/
153       return {
154         :url => "//www.wikidata.org/wiki/#{value}?uselang=#{I18n.locale}",
155         :title => value
156       }
157     end
158     nil
159   end
160
161   def telephone_link(_key, value)
162     # does it look like a phone number? eg "+1 (234) 567-8901 " ?
163     return nil unless value =~ /^\s*\+[\d\s\(\)\/\.-]{6,25}\s*$/
164
165     # remove all whitespace instead of encoding it http://tools.ietf.org/html/rfc3966#section-5.1.1
166     # "+1 (234) 567-8901 " -> "+1(234)567-8901"
167     valueNoWhitespace = value.gsub(/\s+/, '')
168
169     "tel:#{valueNoWhitespace}"
170   end
171 end