about summary refs log tree commit diff
path: root/app/controllers/activitypub/inboxes_controller.rb
blob: 0f49b43999571eb212d267aacd2266afe553aefe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

class ActivityPub::InboxesController < Api::BaseController
  include SignatureVerification

  before_action :set_account

  def create
    if signed_request_account
      process_payload
      head 201
    else
      head 202
    end
  end

  private

  def set_account
    @account = Account.find_local!(params[:account_username])
  end

  def body
    @body ||= request.body.read
  end

  def process_payload
    ActivityPub::ProcessingWorker.perform_async(signed_request_account.id, body.force_encoding('UTF-8'))
  end
end