2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::SalmonController < Api::BaseController
|
2018-02-07 20:00:45 -08:00
|
|
|
include SignatureVerification
|
|
|
|
|
2016-02-29 10:42:08 -08:00
|
|
|
before_action :set_account
|
2016-03-21 01:24:29 -07:00
|
|
|
respond_to :txt
|
2016-02-29 10:42:08 -08:00
|
|
|
|
|
|
|
def update
|
2017-05-30 13:28:58 -07:00
|
|
|
if verify_payload?
|
|
|
|
process_salmon
|
2017-05-03 08:02:18 -07:00
|
|
|
head 202
|
2017-10-03 14:21:19 -07:00
|
|
|
elsif payload.present?
|
2018-02-07 20:00:45 -08:00
|
|
|
render plain: signature_verification_failure_reason, status: 401
|
2017-10-03 14:21:19 -07:00
|
|
|
else
|
|
|
|
head 400
|
2016-10-13 04:41:06 -07:00
|
|
|
end
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
2017-05-03 08:02:18 -07:00
|
|
|
|
2017-05-30 13:28:58 -07: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 08:02:18 -07:00
|
|
|
end
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|