You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
# frozen_string_literal: true |
|
|
|
class Api::V1::Statuses::PinsController < Api::BaseController |
|
include Authorization |
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:accounts' } |
|
before_action :require_user! |
|
before_action :set_status |
|
|
|
def create |
|
StatusPin.create!(account: current_account, status: @status) |
|
distribute_add_activity! |
|
render json: @status, serializer: REST::StatusSerializer |
|
end |
|
|
|
def destroy |
|
pin = StatusPin.find_by(account: current_account, status: @status) |
|
|
|
if pin |
|
pin.destroy! |
|
distribute_remove_activity! |
|
end |
|
|
|
render json: @status, serializer: REST::StatusSerializer |
|
end |
|
|
|
private |
|
|
|
def set_status |
|
@status = Status.find(params[:status_id]) |
|
end |
|
|
|
def distribute_add_activity! |
|
json = ActiveModelSerializers::SerializableResource.new( |
|
@status, |
|
serializer: ActivityPub::AddSerializer, |
|
adapter: ActivityPub::Adapter |
|
).as_json |
|
|
|
ActivityPub::RawDistributionWorker.perform_async(Oj.dump(json), current_account.id) |
|
end |
|
|
|
def distribute_remove_activity! |
|
json = ActiveModelSerializers::SerializableResource.new( |
|
@status, |
|
serializer: ActivityPub::RemoveSerializer, |
|
adapter: ActivityPub::Adapter |
|
).as_json |
|
|
|
ActivityPub::RawDistributionWorker.perform_async(Oj.dump(json), current_account.id) |
|
end |
|
end
|
|
|