]> git.openstreetmap.org Git - rails.git/blob - app/helpers/browse_helper.rb
Add comments_feed action to various filters
[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 =~ /-[^-]+/ and not 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 = [
90     "aeroway", "amenity", "barrier", "building", "highway", "historic", "landuse",
91     "leisure", "man_made", "natural", "railway", "shop", "tourism", "waterway"
92   ]
93
94   def icon_tags(object)
95     object.tags.find_all { |k,v| ICON_TAGS.include? k }.sort
96   end
97
98   def wiki_link(type, lookup)
99     locale = I18n.locale.to_s
100
101     # update-wiki-pages does s/ /_/g on keys before saving them, we
102     # have to replace spaces with underscore so we'll link
103     # e.g. `source=Isle of Man Government aerial imagery (2001)' to
104     # the correct page.
105     lookup_us = lookup.tr(" ", "_")
106
107     if page = WIKI_PAGES[locale][type][lookup_us] rescue nil
108       url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
109     elsif page = WIKI_PAGES["en"][type][lookup_us] rescue nil
110       url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
111     end
112
113     return url
114   end
115
116   def wikipedia_link(key, value)
117     # Some k/v's are wikipedia=http://en.wikipedia.org/wiki/Full%20URL
118     return nil if value =~ /^https?:\/\//
119
120     if key == "wikipedia"
121       # This regex should match Wikipedia language codes, everything
122       # from de to zh-classical
123       if value =~ /^([a-z-]{2,12}):(.+)$/i
124         # Value is <lang>:<title> so split it up
125         # Note that value is always left as-is, see: https://trac.openstreetmap.org/ticket/4315
126         lang  = $1
127       else
128         # Value is <title> so default to English Wikipedia
129         lang = 'en'
130       end
131     elsif key =~ /^wikipedia:(\S+)$/
132       # Language is in the key, so assume value is the title
133       lang = $1
134     else
135       # Not a wikipedia key!
136       return nil
137     end
138
139     if value =~ /^([^#]*)(#.*)/ then
140       # Contains a reference to a section of the wikipedia article
141       # Must break it up to correctly build the url
142       value = $1
143       section = $2
144     else
145       section = ""
146     end
147
148     return {
149       :url => "http://#{lang}.wikipedia.org/wiki/#{value}?uselang=#{I18n.locale}#{section}",
150       :title => value + section
151     }
152   end
153
154   def wikidata_link(key, value)
155     if key == "wikidata" and value =~ /^[Qq][1-9][0-9]*$/
156       return {
157         :url => "//www.wikidata.org/wiki/#{value}?uselang=#{I18n.locale}",
158         :title => value
159       }
160     end
161     return nil
162   end
163
164   def telephone_link(key, value)
165     # does it look like a phone number? eg "+1 (234) 567-8901 " ?
166     return nil unless value =~ /^\s*\+[\d\s\(\)\/\.-]{6,25}\s*$/
167
168     # remove all whitespace instead of encoding it http://tools.ietf.org/html/rfc3966#section-5.1.1
169     # "+1 (234) 567-8901 " -> "+1(234)567-8901"
170     valueNoWhitespace = value.gsub(/\s+/, '')
171
172     return "tel:#{valueNoWhitespace}"
173   end
174 end