2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
module StreamEntriesHelper
|
2017-08-30 08:23:43 +00:00
|
|
|
EMBEDDED_CONTROLLER = 'statuses'
|
2017-06-08 11:24:28 +00:00
|
|
|
EMBEDDED_ACTION = 'embed'
|
2017-04-23 04:05:52 +00:00
|
|
|
|
2016-02-27 23:02:59 +00:00
|
|
|
def display_name(account)
|
2017-04-12 16:24:18 +00:00
|
|
|
account.display_name.presence || account.username
|
2016-02-27 23:02:59 +00:00
|
|
|
end
|
|
|
|
|
2018-03-08 23:35:07 +00:00
|
|
|
def account_description(account)
|
|
|
|
prepend_str = [
|
|
|
|
[
|
|
|
|
number_to_human(account.statuses_count, strip_insignificant_zeros: true),
|
|
|
|
t('accounts.posts'),
|
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
|
|
|
number_to_human(account.following_count, strip_insignificant_zeros: true),
|
|
|
|
t('accounts.following'),
|
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
|
|
|
number_to_human(account.followers_count, strip_insignificant_zeros: true),
|
|
|
|
t('accounts.followers'),
|
|
|
|
].join(' '),
|
|
|
|
].join(', ')
|
|
|
|
|
|
|
|
[prepend_str, account.note].join(' · ')
|
|
|
|
end
|
|
|
|
|
2018-03-18 19:33:07 +00: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
|
|
|
|
|
|
|
|
text = attachments.to_a.reject { |_, value| value.zero? }.map { |key, value| t("statuses.attached.#{key}", count: value) }.join(' · ')
|
|
|
|
|
|
|
|
return if text.blank?
|
|
|
|
|
|
|
|
t('statuses.attached.description', attached: text)
|
|
|
|
end
|
|
|
|
|
|
|
|
def status_text_summary(status)
|
|
|
|
return if status.spoiler_text.blank?
|
|
|
|
t('statuses.content_warning', warning: status.spoiler_text)
|
|
|
|
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 14:12:42 +00:00
|
|
|
def stream_link_target
|
|
|
|
embedded_view? ? '_blank' : nil
|
|
|
|
end
|
|
|
|
|
2016-12-18 18:47:11 +00:00
|
|
|
def acct(account)
|
2017-04-23 04:05:52 +00:00
|
|
|
if embedded_view? && account.local?
|
|
|
|
"@#{account.acct}@#{Rails.configuration.x.local_domain}"
|
|
|
|
else
|
|
|
|
"@#{account.acct}"
|
|
|
|
end
|
2016-12-18 18:47:11 +00:00
|
|
|
end
|
|
|
|
|
2017-04-12 18:04:33 +00:00
|
|
|
def style_classes(status, is_predecessor, is_successor, include_threads)
|
2016-02-28 13:02:53 +00:00
|
|
|
classes = ['entry']
|
2017-04-12 18:04:33 +00: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 13:02:53 +00:00
|
|
|
classes.join(' ')
|
|
|
|
end
|
|
|
|
|
2017-04-12 18:04:33 +00: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 04:04:32 +00:00
|
|
|
if is_predecessor || status.reblog? || is_successor
|
|
|
|
'h-cite'
|
|
|
|
elsif include_threads
|
|
|
|
''
|
|
|
|
else
|
|
|
|
'h-entry'
|
|
|
|
end
|
2017-04-12 18:04:33 +00:00
|
|
|
end
|
|
|
|
|
2017-06-10 13:06:50 +00:00
|
|
|
def rtl_status?(status)
|
|
|
|
status.local? ? rtl?(status.text) : rtl?(strip_tags(status.text))
|
|
|
|
end
|
|
|
|
|
2017-02-28 00:52:31 +00:00
|
|
|
def rtl?(text)
|
2017-06-10 13:06:50 +00:00
|
|
|
text = simplified_text(text)
|
2017-06-20 16:45:09 +00:00
|
|
|
rtl_words = text.scan(/[\p{Hebrew}\p{Arabic}\p{Syriac}\p{Thaana}\p{Nko}]+/m)
|
2017-02-28 00:52:31 +00:00
|
|
|
|
2017-06-20 16:45:09 +00:00
|
|
|
if rtl_words.present?
|
2017-06-10 13:06:50 +00:00
|
|
|
total_size = text.size.to_f
|
2017-06-20 16:45:09 +00:00
|
|
|
rtl_size(rtl_words) / total_size > 0.3
|
2017-04-21 22:13:37 +00:00
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2017-02-28 00:52:31 +00:00
|
|
|
end
|
2017-04-12 14:12:42 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-06-10 13:06:50 +00: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 16:45:09 +00:00
|
|
|
def rtl_size(words)
|
|
|
|
words.reduce(0) { |acc, elem| acc + elem.size }.to_f
|
2017-04-21 22:13:37 +00:00
|
|
|
end
|
|
|
|
|
2017-04-12 14:12:42 +00:00
|
|
|
def embedded_view?
|
2017-04-23 04:05:52 +00:00
|
|
|
params[:controller] == EMBEDDED_CONTROLLER && params[:action] == EMBEDDED_ACTION
|
2017-04-12 14:12:42 +00:00
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|