2017-08-25 01:41:18 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2023-11-13 09:53:22 -05:00
|
|
|
class Api::V1::Statuses::PinsController < Api::V1::Statuses::BaseController
|
2018-07-05 18:31:35 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:accounts' }
|
2017-08-25 01:41:18 +02:00
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
|
|
def create
|
|
|
|
|
StatusPin.create!(account: current_account, status: @status)
|
2018-03-04 09:19:11 +01:00
|
|
|
distribute_add_activity!
|
2017-08-25 01:41:18 +02:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
|
pin = StatusPin.find_by(account: current_account, status: @status)
|
2018-03-04 09:19:11 +01:00
|
|
|
|
|
|
|
|
if pin
|
|
|
|
|
pin.destroy!
|
|
|
|
|
distribute_remove_activity!
|
|
|
|
|
end
|
|
|
|
|
|
2017-08-25 01:41:18 +02:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
2018-03-04 09:19:11 +01:00
|
|
|
def distribute_add_activity!
|
|
|
|
|
json = ActiveModelSerializers::SerializableResource.new(
|
|
|
|
|
@status,
|
2026-02-05 10:39:27 +01:00
|
|
|
serializer: ActivityPub::AddNoteSerializer,
|
2018-03-04 09:19:11 +01:00
|
|
|
adapter: ActivityPub::Adapter
|
|
|
|
|
).as_json
|
|
|
|
|
|
2026-03-16 11:06:22 -04:00
|
|
|
ActivityPub::RawDistributionWorker.perform_async(json.to_json, current_account.id)
|
2018-03-04 09:19:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def distribute_remove_activity!
|
|
|
|
|
json = ActiveModelSerializers::SerializableResource.new(
|
|
|
|
|
@status,
|
2026-02-05 10:39:27 +01:00
|
|
|
serializer: ActivityPub::RemoveNoteSerializer,
|
2018-03-04 09:19:11 +01:00
|
|
|
adapter: ActivityPub::Adapter
|
|
|
|
|
).as_json
|
|
|
|
|
|
2026-03-16 11:06:22 -04:00
|
|
|
ActivityPub::RawDistributionWorker.perform_async(json.to_json, current_account.id)
|
2018-03-04 09:19:11 +01:00
|
|
|
end
|
2017-08-25 01:41:18 +02:00
|
|
|
end
|