2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 10:58:23 -04:00
|
|
|
class Api::V1::AccountsController < ApiController
|
2016-10-22 13:38:47 -04:00
|
|
|
before_action -> { doorkeeper_authorize! :read }, except: [:follow, :unfollow, :block, :unblock]
|
|
|
|
before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock]
|
2016-11-08 17:22:44 -05:00
|
|
|
before_action :require_user!, except: [:show, :following, :followers, :statuses]
|
2016-11-12 08:33:21 -05:00
|
|
|
before_action :set_account, except: [:verify_credentials, :suggestions, :search]
|
2016-11-08 17:22:44 -05:00
|
|
|
|
2016-11-09 11:48:44 -05:00
|
|
|
respond_to :json
|
2016-03-07 06:42:33 -05:00
|
|
|
|
2016-12-21 14:00:18 -05:00
|
|
|
def show; end
|
2016-03-07 06:42:33 -05:00
|
|
|
|
2016-10-02 10:14:21 -04:00
|
|
|
def verify_credentials
|
|
|
|
@account = current_user.account
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
|
2016-03-07 06:42:33 -05:00
|
|
|
def following
|
2017-01-23 22:22:10 -05:00
|
|
|
results = Follow.where(account: @account).paginate_by_max_id(limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:max_id], params[:since_id])
|
2016-11-22 16:59:54 -05:00
|
|
|
accounts = Account.where(id: results.map(&:target_account_id)).map { |a| [a.id, a] }.to_h
|
2016-11-13 19:19:25 -05:00
|
|
|
@accounts = results.map { |f| accounts[f.target_account_id] }
|
2016-11-09 11:48:44 -05:00
|
|
|
|
2016-11-22 16:59:54 -05:00
|
|
|
set_account_counters_maps(@accounts)
|
|
|
|
|
2017-01-23 22:22:10 -05:00
|
|
|
next_path = following_api_v1_account_url(max_id: results.last.id) if results.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
2016-11-15 10:56:29 -05:00
|
|
|
prev_path = following_api_v1_account_url(since_id: results.first.id) unless results.empty?
|
2016-11-09 11:48:44 -05:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
2016-10-28 19:29:19 -04:00
|
|
|
render action: :index
|
2016-03-07 06:42:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def followers
|
2017-01-23 22:22:10 -05:00
|
|
|
results = Follow.where(target_account: @account).paginate_by_max_id(limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:max_id], params[:since_id])
|
2016-11-22 16:59:54 -05:00
|
|
|
accounts = Account.where(id: results.map(&:account_id)).map { |a| [a.id, a] }.to_h
|
2016-11-13 19:19:25 -05:00
|
|
|
@accounts = results.map { |f| accounts[f.account_id] }
|
2016-11-09 11:48:44 -05:00
|
|
|
|
2016-11-22 16:59:54 -05:00
|
|
|
set_account_counters_maps(@accounts)
|
|
|
|
|
2017-01-23 22:22:10 -05:00
|
|
|
next_path = followers_api_v1_account_url(max_id: results.last.id) if results.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
2016-11-15 10:56:29 -05:00
|
|
|
prev_path = followers_api_v1_account_url(since_id: results.first.id) unless results.empty?
|
2016-11-09 11:48:44 -05:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
2016-10-28 19:29:19 -04:00
|
|
|
render action: :index
|
|
|
|
end
|
|
|
|
|
2016-03-07 06:42:33 -05:00
|
|
|
def statuses
|
2017-01-23 22:22:10 -05:00
|
|
|
@statuses = @account.statuses.permitted_for(@account, current_account).paginate_by_max_id(limit_param(DEFAULT_STATUSES_LIMIT), params[:max_id], params[:since_id])
|
2016-11-29 09:49:39 -05:00
|
|
|
@statuses = cache_collection(@statuses, Status)
|
2016-11-09 11:48:44 -05:00
|
|
|
|
2016-10-16 12:57:54 -04:00
|
|
|
set_maps(@statuses)
|
2016-11-22 16:59:54 -05:00
|
|
|
set_counters_maps(@statuses)
|
2016-11-09 11:48:44 -05:00
|
|
|
|
2017-01-23 22:22:10 -05:00
|
|
|
next_path = statuses_api_v1_account_url(max_id: @statuses.last.id) if @statuses.size == limit_param(DEFAULT_STATUSES_LIMIT)
|
2016-11-15 10:56:29 -05:00
|
|
|
prev_path = statuses_api_v1_account_url(since_id: @statuses.first.id) unless @statuses.empty?
|
2016-11-09 11:48:44 -05:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
2016-03-07 06:42:33 -05:00
|
|
|
end
|
|
|
|
|
2017-02-16 19:30:24 -05:00
|
|
|
def media_statuses
|
|
|
|
media_ids = MediaAttachment.where(account: @account).where.not(status_id: nil).reorder('').select('distinct status_id')
|
|
|
|
@statuses = @account.statuses.where(id: media_ids).permitted_for(@account, current_account).paginate_by_max_id(limit_param(DEFAULT_STATUSES_LIMIT), params[:max_id], params[:since_id])
|
|
|
|
@statuses = cache_collection(@statuses, Status)
|
|
|
|
|
|
|
|
set_maps(@statuses)
|
|
|
|
set_counters_maps(@statuses)
|
|
|
|
|
|
|
|
next_path = media_statuses_api_v1_account_url(max_id: @statuses.last.id) if @statuses.size == limit_param(DEFAULT_STATUSES_LIMIT)
|
|
|
|
prev_path = media_statuses_api_v1_account_url(since_id: @statuses.first.id) unless @statuses.empty?
|
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
render action: :statuses
|
|
|
|
end
|
|
|
|
|
2016-03-07 06:42:33 -05:00
|
|
|
def follow
|
2016-10-03 12:17:06 -04:00
|
|
|
FollowService.new.call(current_user.account, @account.acct)
|
|
|
|
set_relationship
|
|
|
|
render action: :relationship
|
|
|
|
end
|
|
|
|
|
|
|
|
def block
|
2017-01-24 15:40:41 -05:00
|
|
|
BlockService.new.call(current_user.account, @account)
|
2017-01-23 15:29:34 -05:00
|
|
|
|
|
|
|
@following = { @account.id => false }
|
|
|
|
@followed_by = { @account.id => false }
|
|
|
|
@blocking = { @account.id => true }
|
|
|
|
@requested = { @account.id => false }
|
|
|
|
|
2016-09-23 14:23:26 -04:00
|
|
|
render action: :relationship
|
2016-03-07 06:42:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def unfollow
|
2016-10-03 12:17:06 -04:00
|
|
|
UnfollowService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
|
|
|
render action: :relationship
|
|
|
|
end
|
|
|
|
|
|
|
|
def unblock
|
|
|
|
UnblockService.new.call(current_user.account, @account)
|
2016-09-23 14:23:26 -04:00
|
|
|
set_relationship
|
|
|
|
render action: :relationship
|
2016-03-07 06:42:33 -05:00
|
|
|
end
|
|
|
|
|
2016-09-21 16:07:18 -04:00
|
|
|
def relationships
|
2016-09-29 15:28:21 -04:00
|
|
|
ids = params[:id].is_a?(Enumerable) ? params[:id].map(&:to_i) : [params[:id].to_i]
|
2016-12-22 17:03:57 -05:00
|
|
|
|
2016-10-16 12:57:54 -04:00
|
|
|
@accounts = Account.where(id: ids).select('id')
|
2016-09-21 16:07:18 -04:00
|
|
|
@following = Account.following_map(ids, current_user.account_id)
|
|
|
|
@followed_by = Account.followed_by_map(ids, current_user.account_id)
|
2016-10-03 11:16:58 -04:00
|
|
|
@blocking = Account.blocking_map(ids, current_user.account_id)
|
2016-12-22 17:03:57 -05:00
|
|
|
@requested = Account.requested_map(ids, current_user.account_id)
|
2016-09-21 16:07:18 -04:00
|
|
|
end
|
|
|
|
|
2016-11-12 08:33:21 -05:00
|
|
|
def search
|
2017-01-23 22:22:10 -05:00
|
|
|
@accounts = SearchService.new.call(params[:q], limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:resolve] == 'true')
|
2016-11-22 16:59:54 -05:00
|
|
|
|
2017-01-12 20:42:22 -05:00
|
|
|
set_account_counters_maps(@accounts) unless @accounts.nil?
|
2016-11-22 16:59:54 -05:00
|
|
|
|
2016-11-12 08:33:21 -05:00
|
|
|
render action: :index
|
|
|
|
end
|
|
|
|
|
2016-03-07 06:42:33 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
2016-09-23 14:23:26 -04:00
|
|
|
|
|
|
|
def set_relationship
|
|
|
|
@following = Account.following_map([@account.id], current_user.account_id)
|
|
|
|
@followed_by = Account.followed_by_map([@account.id], current_user.account_id)
|
2016-10-03 11:16:58 -04:00
|
|
|
@blocking = Account.blocking_map([@account.id], current_user.account_id)
|
2016-12-22 17:03:57 -05:00
|
|
|
@requested = Account.requested_map([@account.id], current_user.account_id)
|
2016-09-23 14:23:26 -04:00
|
|
|
end
|
2016-03-07 06:42:33 -05:00
|
|
|
end
|