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