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