2017-04-18 00:16:32 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module InstanceHelper
|
|
|
|
def site_title
|
2018-03-04 20:29:49 +01:00
|
|
|
Setting.site_title
|
2017-04-18 00:16:32 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def site_hostname
|
2018-01-20 03:49:06 +01:00
|
|
|
@site_hostname ||= Addressable::URI.parse("//#{Rails.configuration.x.local_domain}").display_uri.host
|
2017-04-18 00:16:32 +02:00
|
|
|
end
|
2019-09-03 04:56:54 +02:00
|
|
|
|
2023-04-23 22:35:54 +02:00
|
|
|
def description_for_sign_up(invite = nil)
|
|
|
|
safe_join([description_prefix(invite), I18n.t('auth.description.suffix')], ' ')
|
|
|
|
end
|
|
|
|
|
2024-08-22 12:04:27 +02:00
|
|
|
def instance_presenter
|
|
|
|
@instance_presenter ||= InstancePresenter.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def favicon_path(size = '48')
|
|
|
|
instance_presenter.favicon&.file&.url(size)
|
|
|
|
end
|
|
|
|
|
|
|
|
def app_icon_path(size = '48')
|
|
|
|
instance_presenter.app_icon&.file&.url(size)
|
|
|
|
end
|
|
|
|
|
|
|
|
def use_mask_icon?
|
|
|
|
instance_presenter.app_icon.blank?
|
|
|
|
end
|
|
|
|
|
2023-04-23 22:35:54 +02:00
|
|
|
private
|
2019-09-03 04:56:54 +02:00
|
|
|
|
2023-04-23 22:35:54 +02:00
|
|
|
def description_prefix(invite)
|
|
|
|
if invite.present?
|
|
|
|
I18n.t('auth.description.prefix_invited_by_user', name: invite.user.account.username)
|
|
|
|
else
|
|
|
|
I18n.t('auth.description.prefix_sign_up')
|
|
|
|
end
|
2019-09-03 04:56:54 +02:00
|
|
|
end
|
2017-04-18 00:16:32 +02:00
|
|
|
end
|