]> git.openstreetmap.org Git - rails.git/blob - app/helpers/user_helper.rb
Added /home/osm/traces and /home/osm/images to persistent Docker-compose volumes
[rails.git] / app / helpers / user_helper.rb
1 module UserHelper
2   # User images
3
4   def user_image(user, options = {})
5     options[:class] ||= "user_image"
6     options[:alt] ||= ""
7
8     if user.image_use_gravatar
9       user_gravatar_tag(user, options)
10     elsif user.avatar.attached?
11       image_tag user_avatar_variant(user, :resize => "100x100>"), options
12     else
13       image_tag "avatar_large.png", options
14     end
15   end
16
17   def user_thumbnail(user, options = {})
18     options[:class] ||= "user_thumbnail"
19     options[:alt] ||= ""
20
21     if user.image_use_gravatar
22       user_gravatar_tag(user, options)
23     elsif user.avatar.attached?
24       image_tag user_avatar_variant(user, :resize => "50x50>"), options
25     else
26       image_tag "avatar_small.png", options
27     end
28   end
29
30   def user_thumbnail_tiny(user, options = {})
31     options[:class] ||= "user_thumbnail_tiny"
32     options[:alt] ||= ""
33
34     if user.image_use_gravatar
35       user_gravatar_tag(user, options)
36     elsif user.avatar.attached?
37       image_tag user_avatar_variant(user, :resize => "50x50>"), options
38     else
39       image_tag "avatar_small.png", options
40     end
41   end
42
43   def user_image_url(user, options = {})
44     if user.image_use_gravatar
45       user_gravatar_url(user, options)
46     elsif user.avatar.attached?
47       polymorphic_url(user_avatar_variant(user, :resize => "100x100>"), :host => Settings.server_url)
48     else
49       image_url("avatar_large.png")
50     end
51   end
52
53   # External authentication support
54
55   def openid_logo
56     image_tag "openid_small.png", :alt => t("users.login.openid_logo_alt"), :class => "openid_logo"
57   end
58
59   def auth_button(name, provider, options = {})
60     link_to(
61       image_tag("#{name}.svg", :alt => t("users.login.auth_providers.#{name}.alt"), :class => "rounded-lg"),
62       auth_path(options.merge(:provider => provider)),
63       :class => "auth_button",
64       :title => t("users.login.auth_providers.#{name}.title")
65     )
66   end
67
68   private
69
70   # Local avatar support
71
72   def user_avatar_variant(user, options)
73     if user.avatar.variable?
74       user.avatar.variant(options)
75     else
76       user.avatar
77     end
78   end
79
80   # Gravatar support
81
82   # See http://en.gravatar.com/site/implement/images/ for details.
83   def user_gravatar_url(user, options = {})
84     size = options[:size] || 100
85     hash = Digest::MD5.hexdigest(user.email.downcase)
86     default_image_url = image_url("avatar_large.png")
87     "#{request.protocol}www.gravatar.com/avatar/#{hash}.jpg?s=#{size}&d=#{u(default_image_url)}"
88   end
89
90   def user_gravatar_tag(user, options = {})
91     url = user_gravatar_url(user, options)
92     options.delete(:size)
93     image_tag url, options
94   end
95 end