2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::V1::FollowsController < Api::BaseController
|
2018-07-05 09:31:35 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :follow, :'write:follows' }
|
2016-11-08 14:22:44 -08:00
|
|
|
before_action :require_user!
|
|
|
|
|
2016-11-09 08:48:44 -08:00
|
|
|
respond_to :json
|
2016-03-07 03:42:33 -08:00
|
|
|
|
|
|
|
def create
|
2017-04-03 16:33:34 -07:00
|
|
|
raise ActiveRecord::RecordNotFound if follow_params[:uri].blank?
|
2016-09-12 10:20:55 -07:00
|
|
|
|
2016-11-03 08:57:44 -07:00
|
|
|
@account = FollowService.new.call(current_user.account, target_uri).try(:target_account)
|
2017-09-10 06:09:06 -07:00
|
|
|
|
|
|
|
if @account.nil?
|
|
|
|
username, domain = target_uri.split('@')
|
|
|
|
@account = Account.find_remote!(username, domain)
|
|
|
|
end
|
|
|
|
|
2017-07-06 19:02:06 -07:00
|
|
|
render json: @account, serializer: REST::AccountSerializer
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
2016-11-03 08:57:44 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def target_uri
|
2017-04-03 16:33:34 -07:00
|
|
|
follow_params[:uri].strip.gsub(/\A@/, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
def follow_params
|
|
|
|
params.permit(:uri)
|
2016-11-03 08:57:44 -07:00
|
|
|
end
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|