2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-29 19:42:08 +01:00
|
|
|
module StreamEntriesHelper
|
2017-08-30 10:23:43 +02:00
|
|
|
EMBEDDED_CONTROLLER = 'statuses'
|
2017-06-08 13:24:28 +02:00
|
|
|
EMBEDDED_ACTION = 'embed'
|
2017-04-23 06:05:52 +02:00
|
|
|
|
2018-05-06 11:48:51 +02:00
|
|
|
def display_name(account, **options)
|
2018-05-18 15:56:57 +02:00
|
|
|
if options[:custom_emojify]
|
|
|
|
Formatter.instance.format_display_name(account, options)
|
|
|
|
else
|
|
|
|
account.display_name.presence || account.username
|
|
|
|
end
|
2016-02-28 00:02:59 +01:00
|
|
|
end
|
|
|
|
|
2018-07-28 19:25:33 +02:00
|
|
|
def account_action_button(account)
|
|
|
|
if user_signed_in?
|
|
|
|
if account.id == current_user.account_id
|
|
|
|
link_to settings_profile_url, class: 'button logo-button' do
|
|
|
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('settings.edit_profile')])
|
|
|
|
end
|
|
|
|
elsif current_account.following?(account) || current_account.requested?(account)
|
2018-08-19 03:28:43 +02:00
|
|
|
link_to account_unfollow_path(account), class: 'button logo-button button--destructive', data: { method: :post } do
|
2018-07-28 19:25:33 +02:00
|
|
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.unfollow')])
|
|
|
|
end
|
|
|
|
else
|
|
|
|
link_to account_follow_path(account), class: 'button logo-button', data: { method: :post } do
|
|
|
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
link_to account_remote_follow_path(account), class: 'button logo-button modal-button', target: '_new' do
|
|
|
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_badge(account)
|
|
|
|
if account.bot?
|
|
|
|
content_tag(:div, content_tag(:div, t('accounts.roles.bot'), class: 'account-role bot'), class: 'roles')
|
|
|
|
elsif Setting.show_staff_badge && account.user_staff?
|
|
|
|
content_tag(:div, class: 'roles') do
|
|
|
|
if account.user_admin?
|
|
|
|
content_tag(:div, t('accounts.roles.admin'), class: 'account-role admin')
|
|
|
|
elsif account.user_moderator?
|
|
|
|
content_tag(:div, t('accounts.roles.moderator'), class: 'account-role moderator')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_to_more(url)
|
|
|
|
link_to t('statuses.show_more'), url, class: 'load-more load-gap'
|
|
|
|
end
|
|
|
|
|
|
|
|
def nothing_here(extra_classes = '')
|
|
|
|
content_tag(:div, class: "nothing-here #{extra_classes}") do
|
|
|
|
t('accounts.nothing_here')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-09 00:35:07 +01:00
|
|
|
def account_description(account)
|
|
|
|
prepend_str = [
|
|
|
|
[
|
|
|
|
number_to_human(account.statuses_count, strip_insignificant_zeros: true),
|
2018-04-25 02:10:02 +02:00
|
|
|
I18n.t('accounts.posts'),
|
2018-03-09 00:35:07 +01:00
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
|
|
|
number_to_human(account.following_count, strip_insignificant_zeros: true),
|
2018-04-25 02:10:02 +02:00
|
|
|
I18n.t('accounts.following'),
|
2018-03-09 00:35:07 +01:00
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
|
|
|
number_to_human(account.followers_count, strip_insignificant_zeros: true),
|
2018-04-25 02:10:02 +02:00
|
|
|
I18n.t('accounts.followers'),
|
2018-03-09 00:35:07 +01:00
|
|
|
].join(' '),
|
|
|
|
].join(', ')
|
|
|
|
|
|
|
|
[prepend_str, account.note].join(' · ')
|
|
|
|
end
|
|
|
|
|
2018-03-18 20:33:07 +01:00
|
|
|
def media_summary(status)
|
|
|
|
attachments = { image: 0, video: 0 }
|
|
|
|
|
|
|
|
status.media_attachments.each do |media|
|
|
|
|
if media.video?
|
|
|
|
attachments[:video] += 1
|
|
|
|
else
|
|
|
|
attachments[:image] += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-25 02:10:02 +02:00
|
|
|
text = attachments.to_a.reject { |_, value| value.zero? }.map { |key, value| I18n.t("statuses.attached.#{key}", count: value) }.join(' · ')
|
2018-03-18 20:33:07 +01:00
|
|
|
|
|
|
|
return if text.blank?
|
|
|
|
|
2018-04-25 02:10:02 +02:00
|
|
|
I18n.t('statuses.attached.description', attached: text)
|
2018-03-18 20:33:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def status_text_summary(status)
|
|
|
|
return if status.spoiler_text.blank?
|
2018-04-25 02:10:02 +02:00
|
|
|
I18n.t('statuses.content_warning', warning: status.spoiler_text)
|
2018-03-18 20:33:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def status_description(status)
|
|
|
|
components = [[media_summary(status), status_text_summary(status)].reject(&:blank?).join(' · ')]
|
|
|
|
components << status.text if status.spoiler_text.blank?
|
|
|
|
components.reject(&:blank?).join("\n\n")
|
|
|
|
end
|
|
|
|
|
2017-04-12 16:12:42 +02:00
|
|
|
def stream_link_target
|
|
|
|
embedded_view? ? '_blank' : nil
|
|
|
|
end
|
|
|
|
|
2016-12-18 19:47:11 +01:00
|
|
|
def acct(account)
|
2018-07-14 04:07:47 +02:00
|
|
|
if account.local?
|
2017-04-23 06:05:52 +02:00
|
|
|
"@#{account.acct}@#{Rails.configuration.x.local_domain}"
|
|
|
|
else
|
|
|
|
"@#{account.acct}"
|
|
|
|
end
|
2016-12-18 19:47:11 +01:00
|
|
|
end
|
|
|
|
|
2017-04-12 20:04:33 +02:00
|
|
|
def style_classes(status, is_predecessor, is_successor, include_threads)
|
2016-02-28 14:02:53 +01:00
|
|
|
classes = ['entry']
|
2017-04-12 20:04:33 +02:00
|
|
|
classes << 'entry-predecessor' if is_predecessor
|
|
|
|
classes << 'entry-reblog' if status.reblog?
|
|
|
|
classes << 'entry-successor' if is_successor
|
|
|
|
classes << 'entry-center' if include_threads
|
2016-02-28 14:02:53 +01:00
|
|
|
classes.join(' ')
|
|
|
|
end
|
|
|
|
|
2017-04-12 20:04:33 +02:00
|
|
|
def microformats_classes(status, is_direct_parent, is_direct_child)
|
|
|
|
classes = []
|
|
|
|
classes << 'p-in-reply-to' if is_direct_parent
|
|
|
|
classes << 'p-repost-of' if status.reblog? && is_direct_parent
|
|
|
|
classes << 'p-comment' if is_direct_child
|
|
|
|
classes.join(' ')
|
|
|
|
end
|
|
|
|
|
|
|
|
def microformats_h_class(status, is_predecessor, is_successor, include_threads)
|
2017-04-23 06:04:32 +02:00
|
|
|
if is_predecessor || status.reblog? || is_successor
|
|
|
|
'h-cite'
|
|
|
|
elsif include_threads
|
|
|
|
''
|
|
|
|
else
|
|
|
|
'h-entry'
|
|
|
|
end
|
2017-04-12 20:04:33 +02:00
|
|
|
end
|
|
|
|
|
2017-06-10 15:06:50 +02:00
|
|
|
def rtl_status?(status)
|
|
|
|
status.local? ? rtl?(status.text) : rtl?(strip_tags(status.text))
|
|
|
|
end
|
|
|
|
|
2017-02-28 01:52:31 +01:00
|
|
|
def rtl?(text)
|
2017-06-10 15:06:50 +02:00
|
|
|
text = simplified_text(text)
|
2017-06-20 18:45:09 +02:00
|
|
|
rtl_words = text.scan(/[\p{Hebrew}\p{Arabic}\p{Syriac}\p{Thaana}\p{Nko}]+/m)
|
2017-02-28 01:52:31 +01:00
|
|
|
|
2017-06-20 18:45:09 +02:00
|
|
|
if rtl_words.present?
|
2017-06-10 15:06:50 +02:00
|
|
|
total_size = text.size.to_f
|
2017-06-20 18:45:09 +02:00
|
|
|
rtl_size(rtl_words) / total_size > 0.3
|
2017-04-22 00:13:37 +02:00
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2017-02-28 01:52:31 +01:00
|
|
|
end
|
2017-04-12 16:12:42 +02:00
|
|
|
|
2018-04-20 02:28:48 +02:00
|
|
|
def fa_visibility_icon(status)
|
|
|
|
case status.visibility
|
|
|
|
when 'public'
|
|
|
|
fa_icon 'globe fw'
|
|
|
|
when 'unlisted'
|
|
|
|
fa_icon 'unlock-alt fw'
|
|
|
|
when 'private'
|
|
|
|
fa_icon 'lock fw'
|
|
|
|
when 'direct'
|
|
|
|
fa_icon 'envelope fw'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-12 16:12:42 +02:00
|
|
|
private
|
|
|
|
|
2017-06-10 15:06:50 +02:00
|
|
|
def simplified_text(text)
|
|
|
|
text.dup.tap do |new_text|
|
|
|
|
URI.extract(new_text).each do |url|
|
|
|
|
new_text.gsub!(url, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
new_text.gsub!(Account::MENTION_RE, '')
|
|
|
|
new_text.gsub!(Tag::HASHTAG_RE, '')
|
|
|
|
new_text.gsub!(/\s+/, '')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-20 18:45:09 +02:00
|
|
|
def rtl_size(words)
|
|
|
|
words.reduce(0) { |acc, elem| acc + elem.size }.to_f
|
2017-04-22 00:13:37 +02:00
|
|
|
end
|
|
|
|
|
2017-04-12 16:12:42 +02:00
|
|
|
def embedded_view?
|
2017-04-23 06:05:52 +02:00
|
|
|
params[:controller] == EMBEDDED_CONTROLLER && params[:action] == EMBEDDED_ACTION
|
2017-04-12 16:12:42 +02:00
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|