Skip to content

Instantly share code, notes, and snippets.

@Mariusio
Last active March 21, 2016 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Mariusio/2f358dabeebf948f1c64 to your computer and use it in GitHub Desktop.
Save Mariusio/2f358dabeebf948f1c64 to your computer and use it in GitHub Desktop.
class BackchannelController < ApplicationController
skip_before_action :authenticate!
before_action :authenticate_internal_api!
# POST /backchannel/event
def backchannel_event
organization_id = params[:organization_id]
report_id = params[:report_id]
execution_id = params[:execution_id]
event = params[:event]
timings = params[:timings]
organization = Organization.find(params[:organization_id])
message = {
type: event,
execution_id: params[:execution_id],
timings: timings
}
message[:report_id] = report_id if report_id != -1
message[:rows] = params[:rows] if params[:rows] != -1
message[:columns] = params[:columns] if params[:columns] != -1
message[:error_message] = params[:error_message] if params[:error_message] != -1
render nothing: true, status: 200
end
private
def authenticate_internal_api!
token = request.headers['Internal-Token']
if !token.blank? && token == Settings.internal_api_token
return true
else
render nothing: true, status: 401
end
end
end
@Mariusio
Copy link
Author

return true unless !token.blank? && token == Settings.internal_api_token
render nothing: true, status: 401

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment