2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 18:09:25 +00:00
|
|
|
class Api::SalmonController < Api::BaseController
|
2018-02-08 04:00:45 +00:00
|
|
|
include SignatureVerification
|
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
before_action :set_account
|
2016-03-21 08:24:29 +00:00
|
|
|
respond_to :txt
|
2016-02-29 18:42:08 +00:00
|
|
|
|
|
|
|
def update
|
2017-05-30 20:28:58 +00:00
|
|
|
if verify_payload?
|
|
|
|
process_salmon
|
2017-05-03 15:02:18 +00:00
|
|
|
head 202
|
2017-10-03 21:21:19 +00:00
|
|
|
elsif payload.present?
|
2018-02-08 04:00:45 +00:00
|
|
|
render plain: signature_verification_failure_reason, status: 401
|
2017-10-03 21:21:19 +00:00
|
|
|
else
|
|
|
|
head 400
|
2016-10-13 11:41:06 +00:00
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
2017-05-03 15:02:18 +00:00
|
|
|
|
2017-05-30 20:28:58 +00:00
|
|
|
def payload
|
|
|
|
@_payload ||= request.body.read
|
|
|
|
end
|
|
|
|
|
|
|
|
def verify_payload?
|
|
|
|
payload.present? && VerifySalmonService.new.call(payload)
|
|
|
|
end
|
|
|
|
|
|
|
|
def process_salmon
|
|
|
|
SalmonWorker.perform_async(@account.id, payload.force_encoding('UTF-8'))
|
2017-05-03 15:02:18 +00:00
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|