about summary refs log tree commit diff
path: root/app/services
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-05-18 12:58:54 -0500
committermultiple creatures <dev@multiple-creature.party>2019-05-21 03:16:50 -0500
commit09b7532805a349d1a57f4a650c7f41456cda184b (patch)
tree74b52c2b91609cbf94c8442fb701dfb8e922ce36 /app/services
parent5c9aed40f6c046629b548df402ca2f13ba36efe0 (diff)
split `i:am` signatures into their very own `footer` column
Diffstat (limited to 'app/services')
-rw-r--r--app/services/post_status_service.rb10
1 files changed, 10 insertions, 0 deletions
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,