2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 07:58:23 -07:00
|
|
|
class Api::V1::AccountsController < ApiController
|
2016-10-22 10:38:47 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :read }, except: [:follow, :unfollow, :block, :unblock]
|
|
|
|
before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock]
|
2016-11-08 14:22:44 -08:00
|
|
|
before_action :require_user!, except: [:show, :following, :followers, :statuses]
|
2016-11-12 05:33:21 -08:00
|
|
|
before_action :set_account, except: [:verify_credentials, :suggestions, :search]
|
2016-11-08 14:22:44 -08:00
|
|
|
|
2016-11-09 08:48:44 -08:00
|
|
|
respond_to :json
|
2016-03-07 03:42:33 -08:00
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
2016-10-02 07:14:21 -07:00
|
|
|
def verify_credentials
|
|
|
|
@account = current_user.account
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
def following
|
2016-11-09 08:48:44 -08:00
|
|
|
results = Follow.where(account: @account).paginate_by_max_id(DEFAULT_ACCOUNTS_LIMIT, params[:max_id], params[:since_id])
|
2016-11-22 13:59:54 -08:00
|
|
|
accounts = Account.where(id: results.map(&:target_account_id)).map { |a| [a.id, a] }.to_h
|
2016-11-13 16:19:25 -08:00
|
|
|
@accounts = results.map { |f| accounts[f.target_account_id] }
|
2016-11-09 08:48:44 -08:00
|
|
|
|
2016-11-22 13:59:54 -08:00
|
|
|
set_account_counters_maps(@accounts)
|
|
|
|
|
2016-11-09 08:48:44 -08:00
|
|
|
next_path = following_api_v1_account_url(max_id: results.last.id) if results.size == DEFAULT_ACCOUNTS_LIMIT
|
2016-11-15 07:56:29 -08:00
|
|
|
prev_path = following_api_v1_account_url(since_id: results.first.id) unless results.empty?
|
2016-11-09 08:48:44 -08:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
2016-10-28 16:29:19 -07:00
|
|
|
render action: :index
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def followers
|
2016-11-09 08:48:44 -08:00
|
|
|
results = Follow.where(target_account: @account).paginate_by_max_id(DEFAULT_ACCOUNTS_LIMIT, params[:max_id], params[:since_id])
|
2016-11-22 13:59:54 -08:00
|
|
|
accounts = Account.where(id: results.map(&:account_id)).map { |a| [a.id, a] }.to_h
|
2016-11-13 16:19:25 -08:00
|
|
|
@accounts = results.map { |f| accounts[f.account_id] }
|
2016-11-09 08:48:44 -08:00
|
|
|
|
2016-11-22 13:59:54 -08:00
|
|
|
set_account_counters_maps(@accounts)
|
|
|
|
|
2016-11-13 16:19:25 -08:00
|
|
|
next_path = followers_api_v1_account_url(max_id: results.last.id) if results.size == DEFAULT_ACCOUNTS_LIMIT
|
2016-11-15 07:56:29 -08:00
|
|
|
prev_path = followers_api_v1_account_url(since_id: results.first.id) unless results.empty?
|
2016-11-09 08:48:44 -08:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
2016-10-28 16:29:19 -07:00
|
|
|
render action: :index
|
|
|
|
end
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
def statuses
|
2016-11-23 09:56:30 -08:00
|
|
|
@statuses = @account.statuses.paginate_by_max_id(DEFAULT_STATUSES_LIMIT, params[:max_id], params[:since_id]).to_a
|
|
|
|
@statuses = cache(@statuses)
|
2016-11-09 08:48:44 -08:00
|
|
|
|
2016-10-16 09:57:54 -07:00
|
|
|
set_maps(@statuses)
|
2016-11-22 13:59:54 -08:00
|
|
|
set_counters_maps(@statuses)
|
2016-11-09 08:48:44 -08:00
|
|
|
|
|
|
|
next_path = statuses_api_v1_account_url(max_id: @statuses.last.id) if @statuses.size == DEFAULT_STATUSES_LIMIT
|
2016-11-15 07:56:29 -08:00
|
|
|
prev_path = statuses_api_v1_account_url(since_id: @statuses.first.id) unless @statuses.empty?
|
2016-11-09 08:48:44 -08:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def follow
|
2016-10-03 09:17:06 -07:00
|
|
|
FollowService.new.call(current_user.account, @account.acct)
|
|
|
|
set_relationship
|
|
|
|
render action: :relationship
|
|
|
|
end
|
|
|
|
|
|
|
|
def block
|
|
|
|
BlockService.new.call(current_user.account, @account)
|
2016-09-23 11:23:26 -07:00
|
|
|
set_relationship
|
|
|
|
render action: :relationship
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def unfollow
|
2016-10-03 09:17:06 -07: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 11:23:26 -07:00
|
|
|
set_relationship
|
|
|
|
render action: :relationship
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
2016-09-21 13:07:18 -07:00
|
|
|
def relationships
|
2016-09-29 12:28:21 -07:00
|
|
|
ids = params[:id].is_a?(Enumerable) ? params[:id].map(&:to_i) : [params[:id].to_i]
|
2016-10-16 09:57:54 -07:00
|
|
|
@accounts = Account.where(id: ids).select('id')
|
2016-09-21 13:07:18 -07:00
|
|
|
@following = Account.following_map(ids, current_user.account_id)
|
|
|
|
@followed_by = Account.followed_by_map(ids, current_user.account_id)
|
2016-10-03 08:16:58 -07:00
|
|
|
@blocking = Account.blocking_map(ids, current_user.account_id)
|
2016-09-21 13:07:18 -07:00
|
|
|
end
|
|
|
|
|
2016-11-12 05:33:21 -08:00
|
|
|
def search
|
2016-11-12 05:49:28 -08:00
|
|
|
limit = params[:limit] ? [DEFAULT_ACCOUNTS_LIMIT, params[:limit].to_i].min : DEFAULT_ACCOUNTS_LIMIT
|
|
|
|
@accounts = SearchService.new.call(params[:q], limit, params[:resolve] == 'true')
|
2016-11-22 13:59:54 -08:00
|
|
|
|
|
|
|
set_account_counters_maps(@accounts)
|
|
|
|
|
2016-11-12 05:33:21 -08:00
|
|
|
render action: :index
|
|
|
|
end
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
2016-09-23 11:23:26 -07: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 08:16:58 -07:00
|
|
|
@blocking = Account.blocking_map([@account.id], current_user.account_id)
|
2016-09-23 11:23:26 -07:00
|
|
|
end
|
2016-11-23 09:56:30 -08:00
|
|
|
|
|
|
|
def cache(raw)
|
|
|
|
uncached_ids = []
|
|
|
|
cached_keys_with_value = Rails.cache.read_multi(*raw.map(&:cache_key))
|
|
|
|
|
|
|
|
raw.each do |status|
|
|
|
|
uncached_ids << status.id unless cached_keys_with_value.key?(status.cache_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
unless uncached_ids.empty?
|
|
|
|
uncached = Status.where(id: uncached_ids).with_includes.map { |s| [s.id, s] }.to_h
|
|
|
|
|
|
|
|
uncached.values.each do |status|
|
|
|
|
Rails.cache.write(status.cache_key, status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-25 04:25:40 -08:00
|
|
|
raw.map { |status| cached_keys_with_value[status.cache_key] || uncached[status.id] }.compact
|
2016-11-23 09:56:30 -08:00
|
|
|
end
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|