|
|
@ -24,8 +24,9 @@ $app->get('/callback-fail', function() use($app) { |
|
|
|
$app->post('/', function() use($app) { |
|
|
|
$params = $app->request()->params(); |
|
|
|
|
|
|
|
switch(k($params, 'hub_mode')) { |
|
|
|
switch($mode=k($params, 'hub_mode')) { |
|
|
|
case 'subscribe': |
|
|
|
case 'unsubscribe': |
|
|
|
|
|
|
|
// Sanity check the request params
|
|
|
|
$topic = k($params, 'hub_topic'); |
|
|
@ -39,32 +40,48 @@ $app->post('/', function() use($app) { |
|
|
|
push_error($app, 'Callback URL was invalid'); |
|
|
|
} |
|
|
|
|
|
|
|
// If we've already seen the topic, assume it's valid and don't check it again
|
|
|
|
if(!db\feed_from_url($topic)) { |
|
|
|
$topic_head = request\get_head($topic); |
|
|
|
if($topic_head && !request\response_is($topic_head['status'], 2)) { |
|
|
|
push_error($app, "The topic URL returned a " . $topic_head['status'] . " status code"); |
|
|
|
} else { |
|
|
|
push_error($app, 'We tried to verify the topic URL exists but it didn\'t respond to a HEAD request.'); |
|
|
|
if($mode == 'subscribe') { |
|
|
|
// If we've already seen the topic, assume it's valid and don't check it again
|
|
|
|
if(!db\feed_from_url($topic)) { |
|
|
|
$topic_head = request\get_head($topic); |
|
|
|
if($topic_head && !request\response_is($topic_head['status'], 2)) { |
|
|
|
push_error($app, "The topic URL returned a " . $topic_head['status'] . " status code"); |
|
|
|
} else { |
|
|
|
push_error($app, 'We tried to verify the topic URL exists but it didn\'t respond to a HEAD request.'); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// Find or create the feed given the topic URL
|
|
|
|
$feed = db\find_or_create('feeds', ['feed_url'=>$topic], [ |
|
|
|
'hash' => db\random_hash(), |
|
|
|
], true); |
|
|
|
// Find or create the feed given the topic URL
|
|
|
|
$feed = db\find_or_create('feeds', ['feed_url'=>$topic], [ |
|
|
|
'hash' => db\random_hash(), |
|
|
|
], true); |
|
|
|
|
|
|
|
// Find or create the subscription for this callback URL and feed
|
|
|
|
$subscription = db\find_or_create('subscriptions', ['feed_id'=>$feed->id, 'callback_url'=>$callback], [ |
|
|
|
'hash' => db\random_hash() |
|
|
|
], true); |
|
|
|
// Always set a new requested date and challenge
|
|
|
|
$subscription->date_requested = db\now(); |
|
|
|
$subscription->challenge = db\random_hash(); |
|
|
|
$subscription->save(); |
|
|
|
|
|
|
|
// Queue the worker to validate the subscription
|
|
|
|
DeferredTask::queue('PushTask', 'verify_subscription', [$subscription->id, 'subscribe']); |
|
|
|
|
|
|
|
} else { |
|
|
|
$feed = db\feed_from_url($topic); |
|
|
|
if(!$feed) { |
|
|
|
push_error($app, 'The topic was not found, so there is no subscription active'); |
|
|
|
} |
|
|
|
|
|
|
|
// Find or create the subscription for this callback URL and feed
|
|
|
|
$subscription = db\find_or_create('subscriptions', ['feed_id'=>$feed->id, 'callback_url'=>$callback], [ |
|
|
|
'hash' => db\random_hash() |
|
|
|
], true); |
|
|
|
// Always set a new requested date and challenge
|
|
|
|
$subscription->date_requested = db\now(); |
|
|
|
$subscription->challenge = db\random_hash(); |
|
|
|
$subscription->save(); |
|
|
|
$subscription = db\find('subscriptions', ['feed_id'=>$feed->id, 'callback_url'=>$callback]); |
|
|
|
if(!$subscription) { |
|
|
|
push_error($app, 'There was no subscription found for this callback URL and topic'); |
|
|
|
} |
|
|
|
|
|
|
|
// Queue the worker to validate the subscription
|
|
|
|
DeferredTask::queue('PushTask', 'verify_subscription', $subscription->id); |
|
|
|
// Queue the worker to validate the subscription
|
|
|
|
DeferredTask::queue('PushTask', 'verify_subscription', [$subscription->id, 'unsubscribe']); |
|
|
|
} |
|
|
|
|
|
|
|
$app->response()->status(202); |
|
|
|
echo "The subscription request is being validated. Check the status here:\n"; |
|
|
@ -72,7 +89,6 @@ $app->post('/', function() use($app) { |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 'unsubscribe': |
|
|
|
|
|
|
|
break; |
|
|
|
} |
|
|
|