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