From 09b7532805a349d1a57f4a650c7f41456cda184b Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sat, 18 May 2019 12:58:54 -0500 Subject: split `i:am` signatures into their very own `footer` column --- app/services/post_status_service.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'app/services') diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index 78b5fcbdb..1b105fdc5 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -28,6 +28,7 @@ class PostStatusService < BaseService @account = account @options = options @text = @options[:text] || '' + @footer = @options[:footer] @in_reply_to = @options[:thread] @tags = @options[:tags] @local_only = @options[:local_only] @@ -53,12 +54,20 @@ class PostStatusService < BaseService private + def set_footer_from_i_am + name = @account.vars['_they:are'] + return if name.blank? + @account.vars["_they:are:#{name}"] + end + def preprocess_attributes! if @text.blank? && @options[:spoiler_text].present? @text = '.' @text = @media.find(&:video?) ? '📹' : '🖼' if @media.size > 0 end + @footer = set_footer_from_i_am if @footer.nil? + @visibility = @options[:visibility] || @account.user_default_visibility @visibility = :unlisted if @visibility.in?([nil, 'public']) && @account.silenced? || @account.force_unlisted @@ -178,6 +187,7 @@ class PostStatusService < BaseService { created_at: @options[:created_at] ? @options[:created_at].to_datetime : Time.now.utc, text: @text, + footer: @footer, media_attachments: @media || [], thread: @in_reply_to, poll_attributes: poll_attributes, -- cgit