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