2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-29 10:42:08 -08:00
|
|
|
module StreamEntriesHelper
|
2017-08-30 01:23:43 -07:00
|
|
|
EMBEDDED_CONTROLLER = 'statuses'
|
2017-06-08 04:24:28 -07:00
|
|
|
EMBEDDED_ACTION = 'embed'
|
2017-04-22 21:05:52 -07:00
|
|
|
|
2018-05-06 02:48:51 -07:00
|
|
|
def display_name(account, **options)
|
2018-05-18 06:56:57 -07:00
|
|
|
if options[:custom_emojify]
|
|
|
|
Formatter.instance.format_display_name(account, options)
|
|
|
|
else
|
|
|
|
account.display_name.presence || account.username
|
|
|
|
end
|
2016-02-27 15:02:59 -08:00
|
|
|
end
|
|
|
|
|
2018-07-28 10:25:33 -07: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-18 18:28:43 -07:00
|
|
|
link_to account_unfollow_path(account), class: 'button logo-button button--destructive', data: { method: :post } do
|
2018-07-28 10:25:33 -07:00
|
|
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.unfollow')])
|
|
|
|
end
|
2018-08-31 11:33:01 -07:00
|
|
|
elsif !(account.memorial? || account.moved?)
|
2019-04-06 19:59:13 -07:00
|
|
|
link_to account_follow_path(account), class: "button logo-button#{account.blocking?(current_account) ? ' disabled' : ''}", data: { method: :post } do
|
2018-07-28 10:25:33 -07:00
|
|
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
|
|
|
|
end
|
|
|
|
end
|
2018-08-31 11:33:01 -07:00
|
|
|
elsif !(account.memorial? || account.moved?)
|
2018-07-28 10:25:33 -07:00
|
|
|
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
|
|
|
|
|
2018-11-26 06:53:27 -08:00
|
|
|
def account_badge(account, all: false)
|
2018-07-28 10:25:33 -07:00
|
|
|
if account.bot?
|
|
|
|
content_tag(:div, content_tag(:div, t('accounts.roles.bot'), class: 'account-role bot'), class: 'roles')
|
2018-11-26 06:53:27 -08:00
|
|
|
elsif (Setting.show_staff_badge && account.user_staff?) || all
|
2018-07-28 10:25:33 -07:00
|
|
|
content_tag(:div, class: 'roles') do
|
2018-11-26 06:53:27 -08:00
|
|
|
if all && !account.user_staff?
|
|
|
|
content_tag(:div, t('admin.accounts.roles.user'), class: 'account-role')
|
|
|
|
elsif account.user_admin?
|
2018-07-28 10:25:33 -07:00
|
|
|
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-08 15:35:07 -08:00
|
|
|
def account_description(account)
|
|
|
|
prepend_str = [
|
|
|
|
[
|
|
|
|
number_to_human(account.statuses_count, strip_insignificant_zeros: true),
|
2018-08-26 12:30:53 -07:00
|
|
|
I18n.t('accounts.posts', count: account.statuses_count),
|
2018-03-08 15:35:07 -08:00
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
|
|
|
number_to_human(account.following_count, strip_insignificant_zeros: true),
|
2018-08-26 12:30:53 -07:00
|
|
|
I18n.t('accounts.following', count: account.following_count),
|
2018-03-08 15:35:07 -08:00
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
|
|
|
number_to_human(account.followers_count, strip_insignificant_zeros: true),
|
2018-08-26 12:30:53 -07:00
|
|
|
I18n.t('accounts.followers', count: account.followers_count),
|
2018-03-08 15:35:07 -08:00
|
|
|
].join(' '),
|
|
|
|
].join(', ')
|
|
|
|
|
|
|
|
[prepend_str, account.note].join(' · ')
|
|
|
|
end
|
|
|
|
|
2018-03-18 12:33:07 -07: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-24 17:10:02 -07:00
|
|
|
text = attachments.to_a.reject { |_, value| value.zero? }.map { |key, value| I18n.t("statuses.attached.#{key}", count: value) }.join(' · ')
|
2018-03-18 12:33:07 -07:00
|
|
|
|
|
|
|
return if text.blank?
|
|
|
|
|
2018-04-24 17:10:02 -07:00
|
|
|
I18n.t('statuses.attached.description', attached: text)
|
2018-03-18 12:33:07 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def status_text_summary(status)
|
|
|
|
return if status.spoiler_text.blank?
|
2018-04-24 17:10:02 -07:00
|
|
|
I18n.t('statuses.content_warning', warning: status.spoiler_text)
|
2018-03-18 12:33:07 -07:00
|
|
|
end
|
|
|
|
|
2019-03-04 18:51:18 -08:00
|
|
|
def poll_summary(status)
|
2019-03-27 20:44:59 -07:00
|
|
|
return unless status.preloadable_poll
|
|
|
|
status.preloadable_poll.options.map { |o| "[ ] #{o}" }.join("\n")
|
2019-03-04 18:51:18 -08:00
|
|
|
end
|
|
|
|
|
2018-03-18 12:33:07 -07:00
|
|
|
def status_description(status)
|
|
|
|
components = [[media_summary(status), status_text_summary(status)].reject(&:blank?).join(' · ')]
|
2019-03-04 18:51:18 -08:00
|
|
|
|
|
|
|
if status.spoiler_text.blank?
|
|
|
|
components << status.text
|
|
|
|
components << poll_summary(status)
|
|
|
|
end
|
|
|
|
|
2018-03-18 12:33:07 -07:00
|
|
|
components.reject(&:blank?).join("\n\n")
|
|
|
|
end
|
|
|
|
|
2017-04-12 07:12:42 -07:00
|
|
|
def stream_link_target
|
|
|
|
embedded_view? ? '_blank' : nil
|
|
|
|
end
|
|
|
|
|
2016-12-18 10:47:11 -08:00
|
|
|
def acct(account)
|
2018-07-13 19:07:47 -07:00
|
|
|
if account.local?
|
2017-04-22 21:05:52 -07:00
|
|
|
"@#{account.acct}@#{Rails.configuration.x.local_domain}"
|
|
|
|
else
|
|
|
|
"@#{account.acct}"
|
|
|
|
end
|
2016-12-18 10:47:11 -08:00
|
|
|
end
|
|
|
|
|
2017-04-12 11:04:33 -07:00
|
|
|
def style_classes(status, is_predecessor, is_successor, include_threads)
|
2016-02-28 05:02:53 -08:00
|
|
|
classes = ['entry']
|
2017-04-12 11:04:33 -07: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 05:02:53 -08:00
|
|
|
classes.join(' ')
|
|
|
|
end
|
|
|
|
|
2017-04-12 11:04:33 -07: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-22 21:04:32 -07:00
|
|
|
if is_predecessor || status.reblog? || is_successor
|
|
|
|
'h-cite'
|
|
|
|
elsif include_threads
|
|
|
|
''
|
|
|
|
else
|
|
|
|
'h-entry'
|
|
|
|
end
|
2017-04-12 11:04:33 -07:00
|
|
|
end
|
|
|
|
|
2017-06-10 06:06:50 -07:00
|
|
|
def rtl_status?(status)
|
|
|
|
status.local? ? rtl?(status.text) : rtl?(strip_tags(status.text))
|
|
|
|
end
|
|
|
|
|
2017-02-27 16:52:31 -08:00
|
|
|
def rtl?(text)
|
2017-06-10 06:06:50 -07:00
|
|
|
text = simplified_text(text)
|
2017-06-20 09:45:09 -07:00
|
|
|
rtl_words = text.scan(/[\p{Hebrew}\p{Arabic}\p{Syriac}\p{Thaana}\p{Nko}]+/m)
|
2017-02-27 16:52:31 -08:00
|
|
|
|
2017-06-20 09:45:09 -07:00
|
|
|
if rtl_words.present?
|
2017-06-10 06:06:50 -07:00
|
|
|
total_size = text.size.to_f
|
2017-06-20 09:45:09 -07:00
|
|
|
rtl_size(rtl_words) / total_size > 0.3
|
2017-04-21 15:13:37 -07:00
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2017-02-27 16:52:31 -08:00
|
|
|
end
|
2017-04-12 07:12:42 -07:00
|
|
|
|
2018-04-19 17:28:48 -07:00
|
|
|
def fa_visibility_icon(status)
|
|
|
|
case status.visibility
|
|
|
|
when 'public'
|
|
|
|
fa_icon 'globe fw'
|
|
|
|
when 'unlisted'
|
2019-01-31 04:45:15 -08:00
|
|
|
fa_icon 'unlock fw'
|
2018-04-19 17:28:48 -07:00
|
|
|
when 'private'
|
|
|
|
fa_icon 'lock fw'
|
|
|
|
when 'direct'
|
|
|
|
fa_icon 'envelope fw'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-12 07:12:42 -07:00
|
|
|
private
|
|
|
|
|
2017-06-10 06:06:50 -07: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 09:45:09 -07:00
|
|
|
def rtl_size(words)
|
|
|
|
words.reduce(0) { |acc, elem| acc + elem.size }.to_f
|
2017-04-21 15:13:37 -07:00
|
|
|
end
|
|
|
|
|
2017-04-12 07:12:42 -07:00
|
|
|
def embedded_view?
|
2017-04-22 21:05:52 -07:00
|
|
|
params[:controller] == EMBEDDED_CONTROLLER && params[:action] == EMBEDDED_ACTION
|
2017-04-12 07:12:42 -07:00
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|