You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

228 lines
6.5 KiB

  1. # frozen_string_literal: true
  2. module StatusesHelper
  3. EMBEDDED_CONTROLLER = 'statuses'
  4. EMBEDDED_ACTION = 'embed'
  5. def display_name(account, **options)
  6. if options[:custom_emojify]
  7. Formatter.instance.format_display_name(account, options)
  8. else
  9. account.display_name.presence || account.username
  10. end
  11. end
  12. def account_action_button(account)
  13. if user_signed_in?
  14. if account.id == current_user.account_id
  15. link_to settings_profile_url, class: 'button logo-button' do
  16. safe_join([svg_logo, t('settings.edit_profile')])
  17. end
  18. elsif current_account.following?(account) || current_account.requested?(account)
  19. link_to account_unfollow_path(account), class: 'button logo-button button--destructive', data: { method: :post } do
  20. safe_join([svg_logo, t('accounts.unfollow')])
  21. end
  22. elsif !(account.memorial? || account.moved?)
  23. link_to account_follow_path(account), class: "button logo-button#{account.blocking?(current_account) ? ' disabled' : ''}", data: { method: :post } do
  24. safe_join([svg_logo, t('accounts.follow')])
  25. end
  26. end
  27. elsif !(account.memorial? || account.moved?)
  28. link_to account_remote_follow_path(account), class: 'button logo-button modal-button', target: '_new' do
  29. safe_join([svg_logo, t('accounts.follow')])
  30. end
  31. end
  32. end
  33. def svg_logo
  34. content_tag(:svg, tag(:use, 'xlink:href' => '#mastodon-svg-logo'), 'viewBox' => '0 0 216.4144 232.00976')
  35. end
  36. def svg_logo_full
  37. content_tag(:svg, tag(:use, 'xlink:href' => '#mastodon-svg-logo-full'), 'viewBox' => '0 0 713.35878 175.8678')
  38. end
  39. def account_badge(account, all: false)
  40. if account.bot?
  41. content_tag(:div, content_tag(:div, t('accounts.roles.bot'), class: 'account-role bot'), class: 'roles')
  42. elsif (Setting.show_staff_badge && account.user_staff?) || all
  43. content_tag(:div, class: 'roles') do
  44. if all && !account.user_staff?
  45. content_tag(:div, t('admin.accounts.roles.user'), class: 'account-role')
  46. elsif account.user_admin?
  47. content_tag(:div, t('accounts.roles.admin'), class: 'account-role admin')
  48. elsif account.user_moderator?
  49. content_tag(:div, t('accounts.roles.moderator'), class: 'account-role moderator')
  50. end
  51. end
  52. end
  53. end
  54. def link_to_more(url)
  55. link_to t('statuses.show_more'), url, class: 'load-more load-gap'
  56. end
  57. def nothing_here(extra_classes = '')
  58. content_tag(:div, class: "nothing-here #{extra_classes}") do
  59. t('accounts.nothing_here')
  60. end
  61. end
  62. def hide_followers_count?(account)
  63. Setting.hide_followers_count || account.user&.setting_hide_followers_count
  64. end
  65. def account_description(account)
  66. prepend_stats = [
  67. [
  68. number_to_human(account.statuses_count, strip_insignificant_zeros: true),
  69. I18n.t('accounts.posts', count: account.statuses_count),
  70. ].join(' '),
  71. [
  72. number_to_human(account.following_count, strip_insignificant_zeros: true),
  73. I18n.t('accounts.following', count: account.following_count),
  74. ].join(' '),
  75. ]
  76. unless hide_followers_count?(account)
  77. prepend_stats << [
  78. number_to_human(account.followers_count, strip_insignificant_zeros: true),
  79. I18n.t('accounts.followers', count: account.followers_count),
  80. ].join(' ')
  81. end
  82. [prepend_stats.join(', '), account.note].join(' · ')
  83. end
  84. def media_summary(status)
  85. attachments = { image: 0, video: 0 }
  86. status.media_attachments.each do |media|
  87. if media.video?
  88. attachments[:video] += 1
  89. else
  90. attachments[:image] += 1
  91. end
  92. end
  93. text = attachments.to_a.reject { |_, value| value.zero? }.map { |key, value| I18n.t("statuses.attached.#{key}", count: value) }.join(' · ')
  94. return if text.blank?
  95. I18n.t('statuses.attached.description', attached: text)
  96. end
  97. def status_text_summary(status)
  98. return if status.spoiler_text.blank?
  99. I18n.t('statuses.content_warning', warning: status.spoiler_text)
  100. end
  101. def poll_summary(status)
  102. return unless status.preloadable_poll
  103. status.preloadable_poll.options.map { |o| "[ ] #{o}" }.join("\n")
  104. end
  105. def status_description(status)
  106. components = [[media_summary(status), status_text_summary(status)].reject(&:blank?).join(' · ')]
  107. if status.spoiler_text.blank?
  108. components << status.text
  109. components << poll_summary(status)
  110. end
  111. components.reject(&:blank?).join("\n\n")
  112. end
  113. def stream_link_target
  114. embedded_view? ? '_blank' : nil
  115. end
  116. def acct(account)
  117. if account.local?
  118. "@#{account.acct}@#{Rails.configuration.x.local_domain}"
  119. else
  120. "@#{account.acct}"
  121. end
  122. end
  123. def style_classes(status, is_predecessor, is_successor, include_threads)
  124. classes = ['entry']
  125. classes << 'entry-predecessor' if is_predecessor
  126. classes << 'entry-reblog' if status.reblog?
  127. classes << 'entry-successor' if is_successor
  128. classes << 'entry-center' if include_threads
  129. classes.join(' ')
  130. end
  131. def microformats_classes(status, is_direct_parent, is_direct_child)
  132. classes = []
  133. classes << 'p-in-reply-to' if is_direct_parent
  134. classes << 'p-repost-of' if status.reblog? && is_direct_parent
  135. classes << 'p-comment' if is_direct_child
  136. classes.join(' ')
  137. end
  138. def microformats_h_class(status, is_predecessor, is_successor, include_threads)
  139. if is_predecessor || status.reblog? || is_successor
  140. 'h-cite'
  141. elsif include_threads
  142. ''
  143. else
  144. 'h-entry'
  145. end
  146. end
  147. def rtl_status?(status)
  148. status.local? ? rtl?(status.text) : rtl?(strip_tags(status.text))
  149. end
  150. def rtl?(text)
  151. text = simplified_text(text)
  152. rtl_words = text.scan(/[\p{Hebrew}\p{Arabic}\p{Syriac}\p{Thaana}\p{Nko}]+/m)
  153. if rtl_words.present?
  154. total_size = text.size.to_f
  155. rtl_size(rtl_words) / total_size > 0.3
  156. else
  157. false
  158. end
  159. end
  160. def fa_visibility_icon(status)
  161. case status.visibility
  162. when 'public'
  163. fa_icon 'globe fw'
  164. when 'unlisted'
  165. fa_icon 'unlock fw'
  166. when 'private'
  167. fa_icon 'lock fw'
  168. when 'direct'
  169. fa_icon 'envelope fw'
  170. end
  171. end
  172. private
  173. def simplified_text(text)
  174. text.dup.tap do |new_text|
  175. URI.extract(new_text).each do |url|
  176. new_text.gsub!(url, '')
  177. end
  178. new_text.gsub!(Account::MENTION_RE, '')
  179. new_text.gsub!(Tag::HASHTAG_RE, '')
  180. new_text.gsub!(/\s+/, '')
  181. end
  182. end
  183. def rtl_size(words)
  184. words.reduce(0) { |acc, elem| acc + elem.size }.to_f
  185. end
  186. def embedded_view?
  187. params[:controller] == EMBEDDED_CONTROLLER && params[:action] == EMBEDDED_ACTION
  188. end
  189. end