]> git.openstreetmap.org Git - rails.git/blob - app/helpers/social_share_button_helper.rb
Convert social share helper library into a real helper
[rails.git] / app / helpers / social_share_button_helper.rb
1 module SocialShareButtonHelper
2   require "uri"
3
4   SOCIAL_SHARE_CONFIG = {
5     :email => "social_icons/email.svg",
6     :bluesky => "social_icons/bluesky.svg",
7     :facebook => "social_icons/facebook.svg",
8     :linkedin => "social_icons/linkedin.svg",
9     :mastodon => "social_icons/mastodon.svg",
10     :telegram => "social_icons/telegram.svg",
11     :x => "social_icons/x.svg"
12   }.freeze
13
14   # Generates a set of social share buttons based on the specified options.
15   def render_social_share_buttons(opts = {})
16     sites = opts.fetch(:allow_sites, [])
17     valid_sites, invalid_sites = filter_allowed_sites(sites)
18
19     # Log invalid sites
20     invalid_sites.each do |invalid_site|
21       Rails.logger.error("Invalid site or icon not configured: #{invalid_site}")
22     end
23
24     tag.div(
25       :class => "social-share-button d-flex gap-1 align-items-end flex-wrap mb-3"
26     ) do
27       valid_sites.map do |site|
28         link_options = {
29           :rel => ["nofollow", opts[:rel]].compact,
30           :class => "ssb-icon rounded-circle",
31           :title => I18n.t("application.share.#{site}.title"),
32           :target => "_blank"
33         }
34
35         link_to generate_share_url(site, opts), link_options do
36           image_tag(icon_path(site), :alt => I18n.t("application.share.#{site}.alt"), :size => 28)
37         end
38       end.join.html_safe
39     end
40   end
41
42   private
43
44   def filter_allowed_sites(sites)
45     valid_sites = sites.empty? ? SOCIAL_SHARE_CONFIG.keys : sites.select { |site| valid_site?(site) }
46     invalid_sites = sites - valid_sites
47     [valid_sites, invalid_sites]
48   end
49
50   def icon_path(site)
51     SOCIAL_SHARE_CONFIG[site.to_sym] || ""
52   end
53
54   def valid_site?(site)
55     SOCIAL_SHARE_CONFIG.key?(site.to_sym)
56   end
57
58   def generate_share_url(site, params)
59     site = site.to_sym
60     case site
61     when :email
62       to = params[:to] || ""
63       subject = CGI.escape(params[:title])
64       body = CGI.escape(params[:url])
65       "mailto:#{to}?subject=#{subject}&body=#{body}"
66     when :x
67       via_str = params[:via] ? "&via=#{URI.encode_www_form_component(params[:via])}" : ""
68       hashtags_str = params[:hashtags] ? "&hashtags=#{URI.encode_www_form_component(params[:hashtags].join(','))}" : ""
69       "https://x.com/intent/tweet?url=#{URI.encode_www_form_component(params[:url])}&text=#{URI.encode_www_form_component(params[:title])}#{hashtags_str}#{via_str}"
70     when :linkedin
71       "https://www.linkedin.com/sharing/share-offsite/?url=#{URI.encode_www_form_component(params[:url])}"
72     when :facebook
73       "https://www.facebook.com/sharer/sharer.php?u=#{URI.encode_www_form_component(params[:url])}&t=#{URI.encode_www_form_component(params[:title])}"
74     when :mastodon
75       "https://mastodonshare.com/?text=#{URI.encode_www_form_component(params[:title])}&url=#{URI.encode_www_form_component(params[:url])}"
76     when :telegram
77       "https://t.me/share/url?url=#{URI.encode_www_form_component(params[:url])}&text=#{URI.encode_www_form_component(params[:title])}"
78     when :bluesky
79       "https://bsky.app/intent/compose?text=#{URI.encode_www_form_component(params[:title])}+#{URI.encode_www_form_component(params[:url])}"
80     else
81       raise ArgumentError, "Unsupported platform: #{platform}"
82     end
83   end
84 end