2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
class WebHookLog < ApplicationRecord
|
2020-01-01 13:55:28 +05:30
|
|
|
include SafeUrl
|
|
|
|
include Presentable
|
2020-03-13 15:44:24 +05:30
|
|
|
include DeleteWithLimit
|
|
|
|
include CreatedAtFilterable
|
2021-06-08 01:23:25 +05:30
|
|
|
include PartitionedTable
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
self.primary_key = :id
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
partitioned_by :created_at, strategy: :monthly, retain_for: 3.months
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
belongs_to :web_hook
|
|
|
|
|
|
|
|
serialize :request_headers, Hash # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :request_data, Hash # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :response_headers, Hash # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
|
|
|
|
validates :web_hook, presence: true
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
before_save :obfuscate_basic_auth
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def self.recent
|
|
|
|
where('created_at >= ?', 2.days.ago.beginning_of_day)
|
|
|
|
.order(created_at: :desc)
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def success?
|
|
|
|
response_status =~ /^2/
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
def internal_error?
|
|
|
|
response_status == WebHookService::InternalErrorResponse::ERROR_MESSAGE
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def obfuscate_basic_auth
|
|
|
|
self.url = safe_url
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|