2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::SuggestionsController < Api::BaseController
|
|
|
|
include Authorization
|
|
|
|
|
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2020-07-02 02:36:53 +01:00
|
|
|
type = params[:type]
|
|
|
|
|
|
|
|
if type == 'related'
|
2020-09-10 22:21:20 +01:00
|
|
|
count = truthy_param?(:unlimited) ? 80 : 10
|
|
|
|
@accounts = PotentialFriendshipTracker.get(current_account.id, limit: count)
|
2020-07-02 02:36:53 +01:00
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
|
|
|
elsif type == 'verified'
|
|
|
|
@accounts = VerifiedSuggestions.get(current_account.id)
|
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
|
|
|
else
|
|
|
|
raise GabSocial::NotPermittedError
|
|
|
|
end
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
PotentialFriendshipTracker.remove(current_account.id, params[:id])
|
|
|
|
render_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|