Retrospring/app/controllers/ajax/list_controller.rb

115 lines
3.3 KiB
Ruby
Raw Normal View History

class Ajax::ListController < AjaxController
2015-01-17 09:24:36 -08:00
def create
@response[:status] = :err
2015-01-17 09:24:36 -08:00
unless user_signed_in?
@response[:status] = :noauth
@response[:message] = I18n.t('messages.noauth')
2015-01-17 09:24:36 -08:00
return
end
2015-01-17 10:53:34 -08:00
begin
params.require :name
rescue ActionController::ParameterMissing => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :toolong
@response[:message] = I18n.t('messages.list.create.noname')
2015-01-17 10:53:34 -08:00
return
end
2015-01-17 09:24:36 -08:00
params.require :user
begin
2020-04-30 15:05:41 -07:00
target_user = User.find_by_screen_name!(params[:user])
list = List.create! user: current_user, display_name: params[:name]
rescue ActiveRecord::RecordInvalid => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :toolong
@response[:message] = I18n.t('messages.list.create.toolong')
2015-01-17 09:24:36 -08:00
return
rescue ActiveRecord::RecordNotFound => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :notfound
@response[:message] = I18n.t('messages.list.create.notfound')
2015-01-17 09:24:36 -08:00
return
rescue ActiveRecord::RecordNotUnique => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :exists
@response[:message] = I18n.t('messages.list.create.exists')
2015-01-17 09:24:36 -08:00
return
end
@response[:status] = :okay
@response[:success] = true
@response[:message] = I18n.t('messages.list.create.okay')
@response[:render] = render_to_string(partial: 'modal/list/item', locals: { list: list, user: target_user })
2015-01-17 09:24:36 -08:00
end
2015-01-17 09:57:23 -08:00
def destroy
@response[:status] = :err
2015-01-17 09:57:23 -08:00
unless user_signed_in?
@response[:status] = :noauth
@response[:message] = I18n.t('messages.noauth')
2015-01-17 09:57:23 -08:00
return
end
params.require :list
2015-01-17 09:57:23 -08:00
begin
List.where(user: current_user, name: params[:list]).first.destroy!
rescue ActiveRecord::RecordNotFound => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :notfound
@response[:message] = I18n.t('messages.list.destroy.notfound')
2015-01-17 09:57:23 -08:00
return
end
@response[:status] = :okay
@response[:success] = true
@response[:message] = I18n.t('messages.list.destroy.okay')
2015-01-17 09:57:23 -08:00
end
def membership
@response[:status] = :err
unless user_signed_in?
@response[:status] = :noauth
@response[:message] = I18n.t('messages.noauth')
return
end
params.require :user
params.require :list
params.require :add
add = params[:add] == 'true'
begin
list = current_user.lists.find_by_name!(params[:list])
rescue ActiveRecord::RecordNotFound => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :notfound
@response[:message] = I18n.t('messages.list.membership.notfound')
return
end
2020-04-30 15:05:41 -07:00
target_user = User.find_by_screen_name!(params[:user])
2022-06-09 10:55:56 -07:00
raise Errors::ListingSelfBlockedOther if current_user.blocking?(target_user)
raise Errors::ListingOtherBlockedSelf if target_user.blocking?(current_user)
if add
list.add_member target_user if list.members.find_by_user_id(target_user.id).nil?
@response[:checked] = true
@response[:message] = I18n.t('messages.list.membership.add')
else
list.remove_member target_user unless list.members.find_by_user_id(target_user.id).nil?
@response[:checked] = false
@response[:message] = I18n.t('messages.list.membership.remove')
end
2015-05-08 16:31:31 -07:00
@response[:status] = :okay
@response[:success] = true
end
end