notices_controller.rb
1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
class NoticesController < ApplicationController
class ParamsError < StandardError; end
skip_before_action :authenticate_user!, only: :create
skip_before_action :verify_authenticity_token, only: :create
rescue_from ParamsError, with: :bad_params
def create
# params[:data] if the notice came from a GET request, raw_post if it came via POST
report = ErrorReport.new(notice_params)
if report.valid?
if report.should_keep?
report.generate_notice!
api_xml = report.notice.to_xml(only: false, methods: [:id]) do |xml|
xml.url locate_url(report.notice.id, host: Errbit::Config.host)
end
render xml: api_xml
else
render text: "Notice for old app version ignored"
end
else
render text: "Your API key is unknown", status: 422
end
rescue Nokogiri::XML::SyntaxError
render text: 'The provided XML was not well-formed', status: 422
end
# Redirects a notice to the problem page. Useful when using User Information at Airbrake gem.
def locate
problem = Notice.find(params[:id]).problem
redirect_to app_problem_path(problem.app, problem)
end
private
def notice_params
return @notice_params if @notice_params
@notice_params = params[:data] || request.raw_post
if @notice_params.blank?
fail ParamsError, 'Need a data params in GET or raw post data'
end
@notice_params
end
def bad_params(exception)
render text: exception.message, status: :bad_request
end
end