Files
danbooru/app/controllers/dmails_controller.rb
evazion 1d2bac7b95 Remove CurrentUser.ip_addr.
Remove the `CurrentUser.ip_addr` global variable and replace it with
`request.remote_ip`. Before we had to track the current user's IP in a
global variable so that when we edited a post for example, we could pass
down the user's IP to the model and save it in the post_versions table.
Now that we now longer save IPs in version tables, we don't need a global
variable to get access to the current user's IP outside of controllers.
2022-09-18 05:02:10 -05:00

58 lines
1.4 KiB
Ruby

# frozen_string_literal: true
class DmailsController < ApplicationController
respond_to :html, :xml, :js, :json
rate_limit :create, rate: 1.0/1.minute, burst: 50
def new
if params[:respond_to_id]
parent = authorize Dmail.find(params[:respond_to_id]), :show?
@dmail = parent.build_response(:forward => params[:forward])
else
@dmail = authorize Dmail.new(permitted_attributes(Dmail))
end
respond_with(@dmail)
end
def index
@dmails = authorize Dmail.visible(CurrentUser.user).paginated_search(params, count_pages: true)
@dmails = @dmails.includes(:owner, :to, :from) if request.format.html?
respond_with(@dmails)
end
def show
if params[:key].present?
@dmail = Dmail.find_signed!(params[:key], purpose: "dmail_link")
else
@dmail = authorize Dmail.find(params[:id])
end
if request.format.html? && @dmail.owner == CurrentUser.user
@dmail.update!(is_read: true)
end
respond_with(@dmail)
end
def create
@dmail = authorize(Dmail).create_split(from: CurrentUser.user, creator_ip_addr: request.remote_ip, **permitted_attributes(Dmail))
respond_with(@dmail)
end
def update
@dmail = authorize Dmail.find(params[:id])
@dmail.update(permitted_attributes(@dmail))
flash[:notice] = "Dmail updated"
respond_with(@dmail)
end
def mark_all_as_read
@dmails = authorize(CurrentUser.user.dmails).mark_all_as_read
respond_with(@dmails)
end
end