Retrospring/app/controllers/ajax/inbox_controller.rb

83 lines
2.3 KiB
Ruby
Raw Normal View History

class Ajax::InboxController < AjaxController
2014-12-09 14:21:41 -08:00
def create
unless user_signed_in?
@response[:status] = :noauth
@response[:message] = I18n.t('messages.noauth')
2014-12-09 14:21:41 -08:00
return
end
question = Question.create!(content: QuestionGenerator.generate,
author_is_anonymous: true,
author_name: 'justask',
user: current_user)
inbox = Inbox.create!(user: current_user, question_id: question.id, new: true)
@response[:status] = :okay
@response[:message] = I18n.t('messages.inbox.create.okay')
@response[:success] = true
@response[:render] = render_to_string(partial: 'inbox/entry', locals: { i: inbox })
2014-12-09 14:21:41 -08:00
inbox.update(new: false)
end
def remove
params.require :id
inbox = Inbox.find(params[:id])
unless current_user == inbox.user
@response[:status] = :fail
@response[:message] = I18n.t('messages.inbox.remove.fail')
return
end
begin
inbox.remove
rescue => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :err
@response[:message] = I18n.t('messages.error')
return
end
@response[:status] = :okay
@response[:message] = I18n.t('messages.inbox.remove.okay')
@response[:success] = true
end
def remove_all
2020-04-30 10:57:39 -07:00
raise unless user_signed_in?
begin
Inbox.where(user: current_user).each { |i| i.remove }
rescue => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :err
@response[:message] = I18n.t('messages.error')
return
end
@response[:status] = :okay
@response[:message] = I18n.t('messages.inbox.remove_all.okay')
@response[:success] = true
end
def remove_all_author
begin
2015-07-17 13:46:05 -07:00
@target_user = User.where('LOWER(screen_name) = ?', params[:author].downcase).first!
@inbox = current_user.inboxes.joins(:question)
2015-07-17 13:46:05 -07:00
.where(questions: { user_id: @target_user.id, author_is_anonymous: false })
@inbox.each { |i| i.remove }
rescue => e
2021-12-28 09:32:03 -08:00
Sentry.capture_exception(e)
@response[:status] = :err
@response[:message] = I18n.t('messages.error')
return
end
@response[:status] = :okay
@response[:message] = I18n.t('messages.inbox.remove_all.okay')
@response[:success] = true
end
2014-11-11 07:19:20 -08:00
end