2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 11:50:59 +00:00
|
|
|
class Api::SubscriptionsController < ApiController
|
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 show
|
2016-09-20 00:43:20 +00:00
|
|
|
if @account.subscription(api_subscription_url(@account.id)).valid?(params['hub.topic'])
|
2016-09-29 19:28:21 +00:00
|
|
|
@account.update(subscription_expires_at: Time.now.utc + (params['hub.lease_seconds'] || 86_400).to_i.seconds)
|
2016-08-17 15:56:23 +00:00
|
|
|
render plain: HTMLEntities.new.encode(params['hub.challenge']), status: 200
|
2016-02-29 18:42:08 +00:00
|
|
|
else
|
2016-08-17 15:56:23 +00:00
|
|
|
head 404
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
body = request.body.read
|
2016-10-09 12:48:43 +00:00
|
|
|
subscription = @account.subscription(api_subscription_url(@account.id))
|
2016-02-29 18:42:08 +00:00
|
|
|
|
2016-10-09 12:48:43 +00:00
|
|
|
if subscription.verify(body, request.headers['HTTP_X_HUB_SIGNATURE'])
|
2016-11-15 14:43:33 +00:00
|
|
|
ProcessingWorker.perform_async(@account.id, body.force_encoding('UTF-8'))
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
2017-05-03 15:02:18 +00:00
|
|
|
|
|
|
|
head 200
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|