This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-01-03 09:08:57 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::FollowsController < Api::BaseController
|
|
|
|
include SignatureVerification
|
|
|
|
|
|
|
|
def show
|
2018-01-03 16:21:38 -08:00
|
|
|
render json: follow_request,
|
|
|
|
serializer: ActivityPub::FollowSerializer,
|
|
|
|
adapter: ActivityPub::Adapter,
|
|
|
|
content_type: 'application/activity+json'
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def follow_request
|
|
|
|
FollowRequest.includes(:account).references(:account).find_by!(
|
|
|
|
id: params.require(:id),
|
|
|
|
accounts: { domain: nil, username: params.require(:account_username) },
|
|
|
|
target_account: signed_request_account
|
2018-01-03 09:08:57 -08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|