2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 16:58:23 +02:00
|
|
|
class Api::V1::AccountsController < ApiController
|
2017-04-09 18:33:40 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :read }, except: [:follow, :unfollow, :block, :unblock, :mute, :unmute, :update_credentials]
|
2017-02-06 02:51:56 +01:00
|
|
|
before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
|
2017-04-09 18:33:40 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :write }, only: [:update_credentials]
|
2016-11-08 23:22:44 +01:00
|
|
|
before_action :require_user!, except: [:show, :following, :followers, :statuses]
|
2017-04-09 18:33:40 +02:00
|
|
|
before_action :set_account, except: [:verify_credentials, :update_credentials, :suggestions, :search]
|
2016-11-08 23:22:44 +01:00
|
|
|
|
2016-11-09 17:48:44 +01:00
|
|
|
respond_to :json
|
2016-03-07 12:42:33 +01:00
|
|
|
|
2016-12-21 20:00:18 +01:00
|
|
|
def show; end
|
2016-03-07 12:42:33 +01:00
|
|
|
|
2016-10-02 16:14:21 +02:00
|
|
|
def verify_credentials
|
|
|
|
@account = current_user.account
|
2017-04-19 15:37:42 +02:00
|
|
|
render :show
|
2016-10-02 16:14:21 +02:00
|
|
|
end
|
|
|
|
|
2017-04-09 18:33:40 +02:00
|
|
|
def update_credentials
|
2017-04-09 20:23:14 +02:00
|
|
|
current_account.update!(account_params)
|
|
|
|
@account = current_account
|
2017-04-19 15:37:42 +02:00
|
|
|
render :show
|
2017-04-09 18:33:40 +02:00
|
|
|
end
|
|
|
|
|
2016-03-07 12:42:33 +01:00
|
|
|
def following
|
2017-05-23 23:26:23 +02:00
|
|
|
@accounts = Account.includes(:passive_relationships)
|
|
|
|
.references(:passive_relationships)
|
2017-05-20 15:13:51 +02: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 17:48:44 +01:00
|
|
|
|
2017-05-23 23:26:23 +02: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 17:48:44 +01:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
2017-04-19 15:37:42 +02:00
|
|
|
render :index
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def followers
|
2017-05-23 23:26:23 +02:00
|
|
|
@accounts = Account.includes(:active_relationships)
|
|
|
|
.references(:active_relationships)
|
2017-05-20 15:13:51 +02: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 23:26:23 +02: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 17:48:44 +01:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
2017-04-19 15:37:42 +02:00
|
|
|
render :index
|
2016-10-29 01:29:19 +02:00
|
|
|
end
|
|
|
|
|
2016-03-07 12:42:33 +01:00
|
|
|
def statuses
|
2017-01-24 04:22:10 +01: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 17:27:17 +01: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 15:49:39 +01:00
|
|
|
@statuses = cache_collection(@statuses, Status)
|
2016-11-09 17:48:44 +01:00
|
|
|
|
2016-10-16 18:57:54 +02:00
|
|
|
set_maps(@statuses)
|
2016-11-09 17:48:44 +01:00
|
|
|
|
2017-04-08 23:39:31 +02:00
|
|
|
next_path = statuses_api_v1_account_url(statuses_pagination_params(max_id: @statuses.last.id)) unless @statuses.empty?
|
|
|
|
prev_path = statuses_api_v1_account_url(statuses_pagination_params(since_id: @statuses.first.id)) unless @statuses.empty?
|
2016-11-09 17:48:44 +01:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def follow
|
2016-10-03 18:17:06 +02:00
|
|
|
FollowService.new.call(current_user.account, @account.acct)
|
|
|
|
set_relationship
|
2017-04-19 15:37:42 +02:00
|
|
|
render :relationship
|
2016-10-03 18:17:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def block
|
2017-01-24 21:40:41 +01:00
|
|
|
BlockService.new.call(current_user.account, @account)
|
2017-01-23 21:29:34 +01:00
|
|
|
|
2017-05-19 21:05:32 +02: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 21:29:34 +01:00
|
|
|
|
2017-04-19 15:37:42 +02:00
|
|
|
render :relationship
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|
|
|
|
|
2017-02-06 02:51:56 +01:00
|
|
|
def mute
|
|
|
|
MuteService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 15:37:42 +02:00
|
|
|
render :relationship
|
2017-02-06 02:51:56 +01:00
|
|
|
end
|
|
|
|
|
2016-03-07 12:42:33 +01:00
|
|
|
def unfollow
|
2016-10-03 18:17:06 +02:00
|
|
|
UnfollowService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 15:37:42 +02:00
|
|
|
render :relationship
|
2016-10-03 18:17:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def unblock
|
|
|
|
UnblockService.new.call(current_user.account, @account)
|
2016-09-23 20:23:26 +02:00
|
|
|
set_relationship
|
2017-04-19 15:37:42 +02:00
|
|
|
render :relationship
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|
|
|
|
|
2017-02-06 02:51:56 +01:00
|
|
|
def unmute
|
|
|
|
UnmuteService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 15:37:42 +02:00
|
|
|
render :relationship
|
2017-02-06 02:51:56 +01:00
|
|
|
end
|
|
|
|
|
2016-09-21 22:07:18 +02:00
|
|
|
def relationships
|
2016-09-29 21:28:21 +02:00
|
|
|
ids = params[:id].is_a?(Enumerable) ? params[:id].map(&:to_i) : [params[:id].to_i]
|
2016-12-22 23:03:57 +01:00
|
|
|
|
2017-05-19 21:05:32 +02: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 22:07:18 +02:00
|
|
|
end
|
|
|
|
|
2016-11-12 14:33:21 +01:00
|
|
|
def search
|
2017-03-22 02:32:27 +01:00
|
|
|
@accounts = AccountSearchService.new.call(params[:q], limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:resolve] == 'true', current_account)
|
2016-11-22 22:59:54 +01:00
|
|
|
|
2017-04-19 15:37:42 +02:00
|
|
|
render :index
|
2016-11-12 14:33:21 +01:00
|
|
|
end
|
|
|
|
|
2016-03-07 12:42:33 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
2016-09-23 20:23:26 +02:00
|
|
|
|
|
|
|
def set_relationship
|
2017-05-19 21:05:32 +02: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 20:23:26 +02:00
|
|
|
end
|
2017-04-08 23:39:31 +02: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 18:33:40 +02:00
|
|
|
|
|
|
|
def account_params
|
2017-04-09 20:23:14 +02:00
|
|
|
params.permit(:display_name, :note, :avatar, :header)
|
2017-04-09 18:33:40 +02:00
|
|
|
end
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|