2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::AccountsController < Api::BaseController
|
2023-11-13 14:27:00 +01:00
|
|
|
include RegistrationHelper
|
|
|
|
|
2021-10-18 12:02:35 +02:00
|
|
|
before_action -> { authorize_if_got_token! :read, :'read:accounts' }, except: [:create, :follow, :unfollow, :remove_from_followers, :block, :unblock, :mute, :unmute]
|
2022-03-03 16:13:40 +01:00
|
|
|
before_action -> { doorkeeper_authorize! :follow, :write, :'write:follows' }, only: [:follow, :unfollow, :remove_from_followers]
|
|
|
|
before_action -> { doorkeeper_authorize! :follow, :write, :'write:mutes' }, only: [:mute, :unmute]
|
|
|
|
before_action -> { doorkeeper_authorize! :follow, :write, :'write:blocks' }, only: [:block, :unblock]
|
2018-12-24 19:12:38 +01:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:accounts' }, only: [:create]
|
2018-07-05 18:31:35 +02:00
|
|
|
|
2018-12-24 19:12:38 +01:00
|
|
|
before_action :require_user!, except: [:show, :create]
|
|
|
|
before_action :set_account, except: [:create]
|
2022-05-26 15:50:33 +02:00
|
|
|
before_action :check_account_approval, except: [:create]
|
|
|
|
before_action :check_account_confirmation, except: [:create]
|
2018-12-24 19:12:38 +01:00
|
|
|
before_action :check_enabled_registrations, only: [:create]
|
2016-11-08 23:22:44 +01:00
|
|
|
|
2019-07-30 11:10:46 +02:00
|
|
|
skip_before_action :require_authenticated_user!, only: :create
|
|
|
|
|
2020-03-08 15:17:39 +01:00
|
|
|
override_rate_limit_headers :follow, family: :follows
|
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
def show
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_if_unauthenticated!
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @account, serializer: REST::AccountSerializer
|
|
|
|
end
|
2016-03-07 12:42:33 +01:00
|
|
|
|
2018-12-24 19:12:38 +01:00
|
|
|
def create
|
2020-10-12 16:33:49 +02:00
|
|
|
token = AppSignUpService.new.call(doorkeeper_token.application, request.remote_ip, account_params)
|
2018-12-24 19:12:38 +01:00
|
|
|
response = Doorkeeper::OAuth::TokenResponse.new(token)
|
|
|
|
|
|
|
|
headers.merge!(response.headers)
|
|
|
|
|
|
|
|
self.response_body = Oj.dump(response.body)
|
|
|
|
self.status = response.status
|
2021-03-01 04:59:13 +01:00
|
|
|
rescue ActiveRecord::RecordInvalid => e
|
2023-02-20 03:16:40 +01:00
|
|
|
render json: ValidationErrorFormatter.new(e, 'account.username': :username, 'invite_request.text': :reason).as_json, status: 422
|
2018-12-24 19:12:38 +01:00
|
|
|
end
|
|
|
|
|
2016-03-07 12:42:33 +01:00
|
|
|
def follow
|
2022-09-20 23:51:21 +02:00
|
|
|
follow = FollowService.new.call(current_user.account, @account, reblogs: params.key?(:reblogs) ? truthy_param?(:reblogs) : nil, notify: params.key?(:notify) ? truthy_param?(:notify) : nil, languages: params.key?(:languages) ? params[:languages] : nil, with_rate_limit: true)
|
|
|
|
options = @account.locked? || current_user.account.silenced? ? {} : { following_map: { @account.id => { reblogs: follow.show_reblogs?, notify: follow.notify?, languages: follow.languages } }, requested_map: { @account.id => false } }
|
2017-09-05 17:48:13 +02:00
|
|
|
|
2021-05-06 14:22:54 +02:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships(**options)
|
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-07-07 04:02:06 +02:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|
|
|
|
|
2017-02-06 02:51:56 +01:00
|
|
|
def mute
|
2023-12-01 16:52:56 +01:00
|
|
|
MuteService.new.call(current_user.account, @account, notifications: truthy_param?(:notifications), duration: params[:duration].to_i)
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
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)
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-10-03 18:17:06 +02:00
|
|
|
end
|
|
|
|
|
2021-10-18 12:02:35 +02:00
|
|
|
def remove_from_followers
|
|
|
|
RemoveFromFollowersService.new.call(current_user.account, @account)
|
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
|
|
|
end
|
|
|
|
|
2016-10-03 18:17:06 +02:00
|
|
|
def unblock
|
|
|
|
UnblockService.new.call(current_user.account, @account)
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
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)
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2017-02-06 02:51:56 +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
|
|
|
|
2022-05-26 15:50:33 +02:00
|
|
|
def check_account_approval
|
|
|
|
raise(ActiveRecord::RecordNotFound) if @account.local? && @account.user_pending?
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_account_confirmation
|
|
|
|
raise(ActiveRecord::RecordNotFound) if @account.local? && !@account.user_confirmed?
|
|
|
|
end
|
|
|
|
|
2017-12-06 11:41:57 +01:00
|
|
|
def relationships(**options)
|
2021-05-06 14:22:54 +02:00
|
|
|
AccountRelationshipsPresenter.new([@account.id], current_user.account_id, **options)
|
2016-09-23 20:23:26 +02:00
|
|
|
end
|
2018-04-30 09:12:36 +02:00
|
|
|
|
2018-12-24 19:12:38 +01:00
|
|
|
def account_params
|
2023-11-13 14:27:00 +01:00
|
|
|
params.permit(:username, :email, :password, :agreement, :locale, :reason, :time_zone, :invite_code)
|
2018-12-24 19:12:38 +01:00
|
|
|
end
|
|
|
|
|
2023-11-13 14:27:00 +01:00
|
|
|
def invite
|
|
|
|
Invite.find_by(code: params[:invite_code]) if params[:invite_code].present?
|
2019-03-14 05:28:30 +01:00
|
|
|
end
|
|
|
|
|
2023-11-13 14:27:00 +01:00
|
|
|
def check_enabled_registrations
|
|
|
|
forbidden unless allowed_registration?(request.remote_ip, invite)
|
2022-01-23 15:52:58 +01:00
|
|
|
end
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|