Class: Rpush::Daemon::Store::ActiveRecord

Inherits:
Object
  • Object
show all
Includes:
Reconnectable
Defined in:
lib/rpush/daemon/store/active_record.rb,
lib/rpush/daemon/store/active_record/reconnectable.rb

Defined Under Namespace

Modules: Reconnectable

Constant Summary collapse

DEFAULT_MARK_OPTIONS =
{ persist: true }

Constants included from Reconnectable

Reconnectable::ADAPTER_ERRORS

Instance Method Summary collapse

Methods included from Reconnectable

#check_database_is_connected, #database_connection_lost, #reconnect_database, #sleep_to_avoid_thrashing, #with_database_reconnect_and_retry

Instance Method Details

#all_appsObject



17
18
19
# File 'lib/rpush/daemon/store/active_record.rb', line 17

def all_apps
  Rpush::Client::ActiveRecord::App.all
end

#app(id) ⇒ Object



13
14
15
# File 'lib/rpush/daemon/store/active_record.rb', line 13

def app(id)
  Rpush::Client::ActiveRecord::App.find(id)
end

#create_adm_notification(attrs, data, registration_ids, deliver_after, app) ⇒ Object



131
132
133
134
# File 'lib/rpush/daemon/store/active_record.rb', line 131

def create_adm_notification(attrs, data, registration_ids, deliver_after, app)
  notification = Rpush::Client::ActiveRecord::Adm::Notification.new
  create_gcm_like_notification(notification, attrs, data, registration_ids, deliver_after, app)
end

#create_apns_feedback(failed_at, device_token, app) ⇒ Object



119
120
121
122
123
124
# File 'lib/rpush/daemon/store/active_record.rb', line 119

def create_apns_feedback(failed_at, device_token, app)
  with_database_reconnect_and_retry do
    Rpush::Client::ActiveRecord::Apns::Feedback.create!(failed_at: failed_at,
                                                        device_token: device_token, app_id: app.id)
  end
end

#create_gcm_notification(attrs, data, registration_ids, deliver_after, app) ⇒ Object



126
127
128
129
# File 'lib/rpush/daemon/store/active_record.rb', line 126

def create_gcm_notification(attrs, data, registration_ids, deliver_after, app)
  notification = Rpush::Client::ActiveRecord::Gcm::Notification.new
  create_gcm_like_notification(notification, attrs, data, registration_ids, deliver_after, app)
end

#deliverable_notifications(limit) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
# File 'lib/rpush/daemon/store/active_record.rb', line 21

def deliverable_notifications(limit)
  with_database_reconnect_and_retry do
    Rpush::Client::ActiveRecord::Notification.transaction do
      relation = ready_for_delivery
      relation = relation.limit(limit)
      notifications = relation.lock(true).to_a
      mark_processing(notifications)
      notifications
    end
  end
end

#mark_batch_delivered(notifications) ⇒ Object



74
75
76
77
78
79
80
81
82
83
84
# File 'lib/rpush/daemon/store/active_record.rb', line 74

def mark_batch_delivered(notifications)
  now = Time.now
  ids = []
  notifications.each do |n|
    mark_delivered(n, now, persist: false)
    ids << n.id
  end
  with_database_reconnect_and_retry do
    Rpush::Client::ActiveRecord::Notification.where(id: ids).update_all(['processing = ?, delivered = ?, delivered_at = ?', false, true, now])
  end
end

#mark_batch_failed(notifications, code, description) ⇒ Object



103
104
105
106
107
108
109
110
111
# File 'lib/rpush/daemon/store/active_record.rb', line 103

def mark_batch_failed(notifications, code, description)
  now = Time.now
  ids = []
  notifications.each do |n|
    mark_failed(n, code, description, now, persist: false)
    ids << n.id
  end
  mark_ids_failed(ids, code, description, now)
end

#mark_batch_retryable(notifications, deliver_after) ⇒ Object



46
47
48
49
50
51
52
53
# File 'lib/rpush/daemon/store/active_record.rb', line 46

def mark_batch_retryable(notifications, deliver_after)
  ids = []
  notifications.each do |n|
    mark_retryable(n, deliver_after, persist: false)
    ids << n.id
  end
  mark_ids_retryable(ids, deliver_after)
end

#mark_delivered(notification, time, opts = {}) ⇒ Object



61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/rpush/daemon/store/active_record.rb', line 61

def mark_delivered(notification, time, opts = {})
  opts = DEFAULT_MARK_OPTIONS.dup.merge(opts)
  notification.processing = false
  notification.delivered = true
  notification.delivered_at = time

  return unless opts[:persist]

  with_database_reconnect_and_retry do
    notification.save!(validate: false)
  end
end

#mark_failed(notification, code, description, time, opts = {}) ⇒ Object



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/rpush/daemon/store/active_record.rb', line 86

def mark_failed(notification, code, description, time, opts = {})
  opts = DEFAULT_MARK_OPTIONS.dup.merge(opts)
  notification.processing = false
  notification.delivered = false
  notification.delivered_at = nil
  notification.failed = true
  notification.failed_at = time
  notification.error_code = code
  notification.error_description = description

  return unless opts[:persist]

  with_database_reconnect_and_retry do
    notification.save!(validate: false)
  end
end

#mark_ids_failed(ids, code, description, time) ⇒ Object



113
114
115
116
117
# File 'lib/rpush/daemon/store/active_record.rb', line 113

def mark_ids_failed(ids, code, description, time)
  with_database_reconnect_and_retry do
    Rpush::Client::ActiveRecord::Notification.where(id: ids).update_all(['processing = ?, delivered = ?, delivered_at = NULL, failed = ?, failed_at = ?, error_code = ?, error_description = ?', false, false, true, time, code, description])
  end
end

#mark_ids_retryable(ids, deliver_after) ⇒ Object



55
56
57
58
59
# File 'lib/rpush/daemon/store/active_record.rb', line 55

def mark_ids_retryable(ids, deliver_after)
  with_database_reconnect_and_retry do
    Rpush::Client::ActiveRecord::Notification.where(id: ids).update_all(['processing = ?, delivered = ?, delivered_at = ?, failed = ?, failed_at = ?, retries = retries + 1, deliver_after = ?', false, false, nil, false, nil, deliver_after])
  end
end

#mark_retryable(notification, deliver_after, opts = {}) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/rpush/daemon/store/active_record.rb', line 33

def mark_retryable(notification, deliver_after, opts = {})
  opts = DEFAULT_MARK_OPTIONS.dup.merge(opts)
  notification.processing = false
  notification.retries += 1
  notification.deliver_after = deliver_after

  return unless opts[:persist]

  with_database_reconnect_and_retry do
    notification.save!(validate: false)
  end
end

#release_connectionObject



148
149
150
151
152
# File 'lib/rpush/daemon/store/active_record.rb', line 148

def release_connection
  ::ActiveRecord::Base.connection.close
rescue StandardError => e
  Rpush.logger.error(e)
end

#update_app(app) ⇒ Object



136
137
138
139
140
# File 'lib/rpush/daemon/store/active_record.rb', line 136

def update_app(app)
  with_database_reconnect_and_retry do
    app.save!
  end
end

#update_notification(notification) ⇒ Object



142
143
144
145
146
# File 'lib/rpush/daemon/store/active_record.rb', line 142

def update_notification(notification)
  with_database_reconnect_and_retry do
    notification.save!
  end
end