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