2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
module ApplicationHelper
|
2018-07-05 16:31:35 +00:00
|
|
|
DANGEROUS_SCOPES = %w(
|
|
|
|
read
|
|
|
|
write
|
|
|
|
follow
|
|
|
|
).freeze
|
|
|
|
|
2020-11-30 22:02:32 +00:00
|
|
|
RTL_LOCALES = %i(
|
|
|
|
ar
|
2022-03-17 00:37:03 +00:00
|
|
|
ckb
|
2020-11-30 22:02:32 +00:00
|
|
|
fa
|
|
|
|
he
|
|
|
|
).freeze
|
|
|
|
|
2021-07-07 19:13:08 +00:00
|
|
|
def friendly_number_to_human(number, **options)
|
|
|
|
# By default, the number of precision digits used by number_to_human
|
|
|
|
# is looked up from the locales definition, and rails-i18n comes with
|
|
|
|
# values that don't seem to make much sense for many languages, so
|
|
|
|
# override these values with a default of 3 digits of precision.
|
2022-04-01 21:59:13 +00:00
|
|
|
options = options.merge(
|
|
|
|
precision: 3,
|
|
|
|
strip_insignificant_zeros: true,
|
|
|
|
significant: true
|
|
|
|
)
|
2021-07-07 19:13:08 +00:00
|
|
|
|
|
|
|
number_to_human(number, **options)
|
|
|
|
end
|
|
|
|
|
2017-05-15 22:41:09 +00:00
|
|
|
def open_registrations?
|
2019-03-14 04:28:30 +00:00
|
|
|
Setting.registrations_mode == 'open'
|
|
|
|
end
|
|
|
|
|
|
|
|
def approved_registrations?
|
|
|
|
Setting.registrations_mode == 'approved'
|
|
|
|
end
|
|
|
|
|
|
|
|
def closed_registrations?
|
|
|
|
Setting.registrations_mode == 'none'
|
|
|
|
end
|
|
|
|
|
|
|
|
def available_sign_up_path
|
2022-01-23 14:52:58 +00:00
|
|
|
if closed_registrations? || omniauth_only?
|
2019-03-14 04:28:30 +00:00
|
|
|
'https://joinmastodon.org/#getting-started'
|
|
|
|
else
|
2023-05-23 13:17:09 +00:00
|
|
|
ENV.fetch('SSO_ACCOUNT_SIGN_UP', new_user_registration_path)
|
2019-03-14 04:28:30 +00:00
|
|
|
end
|
2017-05-15 22:41:09 +00:00
|
|
|
end
|
|
|
|
|
2022-01-23 14:52:58 +00:00
|
|
|
def omniauth_only?
|
|
|
|
ENV['OMNIAUTH_ONLY'] == 'true'
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_to_login(name = nil, html_options = nil, &block)
|
|
|
|
target = new_user_session_path
|
|
|
|
|
2023-02-08 09:36:23 +00:00
|
|
|
html_options = name if block
|
2022-01-24 02:29:03 +00:00
|
|
|
|
2022-01-23 14:52:58 +00:00
|
|
|
if omniauth_only? && Devise.mappings[:user].omniauthable? && User.omniauth_providers.size == 1
|
|
|
|
target = omniauth_authorize_path(:user, User.omniauth_providers[0])
|
|
|
|
html_options ||= {}
|
|
|
|
html_options[:method] = :post
|
|
|
|
end
|
|
|
|
|
2023-02-08 09:36:23 +00:00
|
|
|
if block
|
2022-01-23 14:52:58 +00:00
|
|
|
link_to(target, html_options, &block)
|
|
|
|
else
|
|
|
|
link_to(name, target, html_options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def provider_sign_in_link(provider)
|
2022-06-01 17:22:55 +00:00
|
|
|
label = Devise.omniauth_configs[provider]&.strategy&.display_name.presence || I18n.t("auth.providers.#{provider}", default: provider.to_s.chomp('_oauth2').capitalize)
|
|
|
|
link_to label, omniauth_authorize_path(:user, provider), class: "button button-#{provider}", method: :post
|
2022-01-23 14:52:58 +00:00
|
|
|
end
|
|
|
|
|
2018-01-28 23:22:20 +00:00
|
|
|
def locale_direction
|
2020-11-30 22:02:32 +00:00
|
|
|
if RTL_LOCALES.include?(I18n.locale)
|
2018-01-28 23:22:20 +00:00
|
|
|
'rtl'
|
|
|
|
else
|
|
|
|
'ltr'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-11-09 13:05:57 +00:00
|
|
|
def html_title
|
|
|
|
safe_join(
|
|
|
|
[content_for(:page_title).to_s.chomp, title]
|
|
|
|
.select(&:present?),
|
|
|
|
' - '
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2017-04-27 13:17:55 +00:00
|
|
|
def title
|
|
|
|
Rails.env.production? ? site_title : "#{site_title} (Dev)"
|
|
|
|
end
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2018-07-05 16:31:35 +00:00
|
|
|
def class_for_scope(scope)
|
|
|
|
'scope-danger' if DANGEROUS_SCOPES.include?(scope.to_s)
|
|
|
|
end
|
|
|
|
|
2017-11-11 19:23:33 +00:00
|
|
|
def can?(action, record)
|
|
|
|
return false if record.nil?
|
2023-02-20 05:58:28 +00:00
|
|
|
|
2023-12-18 10:26:09 +00:00
|
|
|
policy(record).public_send(:"#{action}?")
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
2017-07-03 09:04:35 +00:00
|
|
|
def fa_icon(icon, attributes = {})
|
2023-12-11 14:58:29 +00:00
|
|
|
class_names = attributes[:class]&.split || []
|
2017-07-03 09:04:35 +00:00
|
|
|
class_names << 'fa'
|
2023-03-16 01:34:00 +00:00
|
|
|
class_names += icon.split.map { |cl| "fa-#{cl}" }
|
2017-07-03 09:04:35 +00:00
|
|
|
|
|
|
|
content_tag(:i, nil, attributes.merge(class: class_names.join(' ')))
|
2017-05-03 00:04:16 +00:00
|
|
|
end
|
2017-09-12 03:39:38 +00:00
|
|
|
|
2023-04-16 05:01:24 +00:00
|
|
|
def check_icon
|
2024-03-19 09:03:15 +00:00
|
|
|
inline_svg_tag 'check.svg'
|
2023-04-16 05:01:24 +00:00
|
|
|
end
|
|
|
|
|
2020-06-25 20:43:59 +00:00
|
|
|
def visibility_icon(status)
|
|
|
|
if status.public_visibility?
|
|
|
|
fa_icon('globe', title: I18n.t('statuses.visibilities.public'))
|
|
|
|
elsif status.unlisted_visibility?
|
|
|
|
fa_icon('unlock', title: I18n.t('statuses.visibilities.unlisted'))
|
|
|
|
elsif status.private_visibility? || status.limited_visibility?
|
|
|
|
fa_icon('lock', title: I18n.t('statuses.visibilities.private'))
|
2021-04-21 13:40:00 +00:00
|
|
|
elsif status.direct_visibility?
|
2022-05-05 22:41:56 +00:00
|
|
|
fa_icon('at', title: I18n.t('statuses.visibilities.direct'))
|
2020-06-25 20:43:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-12 16:43:12 +00:00
|
|
|
def interrelationships_icon(relationships, account_id)
|
|
|
|
if relationships.following[account_id] && relationships.followed_by[account_id]
|
|
|
|
fa_icon('exchange', title: I18n.t('relationships.mutual'), class: 'fa-fw active passive')
|
|
|
|
elsif relationships.following[account_id]
|
|
|
|
fa_icon(locale_direction == 'ltr' ? 'arrow-right' : 'arrow-left', title: I18n.t('relationships.following'), class: 'fa-fw active')
|
|
|
|
elsif relationships.followed_by[account_id]
|
|
|
|
fa_icon(locale_direction == 'ltr' ? 'arrow-left' : 'arrow-right', title: I18n.t('relationships.followers'), class: 'fa-fw passive')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-06-09 20:25:23 +00:00
|
|
|
def custom_emoji_tag(custom_emoji)
|
|
|
|
if prefers_autoplay?
|
2019-09-10 18:56:07 +00:00
|
|
|
image_tag(custom_emoji.image.url, class: 'emojione', alt: ":#{custom_emoji.shortcode}:")
|
|
|
|
else
|
2023-05-04 03:54:26 +00:00
|
|
|
image_tag(custom_emoji.image.url(:static), :class => 'emojione custom-emoji', :alt => ":#{custom_emoji.shortcode}", 'data-original' => full_asset_url(custom_emoji.image.url), 'data-static' => full_asset_url(custom_emoji.image.url(:static)))
|
2019-09-10 18:56:07 +00:00
|
|
|
end
|
2017-11-07 13:49:32 +00:00
|
|
|
end
|
|
|
|
|
2017-09-12 03:39:38 +00:00
|
|
|
def opengraph(property, content)
|
2023-04-30 04:47:15 +00:00
|
|
|
tag.meta(content: content, property: property)
|
2017-09-12 03:39:38 +00:00
|
|
|
end
|
2018-04-20 00:28:48 +00:00
|
|
|
|
2018-08-25 20:55:25 +00:00
|
|
|
def body_classes
|
2023-04-23 20:35:54 +00:00
|
|
|
output = body_class_string.split
|
2018-08-26 11:52:12 +00:00
|
|
|
output << "flavour-#{current_flavour.parameterize}"
|
|
|
|
output << "skin-#{current_skin.parameterize}"
|
2018-08-25 20:55:25 +00:00
|
|
|
output << 'system-font' if current_account&.user&.setting_system_font_ui
|
2018-08-26 12:29:58 +00:00
|
|
|
output << (current_account&.user&.setting_reduce_motion ? 'reduce-motion' : 'no-reduce-motion')
|
2018-08-25 20:55:25 +00:00
|
|
|
output << 'rtl' if locale_direction == 'rtl'
|
2023-04-30 12:07:21 +00:00
|
|
|
output.compact_blank.join(' ')
|
2018-08-25 20:55:25 +00:00
|
|
|
end
|
2018-10-09 23:31:10 +00:00
|
|
|
|
|
|
|
def cdn_host
|
2018-10-12 00:19:10 +00:00
|
|
|
Rails.configuration.action_controller.asset_host
|
2018-10-09 23:31:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def cdn_host?
|
|
|
|
cdn_host.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def storage_host
|
2023-06-01 07:23:28 +00:00
|
|
|
"https://#{storage_host_var}"
|
2018-10-09 23:31:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def storage_host?
|
2023-06-01 07:23:28 +00:00
|
|
|
storage_host_var.present?
|
2018-10-09 23:31:10 +00:00
|
|
|
end
|
2019-04-09 22:36:01 +00:00
|
|
|
|
|
|
|
def quote_wrap(text, line_width: 80, break_sequence: "\n")
|
|
|
|
text = word_wrap(text, line_width: line_width - 2, break_sequence: break_sequence)
|
2022-06-09 20:25:23 +00:00
|
|
|
text.split("\n").map { |line| "> #{line}" }.join("\n")
|
2019-04-09 22:36:01 +00:00
|
|
|
end
|
2019-08-16 17:15:05 +00:00
|
|
|
|
|
|
|
def render_initial_state
|
|
|
|
state_params = {
|
2022-10-04 18:13:46 +00:00
|
|
|
settings: {},
|
2019-08-16 17:15:05 +00:00
|
|
|
text: [params[:title], params[:text], params[:url]].compact.join(' '),
|
|
|
|
}
|
|
|
|
|
2020-06-08 22:16:30 +00:00
|
|
|
permit_visibilities = %w(public unlisted private direct)
|
|
|
|
default_privacy = current_account&.user&.setting_default_privacy
|
|
|
|
permit_visibilities.shift(permit_visibilities.index(default_privacy) + 1) if default_privacy.present?
|
|
|
|
state_params[:visibility] = params[:visibility] if permit_visibilities.include? params[:visibility]
|
|
|
|
|
2022-11-04 23:09:52 +00:00
|
|
|
if user_signed_in? && current_user.functional?
|
2019-08-16 17:15:05 +00:00
|
|
|
state_params[:settings] = state_params[:settings].merge(Web::Setting.find_by(user: current_user)&.data || {})
|
|
|
|
state_params[:push_subscription] = current_account.user.web_push_subscription(current_session)
|
|
|
|
state_params[:current_account] = current_account
|
|
|
|
state_params[:token] = current_session.token
|
|
|
|
state_params[:admin] = Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, ''))
|
|
|
|
end
|
|
|
|
|
2022-11-05 17:28:13 +00:00
|
|
|
if user_signed_in? && !current_user.functional?
|
|
|
|
state_params[:disabled_account] = current_account
|
|
|
|
state_params[:moved_to_account] = current_account.moved_to_account
|
|
|
|
end
|
|
|
|
|
2024-03-13 14:11:23 +00:00
|
|
|
state_params[:owner] = Account.local.without_suspended.without_internal.first if single_user_mode?
|
2022-10-12 19:07:30 +00:00
|
|
|
|
2019-08-16 17:15:05 +00:00
|
|
|
json = ActiveModelSerializers::SerializableResource.new(InitialStatePresenter.new(state_params), serializer: InitialStateSerializer).to_json
|
2020-09-01 01:04:00 +00:00
|
|
|
# rubocop:disable Rails/OutputSafety
|
2019-08-16 17:15:05 +00:00
|
|
|
content_tag(:script, json_escape(json).html_safe, id: 'initial-state', type: 'application/json')
|
2020-09-01 01:04:00 +00:00
|
|
|
# rubocop:enable Rails/OutputSafety
|
2019-08-16 17:15:05 +00:00
|
|
|
end
|
2022-03-01 15:48:58 +00:00
|
|
|
|
|
|
|
def grouped_scopes(scopes)
|
|
|
|
scope_parser = ScopeParser.new
|
|
|
|
scope_transformer = ScopeTransformer.new
|
|
|
|
|
|
|
|
scopes.each_with_object({}) do |str, h|
|
|
|
|
scope = scope_transformer.apply(scope_parser.parse(str))
|
|
|
|
|
|
|
|
if h[scope.key]
|
|
|
|
h[scope.key].merge!(scope)
|
|
|
|
else
|
|
|
|
h[scope.key] = scope
|
|
|
|
end
|
|
|
|
end.values
|
|
|
|
end
|
2022-03-26 01:53:34 +00:00
|
|
|
|
2022-05-09 05:43:08 +00:00
|
|
|
def prerender_custom_emojis(html, custom_emojis, other_options = {})
|
|
|
|
EmojiFormatter.new(html, custom_emojis, other_options.merge(animate: prefers_autoplay?)).to_s
|
2022-03-26 01:53:34 +00:00
|
|
|
end
|
2023-05-02 16:10:39 +00:00
|
|
|
|
2024-04-28 10:08:08 +00:00
|
|
|
# glitch-soc addition to handle the multiple flavors
|
|
|
|
def preload_locale_pack
|
|
|
|
supported_locales = Themes.instance.flavour(current_flavour)['locales']
|
|
|
|
preload_pack_asset "locales/#{current_flavour}/#{I18n.locale}-json.js" if supported_locales.include?(I18n.locale.to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def flavoured_javascript_pack_tag(pack_name, **options)
|
|
|
|
javascript_pack_tag("flavours/#{current_flavour}/#{pack_name}", **options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def preload_signed_in_js_packs
|
|
|
|
preload_files = Themes.instance.flavour(current_flavour)&.fetch('signed_in_preload', nil) || []
|
|
|
|
safe_join(preload_files.map { |entry| preload_pack_asset entry })
|
|
|
|
end
|
|
|
|
|
2023-05-02 16:10:39 +00:00
|
|
|
private
|
|
|
|
|
2023-06-01 07:23:28 +00:00
|
|
|
def storage_host_var
|
2023-07-19 07:02:49 +00:00
|
|
|
ENV.fetch('S3_ALIAS_HOST', nil) || ENV.fetch('S3_CLOUDFRONT_HOST', nil) || ENV.fetch('AZURE_ALIAS_HOST', nil)
|
2023-05-02 16:10:39 +00:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|