]> git.openstreetmap.org Git - rails.git/blob - app/helpers/browse_helper.rb
e70ec204e6446c5046a7276fcd5c39648206cd38
[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 url = wiki_link("tag", "#{key}=#{value}")
65       link_to h(value), url, :title => t('browse.tag_details.wiki_link.tag', :key => key, :value => value)
66     elsif url = telephone_link(key, value)
67       link_to h(value), url, :title => t('browse.tag_details.telephone_link', :phone_number => value)
68     else
69       linkify h(value)
70     end
71   end
72
73   def type_and_paginated_count(type, pages)
74     if pages.page_count == 1
75       t "browse.changeset.#{type}",
76         :count => pages.item_count
77     else
78       t "browse.changeset.#{type}_paginated",
79         :x => pages.current_page.first_item,
80         :y => pages.current_page.last_item,
81         :count => pages.item_count
82     end
83   end
84
85 private
86
87   ICON_TAGS = [
88     "aeroway", "amenity", "barrier", "building", "highway", "historic", "landuse",
89     "leisure", "man_made", "natural", "railway", "shop", "tourism", "waterway"
90   ]
91
92   def icon_tags(object)
93     object.tags.find_all { |k,v| ICON_TAGS.include? k }
94   end
95
96   def wiki_link(type, lookup)
97     locale = I18n.locale.to_s
98
99     # update-wiki-pages does s/ /_/g on keys before saving them, we
100     # have to replace spaces with underscore so we'll link
101     # e.g. `source=Isle of Man Government aerial imagery (2001)' to
102     # the correct page.
103     lookup_us = lookup.tr(" ", "_")
104
105     if page = WIKI_PAGES[locale][type][lookup_us] rescue nil
106       url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
107     elsif page = WIKI_PAGES["en"][type][lookup_us] rescue nil
108       url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
109     end
110
111     return url
112   end
113
114   def wikipedia_link(key, value)
115     # Some k/v's are wikipedia=http://en.wikipedia.org/wiki/Full%20URL
116     return nil if value =~ /^https?:\/\//
117
118     if key == "wikipedia"
119       # This regex should match Wikipedia language codes, everything
120       # from de to zh-classical
121       if value =~ /^([a-z-]{2,12}):(.+)$/i
122         # Value is <lang>:<title> so split it up
123         # Note that value is always left as-is, see: https://trac.openstreetmap.org/ticket/4315
124         lang  = $1
125       else
126         # Value is <title> so default to English Wikipedia
127         lang = 'en'
128       end
129     elsif key =~ /^wikipedia:(\S+)$/
130       # Language is in the key, so assume value is the title
131       lang = $1
132     else
133       # Not a wikipedia key!
134       return nil
135     end
136
137     if value =~ /^([^#]*)(#.*)/ then
138       # Contains a reference to a section of the wikipedia article
139       # Must break it up to correctly build the url
140       value = $1
141       section = $2
142     else
143       section = ""
144     end
145
146     return {
147       :url => "http://#{lang}.wikipedia.org/wiki/#{value}?uselang=#{I18n.locale}#{section}",
148       :title => value + section
149     }
150   end
151
152   def telephone_link(key, value)
153     # does it look like a phone number? eg "+1 (234) 567-8901 " ?
154     return nil unless value =~ /^\s*\+[\d\s\(\)\/\.-]{6,25}\s*$/
155
156     # remove all whitespace instead of encoding it http://tools.ietf.org/html/rfc3966#section-5.1.1
157     # "+1 (234) 567-8901 " -> "+1(234)567-8901"
158     valueNoWhitespace = value.gsub(/\s+/, '')
159
160     return "tel:#{valueNoWhitespace}"
161   end
162 end