2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::SubscriptionsController < Api::BaseController
|
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 show
|
2017-05-30 17:15:09 -07:00
|
|
|
if subscription.valid?(params['hub.topic'])
|
|
|
|
@account.update(subscription_expires_at: future_expires)
|
|
|
|
render plain: encoded_challenge, status: 200
|
2016-02-29 10:42:08 -08:00
|
|
|
else
|
2016-08-17 08:56:23 -07:00
|
|
|
head 404
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2016-10-09 05:48:43 -07:00
|
|
|
if subscription.verify(body, request.headers['HTTP_X_HUB_SIGNATURE'])
|
2016-11-15 06:43:33 -08:00
|
|
|
ProcessingWorker.perform_async(@account.id, body.force_encoding('UTF-8'))
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|
2017-05-03 08:02:18 -07:00
|
|
|
|
|
|
|
head 200
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-30 17:15:09 -07:00
|
|
|
def subscription
|
|
|
|
@_subscription ||= @account.subscription(
|
|
|
|
api_subscription_url(@account.id)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def body
|
|
|
|
@_body ||= request.body.read
|
|
|
|
end
|
|
|
|
|
|
|
|
def encoded_challenge
|
|
|
|
HTMLEntities.new.encode(params['hub.challenge'])
|
|
|
|
end
|
|
|
|
|
|
|
|
def future_expires
|
|
|
|
Time.now.utc + lease_seconds_or_default
|
|
|
|
end
|
|
|
|
|
|
|
|
def lease_seconds_or_default
|
2017-07-14 11:41:49 -07:00
|
|
|
(params['hub.lease_seconds'] || 1.day).to_i.seconds
|
2017-05-30 17:15:09 -07:00
|
|
|
end
|
|
|
|
|
2016-02-29 10:42:08 -08:00
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|