end
def default_locale
- ENV.fetch('DEFAULT_LOCALE') {
+ ENV.fetch('DEFAULT_LOCALE') {
http_accept_language.compatible_language_from(I18n.available_locales) || I18n.default_locale
}
end
module StreamEntriesHelper
def display_name(account)
- account.display_name.blank? ? account.username : account.display_name
+ account.display_name.presence || account.username
end
def stream_link_target
append_element(author, 'link', nil, rel: :avatar, type: account.avatar_content_type, 'media:width': 120, 'media:height': 120, href: full_asset_url(account.avatar.url(:original)))
append_element(author, 'link', nil, rel: :header, type: account.header_content_type, 'media:width': 700, 'media:height': 335, href: full_asset_url(account.header.url(:original)))
append_element(author, 'poco:preferredUsername', account.username)
- append_element(author, 'poco:displayName', account.display_name) unless account.display_name.blank?
- append_element(author, 'poco:note', Formatter.instance.simplified_format(account).to_str) unless account.note.blank?
+ append_element(author, 'poco:displayName', account.display_name) if account.display_name?
+ append_element(author, 'poco:note', Formatter.instance.simplified_format(account).to_str) if account.note?
append_element(author, 'mastodon:scope', account.locked? ? :private : :public)
author
end
def serialize_status_attributes(entry, status)
- append_element(entry, 'summary', status.spoiler_text) unless status.spoiler_text.blank?
+ append_element(entry, 'summary', status.spoiler_text) if status.spoiler_text?
append_element(entry, 'content', Formatter.instance.format(status.proper).to_str, type: 'html')
status.mentions.each do |mentioned|
%i.fa.fa-check
%td= distance_of_time_in_words(Time.now, subscription.expires_at)
%td
- - if subscription.last_successful_delivery_at.nil?
- %i.fa.fa-times
- - else
+ - if subscription.last_successful_delivery_at?
= l subscription.last_successful_delivery_at
+ - else
+ %i.fa.fa-times
= paginate @subscriptions
%p
%strong= t('reports.comment.label')
\:
- - if @report.comment.blank?
- = t('reports.comment.none')
- - else
- = @report.comment
+ = @report.comment.presence || t('reports.comment.none')
- unless @statuses.empty?
%hr/
%strong.emojify= display_name(account)
%span= "@#{account.acct}"
- - unless account.note.blank?
+ - if account.note?
.account__header__content.emojify= Formatter.instance.simplified_format(account)
%span.p-nickname= acct(status.account)
.status__content.e-content.p-name.emojify<
- - unless status.spoiler_text.blank?
+ - if status.spoiler_text?
%p{ style: 'margin-bottom: 0' }<
%span>= "#{status.spoiler_text} "
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
- %div{ style: "display: #{status.spoiler_text.blank? ? 'block' : 'none'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status)
+ %div{ style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status)
- unless status.media_attachments.empty?
- if status.media_attachments.first.video?
%span.p-nickname= acct(status.account)
.status__content.e-content.p-name.emojify<
- - unless status.spoiler_text.blank?
+ - if status.spoiler_text?
%p{ style: 'margin-bottom: 0' }<
%span>= "#{status.spoiler_text} "
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
- %div{ style: "display: #{status.spoiler_text.blank? ? 'block' : 'none'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status)
+ %div{ style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status)
- unless status.media_attachments.empty?
.status__attachments
headers['User-Agent'] = 'Mastodon/PubSubHubbub'
headers['Link'] = LinkHeader.new([[api_push_url, [%w(rel hub)]], [account_url(subscription.account, format: :atom), [%w(rel self)]]]).to_s
- headers['X-Hub-Signature'] = signature(subscription.secret, payload) unless subscription.secret.blank?
+ headers['X-Hub-Signature'] = signature(subscription.secret, payload) if subscription.secret?
response = HTTP.timeout(:per_operation, write: 50, connect: 20, read: 50)
.headers(headers)
Rails.application.configure do
config.x.email_domains_blacklist = ENV.fetch('EMAIL_DOMAIN_BLACKLIST') { 'mvrht.com' }
- config.x.email_domains_whitelist = ENV.fetch('EMAIL_DOMAIN_WHITELIST') { '' }
+ config.x.email_domains_whitelist = ENV.fetch('EMAIL_DOMAIN_WHITELIST') { '' }
end