2016-11-15 09:56:29 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 09:58:23 -05:00
|
|
|
class Api::V1::FollowsController < ApiController
|
2016-10-22 12:38:47 -05:00
|
|
|
before_action -> { doorkeeper_authorize! :follow }
|
2016-11-08 16:22:44 -06:00
|
|
|
before_action :require_user!
|
|
|
|
|
2016-11-09 10:48:44 -06:00
|
|
|
respond_to :json
|
2016-03-07 05:42:33 -06:00
|
|
|
|
|
|
|
def create
|
2016-09-29 14:28:21 -05:00
|
|
|
raise ActiveRecord::RecordNotFound if params[:uri].blank?
|
2016-09-12 12:20:55 -05:00
|
|
|
|
2016-11-03 10:57:44 -05:00
|
|
|
@account = FollowService.new.call(current_user.account, target_uri).try(:target_account)
|
2016-03-07 05:42:33 -06:00
|
|
|
render action: :show
|
|
|
|
end
|
2016-11-03 10:57:44 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def target_uri
|
|
|
|
params[:uri].strip.gsub(/\A@/, '')
|
|
|
|
end
|
2016-03-07 05:42:33 -06:00
|
|
|
end
|