chinwagsocial/app/controllers/api/salmon_controller.rb
Matt Jankowski 73540ffe6b Clean up for api/base controller (#3629)
* Move ApiController to Api/BaseController

* API controllers inherit from Api::BaseController

* Add coverage for various error cases in api/base controller
2017-06-07 20:09:25 +02:00

34 lines
573 B
Ruby

# frozen_string_literal: true
class Api::SalmonController < Api::BaseController
before_action :set_account
respond_to :txt
def update
if verify_payload?
process_salmon
head 201
else
head 202
end
end
private
def set_account
@account = Account.find(params[:id])
end
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'))
end
end