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
|
2017-04-09 09:33:40 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :read }, except: [:follow, :unfollow, :block, :unblock, :mute, :unmute, :update_credentials]
|
2017-02-05 17:51:56 -08:00
|
|
|
before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
|
2017-04-09 09:33:40 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :write }, only: [:update_credentials]
|
2016-11-08 14:22:44 -08:00
|
|
|
before_action :require_user!, except: [:show, :following, :followers, :statuses]
|
2017-04-09 09:33:40 -07:00
|
|
|
before_action :set_account, except: [:verify_credentials, :update_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
|
|
|
|
2016-12-21 11:00:18 -08:00
|
|
|
def show; end
|
2016-03-07 03:42:33 -08:00
|
|
|
|
2016-10-02 07:14:21 -07:00
|
|
|
def verify_credentials
|
|
|
|
@account = current_user.account
|
2017-04-19 06:37:42 -07:00
|
|
|
render :show
|
2016-10-02 07:14:21 -07:00
|
|
|
end
|
|
|
|
|
2017-04-09 09:33:40 -07:00
|
|
|
def update_credentials
|
2017-04-09 11:23:14 -07:00
|
|
|
current_account.update!(account_params)
|
|
|
|
@account = current_account
|
2017-04-19 06:37:42 -07:00
|
|
|
render :show
|
2017-04-09 09:33:40 -07:00
|
|
|
end
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
def following
|
2017-05-23 14:26:23 -07:00
|
|
|
@accounts = Account.includes(:passive_relationships)
|
|
|
|
.references(:passive_relationships)
|
2017-05-20 06:13:51 -07:00
|
|
|
.merge(Follow.where(account: @account)
|
|
|
|
.paginate_by_max_id(limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:max_id], params[:since_id]))
|
|
|
|
.to_a
|
2016-11-09 08:48:44 -08:00
|
|
|
|
2017-05-23 14:26:23 -07:00
|
|
|
next_path = following_api_v1_account_url(pagination_params(max_id: @accounts.last.passive_relationships.first.id)) if @accounts.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
|
|
|
prev_path = following_api_v1_account_url(pagination_params(since_id: @accounts.first.passive_relationships.first.id)) unless @accounts.empty?
|
2016-11-09 08:48:44 -08:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
2017-04-19 06:37:42 -07:00
|
|
|
render :index
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def followers
|
2017-05-23 14:26:23 -07:00
|
|
|
@accounts = Account.includes(:active_relationships)
|
|
|
|
.references(:active_relationships)
|
2017-05-20 06:13:51 -07:00
|
|
|
.merge(Follow.where(target_account: @account)
|
|
|
|
.paginate_by_max_id(limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
|
|
|
params[:max_id],
|
|
|
|
params[:since_id]))
|
|
|
|
.to_a
|
|
|
|
|
2017-05-23 14:26:23 -07:00
|
|
|
next_path = followers_api_v1_account_url(pagination_params(max_id: @accounts.last.active_relationships.first.id)) if @accounts.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
|
|
|
prev_path = followers_api_v1_account_url(pagination_params(since_id: @accounts.first.active_relationships.first.id)) unless @accounts.empty?
|
2016-11-09 08:48:44 -08:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
2017-04-19 06:37:42 -07:00
|
|
|
render :index
|
2016-10-28 16:29:19 -07:00
|
|
|
end
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
def statuses
|
2017-01-23 19:22:10 -08:00
|
|
|
@statuses = @account.statuses.permitted_for(@account, current_account).paginate_by_max_id(limit_param(DEFAULT_STATUSES_LIMIT), params[:max_id], params[:since_id])
|
2017-03-05 08:27:17 -08:00
|
|
|
@statuses = @statuses.where(id: MediaAttachment.where(account: @account).where.not(status_id: nil).reorder('').select('distinct status_id')) if params[:only_media]
|
|
|
|
@statuses = @statuses.without_replies if params[:exclude_replies]
|
2016-11-29 06:49:39 -08:00
|
|
|
@statuses = cache_collection(@statuses, Status)
|
2016-11-09 08:48:44 -08:00
|
|
|
|
2016-10-16 09:57:54 -07:00
|
|
|
set_maps(@statuses)
|
2016-11-09 08:48:44 -08:00
|
|
|
|
2017-05-25 08:09:13 -07:00
|
|
|
next_path = statuses_api_v1_account_url(statuses_pagination_params(max_id: @statuses.last.id)) if @statuses.size == limit_param(DEFAULT_STATUSES_LIMIT)
|
2017-04-08 14:39:31 -07:00
|
|
|
prev_path = statuses_api_v1_account_url(statuses_pagination_params(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
|
2017-04-19 06:37:42 -07:00
|
|
|
render :relationship
|
2016-10-03 09:17:06 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def block
|
2017-01-24 12:40:41 -08:00
|
|
|
BlockService.new.call(current_user.account, @account)
|
2017-01-23 12:29:34 -08:00
|
|
|
|
2017-05-19 12:05:32 -07:00
|
|
|
@following = { @account.id => false }
|
|
|
|
@followed_by = { @account.id => false }
|
|
|
|
@blocking = { @account.id => true }
|
|
|
|
@requested = { @account.id => false }
|
|
|
|
@muting = { @account.id => current_account.muting?(@account.id) }
|
|
|
|
@domain_blocking = { @account.id => current_account.domain_blocking?(@account.domain) }
|
2017-01-23 12:29:34 -08:00
|
|
|
|
2017-04-19 06:37:42 -07:00
|
|
|
render :relationship
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
2017-02-05 17:51:56 -08:00
|
|
|
def mute
|
|
|
|
MuteService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 06:37:42 -07:00
|
|
|
render :relationship
|
2017-02-05 17:51:56 -08:00
|
|
|
end
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
def unfollow
|
2016-10-03 09:17:06 -07:00
|
|
|
UnfollowService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 06:37:42 -07:00
|
|
|
render :relationship
|
2016-10-03 09:17:06 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def unblock
|
|
|
|
UnblockService.new.call(current_user.account, @account)
|
2016-09-23 11:23:26 -07:00
|
|
|
set_relationship
|
2017-04-19 06:37:42 -07:00
|
|
|
render :relationship
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
2017-02-05 17:51:56 -08:00
|
|
|
def unmute
|
|
|
|
UnmuteService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 06:37:42 -07:00
|
|
|
render :relationship
|
2017-02-05 17:51:56 -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-12-22 14:03:57 -08:00
|
|
|
|
2017-05-19 12:05:32 -07:00
|
|
|
@accounts = Account.where(id: ids).select('id')
|
|
|
|
@following = Account.following_map(ids, current_user.account_id)
|
|
|
|
@followed_by = Account.followed_by_map(ids, current_user.account_id)
|
|
|
|
@blocking = Account.blocking_map(ids, current_user.account_id)
|
|
|
|
@muting = Account.muting_map(ids, current_user.account_id)
|
|
|
|
@requested = Account.requested_map(ids, current_user.account_id)
|
|
|
|
@domain_blocking = Account.domain_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
|
2017-03-21 18:32:27 -07:00
|
|
|
@accounts = AccountSearchService.new.call(params[:q], limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:resolve] == 'true', current_account)
|
2016-11-22 13:59:54 -08:00
|
|
|
|
2017-04-19 06:37:42 -07:00
|
|
|
render :index
|
2016-11-12 05:33:21 -08:00
|
|
|
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
|
2017-05-19 12:05:32 -07:00
|
|
|
@following = Account.following_map([@account.id], current_user.account_id)
|
|
|
|
@followed_by = Account.followed_by_map([@account.id], current_user.account_id)
|
|
|
|
@blocking = Account.blocking_map([@account.id], current_user.account_id)
|
|
|
|
@muting = Account.muting_map([@account.id], current_user.account_id)
|
|
|
|
@requested = Account.requested_map([@account.id], current_user.account_id)
|
|
|
|
@domain_blocking = Account.domain_blocking_map([@account.id], current_user.account_id)
|
2016-09-23 11:23:26 -07:00
|
|
|
end
|
2017-04-08 14:39:31 -07:00
|
|
|
|
|
|
|
def pagination_params(core_params)
|
|
|
|
params.permit(:limit).merge(core_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def statuses_pagination_params(core_params)
|
|
|
|
params.permit(:limit, :only_media, :exclude_replies).merge(core_params)
|
|
|
|
end
|
2017-04-09 09:33:40 -07:00
|
|
|
|
|
|
|
def account_params
|
2017-04-09 11:23:14 -07:00
|
|
|
params.permit(:display_name, :note, :avatar, :header)
|
2017-04-09 09:33:40 -07:00
|
|
|
end
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|