Track successful PuSH deliveries
This commit is contained in:
parent
ff21ff1489
commit
4a2347da41
4 changed files with 20 additions and 6 deletions
|
@ -5,6 +5,7 @@
|
|||
%th Callback URL
|
||||
%th Confirmed
|
||||
%th Expires in
|
||||
%th Last delivery
|
||||
%tbody
|
||||
- @subscriptions.each do |subscription|
|
||||
%tr
|
||||
|
@ -16,5 +17,10 @@
|
|||
- if subscription.confirmed?
|
||||
%i.fa.fa-check
|
||||
%td= distance_of_time_in_words(Time.now, subscription.expires_at)
|
||||
%td
|
||||
- if subscription.last_successful_delivery_at.nil?
|
||||
%i.fa.fa-times
|
||||
- else
|
||||
= l subscription.last_successful_delivery_at
|
||||
|
||||
= will_paginate @subscriptions, pagination_options
|
||||
|
|
|
@ -19,6 +19,8 @@ class Pubsubhubbub::DeliveryWorker
|
|||
.post(subscription.callback_url, body: payload)
|
||||
|
||||
raise "Delivery failed for #{subscription.callback_url}: HTTP #{response.code}" unless response.code > 199 && response.code < 300
|
||||
|
||||
subscription.touch(:last_successful_delivery_at)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue